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

55734 строки
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. }
  2103. //species
  2104. function getSpeciesInfo(speciesList) {
  2105. let result = new Set();
  2106. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2107. result.add(entry)
  2108. });
  2109. return Array.from(result);
  2110. };
  2111. function getSpeciesInfoHelper(species) {
  2112. if (!speciesData[species]) {
  2113. console.warn(species + " doesn't exist");
  2114. return [];
  2115. }
  2116. if (speciesData[species].parents) {
  2117. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2118. } else {
  2119. return [species];
  2120. }
  2121. }
  2122. characterMakers.push(() => makeCharacter(
  2123. {
  2124. name: "Fen",
  2125. species: ["crux"],
  2126. description: {
  2127. title: "Bio",
  2128. text: "Very furry. Sheds on everything."
  2129. },
  2130. tags: [
  2131. "anthro",
  2132. "goo"
  2133. ]
  2134. },
  2135. {
  2136. front: {
  2137. height: math.unit(12, "feet"),
  2138. weight: math.unit(2400, "lb"),
  2139. preyCapacity: math.unit(1, "people"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/fen/front.svg",
  2143. extra: 1804/1562,
  2144. bottom: 205/2009
  2145. },
  2146. extraAttributes: {
  2147. pawSize: {
  2148. name: "Paw Size",
  2149. power: 2,
  2150. type: "area",
  2151. base: math.unit(0.35, "m^2")
  2152. }
  2153. }
  2154. },
  2155. diving: {
  2156. height: math.unit(4.9, "meters"),
  2157. weight: math.unit(2400, "lb"),
  2158. name: "Diving",
  2159. image: {
  2160. source: "./media/characters/fen/diving.svg"
  2161. }
  2162. },
  2163. sleeby: {
  2164. height: math.unit(3.45, "meters"),
  2165. weight: math.unit(2400, "lb"),
  2166. name: "Sleeby",
  2167. image: {
  2168. source: "./media/characters/fen/sleeby.svg"
  2169. }
  2170. },
  2171. goo: {
  2172. height: math.unit(12, "feet"),
  2173. weight: math.unit(3600, "lb"),
  2174. volume: math.unit(1000, "liters"),
  2175. preyCapacity: math.unit(6, "people"),
  2176. name: "Goo",
  2177. image: {
  2178. source: "./media/characters/fen/goo.svg",
  2179. extra: 1307/1071,
  2180. bottom: 134/1441
  2181. }
  2182. },
  2183. gooNsfw: {
  2184. height: math.unit(12, "feet"),
  2185. weight: math.unit(3750, "lb"),
  2186. volume: math.unit(1000, "liters"),
  2187. preyCapacity: math.unit(6, "people"),
  2188. name: "Goo (NSFW)",
  2189. image: {
  2190. source: "./media/characters/fen/goo-nsfw.svg",
  2191. extra: 1875/1734,
  2192. bottom: 122/1997
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(5.03, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/fen/maw.svg"
  2200. }
  2201. },
  2202. gooCeiling: {
  2203. height: math.unit(6.6, "feet"),
  2204. weight: math.unit(3000, "lb"),
  2205. volume: math.unit(1000, "liters"),
  2206. preyCapacity: math.unit(6, "people"),
  2207. name: "Goo (Ceiling)",
  2208. image: {
  2209. source: "./media/characters/fen/goo-ceiling.svg"
  2210. }
  2211. },
  2212. paw: {
  2213. height: math.unit(3.77, "feet"),
  2214. name: "Paw",
  2215. image: {
  2216. source: "./media/characters/fen/paw.svg"
  2217. },
  2218. extraAttributes: {
  2219. "toeSize": {
  2220. name: "Toe Size",
  2221. power: 2,
  2222. type: "area",
  2223. base: math.unit(0.02875, "m^2")
  2224. },
  2225. "pawSize": {
  2226. name: "Paw Size",
  2227. power: 2,
  2228. type: "area",
  2229. base: math.unit(0.378, "m^2")
  2230. },
  2231. }
  2232. },
  2233. tail: {
  2234. height: math.unit(12.1, "feet"),
  2235. name: "Tail",
  2236. image: {
  2237. source: "./media/characters/fen/tail.svg"
  2238. }
  2239. },
  2240. tailFull: {
  2241. height: math.unit(12.1, "feet"),
  2242. name: "Full Tail",
  2243. image: {
  2244. source: "./media/characters/fen/tail-full.svg"
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(12, "feet"),
  2249. weight: math.unit(2400, "lb"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/fen/back.svg",
  2253. },
  2254. info: {
  2255. description: {
  2256. mode: "append",
  2257. text: "\n\nHe is not currently looking at you."
  2258. }
  2259. }
  2260. },
  2261. full: {
  2262. height: math.unit(1.85, "meter"),
  2263. weight: math.unit(3200, "lb"),
  2264. name: "Full",
  2265. image: {
  2266. source: "./media/characters/fen/full.svg",
  2267. extra: 1133/859,
  2268. bottom: 145/1278
  2269. },
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nMunch."
  2274. }
  2275. }
  2276. },
  2277. gooLounging: {
  2278. height: math.unit(4.53, "feet"),
  2279. weight: math.unit(3000, "lb"),
  2280. preyCapacity: math.unit(6, "people"),
  2281. name: "Goo (Lounging)",
  2282. image: {
  2283. source: "./media/characters/fen/goo-lounging.svg",
  2284. bottom: 116 / 613
  2285. }
  2286. },
  2287. lounging: {
  2288. height: math.unit(10.52, "feet"),
  2289. weight: math.unit(2400, "lb"),
  2290. name: "Lounging",
  2291. image: {
  2292. source: "./media/characters/fen/lounging.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Small",
  2299. height: math.unit(2.2428, "meter")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(12, "feet"),
  2304. default: true,
  2305. },
  2306. {
  2307. name: "Big",
  2308. height: math.unit(20, "feet")
  2309. },
  2310. {
  2311. name: "Minimacro",
  2312. height: math.unit(40, "feet"),
  2313. info: {
  2314. description: {
  2315. mode: "append",
  2316. text: "\n\nTOO DAMN BIG"
  2317. }
  2318. }
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. info: {
  2324. description: {
  2325. mode: "append",
  2326. text: "\n\nTOO DAMN BIG"
  2327. }
  2328. }
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(2, "miles")
  2333. },
  2334. {
  2335. name: "Gigamacro",
  2336. height: math.unit(10, "earths")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(183, "cm"),
  2345. weight: math.unit(80, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sofia-fluttertail/front.svg",
  2349. bottom: 0.01,
  2350. extra: 2154 / 2081
  2351. }
  2352. },
  2353. frontAlt: {
  2354. height: math.unit(183, "cm"),
  2355. weight: math.unit(80, "kg"),
  2356. name: "Front (alt)",
  2357. image: {
  2358. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2359. }
  2360. },
  2361. back: {
  2362. height: math.unit(183, "cm"),
  2363. weight: math.unit(80, "kg"),
  2364. name: "Back",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/back.svg"
  2367. }
  2368. },
  2369. kneeling: {
  2370. height: math.unit(125, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Kneeling",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2375. extra: 1033 / 977,
  2376. bottom: 23.7 / 1057
  2377. }
  2378. },
  2379. maw: {
  2380. height: math.unit(183 / 5, "cm"),
  2381. name: "Maw",
  2382. image: {
  2383. source: "./media/characters/sofia-fluttertail/maw.svg"
  2384. }
  2385. },
  2386. mawcloseup: {
  2387. height: math.unit(183 / 5 * 0.41, "cm"),
  2388. name: "Maw (Closeup)",
  2389. image: {
  2390. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2391. }
  2392. },
  2393. paws: {
  2394. height: math.unit(1.17, "feet"),
  2395. name: "Paws",
  2396. image: {
  2397. source: "./media/characters/sofia-fluttertail/paws.svg",
  2398. extra: 851 / 851,
  2399. bottom: 17 / 868
  2400. }
  2401. },
  2402. },
  2403. [
  2404. {
  2405. name: "Normal",
  2406. height: math.unit(1.83, "meter")
  2407. },
  2408. {
  2409. name: "Size Thief",
  2410. height: math.unit(18, "feet")
  2411. },
  2412. {
  2413. name: "50 Foot Collie",
  2414. height: math.unit(50, "feet")
  2415. },
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(96, "feet"),
  2419. default: true
  2420. },
  2421. {
  2422. name: "Megamerger",
  2423. height: math.unit(650, "feet")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/march/front.svg",
  2436. extra: 1992/1851,
  2437. bottom: 39/2031
  2438. }
  2439. },
  2440. foot: {
  2441. height: math.unit(0.9, "feet"),
  2442. name: "Foot",
  2443. image: {
  2444. source: "./media/characters/march/foot.svg"
  2445. }
  2446. },
  2447. },
  2448. [
  2449. {
  2450. name: "Normal",
  2451. height: math.unit(7.9, "feet")
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(220, "meters")
  2456. },
  2457. {
  2458. name: "Megamacro",
  2459. height: math.unit(2.98, "km"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Gigamacro",
  2464. height: math.unit(15963, "km")
  2465. },
  2466. {
  2467. name: "Teramacro",
  2468. height: math.unit(2980000000, "km")
  2469. },
  2470. {
  2471. name: "Examacro",
  2472. height: math.unit(250, "parsecs")
  2473. },
  2474. ]
  2475. ))
  2476. characterMakers.push(() => makeCharacter(
  2477. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2478. {
  2479. front: {
  2480. height: math.unit(6, "feet"),
  2481. weight: math.unit(60, "kg"),
  2482. name: "Front",
  2483. image: {
  2484. source: "./media/characters/noir/front.svg",
  2485. extra: 1,
  2486. bottom: 0.032
  2487. }
  2488. },
  2489. },
  2490. [
  2491. {
  2492. name: "Normal",
  2493. height: math.unit(6.6, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(500, "feet")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(2.5, "km"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Gigamacro",
  2506. height: math.unit(22500, "km")
  2507. },
  2508. {
  2509. name: "Teramacro",
  2510. height: math.unit(2500000000, "km")
  2511. },
  2512. {
  2513. name: "Examacro",
  2514. height: math.unit(200, "parsecs")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/okuri/front.svg",
  2527. extra: 739/665,
  2528. bottom: 39/778
  2529. }
  2530. },
  2531. back: {
  2532. height: math.unit(7, "feet"),
  2533. weight: math.unit(100, "kg"),
  2534. name: "Back",
  2535. image: {
  2536. source: "./media/characters/okuri/back.svg",
  2537. extra: 734/653,
  2538. bottom: 13/747
  2539. }
  2540. },
  2541. sitting: {
  2542. height: math.unit(2.95, "feet"),
  2543. weight: math.unit(100, "kg"),
  2544. name: "Sitting",
  2545. image: {
  2546. source: "./media/characters/okuri/sitting.svg",
  2547. extra: 370/318,
  2548. bottom: 99/469
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Smallest",
  2555. height: math.unit(5 + 2/12, "feet")
  2556. },
  2557. {
  2558. name: "Smaller",
  2559. height: math.unit(300, "feet")
  2560. },
  2561. {
  2562. name: "Small",
  2563. height: math.unit(1000, "feet")
  2564. },
  2565. {
  2566. name: "Macro",
  2567. height: math.unit(1, "mile")
  2568. },
  2569. {
  2570. name: "Mega Macro (Small)",
  2571. height: math.unit(20, "km")
  2572. },
  2573. {
  2574. name: "Mega Macro (Large)",
  2575. height: math.unit(600, "km")
  2576. },
  2577. {
  2578. name: "Giga Macro",
  2579. height: math.unit(10000, "km")
  2580. },
  2581. {
  2582. name: "Normal",
  2583. height: math.unit(577560, "km"),
  2584. default: true
  2585. },
  2586. {
  2587. name: "Large",
  2588. height: math.unit(4, "galaxies")
  2589. },
  2590. {
  2591. name: "Largest",
  2592. height: math.unit(15, "multiverses")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(100, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/manny/front.svg",
  2605. extra: 1,
  2606. bottom: 0.06
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(7, "feet"),
  2611. weight: math.unit(100, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/manny/back.svg",
  2615. extra: 1,
  2616. bottom: 0.014
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(7, "feet"),
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(78, "feet"),
  2628. default: true
  2629. },
  2630. {
  2631. name: "Macro+",
  2632. height: math.unit(300, "meters")
  2633. },
  2634. {
  2635. name: "Macro++",
  2636. height: math.unit(2400, "meters")
  2637. },
  2638. {
  2639. name: "Megamacro",
  2640. height: math.unit(5167, "meters")
  2641. },
  2642. {
  2643. name: "Gigamacro",
  2644. height: math.unit(41769, "miles")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(100, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/adake/front-1.svg"
  2657. }
  2658. },
  2659. frontAlt: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front (Alt)",
  2663. image: {
  2664. source: "./media/characters/adake/front-2.svg",
  2665. extra: 1,
  2666. bottom: 0.01
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(7, "feet"),
  2671. weight: math.unit(100, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/adake/back.svg",
  2675. }
  2676. },
  2677. kneel: {
  2678. height: math.unit(5.385, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Kneeling",
  2681. image: {
  2682. source: "./media/characters/adake/kneel.svg",
  2683. bottom: 0.052
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(7, "feet"),
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(78, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Macro+",
  2699. height: math.unit(300, "meters")
  2700. },
  2701. {
  2702. name: "Macro++",
  2703. height: math.unit(2400, "meters")
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(5167, "meters")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(41769, "miles")
  2712. },
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2717. {
  2718. front: {
  2719. height: math.unit(1.65, "meters"),
  2720. weight: math.unit(50, "kg"),
  2721. name: "Front",
  2722. image: {
  2723. source: "./media/characters/elijah/front.svg",
  2724. extra: 858 / 830,
  2725. bottom: 95.5 / 953.8559
  2726. }
  2727. },
  2728. back: {
  2729. height: math.unit(1.65, "meters"),
  2730. weight: math.unit(50, "kg"),
  2731. name: "Back",
  2732. image: {
  2733. source: "./media/characters/elijah/back.svg",
  2734. extra: 895 / 850,
  2735. bottom: 5.3 / 897.956
  2736. }
  2737. },
  2738. frontNsfw: {
  2739. height: math.unit(1.65, "meters"),
  2740. weight: math.unit(50, "kg"),
  2741. name: "Front (NSFW)",
  2742. image: {
  2743. source: "./media/characters/elijah/front-nsfw.svg",
  2744. extra: 858 / 830,
  2745. bottom: 95.5 / 953.8559
  2746. }
  2747. },
  2748. backNsfw: {
  2749. height: math.unit(1.65, "meters"),
  2750. weight: math.unit(50, "kg"),
  2751. name: "Back (NSFW)",
  2752. image: {
  2753. source: "./media/characters/elijah/back-nsfw.svg",
  2754. extra: 895 / 850,
  2755. bottom: 5.3 / 897.956
  2756. }
  2757. },
  2758. dick: {
  2759. height: math.unit(1, "feet"),
  2760. name: "Dick",
  2761. image: {
  2762. source: "./media/characters/elijah/dick.svg"
  2763. }
  2764. },
  2765. beakOpen: {
  2766. height: math.unit(1.25, "feet"),
  2767. name: "Beak (Open)",
  2768. image: {
  2769. source: "./media/characters/elijah/beak-open.svg"
  2770. }
  2771. },
  2772. beakShut: {
  2773. height: math.unit(1.25, "feet"),
  2774. name: "Beak (Shut)",
  2775. image: {
  2776. source: "./media/characters/elijah/beak-shut.svg"
  2777. }
  2778. },
  2779. footFlexing: {
  2780. height: math.unit(1.61, "feet"),
  2781. name: "Foot (Flexing)",
  2782. image: {
  2783. source: "./media/characters/elijah/foot-flexing.svg"
  2784. }
  2785. },
  2786. footStepping: {
  2787. height: math.unit(1.44, "feet"),
  2788. name: "Foot (Stepping)",
  2789. image: {
  2790. source: "./media/characters/elijah/foot-stepping.svg"
  2791. }
  2792. },
  2793. plantigradeLeg: {
  2794. height: math.unit(2.34, "feet"),
  2795. name: "Plantigrade Leg",
  2796. image: {
  2797. source: "./media/characters/elijah/plantigrade-leg.svg"
  2798. }
  2799. },
  2800. plantigradeFootLeft: {
  2801. height: math.unit(0.9, "feet"),
  2802. name: "Plantigrade Foot (Left)",
  2803. image: {
  2804. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2805. }
  2806. },
  2807. plantigradeFootRight: {
  2808. height: math.unit(0.9, "feet"),
  2809. name: "Plantigrade Foot (Right)",
  2810. image: {
  2811. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(1.65, "meters")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(55, "meters"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro+",
  2827. height: math.unit(105, "meters")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7 + 2/12, "feet"),
  2836. weight: math.unit(320, "kg"),
  2837. preyCapacity: math.unit(0.276549935, "people"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/rai/front.svg",
  2841. extra: 1802/1696,
  2842. bottom: 68/1870
  2843. },
  2844. form: "anthro",
  2845. default: true
  2846. },
  2847. frontDressed: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. preyCapacity: math.unit(0.276549935, "people"),
  2851. name: "Front (Dressed)",
  2852. image: {
  2853. source: "./media/characters/rai/front-dressed.svg",
  2854. extra: 1802/1696,
  2855. bottom: 68/1870
  2856. },
  2857. form: "anthro"
  2858. },
  2859. side: {
  2860. height: math.unit(7 + 2/12, "feet"),
  2861. weight: math.unit(320, "kg"),
  2862. preyCapacity: math.unit(0.276549935, "people"),
  2863. name: "Side",
  2864. image: {
  2865. source: "./media/characters/rai/side.svg",
  2866. extra: 1789/1710,
  2867. bottom: 115/1904
  2868. },
  2869. form: "anthro"
  2870. },
  2871. back: {
  2872. height: math.unit(7 + 2/12, "feet"),
  2873. weight: math.unit(320, "kg"),
  2874. preyCapacity: math.unit(0.276549935, "people"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/rai/back.svg",
  2878. extra: 1770/1707,
  2879. bottom: 28/1798
  2880. },
  2881. form: "anthro"
  2882. },
  2883. feral: {
  2884. height: math.unit(9.5, "feet"),
  2885. weight: math.unit(640, "kg"),
  2886. preyCapacity: math.unit(4, "people"),
  2887. name: "Feral",
  2888. image: {
  2889. source: "./media/characters/rai/feral.svg",
  2890. extra: 945/553,
  2891. bottom: 176/1121
  2892. },
  2893. form: "feral",
  2894. default: true
  2895. },
  2896. dragon: {
  2897. height: math.unit(23, "feet"),
  2898. weight: math.unit(50000, "lb"),
  2899. name: "Dragon",
  2900. image: {
  2901. source: "./media/characters/rai/dragon.svg",
  2902. extra: 2498 / 2030,
  2903. bottom: 85.2 / 2584
  2904. },
  2905. form: "dragon",
  2906. default: true
  2907. },
  2908. maw: {
  2909. height: math.unit(1.69, "feet"),
  2910. name: "Maw",
  2911. image: {
  2912. source: "./media/characters/rai/maw.svg"
  2913. },
  2914. form: "anthro"
  2915. },
  2916. },
  2917. [
  2918. {
  2919. name: "Normal",
  2920. height: math.unit(7 + 2/12, "feet"),
  2921. form: "anthro"
  2922. },
  2923. {
  2924. name: "Big",
  2925. height: math.unit(11, "feet"),
  2926. form: "anthro"
  2927. },
  2928. {
  2929. name: "Minimacro",
  2930. height: math.unit(77, "feet"),
  2931. form: "anthro"
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(302, "feet"),
  2936. default: true,
  2937. form: "anthro"
  2938. },
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(9.5, "feet"),
  2942. form: "feral",
  2943. default: true
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(23, "feet"),
  2948. form: "dragon",
  2949. default: true
  2950. }
  2951. ],
  2952. {
  2953. "anthro": {
  2954. name: "Anthro",
  2955. default: true
  2956. },
  2957. "feral": {
  2958. name: "Feral",
  2959. },
  2960. "dragon": {
  2961. name: "Dragon",
  2962. },
  2963. }
  2964. ))
  2965. characterMakers.push(() => makeCharacter(
  2966. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2967. {
  2968. frontDressed: {
  2969. height: math.unit(216, "feet"),
  2970. weight: math.unit(7000000, "lb"),
  2971. preyCapacity: math.unit(1321, "people"),
  2972. name: "Front (Dressed)",
  2973. image: {
  2974. source: "./media/characters/jazzy/front-dressed.svg",
  2975. extra: 2738 / 2651,
  2976. bottom: 41.8 / 2786
  2977. }
  2978. },
  2979. backDressed: {
  2980. height: math.unit(216, "feet"),
  2981. weight: math.unit(7000000, "lb"),
  2982. preyCapacity: math.unit(1321, "people"),
  2983. name: "Back (Dressed)",
  2984. image: {
  2985. source: "./media/characters/jazzy/back-dressed.svg",
  2986. extra: 2775 / 2673,
  2987. bottom: 36.8 / 2817
  2988. }
  2989. },
  2990. front: {
  2991. height: math.unit(216, "feet"),
  2992. weight: math.unit(7000000, "lb"),
  2993. preyCapacity: math.unit(1321, "people"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/jazzy/front.svg",
  2997. extra: 2738 / 2651,
  2998. bottom: 41.8 / 2786
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(216, "feet"),
  3003. weight: math.unit(7000000, "lb"),
  3004. preyCapacity: math.unit(1321, "people"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/jazzy/back.svg",
  3008. extra: 2775 / 2673,
  3009. bottom: 36.8 / 2817
  3010. }
  3011. },
  3012. maw: {
  3013. height: math.unit(20, "feet"),
  3014. name: "Maw",
  3015. image: {
  3016. source: "./media/characters/jazzy/maw.svg"
  3017. }
  3018. },
  3019. paws: {
  3020. height: math.unit(27.5, "feet"),
  3021. name: "Paws",
  3022. image: {
  3023. source: "./media/characters/jazzy/paws.svg"
  3024. }
  3025. },
  3026. eye: {
  3027. height: math.unit(4.4, "feet"),
  3028. name: "Eye",
  3029. image: {
  3030. source: "./media/characters/jazzy/eye.svg"
  3031. }
  3032. },
  3033. droneOffense: {
  3034. height: math.unit(9.5, "inches"),
  3035. name: "Drone (Offense)",
  3036. image: {
  3037. source: "./media/characters/jazzy/drone-offense.svg"
  3038. }
  3039. },
  3040. droneRecon: {
  3041. height: math.unit(9.5, "inches"),
  3042. name: "Drone (Recon)",
  3043. image: {
  3044. source: "./media/characters/jazzy/drone-recon.svg"
  3045. }
  3046. },
  3047. droneDefense: {
  3048. height: math.unit(9.5, "inches"),
  3049. name: "Drone (Defense)",
  3050. image: {
  3051. source: "./media/characters/jazzy/drone-defense.svg"
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(216, "feet"),
  3059. default: true
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(9 + 6/12, "feet"),
  3068. weight: math.unit(700, "lb"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/flamm/front.svg",
  3072. extra: 1751/1632,
  3073. bottom: 46/1797
  3074. }
  3075. },
  3076. buff: {
  3077. height: math.unit(9 + 6/12, "feet"),
  3078. weight: math.unit(950, "lb"),
  3079. name: "Buff",
  3080. image: {
  3081. source: "./media/characters/flamm/buff.svg",
  3082. extra: 3018/2874,
  3083. bottom: 221/3239
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(9.5, "feet")
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(200, "feet"),
  3095. default: true
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(5 + 3/12, "feet"),
  3104. weight: math.unit(60, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/zephiro/front.svg",
  3108. extra: 1873/1761,
  3109. bottom: 147/2020
  3110. }
  3111. },
  3112. side: {
  3113. height: math.unit(5 + 3/12, "feet"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Side",
  3116. image: {
  3117. source: "./media/characters/zephiro/side.svg",
  3118. extra: 1929/1827,
  3119. bottom: 65/1994
  3120. }
  3121. },
  3122. back: {
  3123. height: math.unit(5 + 3/12, "feet"),
  3124. weight: math.unit(60, "kg"),
  3125. name: "Back",
  3126. image: {
  3127. source: "./media/characters/zephiro/back.svg",
  3128. extra: 1926/1816,
  3129. bottom: 41/1967
  3130. }
  3131. },
  3132. hand: {
  3133. height: math.unit(0.68, "feet"),
  3134. name: "Hand",
  3135. image: {
  3136. source: "./media/characters/zephiro/hand.svg"
  3137. }
  3138. },
  3139. paw: {
  3140. height: math.unit(1, "feet"),
  3141. name: "Paw",
  3142. image: {
  3143. source: "./media/characters/zephiro/paw.svg"
  3144. }
  3145. },
  3146. beans: {
  3147. height: math.unit(0.93, "feet"),
  3148. name: "Beans",
  3149. image: {
  3150. source: "./media/characters/zephiro/beans.svg"
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Micro",
  3157. height: math.unit(3, "inches")
  3158. },
  3159. {
  3160. name: "Normal",
  3161. height: math.unit(5 + 3 / 12, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(118, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(5, "feet"),
  3175. weight: math.unit(90, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/fory/front.svg",
  3179. extra: 2862 / 2674,
  3180. bottom: 180 / 3043.8
  3181. },
  3182. form: "weaselbun",
  3183. default: true,
  3184. extraAttributes: {
  3185. "pawSize": {
  3186. name: "Paw Size",
  3187. power: 2,
  3188. type: "area",
  3189. base: math.unit(0.1596, "m^2")
  3190. },
  3191. "pawLength": {
  3192. name: "Paw Length",
  3193. power: 1,
  3194. type: "length",
  3195. base: math.unit(0.7, "m")
  3196. }
  3197. }
  3198. },
  3199. back: {
  3200. height: math.unit(5, "feet"),
  3201. weight: math.unit(90, "kg"),
  3202. name: "Back",
  3203. image: {
  3204. source: "./media/characters/fory/back.svg",
  3205. extra: 1790/1672,
  3206. bottom: 84/1874
  3207. },
  3208. form: "weaselbun",
  3209. extraAttributes: {
  3210. "pawSize": {
  3211. name: "Paw Size",
  3212. power: 2,
  3213. type: "area",
  3214. base: math.unit(0.1596, "m^2")
  3215. },
  3216. "pawLength": {
  3217. name: "Paw Length",
  3218. power: 1,
  3219. type: "length",
  3220. base: math.unit(0.7, "m")
  3221. }
  3222. }
  3223. },
  3224. paw: {
  3225. height: math.unit(2.14, "feet"),
  3226. name: "Paw",
  3227. image: {
  3228. source: "./media/characters/fory/paw.svg"
  3229. },
  3230. form: "weaselbun",
  3231. extraAttributes: {
  3232. "pawSize": {
  3233. name: "Paw Size",
  3234. power: 2,
  3235. type: "area",
  3236. base: math.unit(0.1596, "m^2")
  3237. },
  3238. "pawLength": {
  3239. name: "Paw Length",
  3240. power: 1,
  3241. type: "length",
  3242. base: math.unit(0.48, "m")
  3243. }
  3244. }
  3245. },
  3246. bunBack: {
  3247. height: math.unit(3, "feet"),
  3248. weight: math.unit(20, "kg"),
  3249. name: "Back",
  3250. image: {
  3251. source: "./media/characters/fory/bun-back.svg",
  3252. extra: 1749/1564,
  3253. bottom: 246/1995
  3254. },
  3255. form: "bun",
  3256. default: true,
  3257. extraAttributes: {
  3258. "pawSize": {
  3259. name: "Paw Size",
  3260. power: 2,
  3261. type: "area",
  3262. base: math.unit(0.072, "m^2")
  3263. },
  3264. "pawLength": {
  3265. name: "Paw Length",
  3266. power: 1,
  3267. type: "length",
  3268. base: math.unit(0.7, "m")
  3269. }
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(5, "feet"),
  3277. form: "weaselbun"
  3278. },
  3279. {
  3280. name: "Macro",
  3281. height: math.unit(50, "feet"),
  3282. default: true,
  3283. form: "weaselbun"
  3284. },
  3285. {
  3286. name: "Megamacro",
  3287. height: math.unit(10, "miles"),
  3288. form: "weaselbun"
  3289. },
  3290. {
  3291. name: "Gigamacro",
  3292. height: math.unit(5, "earths"),
  3293. form: "weaselbun"
  3294. },
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(3, "feet"),
  3298. default: true,
  3299. form: "bun"
  3300. },
  3301. {
  3302. name: "Fun-Size",
  3303. height: math.unit(12, "feet"),
  3304. form: "bun"
  3305. },
  3306. {
  3307. name: "Macro",
  3308. height: math.unit(100, "feet"),
  3309. form: "bun"
  3310. },
  3311. {
  3312. name: "Planetary",
  3313. height: math.unit(3, "earths"),
  3314. form: "bun"
  3315. },
  3316. ],
  3317. {
  3318. "weaselbun": {
  3319. name: "Weaselbun",
  3320. default: true
  3321. },
  3322. "bun": {
  3323. name: "Bun",
  3324. },
  3325. }
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(7, "feet"),
  3332. weight: math.unit(90, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/kurrikage/front.svg",
  3336. extra: 1845/1733,
  3337. bottom: 119/1964
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(7, "feet"),
  3342. weight: math.unit(90, "kg"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/kurrikage/back.svg",
  3346. extra: 1790/1677,
  3347. bottom: 61/1851
  3348. }
  3349. },
  3350. dressed: {
  3351. height: math.unit(7, "feet"),
  3352. weight: math.unit(90, "kg"),
  3353. name: "Dressed",
  3354. image: {
  3355. source: "./media/characters/kurrikage/dressed.svg",
  3356. extra: 1845/1733,
  3357. bottom: 119/1964
  3358. }
  3359. },
  3360. foot: {
  3361. height: math.unit(1.5, "feet"),
  3362. name: "Foot",
  3363. image: {
  3364. source: "./media/characters/kurrikage/foot.svg"
  3365. }
  3366. },
  3367. staff: {
  3368. height: math.unit(6.7, "feet"),
  3369. name: "Staff",
  3370. image: {
  3371. source: "./media/characters/kurrikage/staff.svg"
  3372. }
  3373. },
  3374. peek: {
  3375. height: math.unit(1.05, "feet"),
  3376. name: "Peeking",
  3377. image: {
  3378. source: "./media/characters/kurrikage/peek.svg",
  3379. bottom: 0.08
  3380. }
  3381. },
  3382. },
  3383. [
  3384. {
  3385. name: "Normal",
  3386. height: math.unit(12, "feet"),
  3387. default: true
  3388. },
  3389. {
  3390. name: "Big",
  3391. height: math.unit(20, "feet")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(500, "feet")
  3396. },
  3397. {
  3398. name: "Megamacro",
  3399. height: math.unit(20, "miles")
  3400. },
  3401. ]
  3402. ))
  3403. characterMakers.push(() => makeCharacter(
  3404. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3405. {
  3406. front: {
  3407. height: math.unit(6, "feet"),
  3408. weight: math.unit(75, "kg"),
  3409. name: "Front",
  3410. image: {
  3411. source: "./media/characters/shingo/front.svg",
  3412. extra: 1900/1825,
  3413. bottom: 82/1982
  3414. }
  3415. },
  3416. side: {
  3417. height: math.unit(6, "feet"),
  3418. weight: math.unit(75, "kg"),
  3419. name: "Side",
  3420. image: {
  3421. source: "./media/characters/shingo/side.svg",
  3422. extra: 1930/1865,
  3423. bottom: 16/1946
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(6, "feet"),
  3428. weight: math.unit(75, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/shingo/back.svg",
  3432. extra: 1922/1852,
  3433. bottom: 16/1938
  3434. }
  3435. },
  3436. frontDressed: {
  3437. height: math.unit(6, "feet"),
  3438. weight: math.unit(150, "lb"),
  3439. name: "Front-dressed",
  3440. image: {
  3441. source: "./media/characters/shingo/front-dressed.svg",
  3442. extra: 1900/1825,
  3443. bottom: 82/1982
  3444. }
  3445. },
  3446. paw: {
  3447. height: math.unit(1.29, "feet"),
  3448. name: "Paw",
  3449. image: {
  3450. source: "./media/characters/shingo/paw.svg"
  3451. }
  3452. },
  3453. hand: {
  3454. height: math.unit(1.07, "feet"),
  3455. name: "Hand",
  3456. image: {
  3457. source: "./media/characters/shingo/hand.svg"
  3458. }
  3459. },
  3460. frontAlt: {
  3461. height: math.unit(6, "feet"),
  3462. weight: math.unit(75, "kg"),
  3463. name: "Front (Alt)",
  3464. image: {
  3465. source: "./media/characters/shingo/front-alt.svg",
  3466. extra: 3511 / 3338,
  3467. bottom: 0.005
  3468. }
  3469. },
  3470. frontAlt2: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(75, "kg"),
  3473. name: "Front (Alt 2)",
  3474. image: {
  3475. source: "./media/characters/shingo/front-alt-2.svg",
  3476. extra: 706/681,
  3477. bottom: 11/717
  3478. }
  3479. },
  3480. pawAlt: {
  3481. height: math.unit(1, "feet"),
  3482. name: "Paw (Alt)",
  3483. image: {
  3484. source: "./media/characters/shingo/paw-alt.svg"
  3485. }
  3486. },
  3487. },
  3488. [
  3489. {
  3490. name: "Micro",
  3491. height: math.unit(4, "inches")
  3492. },
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(6, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(108, "feet")
  3501. },
  3502. {
  3503. name: "Macro+",
  3504. height: math.unit(1500, "feet")
  3505. },
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3510. {
  3511. side: {
  3512. height: math.unit(6, "feet"),
  3513. weight: math.unit(75, "kg"),
  3514. name: "Side",
  3515. image: {
  3516. source: "./media/characters/aigey/side.svg"
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(200, "feet"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Megamacro",
  3528. height: math.unit(100, "miles")
  3529. },
  3530. ]
  3531. )
  3532. )
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(5 + 5 / 12, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/natasha/front.svg",
  3542. extra: 859 / 824,
  3543. bottom: 23 / 879.6
  3544. }
  3545. },
  3546. frontNsfw: {
  3547. height: math.unit(5 + 5 / 12, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (NSFW)",
  3550. image: {
  3551. source: "./media/characters/natasha/front-nsfw.svg",
  3552. extra: 859 / 824,
  3553. bottom: 23 / 879.6
  3554. }
  3555. },
  3556. frontErect: {
  3557. height: math.unit(5 + 5 / 12, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Front (Erect)",
  3560. image: {
  3561. source: "./media/characters/natasha/front-erect.svg",
  3562. extra: 859 / 824,
  3563. bottom: 23 / 879.6
  3564. }
  3565. },
  3566. back: {
  3567. height: math.unit(5 + 5 / 12, "feet"),
  3568. weight: math.unit(75, "kg"),
  3569. name: "Back",
  3570. image: {
  3571. source: "./media/characters/natasha/back.svg",
  3572. extra: 887.9 / 852.6,
  3573. bottom: 9.7 / 896.4
  3574. }
  3575. },
  3576. backAlt: {
  3577. height: math.unit(5 + 5 / 12, "feet"),
  3578. weight: math.unit(75, "kg"),
  3579. name: "Back (Alt)",
  3580. image: {
  3581. source: "./media/characters/natasha/back-alt.svg",
  3582. extra: 1236.7 / 1192,
  3583. bottom: 22.3 / 1258.2
  3584. }
  3585. },
  3586. dick: {
  3587. height: math.unit(1.772, "feet"),
  3588. name: "Dick",
  3589. image: {
  3590. source: "./media/characters/natasha/dick.svg"
  3591. }
  3592. },
  3593. paw: {
  3594. height: math.unit(0.250, "meters"),
  3595. name: "Paw",
  3596. image: {
  3597. source: "./media/characters/natasha/paw.svg"
  3598. },
  3599. extraAttributes: {
  3600. "toeSize": {
  3601. name: "Toe Size",
  3602. power: 2,
  3603. type: "area",
  3604. base: math.unit(0.0024, "m^2")
  3605. },
  3606. "padSize": {
  3607. name: "Pad Size",
  3608. power: 2,
  3609. type: "area",
  3610. base: math.unit(0.00889, "m^2")
  3611. },
  3612. "pawSize": {
  3613. name: "Paw Size",
  3614. power: 2,
  3615. type: "area",
  3616. base: math.unit(0.023667, "m^2")
  3617. },
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Shortstack",
  3624. height: math.unit(3, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(5 + 5 / 12, "feet")
  3630. },
  3631. {
  3632. name: "Large",
  3633. height: math.unit(12, "feet")
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(100, "feet")
  3638. },
  3639. {
  3640. name: "Macro+",
  3641. height: math.unit(260, "feet")
  3642. },
  3643. {
  3644. name: "Macro++",
  3645. height: math.unit(1, "mile")
  3646. },
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3651. {
  3652. front: {
  3653. height: math.unit(6, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Front",
  3656. image: {
  3657. source: "./media/characters/malik/front.svg",
  3658. extra: 1750/1561,
  3659. bottom: 80/1830
  3660. },
  3661. extraAttributes: {
  3662. "toeSize": {
  3663. name: "Toe Size",
  3664. power: 2,
  3665. type: "area",
  3666. base: math.unit(0.0159, "m^2")
  3667. },
  3668. "pawSize": {
  3669. name: "Paw Size",
  3670. power: 2,
  3671. type: "area",
  3672. base: math.unit(0.09834, "m^2")
  3673. },
  3674. }
  3675. },
  3676. side: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(75, "kg"),
  3679. name: "Side",
  3680. image: {
  3681. source: "./media/characters/malik/side.svg",
  3682. extra: 1802/1685,
  3683. bottom: 42/1844
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0159, "m^2")
  3691. },
  3692. "pawSize": {
  3693. name: "Paw Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.09834, "m^2")
  3697. },
  3698. }
  3699. },
  3700. back: {
  3701. height: math.unit(6, "feet"),
  3702. weight: math.unit(75, "kg"),
  3703. name: "Back",
  3704. image: {
  3705. source: "./media/characters/malik/back.svg",
  3706. extra: 1803/1607,
  3707. bottom: 33/1836
  3708. },
  3709. extraAttributes: {
  3710. "toeSize": {
  3711. name: "Toe Size",
  3712. power: 2,
  3713. type: "area",
  3714. base: math.unit(0.0159, "m^2")
  3715. },
  3716. "pawSize": {
  3717. name: "Paw Size",
  3718. power: 2,
  3719. type: "area",
  3720. base: math.unit(0.09834, "m^2")
  3721. },
  3722. }
  3723. },
  3724. },
  3725. [
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(156, "feet"),
  3729. default: true
  3730. },
  3731. {
  3732. name: "Macro+",
  3733. height: math.unit(1188, "feet")
  3734. },
  3735. ]
  3736. ))
  3737. characterMakers.push(() => makeCharacter(
  3738. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3739. {
  3740. front: {
  3741. height: math.unit(6, "feet"),
  3742. weight: math.unit(75, "kg"),
  3743. name: "Front",
  3744. image: {
  3745. source: "./media/characters/sefer/front.svg",
  3746. extra: 848 / 659,
  3747. bottom: 28.3 / 876.442
  3748. }
  3749. },
  3750. back: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(75, "kg"),
  3753. name: "Back",
  3754. image: {
  3755. source: "./media/characters/sefer/back.svg",
  3756. extra: 864 / 695,
  3757. bottom: 10 / 871
  3758. }
  3759. },
  3760. frontDressed: {
  3761. height: math.unit(6, "feet"),
  3762. weight: math.unit(75, "kg"),
  3763. name: "Dressed",
  3764. image: {
  3765. source: "./media/characters/sefer/dressed.svg",
  3766. extra: 839 / 653,
  3767. bottom: 37.6 / 878
  3768. }
  3769. },
  3770. },
  3771. [
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(6, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Big",
  3779. height: math.unit(8, "meters")
  3780. },
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3785. {
  3786. body: {
  3787. height: math.unit(2.2428, "meter"),
  3788. weight: math.unit(124.738, "kg"),
  3789. name: "Body",
  3790. image: {
  3791. extra: 1225 / 1050,
  3792. source: "./media/characters/north/front.svg"
  3793. }
  3794. }
  3795. },
  3796. [
  3797. {
  3798. name: "Micro",
  3799. height: math.unit(4, "inches")
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(63, "meters")
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(101, "miles"),
  3808. default: true
  3809. }
  3810. ]
  3811. ))
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3814. {
  3815. angled: {
  3816. height: math.unit(4, "meter"),
  3817. weight: math.unit(150, "kg"),
  3818. name: "Angled",
  3819. image: {
  3820. source: "./media/characters/talan/angled-sfw.svg",
  3821. bottom: 29 / 3734
  3822. }
  3823. },
  3824. angledNsfw: {
  3825. height: math.unit(4, "meter"),
  3826. weight: math.unit(150, "kg"),
  3827. name: "Angled (NSFW)",
  3828. image: {
  3829. source: "./media/characters/talan/angled-nsfw.svg",
  3830. bottom: 29 / 3734
  3831. }
  3832. },
  3833. frontNsfw: {
  3834. height: math.unit(4, "meter"),
  3835. weight: math.unit(150, "kg"),
  3836. name: "Front (NSFW)",
  3837. image: {
  3838. source: "./media/characters/talan/front-nsfw.svg",
  3839. bottom: 29 / 3734
  3840. }
  3841. },
  3842. sideNsfw: {
  3843. height: math.unit(4, "meter"),
  3844. weight: math.unit(150, "kg"),
  3845. name: "Side (NSFW)",
  3846. image: {
  3847. source: "./media/characters/talan/side-nsfw.svg",
  3848. bottom: 29 / 3734
  3849. }
  3850. },
  3851. back: {
  3852. height: math.unit(4, "meter"),
  3853. weight: math.unit(150, "kg"),
  3854. name: "Back",
  3855. image: {
  3856. source: "./media/characters/talan/back.svg"
  3857. }
  3858. },
  3859. dickBottom: {
  3860. height: math.unit(0.621, "meter"),
  3861. name: "Dick (Bottom)",
  3862. image: {
  3863. source: "./media/characters/talan/dick-bottom.svg"
  3864. }
  3865. },
  3866. dickTop: {
  3867. height: math.unit(0.621, "meter"),
  3868. name: "Dick (Top)",
  3869. image: {
  3870. source: "./media/characters/talan/dick-top.svg"
  3871. }
  3872. },
  3873. dickSide: {
  3874. height: math.unit(0.305, "meter"),
  3875. name: "Dick (Side)",
  3876. image: {
  3877. source: "./media/characters/talan/dick-side.svg"
  3878. }
  3879. },
  3880. dickFront: {
  3881. height: math.unit(0.305, "meter"),
  3882. name: "Dick (Front)",
  3883. image: {
  3884. source: "./media/characters/talan/dick-front.svg"
  3885. }
  3886. },
  3887. },
  3888. [
  3889. {
  3890. name: "Normal",
  3891. height: math.unit(4, "meters")
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(100, "meters")
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(2, "miles"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Gigamacro",
  3904. height: math.unit(5000, "miles")
  3905. },
  3906. {
  3907. name: "Teramacro",
  3908. height: math.unit(100, "parsecs")
  3909. }
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(90, "kg"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/gael'rathus/front.svg"
  3921. }
  3922. },
  3923. frontAlt: {
  3924. height: math.unit(2, "meter"),
  3925. weight: math.unit(90, "kg"),
  3926. name: "Front (alt)",
  3927. image: {
  3928. source: "./media/characters/gael'rathus/front-alt.svg"
  3929. }
  3930. },
  3931. frontAlt2: {
  3932. height: math.unit(2, "meter"),
  3933. weight: math.unit(90, "kg"),
  3934. name: "Front (alt 2)",
  3935. image: {
  3936. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3937. }
  3938. }
  3939. },
  3940. [
  3941. {
  3942. name: "Normal",
  3943. height: math.unit(9, "feet"),
  3944. default: true
  3945. },
  3946. {
  3947. name: "Large",
  3948. height: math.unit(25, "feet")
  3949. },
  3950. {
  3951. name: "Macro",
  3952. height: math.unit(0.25, "miles")
  3953. },
  3954. {
  3955. name: "Megamacro",
  3956. height: math.unit(10, "miles")
  3957. }
  3958. ]
  3959. ))
  3960. characterMakers.push(() => makeCharacter(
  3961. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3962. {
  3963. side: {
  3964. height: math.unit(2, "meter"),
  3965. weight: math.unit(140, "kg"),
  3966. name: "Side",
  3967. image: {
  3968. source: "./media/characters/sosha/side.svg",
  3969. extra: 1170/1006,
  3970. bottom: 94/1264
  3971. }
  3972. },
  3973. maw: {
  3974. height: math.unit(2.87, "feet"),
  3975. name: "Maw",
  3976. image: {
  3977. source: "./media/characters/sosha/maw.svg",
  3978. extra: 966/865,
  3979. bottom: 0/966
  3980. }
  3981. },
  3982. cooch: {
  3983. height: math.unit(5.6, "feet"),
  3984. name: "Cooch",
  3985. image: {
  3986. source: "./media/characters/sosha/cooch.svg"
  3987. }
  3988. },
  3989. },
  3990. [
  3991. {
  3992. name: "Normal",
  3993. height: math.unit(12, "feet"),
  3994. default: true
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4000. {
  4001. side: {
  4002. height: math.unit(5 + 5 / 12, "feet"),
  4003. weight: math.unit(170, "kg"),
  4004. name: "Side",
  4005. image: {
  4006. source: "./media/characters/runnola/side.svg",
  4007. extra: 741 / 448,
  4008. bottom: 0.05
  4009. }
  4010. },
  4011. },
  4012. [
  4013. {
  4014. name: "Small",
  4015. height: math.unit(3, "feet")
  4016. },
  4017. {
  4018. name: "Normal",
  4019. height: math.unit(5 + 5 / 12, "feet"),
  4020. default: true
  4021. },
  4022. {
  4023. name: "Big",
  4024. height: math.unit(10, "feet")
  4025. },
  4026. ]
  4027. ))
  4028. characterMakers.push(() => makeCharacter(
  4029. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4030. {
  4031. front: {
  4032. height: math.unit(2, "meter"),
  4033. weight: math.unit(50, "kg"),
  4034. name: "Front",
  4035. image: {
  4036. source: "./media/characters/kurribird/front.svg",
  4037. bottom: 0.015
  4038. }
  4039. },
  4040. frontAlt: {
  4041. height: math.unit(1.5, "meter"),
  4042. weight: math.unit(50, "kg"),
  4043. name: "Front (Alt)",
  4044. image: {
  4045. source: "./media/characters/kurribird/front-alt.svg",
  4046. extra: 1.45
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(7, "feet")
  4054. },
  4055. {
  4056. name: "Big",
  4057. height: math.unit(12, "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Macro",
  4062. height: math.unit(1500, "feet")
  4063. },
  4064. {
  4065. name: "Megamacro",
  4066. height: math.unit(2, "miles")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(2, "meter"),
  4075. weight: math.unit(80, "kg"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/elbial/front.svg",
  4079. extra: 1643 / 1556,
  4080. bottom: 60.2 / 1696
  4081. }
  4082. },
  4083. side: {
  4084. height: math.unit(2, "meter"),
  4085. weight: math.unit(80, "kg"),
  4086. name: "Side",
  4087. image: {
  4088. source: "./media/characters/elbial/side.svg",
  4089. extra: 1601/1528,
  4090. bottom: 97/1698
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(2, "meter"),
  4095. weight: math.unit(80, "kg"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/elbial/back.svg",
  4099. extra: 1653/1569,
  4100. bottom: 20/1673
  4101. }
  4102. },
  4103. frontDressed: {
  4104. height: math.unit(2, "meter"),
  4105. weight: math.unit(80, "kg"),
  4106. name: "Front (Dressed)",
  4107. image: {
  4108. source: "./media/characters/elbial/front-dressed.svg",
  4109. extra: 1638/1569,
  4110. bottom: 70/1708
  4111. }
  4112. },
  4113. genitals: {
  4114. height: math.unit(2 / 3.367, "meter"),
  4115. name: "Genitals",
  4116. image: {
  4117. source: "./media/characters/elbial/genitals.svg"
  4118. }
  4119. },
  4120. },
  4121. [
  4122. {
  4123. name: "Large",
  4124. height: math.unit(100, "feet")
  4125. },
  4126. {
  4127. name: "Macro",
  4128. height: math.unit(500, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Megamacro",
  4133. height: math.unit(10, "miles")
  4134. },
  4135. {
  4136. name: "Gigamacro",
  4137. height: math.unit(25000, "miles")
  4138. },
  4139. {
  4140. name: "Full-Size",
  4141. height: math.unit(8000000, "gigaparsecs")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(60, "kg"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/noah/front.svg"
  4154. }
  4155. },
  4156. talons: {
  4157. height: math.unit(0.315, "meter"),
  4158. name: "Talons",
  4159. image: {
  4160. source: "./media/characters/noah/talons.svg"
  4161. }
  4162. }
  4163. },
  4164. [
  4165. {
  4166. name: "Large",
  4167. height: math.unit(50, "feet")
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(750, "feet"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "Megamacro",
  4176. height: math.unit(50, "miles")
  4177. },
  4178. {
  4179. name: "Gigamacro",
  4180. height: math.unit(100000, "miles")
  4181. },
  4182. {
  4183. name: "Full-Size",
  4184. height: math.unit(3000000000, "miles")
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(2, "meter"),
  4193. weight: math.unit(80, "kg"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/natalya/front.svg"
  4197. }
  4198. },
  4199. back: {
  4200. height: math.unit(2, "meter"),
  4201. weight: math.unit(80, "kg"),
  4202. name: "Back",
  4203. image: {
  4204. source: "./media/characters/natalya/back.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(150, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Megamacro",
  4216. height: math.unit(5, "miles")
  4217. },
  4218. {
  4219. name: "Full-Size",
  4220. height: math.unit(600, "kiloparsecs")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(2, "meter"),
  4229. weight: math.unit(50, "kg"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/erestrebah/front.svg",
  4233. extra: 1262/1162,
  4234. bottom: 96/1358
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(50, "kg"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/erestrebah/back.svg",
  4243. extra: 1257/1139,
  4244. bottom: 13/1270
  4245. }
  4246. },
  4247. wing: {
  4248. height: math.unit(2, "meter"),
  4249. weight: math.unit(50, "kg"),
  4250. name: "Wing",
  4251. image: {
  4252. source: "./media/characters/erestrebah/wing.svg",
  4253. extra: 1262/1162,
  4254. bottom: 96/1358
  4255. }
  4256. },
  4257. mouth: {
  4258. height: math.unit(0.39, "feet"),
  4259. name: "Mouth",
  4260. image: {
  4261. source: "./media/characters/erestrebah/mouth.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Normal",
  4268. height: math.unit(10, "feet")
  4269. },
  4270. {
  4271. name: "Large",
  4272. height: math.unit(50, "feet"),
  4273. default: true
  4274. },
  4275. {
  4276. name: "Macro",
  4277. height: math.unit(300, "feet")
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(750, "feet")
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(3, "miles")
  4286. }
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(2, "meter"),
  4294. weight: math.unit(80, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/jennifer/front.svg",
  4298. bottom: 0.11,
  4299. extra: 1.16
  4300. }
  4301. },
  4302. frontAlt: {
  4303. height: math.unit(2, "meter"),
  4304. weight: math.unit(80, "kg"),
  4305. name: "Front (Alt)",
  4306. image: {
  4307. source: "./media/characters/jennifer/front-alt.svg"
  4308. }
  4309. }
  4310. },
  4311. [
  4312. {
  4313. name: "Canon Height",
  4314. height: math.unit(120, "feet"),
  4315. default: true
  4316. },
  4317. {
  4318. name: "Macro+",
  4319. height: math.unit(300, "feet")
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(20000, "feet")
  4324. }
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4329. {
  4330. front: {
  4331. height: math.unit(2, "meter"),
  4332. weight: math.unit(50, "kg"),
  4333. name: "Front",
  4334. image: {
  4335. source: "./media/characters/kalista/front.svg",
  4336. extra: 1314/1145,
  4337. bottom: 101/1415
  4338. }
  4339. },
  4340. back: {
  4341. height: math.unit(2, "meter"),
  4342. weight: math.unit(50, "kg"),
  4343. name: "Back",
  4344. image: {
  4345. source: "./media/characters/kalista/back.svg",
  4346. extra: 1366 / 1156,
  4347. bottom: 33.9 / 1362.78
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Uncomfortably Small",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. {
  4357. name: "Small",
  4358. height: math.unit(30, "feet")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(100, "feet"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(2000, "feet")
  4368. },
  4369. {
  4370. name: "True Form",
  4371. height: math.unit(8924, "miles")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(120, "kg"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/ggv/front.svg"
  4384. }
  4385. },
  4386. side: {
  4387. height: math.unit(2, "meter"),
  4388. weight: math.unit(120, "kg"),
  4389. name: "Side",
  4390. image: {
  4391. source: "./media/characters/ggv/side.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Extremely Puny",
  4398. height: math.unit(9 + 5 / 12, "feet")
  4399. },
  4400. {
  4401. name: "Horribly Small",
  4402. height: math.unit(47.7, "miles"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Reasonably Sized",
  4407. height: math.unit(25000, "parsecs")
  4408. },
  4409. {
  4410. name: "Slightly Uncompressed",
  4411. height: math.unit(7.77e31, "parsecs")
  4412. },
  4413. {
  4414. name: "Omniversal",
  4415. height: math.unit(1e300, "meters")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(75, "lb"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/napalm/front.svg"
  4428. }
  4429. },
  4430. back: {
  4431. height: math.unit(2, "meter"),
  4432. weight: math.unit(75, "lb"),
  4433. name: "Back",
  4434. image: {
  4435. source: "./media/characters/napalm/back.svg"
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Standard",
  4442. height: math.unit(55, "feet"),
  4443. default: true
  4444. }
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(7 + 5 / 6, "feet"),
  4452. weight: math.unit(325, "lb"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/asana/front.svg",
  4456. extra: 1133 / 1060,
  4457. bottom: 15.2 / 1148.6
  4458. }
  4459. },
  4460. back: {
  4461. height: math.unit(7 + 5 / 6, "feet"),
  4462. weight: math.unit(325, "lb"),
  4463. name: "Back",
  4464. image: {
  4465. source: "./media/characters/asana/back.svg",
  4466. extra: 1114 / 1043,
  4467. bottom: 5 / 1120
  4468. }
  4469. },
  4470. dressedDark: {
  4471. height: math.unit(7 + 5 / 6, "feet"),
  4472. weight: math.unit(325, "lb"),
  4473. name: "Dressed (Dark)",
  4474. image: {
  4475. source: "./media/characters/asana/dressed-dark.svg",
  4476. extra: 1133 / 1060,
  4477. bottom: 15.2 / 1148.6
  4478. }
  4479. },
  4480. dressedLight: {
  4481. height: math.unit(7 + 5 / 6, "feet"),
  4482. weight: math.unit(325, "lb"),
  4483. name: "Dressed (Light)",
  4484. image: {
  4485. source: "./media/characters/asana/dressed-light.svg",
  4486. extra: 1133 / 1060,
  4487. bottom: 15.2 / 1148.6
  4488. }
  4489. },
  4490. },
  4491. [
  4492. {
  4493. name: "Standard",
  4494. height: math.unit(7 + 5 / 6, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Large",
  4499. height: math.unit(10, "meters")
  4500. },
  4501. {
  4502. name: "Macro",
  4503. height: math.unit(2500, "meters")
  4504. },
  4505. {
  4506. name: "Megamacro",
  4507. height: math.unit(5e6, "meters")
  4508. },
  4509. {
  4510. name: "Examacro",
  4511. height: math.unit(5e12, "lightyears")
  4512. },
  4513. {
  4514. name: "Max Size",
  4515. height: math.unit(1e31, "lightyears")
  4516. }
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(2, "meter"),
  4524. weight: math.unit(60, "kg"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/ebony/front.svg",
  4528. bottom: 0.03,
  4529. extra: 1045 / 810 + 0.03
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(2, "meter"),
  4534. weight: math.unit(60, "kg"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/ebony/side.svg",
  4538. bottom: 0.03,
  4539. extra: 1045 / 810 + 0.03
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(2, "meter"),
  4544. weight: math.unit(60, "kg"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/ebony/back.svg",
  4548. bottom: 0.01,
  4549. extra: 1045 / 810 + 0.01
  4550. }
  4551. },
  4552. },
  4553. [
  4554. // TODO check why I did this lol
  4555. {
  4556. name: "Standard",
  4557. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Macro",
  4562. height: math.unit(200, "feet")
  4563. },
  4564. {
  4565. name: "Gigamacro",
  4566. height: math.unit(13000, "km")
  4567. }
  4568. ]
  4569. ))
  4570. characterMakers.push(() => makeCharacter(
  4571. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4572. {
  4573. front: {
  4574. height: math.unit(6, "feet"),
  4575. weight: math.unit(175, "lb"),
  4576. name: "Front",
  4577. image: {
  4578. source: "./media/characters/mountain/front.svg",
  4579. extra: 972 / 955,
  4580. bottom: 64 / 1036.6
  4581. }
  4582. },
  4583. back: {
  4584. height: math.unit(6, "feet"),
  4585. weight: math.unit(175, "lb"),
  4586. name: "Back",
  4587. image: {
  4588. source: "./media/characters/mountain/back.svg",
  4589. extra: 970 / 950,
  4590. bottom: 28.25 / 999
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Large",
  4597. height: math.unit(20, "meters")
  4598. },
  4599. {
  4600. name: "Macro",
  4601. height: math.unit(300, "meters")
  4602. },
  4603. {
  4604. name: "Gigamacro",
  4605. height: math.unit(10000, "km"),
  4606. default: true
  4607. },
  4608. {
  4609. name: "Examacro",
  4610. height: math.unit(10e9, "lightyears")
  4611. }
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4616. {
  4617. front: {
  4618. height: math.unit(8, "feet"),
  4619. weight: math.unit(500, "lb"),
  4620. name: "Front",
  4621. image: {
  4622. source: "./media/characters/rick/front.svg"
  4623. }
  4624. }
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(8, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Macro",
  4634. height: math.unit(5, "km")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(8, "feet"),
  4643. weight: math.unit(120, "lb"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/ona/front.svg"
  4647. }
  4648. },
  4649. frontAlt: {
  4650. height: math.unit(8, "feet"),
  4651. weight: math.unit(120, "lb"),
  4652. name: "Front (Alt)",
  4653. image: {
  4654. source: "./media/characters/ona/front-alt.svg"
  4655. }
  4656. },
  4657. back: {
  4658. height: math.unit(8, "feet"),
  4659. weight: math.unit(120, "lb"),
  4660. name: "Back",
  4661. image: {
  4662. source: "./media/characters/ona/back.svg"
  4663. }
  4664. },
  4665. foot: {
  4666. height: math.unit(1.1, "feet"),
  4667. name: "Foot",
  4668. image: {
  4669. source: "./media/characters/ona/foot.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(70, "km"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Gigamacro",
  4681. height: math.unit(681818, "miles")
  4682. },
  4683. {
  4684. name: "Examacro",
  4685. height: math.unit(3800000, "lightyears")
  4686. },
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(12, "feet"),
  4694. weight: math.unit(3000, "lb"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/mech/front.svg",
  4698. extra: 2900 / 2770,
  4699. bottom: 110 / 3010
  4700. }
  4701. },
  4702. back: {
  4703. height: math.unit(12, "feet"),
  4704. weight: math.unit(3000, "lb"),
  4705. name: "Back",
  4706. image: {
  4707. source: "./media/characters/mech/back.svg",
  4708. extra: 3011 / 2890,
  4709. bottom: 94 / 3105
  4710. }
  4711. },
  4712. maw: {
  4713. height: math.unit(3.07, "feet"),
  4714. name: "Maw",
  4715. image: {
  4716. source: "./media/characters/mech/maw.svg"
  4717. }
  4718. },
  4719. head: {
  4720. height: math.unit(3.07, "feet"),
  4721. name: "Head",
  4722. image: {
  4723. source: "./media/characters/mech/head.svg"
  4724. }
  4725. },
  4726. dick: {
  4727. height: math.unit(1.43, "feet"),
  4728. name: "Dick",
  4729. image: {
  4730. source: "./media/characters/mech/dick.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(12, "feet")
  4738. },
  4739. {
  4740. name: "Macro",
  4741. height: math.unit(300, "feet"),
  4742. default: true
  4743. },
  4744. {
  4745. name: "Macro+",
  4746. height: math.unit(1500, "feet")
  4747. },
  4748. ]
  4749. ))
  4750. characterMakers.push(() => makeCharacter(
  4751. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4752. {
  4753. front: {
  4754. height: math.unit(1.3, "meter"),
  4755. weight: math.unit(30, "kg"),
  4756. name: "Front",
  4757. image: {
  4758. source: "./media/characters/gregory/front.svg",
  4759. }
  4760. }
  4761. },
  4762. [
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(1.3, "meter"),
  4766. default: true
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(20, "meter")
  4771. }
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4776. {
  4777. front: {
  4778. height: math.unit(2.8, "meter"),
  4779. weight: math.unit(200, "kg"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/elory/front.svg",
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(2.8, "meter"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(38, "meter")
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(470, "feet"),
  4803. weight: math.unit(924, "tons"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/angelpatamon/front.svg",
  4807. }
  4808. }
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(470, "feet"),
  4814. default: true
  4815. },
  4816. {
  4817. name: "Deity Size I",
  4818. height: math.unit(28651.2, "km")
  4819. },
  4820. {
  4821. name: "Deity Size II",
  4822. height: math.unit(171907.2, "km")
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4828. {
  4829. side: {
  4830. height: math.unit(7.2, "meter"),
  4831. weight: math.unit(8.2, "tons"),
  4832. name: "Side",
  4833. image: {
  4834. source: "./media/characters/cryae/side.svg",
  4835. extra: 3500 / 1500
  4836. }
  4837. }
  4838. },
  4839. [
  4840. {
  4841. name: "Normal",
  4842. height: math.unit(7.2, "meter"),
  4843. default: true
  4844. }
  4845. ]
  4846. ))
  4847. characterMakers.push(() => makeCharacter(
  4848. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4849. {
  4850. front: {
  4851. height: math.unit(6, "feet"),
  4852. weight: math.unit(175, "lb"),
  4853. name: "Front",
  4854. image: {
  4855. source: "./media/characters/xera/front.svg",
  4856. extra: 2377 / 1972,
  4857. bottom: 75.5 / 2452
  4858. }
  4859. },
  4860. side: {
  4861. height: math.unit(6, "feet"),
  4862. weight: math.unit(175, "lb"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/xera/side.svg",
  4866. extra: 2345 / 2019,
  4867. bottom: 39.7 / 2384
  4868. }
  4869. },
  4870. back: {
  4871. height: math.unit(6, "feet"),
  4872. weight: math.unit(175, "lb"),
  4873. name: "Back",
  4874. image: {
  4875. source: "./media/characters/xera/back.svg",
  4876. extra: 2095 / 1984,
  4877. bottom: 67 / 2166
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Small",
  4884. height: math.unit(10, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(500, "meters"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Macro+",
  4893. height: math.unit(10, "km")
  4894. },
  4895. {
  4896. name: "Gigamacro",
  4897. height: math.unit(25000, "km")
  4898. },
  4899. {
  4900. name: "Teramacro",
  4901. height: math.unit(3e6, "km")
  4902. }
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(175, "lb"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/nebula/front.svg",
  4914. extra: 2566 / 2362,
  4915. bottom: 81 / 2644
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Small",
  4922. height: math.unit(4.5, "meters")
  4923. },
  4924. {
  4925. name: "Macro",
  4926. height: math.unit(1500, "meters"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Megamacro",
  4931. height: math.unit(150, "km")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(27000, "km")
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(225, "lb"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/abysgar/front.svg",
  4948. extra: 1739/1614,
  4949. bottom: 71/1810
  4950. }
  4951. },
  4952. frontNsfw: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(225, "lb"),
  4955. name: "Front (NSFW)",
  4956. image: {
  4957. source: "./media/characters/abysgar/front-nsfw.svg",
  4958. extra: 1739/1614,
  4959. bottom: 71/1810
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(4.6, "feet"),
  4964. weight: math.unit(225, "lb"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/abysgar/back.svg",
  4968. extra: 1384/1327,
  4969. bottom: 0/1384
  4970. }
  4971. },
  4972. head: {
  4973. height: math.unit(1.25, "feet"),
  4974. name: "Head",
  4975. image: {
  4976. source: "./media/characters/abysgar/head.svg",
  4977. extra: 669/569,
  4978. bottom: 0/669
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Small",
  4985. height: math.unit(4.5, "meters")
  4986. },
  4987. {
  4988. name: "Macro",
  4989. height: math.unit(1250, "meters"),
  4990. default: true
  4991. },
  4992. {
  4993. name: "Megamacro",
  4994. height: math.unit(125, "km")
  4995. },
  4996. {
  4997. name: "Gigamacro",
  4998. height: math.unit(26000, "km")
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5004. {
  5005. front: {
  5006. height: math.unit(6, "feet"),
  5007. weight: math.unit(180, "lb"),
  5008. name: "Front",
  5009. image: {
  5010. source: "./media/characters/yakuz/front.svg"
  5011. }
  5012. }
  5013. },
  5014. [
  5015. {
  5016. name: "Small",
  5017. height: math.unit(5, "meters")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(1500, "meters"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Megamacro",
  5026. height: math.unit(200, "km")
  5027. },
  5028. {
  5029. name: "Gigamacro",
  5030. height: math.unit(100000, "km")
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(175, "lb"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/mirova/front.svg",
  5043. extra: 3334 / 3071,
  5044. bottom: 42 / 3375.6
  5045. }
  5046. }
  5047. },
  5048. [
  5049. {
  5050. name: "Small",
  5051. height: math.unit(5, "meters")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(900, "meters"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Megamacro",
  5060. height: math.unit(135, "km")
  5061. },
  5062. {
  5063. name: "Gigamacro",
  5064. height: math.unit(20000, "km")
  5065. }
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5070. {
  5071. side: {
  5072. height: math.unit(28.35, "feet"),
  5073. weight: math.unit(99.75, "tons"),
  5074. name: "Side",
  5075. image: {
  5076. source: "./media/characters/asana-mech/side.svg",
  5077. extra: 923 / 699,
  5078. bottom: 50 / 975
  5079. }
  5080. },
  5081. chaingun: {
  5082. height: math.unit(7, "feet"),
  5083. weight: math.unit(2400, "lb"),
  5084. name: "Chaingun",
  5085. image: {
  5086. source: "./media/characters/asana-mech/chaingun.svg"
  5087. }
  5088. },
  5089. laser: {
  5090. height: math.unit(7.12, "feet"),
  5091. weight: math.unit(2000, "lb"),
  5092. name: "Laser",
  5093. image: {
  5094. source: "./media/characters/asana-mech/laser.svg"
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(28.35, "feet"),
  5102. default: true
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(2500, "feet")
  5107. },
  5108. {
  5109. name: "Megamacro",
  5110. height: math.unit(25, "miles")
  5111. },
  5112. {
  5113. name: "Examacro",
  5114. height: math.unit(6e8, "lightyears")
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5120. {
  5121. front: {
  5122. height: math.unit(5, "meters"),
  5123. weight: math.unit(1000, "kg"),
  5124. name: "Front",
  5125. image: {
  5126. source: "./media/characters/asche/front.svg",
  5127. extra: 1258 / 1190,
  5128. bottom: 47 / 1305
  5129. }
  5130. },
  5131. frontUnderwear: {
  5132. height: math.unit(5, "meters"),
  5133. weight: math.unit(1000, "kg"),
  5134. name: "Front (Underwear)",
  5135. image: {
  5136. source: "./media/characters/asche/front-underwear.svg",
  5137. extra: 1258 / 1190,
  5138. bottom: 47 / 1305
  5139. }
  5140. },
  5141. frontDressed: {
  5142. height: math.unit(5, "meters"),
  5143. weight: math.unit(1000, "kg"),
  5144. name: "Front (Dressed)",
  5145. image: {
  5146. source: "./media/characters/asche/front-dressed.svg",
  5147. extra: 1258 / 1190,
  5148. bottom: 47 / 1305
  5149. }
  5150. },
  5151. frontArmor: {
  5152. height: math.unit(5, "meters"),
  5153. weight: math.unit(1000, "kg"),
  5154. name: "Front (Armored)",
  5155. image: {
  5156. source: "./media/characters/asche/front-armored.svg",
  5157. extra: 1374 / 1308,
  5158. bottom: 23 / 1397
  5159. }
  5160. },
  5161. mp724: {
  5162. height: math.unit(0.96, "meters"),
  5163. weight: math.unit(38, "kg"),
  5164. name: "H&K MP724",
  5165. image: {
  5166. source: "./media/characters/asche/h&k-mp724.svg"
  5167. }
  5168. },
  5169. side: {
  5170. height: math.unit(5, "meters"),
  5171. weight: math.unit(1000, "kg"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/asche/side.svg",
  5175. extra: 1717 / 1609,
  5176. bottom: 0.005
  5177. }
  5178. },
  5179. back: {
  5180. height: math.unit(5, "meters"),
  5181. weight: math.unit(1000, "kg"),
  5182. name: "Back",
  5183. image: {
  5184. source: "./media/characters/asche/back.svg",
  5185. extra: 1570 / 1501
  5186. }
  5187. },
  5188. },
  5189. [
  5190. {
  5191. name: "DEFCON 5",
  5192. height: math.unit(5, "meters")
  5193. },
  5194. {
  5195. name: "DEFCON 4",
  5196. height: math.unit(500, "meters"),
  5197. default: true
  5198. },
  5199. {
  5200. name: "DEFCON 3",
  5201. height: math.unit(5, "km")
  5202. },
  5203. {
  5204. name: "DEFCON 2",
  5205. height: math.unit(500, "km")
  5206. },
  5207. {
  5208. name: "DEFCON 1",
  5209. height: math.unit(500000, "km")
  5210. },
  5211. {
  5212. name: "DEFCON 0",
  5213. height: math.unit(3, "gigaparsecs")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5219. {
  5220. front: {
  5221. height: math.unit(2, "meters"),
  5222. weight: math.unit(76, "kg"),
  5223. name: "Front",
  5224. image: {
  5225. source: "./media/characters/gale/front.svg"
  5226. }
  5227. },
  5228. frontAlt1: {
  5229. height: math.unit(2, "meters"),
  5230. weight: math.unit(76, "kg"),
  5231. name: "Front (Alt 1)",
  5232. image: {
  5233. source: "./media/characters/gale/front-alt-1.svg"
  5234. }
  5235. },
  5236. frontAlt2: {
  5237. height: math.unit(2, "meters"),
  5238. weight: math.unit(76, "kg"),
  5239. name: "Front (Alt 2)",
  5240. image: {
  5241. source: "./media/characters/gale/front-alt-2.svg"
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(7, "feet")
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(150, "feet"),
  5253. default: true
  5254. },
  5255. {
  5256. name: "Macro+",
  5257. height: math.unit(300, "feet")
  5258. },
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5263. {
  5264. front: {
  5265. height: math.unit(5 + 10/12, "feet"),
  5266. weight: math.unit(67, "kg"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/draylen/front.svg",
  5270. extra: 832/777,
  5271. bottom: 85/917
  5272. }
  5273. }
  5274. },
  5275. [
  5276. {
  5277. name: "Normal",
  5278. height: math.unit(5 + 10/12, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(150, "feet"),
  5283. default: true
  5284. }
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5289. {
  5290. front: {
  5291. height: math.unit(7 + 9 / 12, "feet"),
  5292. weight: math.unit(379, "lbs"),
  5293. name: "Front",
  5294. image: {
  5295. source: "./media/characters/chez/front.svg"
  5296. }
  5297. },
  5298. side: {
  5299. height: math.unit(7 + 9 / 12, "feet"),
  5300. weight: math.unit(379, "lbs"),
  5301. name: "Side",
  5302. image: {
  5303. source: "./media/characters/chez/side.svg"
  5304. }
  5305. }
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(7 + 9 / 12, "feet"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "God King",
  5315. height: math.unit(9750000, "meters")
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(275, "lbs"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/kaylum/front.svg",
  5328. bottom: 0.01,
  5329. extra: 1166 / 1031
  5330. }
  5331. },
  5332. frontWingless: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(275, "lbs"),
  5335. name: "Front (Wingless)",
  5336. image: {
  5337. source: "./media/characters/kaylum/front-wingless.svg",
  5338. bottom: 0.01,
  5339. extra: 1117 / 1031
  5340. }
  5341. }
  5342. },
  5343. [
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(3.05, "meters")
  5347. },
  5348. {
  5349. name: "Master",
  5350. height: math.unit(5.5, "meters")
  5351. },
  5352. {
  5353. name: "Rampage",
  5354. height: math.unit(19, "meters")
  5355. },
  5356. {
  5357. name: "Macro Lite",
  5358. height: math.unit(37, "meters")
  5359. },
  5360. {
  5361. name: "Hyper Predator",
  5362. height: math.unit(61, "meters")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(138, "meters"),
  5367. default: true
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(5 + 5 / 12, "feet"),
  5376. weight: math.unit(120, "lbs"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/geta/front.svg",
  5380. extra: 1003/933,
  5381. bottom: 21/1024
  5382. }
  5383. },
  5384. paw: {
  5385. height: math.unit(0.35, "feet"),
  5386. name: "Paw",
  5387. image: {
  5388. source: "./media/characters/geta/paw.svg"
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Micro",
  5395. height: math.unit(3, "inches"),
  5396. default: true
  5397. },
  5398. {
  5399. name: "Normal",
  5400. height: math.unit(5 + 5 / 12, "feet")
  5401. }
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5406. {
  5407. front: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(300, "lbs"),
  5410. name: "Front",
  5411. image: {
  5412. source: "./media/characters/tyrnn/front.svg"
  5413. }
  5414. }
  5415. },
  5416. [
  5417. {
  5418. name: "Main Height",
  5419. height: math.unit(355, "feet"),
  5420. default: true
  5421. },
  5422. {
  5423. name: "Fave. Height",
  5424. height: math.unit(2400, "feet")
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5430. {
  5431. front: {
  5432. height: math.unit(6, "feet"),
  5433. weight: math.unit(300, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/appledectomy/front.svg"
  5437. }
  5438. }
  5439. },
  5440. [
  5441. {
  5442. name: "Macro",
  5443. height: math.unit(2500, "feet")
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(50, "miles"),
  5448. default: true
  5449. },
  5450. {
  5451. name: "Gigamacro",
  5452. height: math.unit(5000, "miles")
  5453. },
  5454. {
  5455. name: "Teramacro",
  5456. height: math.unit(250000, "miles")
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(200, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/vulpes/front.svg",
  5469. extra: 573 / 543,
  5470. bottom: 0.033
  5471. }
  5472. },
  5473. side: {
  5474. height: math.unit(6, "feet"),
  5475. weight: math.unit(200, "lbs"),
  5476. name: "Side",
  5477. image: {
  5478. source: "./media/characters/vulpes/side.svg",
  5479. extra: 577 / 549,
  5480. bottom: 11 / 588
  5481. }
  5482. },
  5483. back: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(200, "lbs"),
  5486. name: "Back",
  5487. image: {
  5488. source: "./media/characters/vulpes/back.svg",
  5489. extra: 573 / 549,
  5490. bottom: 20 / 593
  5491. }
  5492. },
  5493. feet: {
  5494. height: math.unit(1.276, "feet"),
  5495. name: "Feet",
  5496. image: {
  5497. source: "./media/characters/vulpes/feet.svg"
  5498. }
  5499. },
  5500. maw: {
  5501. height: math.unit(1.18, "feet"),
  5502. name: "Maw",
  5503. image: {
  5504. source: "./media/characters/vulpes/maw.svg"
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Micro",
  5511. height: math.unit(2, "inches")
  5512. },
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(6.3, "feet")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(850, "feet")
  5520. },
  5521. {
  5522. name: "Megamacro",
  5523. height: math.unit(7500, "feet"),
  5524. default: true
  5525. },
  5526. {
  5527. name: "Gigamacro",
  5528. height: math.unit(570000, "miles")
  5529. }
  5530. ]
  5531. ))
  5532. characterMakers.push(() => makeCharacter(
  5533. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5534. {
  5535. front: {
  5536. height: math.unit(6, "feet"),
  5537. weight: math.unit(210, "lbs"),
  5538. name: "Front",
  5539. image: {
  5540. source: "./media/characters/rain-fallen/front.svg"
  5541. }
  5542. },
  5543. side: {
  5544. height: math.unit(6, "feet"),
  5545. weight: math.unit(210, "lbs"),
  5546. name: "Side",
  5547. image: {
  5548. source: "./media/characters/rain-fallen/side.svg"
  5549. }
  5550. },
  5551. back: {
  5552. height: math.unit(6, "feet"),
  5553. weight: math.unit(210, "lbs"),
  5554. name: "Back",
  5555. image: {
  5556. source: "./media/characters/rain-fallen/back.svg"
  5557. }
  5558. },
  5559. feral: {
  5560. height: math.unit(9, "feet"),
  5561. weight: math.unit(700, "lbs"),
  5562. name: "Feral",
  5563. image: {
  5564. source: "./media/characters/rain-fallen/feral.svg"
  5565. }
  5566. },
  5567. },
  5568. [
  5569. {
  5570. name: "Meddling with Mortals",
  5571. height: math.unit(8 + 8/12, "feet")
  5572. },
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(5, "meter")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(150, "meter"),
  5580. default: true
  5581. },
  5582. {
  5583. name: "Megamacro",
  5584. height: math.unit(278e6, "meter")
  5585. },
  5586. {
  5587. name: "Gigamacro",
  5588. height: math.unit(2e9, "meter")
  5589. },
  5590. {
  5591. name: "Teramacro",
  5592. height: math.unit(8e12, "meter")
  5593. },
  5594. {
  5595. name: "Devourer",
  5596. height: math.unit(14, "zettameters")
  5597. },
  5598. {
  5599. name: "Scarlet King",
  5600. height: math.unit(18, "yottameters")
  5601. },
  5602. {
  5603. name: "Void",
  5604. height: math.unit(1e88, "yottameters")
  5605. }
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5610. {
  5611. standing: {
  5612. height: math.unit(6, "feet"),
  5613. weight: math.unit(180, "lbs"),
  5614. name: "Standing",
  5615. image: {
  5616. source: "./media/characters/zaakira/standing.svg",
  5617. extra: 1599/1504,
  5618. bottom: 39/1638
  5619. }
  5620. },
  5621. laying: {
  5622. height: math.unit(3.3, "feet"),
  5623. weight: math.unit(180, "lbs"),
  5624. name: "Laying",
  5625. image: {
  5626. source: "./media/characters/zaakira/laying.svg"
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(12, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(279, "feet"),
  5638. default: true
  5639. }
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5644. {
  5645. femSfw: {
  5646. height: math.unit(8, "feet"),
  5647. weight: math.unit(350, "lb"),
  5648. name: "Fem",
  5649. image: {
  5650. source: "./media/characters/sigvald/fem-sfw.svg",
  5651. extra: 182 / 164,
  5652. bottom: 8.7 / 190.5
  5653. }
  5654. },
  5655. femNsfw: {
  5656. height: math.unit(8, "feet"),
  5657. weight: math.unit(350, "lb"),
  5658. name: "Fem (NSFW)",
  5659. image: {
  5660. source: "./media/characters/sigvald/fem-nsfw.svg",
  5661. extra: 182 / 164,
  5662. bottom: 8.7 / 190.5
  5663. }
  5664. },
  5665. maleNsfw: {
  5666. height: math.unit(8, "feet"),
  5667. weight: math.unit(350, "lb"),
  5668. name: "Male (NSFW)",
  5669. image: {
  5670. source: "./media/characters/sigvald/male-nsfw.svg",
  5671. extra: 182 / 164,
  5672. bottom: 8.7 / 190.5
  5673. }
  5674. },
  5675. hermNsfw: {
  5676. height: math.unit(8, "feet"),
  5677. weight: math.unit(350, "lb"),
  5678. name: "Herm (NSFW)",
  5679. image: {
  5680. source: "./media/characters/sigvald/herm-nsfw.svg",
  5681. extra: 182 / 164,
  5682. bottom: 8.7 / 190.5
  5683. }
  5684. },
  5685. dick: {
  5686. height: math.unit(2.36, "feet"),
  5687. name: "Dick",
  5688. image: {
  5689. source: "./media/characters/sigvald/dick.svg"
  5690. }
  5691. },
  5692. eye: {
  5693. height: math.unit(0.31, "feet"),
  5694. name: "Eye",
  5695. image: {
  5696. source: "./media/characters/sigvald/eye.svg"
  5697. }
  5698. },
  5699. mouth: {
  5700. height: math.unit(0.92, "feet"),
  5701. name: "Mouth",
  5702. image: {
  5703. source: "./media/characters/sigvald/mouth.svg"
  5704. }
  5705. },
  5706. paws: {
  5707. height: math.unit(2.2, "feet"),
  5708. name: "Paws",
  5709. image: {
  5710. source: "./media/characters/sigvald/paws.svg"
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(8, "feet")
  5718. },
  5719. {
  5720. name: "Large",
  5721. height: math.unit(12, "feet")
  5722. },
  5723. {
  5724. name: "Larger",
  5725. height: math.unit(20, "feet")
  5726. },
  5727. {
  5728. name: "Macro",
  5729. height: math.unit(150, "feet")
  5730. },
  5731. {
  5732. name: "Macro+",
  5733. height: math.unit(200, "feet"),
  5734. default: true
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5740. {
  5741. side: {
  5742. height: math.unit(12, "feet"),
  5743. weight: math.unit(2000, "kg"),
  5744. name: "Side",
  5745. image: {
  5746. source: "./media/characters/scott/side.svg",
  5747. extra: 754 / 724,
  5748. bottom: 0.069
  5749. }
  5750. },
  5751. upright: {
  5752. height: math.unit(12, "feet"),
  5753. weight: math.unit(2000, "kg"),
  5754. name: "Upright",
  5755. image: {
  5756. source: "./media/characters/scott/upright.svg",
  5757. extra: 3881 / 3722,
  5758. bottom: 0.05
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(12, "feet"),
  5766. default: true
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5772. {
  5773. side: {
  5774. height: math.unit(8, "meters"),
  5775. weight: math.unit(84755, "lbs"),
  5776. name: "Side",
  5777. image: {
  5778. source: "./media/characters/tobias/side.svg",
  5779. extra: 1474 / 1096,
  5780. bottom: 38.9 / 1513.1235
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(8, "meters"),
  5788. default: true
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5794. {
  5795. front: {
  5796. height: math.unit(5.5, "feet"),
  5797. weight: math.unit(400, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/kieran/front.svg",
  5801. extra: 2694 / 2364,
  5802. bottom: 217 / 2908
  5803. }
  5804. },
  5805. side: {
  5806. height: math.unit(5.5, "feet"),
  5807. weight: math.unit(400, "lbs"),
  5808. name: "Side",
  5809. image: {
  5810. source: "./media/characters/kieran/side.svg",
  5811. extra: 875 / 777,
  5812. bottom: 84.6 / 959
  5813. }
  5814. },
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(5.5, "feet"),
  5820. default: true
  5821. },
  5822. ]
  5823. ))
  5824. characterMakers.push(() => makeCharacter(
  5825. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5826. {
  5827. side: {
  5828. height: math.unit(2, "meters"),
  5829. weight: math.unit(70, "kg"),
  5830. name: "Side",
  5831. image: {
  5832. source: "./media/characters/sanya/side.svg",
  5833. bottom: 0.02,
  5834. extra: 1.02
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Small",
  5841. height: math.unit(2, "meters")
  5842. },
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(3, "meters")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(16, "meters"),
  5850. default: true
  5851. },
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(2, "meters"),
  5859. weight: math.unit(120, "kg"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/miranda/front.svg",
  5863. extra: 195 / 185,
  5864. bottom: 10.9 / 206.5
  5865. }
  5866. },
  5867. back: {
  5868. height: math.unit(2, "meters"),
  5869. weight: math.unit(120, "kg"),
  5870. name: "Back",
  5871. image: {
  5872. source: "./media/characters/miranda/back.svg",
  5873. extra: 201 / 193,
  5874. bottom: 2.3 / 203.7
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(10, "feet"),
  5882. default: true
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "James", species: ["deer"], tags: ["anthro"] },
  5888. {
  5889. side: {
  5890. height: math.unit(2, "meters"),
  5891. weight: math.unit(100, "kg"),
  5892. name: "Front",
  5893. image: {
  5894. source: "./media/characters/james/front.svg",
  5895. extra: 10 / 8.5
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(8.5, "feet"),
  5903. default: true
  5904. }
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5909. {
  5910. side: {
  5911. height: math.unit(9.5, "feet"),
  5912. weight: math.unit(2500, "lbs"),
  5913. name: "Side",
  5914. image: {
  5915. source: "./media/characters/heather/side.svg"
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(9.5, "feet"),
  5923. default: true
  5924. }
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5929. {
  5930. side: {
  5931. height: math.unit(6.5, "feet"),
  5932. weight: math.unit(400, "lbs"),
  5933. name: "Side",
  5934. image: {
  5935. source: "./media/characters/lukas/side.svg",
  5936. extra: 7.25 / 6.5
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(6.5, "feet"),
  5944. default: true
  5945. }
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5950. {
  5951. side: {
  5952. height: math.unit(5, "feet"),
  5953. weight: math.unit(3000, "lbs"),
  5954. name: "Side",
  5955. image: {
  5956. source: "./media/characters/louise/side.svg"
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Normal",
  5963. height: math.unit(5, "feet"),
  5964. default: true
  5965. }
  5966. ]
  5967. ))
  5968. characterMakers.push(() => makeCharacter(
  5969. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5970. {
  5971. side: {
  5972. height: math.unit(6, "feet"),
  5973. weight: math.unit(150, "lbs"),
  5974. name: "Side",
  5975. image: {
  5976. source: "./media/characters/ramona/side.svg",
  5977. extra: 871/854,
  5978. bottom: 41/912
  5979. }
  5980. },
  5981. },
  5982. [
  5983. {
  5984. name: "Normal",
  5985. height: math.unit(6 + 4/12, "feet")
  5986. },
  5987. {
  5988. name: "Minimacro",
  5989. height: math.unit(5.3, "meters"),
  5990. default: true
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(20, "stories")
  5995. },
  5996. {
  5997. name: "Macro+",
  5998. height: math.unit(50, "stories")
  5999. },
  6000. ]
  6001. ))
  6002. characterMakers.push(() => makeCharacter(
  6003. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6004. {
  6005. standing: {
  6006. height: math.unit(5.75, "feet"),
  6007. weight: math.unit(160, "lbs"),
  6008. name: "Standing",
  6009. image: {
  6010. source: "./media/characters/deerpuff/standing.svg",
  6011. extra: 682 / 624
  6012. }
  6013. },
  6014. sitting: {
  6015. height: math.unit(5.75 / 1.79, "feet"),
  6016. weight: math.unit(160, "lbs"),
  6017. name: "Sitting",
  6018. image: {
  6019. source: "./media/characters/deerpuff/sitting.svg",
  6020. bottom: 44 / 400,
  6021. extra: 1
  6022. }
  6023. },
  6024. taurLaying: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(400, "lbs"),
  6027. name: "Taur (Laying)",
  6028. image: {
  6029. source: "./media/characters/deerpuff/taur-laying.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Puffball",
  6036. height: math.unit(6, "inches")
  6037. },
  6038. {
  6039. name: "Normalpuff",
  6040. height: math.unit(5.75, "feet")
  6041. },
  6042. {
  6043. name: "Macropuff",
  6044. height: math.unit(1500, "feet"),
  6045. default: true
  6046. },
  6047. {
  6048. name: "Megapuff",
  6049. height: math.unit(500, "miles")
  6050. },
  6051. {
  6052. name: "Gigapuff",
  6053. height: math.unit(250000, "miles")
  6054. },
  6055. {
  6056. name: "Omegapuff",
  6057. height: math.unit(1000, "lightyears")
  6058. },
  6059. ]
  6060. ))
  6061. characterMakers.push(() => makeCharacter(
  6062. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6063. {
  6064. stomping: {
  6065. height: math.unit(6, "feet"),
  6066. weight: math.unit(170, "lbs"),
  6067. name: "Stomping",
  6068. image: {
  6069. source: "./media/characters/vivian/stomping.svg"
  6070. }
  6071. },
  6072. sitting: {
  6073. height: math.unit(6 / 1.75, "feet"),
  6074. weight: math.unit(170, "lbs"),
  6075. name: "Sitting",
  6076. image: {
  6077. source: "./media/characters/vivian/sitting.svg",
  6078. bottom: 1 / 6.4,
  6079. extra: 1,
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(7, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Macro",
  6091. height: math.unit(10, "stories")
  6092. },
  6093. {
  6094. name: "Macro+",
  6095. height: math.unit(30, "stories")
  6096. },
  6097. {
  6098. name: "Megamacro",
  6099. height: math.unit(10, "miles")
  6100. },
  6101. {
  6102. name: "Megamacro+",
  6103. height: math.unit(2750000, "meters")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(160, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/prince/front.svg",
  6116. extra: 3400 / 3000
  6117. }
  6118. },
  6119. jumping: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(160, "lbs"),
  6122. name: "Jumping",
  6123. image: {
  6124. source: "./media/characters/prince/jump.svg",
  6125. extra: 2555 / 2134
  6126. }
  6127. },
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(7.75, "feet"),
  6133. default: true
  6134. },
  6135. {
  6136. name: "Not cute",
  6137. height: math.unit(17, "feet")
  6138. },
  6139. {
  6140. name: "I said NOT",
  6141. height: math.unit(91, "feet")
  6142. },
  6143. {
  6144. name: "Please stop",
  6145. height: math.unit(560, "feet")
  6146. },
  6147. {
  6148. name: "What have you done",
  6149. height: math.unit(2200, "feet")
  6150. },
  6151. {
  6152. name: "Deer God",
  6153. height: math.unit(3.6, "miles")
  6154. },
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6159. {
  6160. standing: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(300, "lbs"),
  6163. name: "Standing",
  6164. image: {
  6165. source: "./media/characters/psymon/standing.svg",
  6166. extra: 1888 / 1810,
  6167. bottom: 0.05
  6168. }
  6169. },
  6170. slithering: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(300, "lbs"),
  6173. name: "Slithering",
  6174. image: {
  6175. source: "./media/characters/psymon/slithering.svg",
  6176. extra: 1330 / 1224
  6177. }
  6178. },
  6179. slitheringAlt: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(300, "lbs"),
  6182. name: "Slithering (Alt)",
  6183. image: {
  6184. source: "./media/characters/psymon/slithering-alt.svg",
  6185. extra: 1330 / 1224
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(11.25, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Large",
  6197. height: math.unit(27, "feet")
  6198. },
  6199. {
  6200. name: "Giant",
  6201. height: math.unit(87, "feet")
  6202. },
  6203. {
  6204. name: "Macro",
  6205. height: math.unit(365, "feet")
  6206. },
  6207. {
  6208. name: "Megamacro",
  6209. height: math.unit(3, "miles")
  6210. },
  6211. {
  6212. name: "World Serpent",
  6213. height: math.unit(8000, "miles")
  6214. },
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6219. {
  6220. front: {
  6221. height: math.unit(6, "feet"),
  6222. weight: math.unit(180, "lbs"),
  6223. name: "Front",
  6224. image: {
  6225. source: "./media/characters/daimos/front.svg",
  6226. extra: 4160 / 3897,
  6227. bottom: 0.021
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(8, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Big Dog",
  6239. height: math.unit(22, "feet")
  6240. },
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(127, "feet")
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(3600, "feet")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6253. {
  6254. side: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(180, "lbs"),
  6257. name: "Side",
  6258. image: {
  6259. source: "./media/characters/blake/side.svg",
  6260. extra: 1212 / 1120,
  6261. bottom: 0.05
  6262. }
  6263. },
  6264. crouched: {
  6265. height: math.unit(6 * 0.57, "feet"),
  6266. weight: math.unit(180, "lbs"),
  6267. name: "Crouched",
  6268. image: {
  6269. source: "./media/characters/blake/crouched.svg",
  6270. extra: 840 / 587,
  6271. bottom: 0.04
  6272. }
  6273. },
  6274. bent: {
  6275. height: math.unit(6 * 0.75, "feet"),
  6276. weight: math.unit(180, "lbs"),
  6277. name: "Bent",
  6278. image: {
  6279. source: "./media/characters/blake/bent.svg",
  6280. extra: 592 / 544,
  6281. bottom: 0.035
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(8 + 1 / 6, "feet"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Big Backside",
  6293. height: math.unit(37, "feet")
  6294. },
  6295. {
  6296. name: "Subway Shredder",
  6297. height: math.unit(72, "feet")
  6298. },
  6299. {
  6300. name: "City Carver",
  6301. height: math.unit(1675, "feet")
  6302. },
  6303. {
  6304. name: "Tectonic Tweaker",
  6305. height: math.unit(2300, "miles")
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(180, "lbs"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/guisetto/front.svg",
  6318. extra: 856 / 817,
  6319. bottom: 0.06
  6320. }
  6321. },
  6322. airborne: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(180, "lbs"),
  6325. name: "Airborne",
  6326. image: {
  6327. source: "./media/characters/guisetto/airborne.svg",
  6328. extra: 584 / 525
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(10 + 11 / 12, "feet"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Large",
  6340. height: math.unit(35, "feet")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(475, "feet")
  6345. },
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6350. {
  6351. front: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(180, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/luxor/front.svg",
  6357. extra: 2940 / 2152
  6358. }
  6359. },
  6360. back: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Back",
  6364. image: {
  6365. source: "./media/characters/luxor/back.svg",
  6366. extra: 1083 / 960
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(5 + 5 / 6, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Lamp",
  6378. height: math.unit(50, "feet")
  6379. },
  6380. {
  6381. name: "Lämp",
  6382. height: math.unit(300, "feet")
  6383. },
  6384. {
  6385. name: "The sun is a lamp",
  6386. height: math.unit(250000, "miles")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(50, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/huoyan/front.svg"
  6399. }
  6400. },
  6401. side: {
  6402. height: math.unit(6, "feet"),
  6403. weight: math.unit(180, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/huoyan/side.svg"
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Chef",
  6413. height: math.unit(9, "feet")
  6414. },
  6415. {
  6416. name: "Normal",
  6417. height: math.unit(65, "feet"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(780, "feet")
  6423. },
  6424. {
  6425. name: "Flaming Mountain",
  6426. height: math.unit(4.8, "miles")
  6427. },
  6428. {
  6429. name: "Celestial",
  6430. height: math.unit(765000, "miles")
  6431. },
  6432. ]
  6433. ))
  6434. characterMakers.push(() => makeCharacter(
  6435. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6436. {
  6437. front: {
  6438. height: math.unit(5 + 3 / 4, "feet"),
  6439. weight: math.unit(120, "lbs"),
  6440. name: "Front",
  6441. image: {
  6442. source: "./media/characters/tails/front.svg"
  6443. }
  6444. }
  6445. },
  6446. [
  6447. {
  6448. name: "Normal",
  6449. height: math.unit(5 + 3 / 4, "feet"),
  6450. default: true
  6451. }
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(4, "feet"),
  6459. weight: math.unit(50, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/rainy/front.svg"
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Macro",
  6469. height: math.unit(800, "feet"),
  6470. default: true
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(150, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/rainier/front.svg"
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(2, "mm"),
  6490. default: true
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(8 + 4/12, "feet"),
  6499. weight: math.unit(450, "kilograms"),
  6500. volume: math.unit(5, "cups"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/andy-renard/front.svg",
  6504. extra: 1839/1726,
  6505. bottom: 134/1973
  6506. }
  6507. },
  6508. back: {
  6509. height: math.unit(8 + 4/12, "feet"),
  6510. weight: math.unit(450, "kilograms"),
  6511. volume: math.unit(5, "cups"),
  6512. name: "Back",
  6513. image: {
  6514. source: "./media/characters/andy-renard/back.svg",
  6515. extra: 1838/1710,
  6516. bottom: 105/1943
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Tall",
  6523. height: math.unit(8 + 4/12, "feet")
  6524. },
  6525. {
  6526. name: "Mini Macro",
  6527. height: math.unit(15, "feet"),
  6528. default: true
  6529. },
  6530. {
  6531. name: "Macro",
  6532. height: math.unit(100, "feet")
  6533. },
  6534. {
  6535. name: "Mega Macro",
  6536. height: math.unit(1000, "feet")
  6537. },
  6538. {
  6539. name: "Giga Macro",
  6540. height: math.unit(10, "miles")
  6541. },
  6542. {
  6543. name: "God Macro",
  6544. height: math.unit(1, "multiverse")
  6545. },
  6546. ]
  6547. ))
  6548. characterMakers.push(() => makeCharacter(
  6549. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6550. {
  6551. front: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(210, "lbs"),
  6554. name: "Front",
  6555. image: {
  6556. source: "./media/characters/cimmaron/front-sfw.svg",
  6557. extra: 701 / 676,
  6558. bottom: 0.046
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(210, "lbs"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/cimmaron/back-sfw.svg",
  6567. extra: 701 / 676,
  6568. bottom: 0.046
  6569. }
  6570. },
  6571. frontNsfw: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(210, "lbs"),
  6574. name: "Front (NSFW)",
  6575. image: {
  6576. source: "./media/characters/cimmaron/front-nsfw.svg",
  6577. extra: 701 / 676,
  6578. bottom: 0.046
  6579. }
  6580. },
  6581. backNsfw: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(210, "lbs"),
  6584. name: "Back (NSFW)",
  6585. image: {
  6586. source: "./media/characters/cimmaron/back-nsfw.svg",
  6587. extra: 701 / 676,
  6588. bottom: 0.046
  6589. }
  6590. },
  6591. dick: {
  6592. height: math.unit(1.714, "feet"),
  6593. name: "Dick",
  6594. image: {
  6595. source: "./media/characters/cimmaron/dick.svg"
  6596. }
  6597. },
  6598. },
  6599. [
  6600. {
  6601. name: "Normal",
  6602. height: math.unit(6, "feet"),
  6603. default: true
  6604. },
  6605. {
  6606. name: "Macro Mayor",
  6607. height: math.unit(350, "meters")
  6608. },
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(200, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/akari/front.svg",
  6620. extra: 962 / 901,
  6621. bottom: 0.04
  6622. }
  6623. }
  6624. },
  6625. [
  6626. {
  6627. name: "Micro",
  6628. height: math.unit(5, "inches"),
  6629. default: true
  6630. },
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(7, "feet")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(140, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/cynosura/front.svg",
  6646. extra: 437/410,
  6647. bottom: 9/446
  6648. }
  6649. },
  6650. back: {
  6651. height: math.unit(6, "feet"),
  6652. weight: math.unit(140, "lbs"),
  6653. name: "Back",
  6654. image: {
  6655. source: "./media/characters/cynosura/back.svg",
  6656. extra: 1304/1160,
  6657. bottom: 71/1375
  6658. }
  6659. },
  6660. },
  6661. [
  6662. {
  6663. name: "Micro",
  6664. height: math.unit(4, "inches")
  6665. },
  6666. {
  6667. name: "Normal",
  6668. height: math.unit(5.75, "feet"),
  6669. default: true
  6670. },
  6671. {
  6672. name: "Tall",
  6673. height: math.unit(10, "feet")
  6674. },
  6675. {
  6676. name: "Big",
  6677. height: math.unit(20, "feet")
  6678. },
  6679. {
  6680. name: "Macro",
  6681. height: math.unit(50, "feet")
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(13 + 2/12, "feet"),
  6690. weight: math.unit(800, "kg"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/gin/front.svg",
  6694. extra: 1312/1191,
  6695. bottom: 45/1357
  6696. }
  6697. },
  6698. mouth: {
  6699. height: math.unit(2.39 * 1.8, "feet"),
  6700. name: "Mouth",
  6701. image: {
  6702. source: "./media/characters/gin/mouth.svg"
  6703. }
  6704. },
  6705. hand: {
  6706. height: math.unit(1.57 * 2.19, "feet"),
  6707. name: "Hand",
  6708. image: {
  6709. source: "./media/characters/gin/hand.svg"
  6710. }
  6711. },
  6712. foot: {
  6713. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6714. name: "Foot",
  6715. image: {
  6716. source: "./media/characters/gin/foot.svg"
  6717. }
  6718. },
  6719. sole: {
  6720. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6721. name: "Sole",
  6722. image: {
  6723. source: "./media/characters/gin/sole.svg"
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Very Small",
  6730. height: math.unit(13 + 2 / 12, "feet")
  6731. },
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(600, "miles")
  6735. },
  6736. {
  6737. name: "Regular",
  6738. height: math.unit(20, "earths"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(2.2, "solarradii")
  6744. },
  6745. {
  6746. name: "Teramacro",
  6747. height: math.unit(1.2, "galaxies")
  6748. },
  6749. {
  6750. name: "Omegamacro",
  6751. height: math.unit(200, "universes")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6 + 1 / 6, "feet"),
  6760. weight: math.unit(178, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/guy/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(6 + 1 / 6, "feet"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Large",
  6775. height: math.unit(25 + 7 / 12, "feet")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(60 + 9 / 12, "feet")
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(246, "feet")
  6784. },
  6785. {
  6786. name: "Macro++",
  6787. height: math.unit(878, "feet")
  6788. }
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(9, "feet"),
  6796. weight: math.unit(800, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/tiberius/front.svg",
  6800. extra: 2295 / 2071
  6801. }
  6802. },
  6803. back: {
  6804. height: math.unit(9, "feet"),
  6805. weight: math.unit(800, "lbs"),
  6806. name: "Back",
  6807. image: {
  6808. source: "./media/characters/tiberius/back.svg",
  6809. extra: 2373 / 2160
  6810. }
  6811. },
  6812. },
  6813. [
  6814. {
  6815. name: "Normal",
  6816. height: math.unit(9, "feet"),
  6817. default: true
  6818. }
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(600, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/surgo/front.svg",
  6830. extra: 3591 / 2227
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(600, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/surgo/back.svg",
  6839. extra: 3557 / 2228
  6840. }
  6841. },
  6842. laying: {
  6843. height: math.unit(6 * 0.85, "feet"),
  6844. weight: math.unit(600, "lbs"),
  6845. name: "Laying",
  6846. image: {
  6847. source: "./media/characters/surgo/laying.svg"
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(6, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6861. {
  6862. side: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(150, "lbs"),
  6865. name: "Side",
  6866. image: {
  6867. source: "./media/characters/cibus/side.svg",
  6868. extra: 800 / 400
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(6, "feet"),
  6876. default: true
  6877. }
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(240, "lbs"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/nibbles/front.svg"
  6889. }
  6890. },
  6891. side: {
  6892. height: math.unit(6, "feet"),
  6893. weight: math.unit(240, "lbs"),
  6894. name: "Side",
  6895. image: {
  6896. source: "./media/characters/nibbles/side.svg"
  6897. }
  6898. },
  6899. },
  6900. [
  6901. {
  6902. name: "Normal",
  6903. height: math.unit(9, "feet"),
  6904. default: true
  6905. }
  6906. ]
  6907. ))
  6908. characterMakers.push(() => makeCharacter(
  6909. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6910. {
  6911. side: {
  6912. height: math.unit(5 + 1 / 6, "feet"),
  6913. weight: math.unit(130, "lbs"),
  6914. name: "Side",
  6915. image: {
  6916. source: "./media/characters/rikky/side.svg",
  6917. extra: 851 / 801
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(5 + 1 / 6, "feet")
  6925. },
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(152, "feet"),
  6929. default: true
  6930. },
  6931. {
  6932. name: "Megamacro",
  6933. height: math.unit(7, "miles")
  6934. }
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6939. {
  6940. side: {
  6941. height: math.unit(370, "cm"),
  6942. weight: math.unit(350, "lbs"),
  6943. name: "Side",
  6944. image: {
  6945. source: "./media/characters/malfressa/side.svg"
  6946. }
  6947. },
  6948. walking: {
  6949. height: math.unit(370, "cm"),
  6950. weight: math.unit(350, "lbs"),
  6951. name: "Walking",
  6952. image: {
  6953. source: "./media/characters/malfressa/walking.svg"
  6954. }
  6955. },
  6956. feral: {
  6957. height: math.unit(2500, "cm"),
  6958. weight: math.unit(100000, "lbs"),
  6959. name: "Feral",
  6960. image: {
  6961. source: "./media/characters/malfressa/feral.svg",
  6962. extra: 2108 / 837,
  6963. bottom: 0.02
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(370, "cm")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(300, "meters"),
  6975. default: true
  6976. }
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(60, "kg"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/jaro/front.svg",
  6988. extra: 845/817,
  6989. bottom: 45/890
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(60, "kg"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/jaro/back.svg",
  6998. extra: 847/817,
  6999. bottom: 34/881
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Micro",
  7006. height: math.unit(7, "inches")
  7007. },
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(5.5, "feet"),
  7011. default: true
  7012. },
  7013. {
  7014. name: "Minimacro",
  7015. height: math.unit(20, "feet")
  7016. },
  7017. {
  7018. name: "Macro",
  7019. height: math.unit(200, "meters")
  7020. }
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(195, "lb"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/rogue/front.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(90, "feet"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7045. {
  7046. standing: {
  7047. height: math.unit(5 + 8 / 12, "feet"),
  7048. weight: math.unit(140, "lb"),
  7049. name: "Standing",
  7050. image: {
  7051. source: "./media/characters/piper/standing.svg",
  7052. extra: 1440/1284,
  7053. bottom: 66/1506
  7054. }
  7055. },
  7056. running: {
  7057. height: math.unit(5 + 8 / 12, "feet"),
  7058. weight: math.unit(140, "lb"),
  7059. name: "Running",
  7060. image: {
  7061. source: "./media/characters/piper/running.svg",
  7062. extra: 3948/3655,
  7063. bottom: 0/3948
  7064. }
  7065. },
  7066. sole: {
  7067. height: math.unit(0.81, "feet"),
  7068. weight: math.unit(2, "kg"),
  7069. name: "Sole",
  7070. image: {
  7071. source: "./media/characters/piper/sole.svg"
  7072. }
  7073. },
  7074. nipple: {
  7075. height: math.unit(0.25, "feet"),
  7076. weight: math.unit(1.5, "lb"),
  7077. name: "Nipple",
  7078. image: {
  7079. source: "./media/characters/piper/nipple.svg"
  7080. }
  7081. },
  7082. head: {
  7083. height: math.unit(1.1, "feet"),
  7084. name: "Head",
  7085. image: {
  7086. source: "./media/characters/piper/head.svg"
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Micro",
  7093. height: math.unit(2, "inches")
  7094. },
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(5 + 8 / 12, "feet")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(250, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Megamacro",
  7106. height: math.unit(7, "miles")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(220, "lb"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/gemini/front.svg"
  7119. }
  7120. },
  7121. back: {
  7122. height: math.unit(6, "feet"),
  7123. weight: math.unit(220, "lb"),
  7124. name: "Back",
  7125. image: {
  7126. source: "./media/characters/gemini/back.svg"
  7127. }
  7128. },
  7129. kneeling: {
  7130. height: math.unit(6 / 1.5, "feet"),
  7131. weight: math.unit(220, "lb"),
  7132. name: "Kneeling",
  7133. image: {
  7134. source: "./media/characters/gemini/kneeling.svg",
  7135. bottom: 0.02
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Macro",
  7142. height: math.unit(300, "meters"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Megamacro",
  7147. height: math.unit(6900, "meters")
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7153. {
  7154. anthro: {
  7155. height: math.unit(2.35, "meters"),
  7156. weight: math.unit(73, "kg"),
  7157. name: "Anthro",
  7158. image: {
  7159. source: "./media/characters/alicia/anthro.svg",
  7160. extra: 2571 / 2385,
  7161. bottom: 75 / 2648
  7162. }
  7163. },
  7164. paw: {
  7165. height: math.unit(1.32, "feet"),
  7166. name: "Paw",
  7167. image: {
  7168. source: "./media/characters/alicia/paw.svg"
  7169. }
  7170. },
  7171. feral: {
  7172. height: math.unit(1.69, "meters"),
  7173. weight: math.unit(73, "kg"),
  7174. name: "Feral",
  7175. image: {
  7176. source: "./media/characters/alicia/feral.svg",
  7177. extra: 2123 / 1715,
  7178. bottom: 222 / 2349
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(2.35, "meters")
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(60, "meters"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Megamacro",
  7194. height: math.unit(10000, "kilometers")
  7195. },
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(7, "feet"),
  7203. weight: math.unit(250, "lbs"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/archy/front.svg"
  7207. }
  7208. }
  7209. },
  7210. [
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(1, "inch")
  7214. },
  7215. {
  7216. name: "Shorty",
  7217. height: math.unit(5, "feet")
  7218. },
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(7, "feet")
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(600, "meters"),
  7226. default: true
  7227. },
  7228. {
  7229. name: "Megamacro",
  7230. height: math.unit(1, "mile")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(1.65, "meters"),
  7239. weight: math.unit(74, "kg"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/berri/front.svg",
  7243. extra: 857 / 837,
  7244. bottom: 18 / 877
  7245. }
  7246. },
  7247. bum: {
  7248. height: math.unit(1.46, "feet"),
  7249. name: "Bum",
  7250. image: {
  7251. source: "./media/characters/berri/bum.svg"
  7252. }
  7253. },
  7254. mouth: {
  7255. height: math.unit(0.44, "feet"),
  7256. name: "Mouth",
  7257. image: {
  7258. source: "./media/characters/berri/mouth.svg"
  7259. }
  7260. },
  7261. paw: {
  7262. height: math.unit(0.826, "feet"),
  7263. name: "Paw",
  7264. image: {
  7265. source: "./media/characters/berri/paw.svg"
  7266. }
  7267. },
  7268. },
  7269. [
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(1.65, "meters")
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(60, "m"),
  7277. default: true
  7278. },
  7279. {
  7280. name: "Megamacro",
  7281. height: math.unit(9.213, "km")
  7282. },
  7283. {
  7284. name: "Planet Eater",
  7285. height: math.unit(489, "megameters")
  7286. },
  7287. {
  7288. name: "Teramacro",
  7289. height: math.unit(2471635000000, "meters")
  7290. },
  7291. {
  7292. name: "Examacro",
  7293. height: math.unit(8.0624e+26, "meters")
  7294. }
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(1.72, "meters"),
  7302. weight: math.unit(68, "kg"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/lexi/front.svg"
  7306. }
  7307. }
  7308. },
  7309. [
  7310. {
  7311. name: "Very Smol",
  7312. height: math.unit(10, "mm")
  7313. },
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(6.8, "cm"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(1.72, "m")
  7322. }
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(1.69, "meters"),
  7330. weight: math.unit(68, "kg"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/martin/front.svg",
  7334. extra: 596 / 581
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Micro",
  7341. height: math.unit(6.85, "cm"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(1.69, "m")
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(1.69, "meters"),
  7355. weight: math.unit(68, "kg"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/juno/front.svg"
  7359. }
  7360. }
  7361. },
  7362. [
  7363. {
  7364. name: "Micro",
  7365. height: math.unit(7, "cm")
  7366. },
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(1.89, "m")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(353, "meters"),
  7374. default: true
  7375. }
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7380. {
  7381. front: {
  7382. height: math.unit(1.93, "meters"),
  7383. weight: math.unit(83, "kg"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/samantha/front.svg"
  7387. }
  7388. },
  7389. frontClothed: {
  7390. height: math.unit(1.93, "meters"),
  7391. weight: math.unit(83, "kg"),
  7392. name: "Front (Clothed)",
  7393. image: {
  7394. source: "./media/characters/samantha/front-clothed.svg"
  7395. }
  7396. },
  7397. back: {
  7398. height: math.unit(1.93, "meters"),
  7399. weight: math.unit(83, "kg"),
  7400. name: "Back",
  7401. image: {
  7402. source: "./media/characters/samantha/back.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(1.93, "m")
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(74, "meters"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro+",
  7418. height: math.unit(223, "meters"),
  7419. },
  7420. {
  7421. name: "Megamacro",
  7422. height: math.unit(8381, "meters"),
  7423. },
  7424. {
  7425. name: "Megamacro+",
  7426. height: math.unit(12000, "kilometers")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(1.92, "meters"),
  7435. weight: math.unit(80, "kg"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/dr-clay/front.svg"
  7439. }
  7440. },
  7441. frontClothed: {
  7442. height: math.unit(1.92, "meters"),
  7443. weight: math.unit(80, "kg"),
  7444. name: "Front (Clothed)",
  7445. image: {
  7446. source: "./media/characters/dr-clay/front-clothed.svg"
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(1.92, "m")
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(214, "meters"),
  7458. default: true
  7459. },
  7460. {
  7461. name: "Macro+",
  7462. height: math.unit(12.237, "meters"),
  7463. },
  7464. {
  7465. name: "Megamacro",
  7466. height: math.unit(557, "megameters"),
  7467. },
  7468. {
  7469. name: "Unimaginable",
  7470. height: math.unit(120e9, "lightyears")
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(2, "meters"),
  7479. weight: math.unit(80, "kg"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Teramacro",
  7489. height: math.unit(500000, "lightyears"),
  7490. default: true
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7496. {
  7497. crux: {
  7498. height: math.unit(2, "meters"),
  7499. weight: math.unit(150, "kg"),
  7500. name: "Crux",
  7501. image: {
  7502. source: "./media/characters/vemus/crux.svg",
  7503. extra: 1074/936,
  7504. bottom: 23/1097
  7505. }
  7506. },
  7507. skunkTanuki: {
  7508. height: math.unit(2, "meters"),
  7509. weight: math.unit(150, "kg"),
  7510. name: "Skunk-Tanuki",
  7511. image: {
  7512. source: "./media/characters/vemus/skunk-tanuki.svg",
  7513. extra: 926/893,
  7514. bottom: 20/946
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(4, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Big",
  7526. height: math.unit(8, "meters")
  7527. },
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(100, "meters")
  7531. },
  7532. {
  7533. name: "Macro+",
  7534. height: math.unit(1500, "meters")
  7535. },
  7536. {
  7537. name: "Stellar",
  7538. height: math.unit(14e8, "meters")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(70, "kg"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/beherit/front.svg",
  7551. extra: 1234/1109,
  7552. bottom: 55/1289
  7553. }
  7554. }
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(6, "feet")
  7560. },
  7561. {
  7562. name: "Lorg",
  7563. height: math.unit(25, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Lorger",
  7568. height: math.unit(75, "feet")
  7569. },
  7570. {
  7571. name: "Macro",
  7572. height: math.unit(200, "meters")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(2, "meters"),
  7581. weight: math.unit(150, "kg"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/everett/front.svg",
  7585. extra: 1017/866,
  7586. bottom: 86/1103
  7587. }
  7588. },
  7589. paw: {
  7590. height: math.unit(2 / 3.6, "meters"),
  7591. name: "Paw",
  7592. image: {
  7593. source: "./media/characters/everett/paw.svg"
  7594. }
  7595. },
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(15, "feet"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Lorg",
  7605. height: math.unit(70, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Lorger",
  7610. height: math.unit(250, "feet")
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(500, "meters")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(2, "meters"),
  7623. weight: math.unit(86, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/rose/front.svg",
  7627. extra: 1785/1636,
  7628. bottom: 30/1815
  7629. },
  7630. form: "liom",
  7631. default: true
  7632. },
  7633. frontSporty: {
  7634. height: math.unit(2, "meters"),
  7635. weight: math.unit(86, "kg"),
  7636. name: "Front (Sporty)",
  7637. image: {
  7638. source: "./media/characters/rose/front-sporty.svg",
  7639. extra: 350/335,
  7640. bottom: 10/360
  7641. },
  7642. form: "liom"
  7643. },
  7644. frontAlt: {
  7645. height: math.unit(1.6, "meters"),
  7646. weight: math.unit(86, "kg"),
  7647. name: "Front (Alt)",
  7648. image: {
  7649. source: "./media/characters/rose/front-alt.svg",
  7650. extra: 299/283,
  7651. bottom: 3/302
  7652. },
  7653. form: "liom"
  7654. },
  7655. plush: {
  7656. height: math.unit(2, "meters"),
  7657. weight: math.unit(86/3, "kg"),
  7658. name: "Plush",
  7659. image: {
  7660. source: "./media/characters/rose/plush.svg",
  7661. extra: 361/337,
  7662. bottom: 11/372
  7663. },
  7664. form: "plush",
  7665. default: true
  7666. },
  7667. faeStanding: {
  7668. height: math.unit(10, "cm"),
  7669. weight: math.unit(10, "grams"),
  7670. name: "Standing",
  7671. image: {
  7672. source: "./media/characters/rose/fae-standing.svg",
  7673. extra: 1189/1060,
  7674. bottom: 27/1216
  7675. },
  7676. form: "fae",
  7677. default: true
  7678. },
  7679. faeSitting: {
  7680. height: math.unit(5, "cm"),
  7681. weight: math.unit(10, "grams"),
  7682. name: "Sitting",
  7683. image: {
  7684. source: "./media/characters/rose/fae-sitting.svg",
  7685. extra: 737/577,
  7686. bottom: 356/1093
  7687. },
  7688. form: "fae"
  7689. },
  7690. faePaw: {
  7691. height: math.unit(1.35, "cm"),
  7692. name: "Paw",
  7693. image: {
  7694. source: "./media/characters/rose/fae-paw.svg"
  7695. },
  7696. form: "fae"
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "True Micro",
  7702. height: math.unit(9, "cm"),
  7703. form: "liom"
  7704. },
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(16, "cm"),
  7708. form: "liom"
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(1.85, "meters"),
  7713. default: true,
  7714. form: "liom"
  7715. },
  7716. {
  7717. name: "Mini-Macro",
  7718. height: math.unit(5, "meters"),
  7719. form: "liom"
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(15, "meters"),
  7724. form: "liom"
  7725. },
  7726. {
  7727. name: "True Macro",
  7728. height: math.unit(40, "meters"),
  7729. form: "liom"
  7730. },
  7731. {
  7732. name: "City Scale",
  7733. height: math.unit(1, "km"),
  7734. form: "liom"
  7735. },
  7736. {
  7737. name: "Plushie",
  7738. height: math.unit(9, "cm"),
  7739. form: "plush",
  7740. default: true
  7741. },
  7742. {
  7743. name: "Fae",
  7744. height: math.unit(10, "cm"),
  7745. form: "fae",
  7746. default: true
  7747. },
  7748. ],
  7749. {
  7750. "liom": {
  7751. name: "Liom"
  7752. },
  7753. "plush": {
  7754. name: "Plush"
  7755. },
  7756. "fae": {
  7757. name: "Fae Fox",
  7758. default: true
  7759. }
  7760. }
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(2, "meters"),
  7767. weight: math.unit(350, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/regal/front.svg"
  7771. }
  7772. },
  7773. back: {
  7774. height: math.unit(2, "meters"),
  7775. weight: math.unit(350, "lbs"),
  7776. name: "Back",
  7777. image: {
  7778. source: "./media/characters/regal/back.svg"
  7779. }
  7780. },
  7781. },
  7782. [
  7783. {
  7784. name: "Macro",
  7785. height: math.unit(350, "feet"),
  7786. default: true
  7787. }
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(4 + 11 / 12, "feet"),
  7795. weight: math.unit(100, "lbs"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/opal/front.svg"
  7799. }
  7800. },
  7801. frontAlt: {
  7802. height: math.unit(4 + 11 / 12, "feet"),
  7803. weight: math.unit(100, "lbs"),
  7804. name: "Front (Alt)",
  7805. image: {
  7806. source: "./media/characters/opal/front-alt.svg"
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Small",
  7813. height: math.unit(4 + 11 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(20, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(120, "feet")
  7823. },
  7824. {
  7825. name: "Megamacro",
  7826. height: math.unit(80, "miles")
  7827. },
  7828. {
  7829. name: "True Size",
  7830. height: math.unit(100000, "lightyears")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(200, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/vector-wuff/front.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(2.8, "meters")
  7850. },
  7851. {
  7852. name: "Macro",
  7853. height: math.unit(450, "meters"),
  7854. default: true
  7855. },
  7856. {
  7857. name: "Megamacro",
  7858. height: math.unit(15, "kilometers")
  7859. }
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(6, "feet"),
  7867. weight: math.unit(256, "lbs"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/dannik/front.svg"
  7871. }
  7872. }
  7873. },
  7874. [
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(69.57, "meters"),
  7878. default: true
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(120, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/azura-saharah/front.svg"
  7891. }
  7892. },
  7893. back: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(120, "lbs"),
  7896. name: "Back",
  7897. image: {
  7898. source: "./media/characters/azura-saharah/back.svg"
  7899. }
  7900. },
  7901. },
  7902. [
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(100, "feet"),
  7906. default: true
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7912. {
  7913. side: {
  7914. height: math.unit(5 + 4 / 12, "feet"),
  7915. weight: math.unit(163, "lbs"),
  7916. name: "Side",
  7917. image: {
  7918. source: "./media/characters/kennedy/side.svg"
  7919. }
  7920. }
  7921. },
  7922. [
  7923. {
  7924. name: "Standard Doggo",
  7925. height: math.unit(5 + 4 / 12, "feet")
  7926. },
  7927. {
  7928. name: "Big Doggo",
  7929. height: math.unit(25 + 3 / 12, "feet"),
  7930. default: true
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(5 + 5/12, "feet"),
  7939. weight: math.unit(100, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/odios-de-lunar/front.svg",
  7943. extra: 1468/1323,
  7944. bottom: 22/1490
  7945. }
  7946. }
  7947. },
  7948. [
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(3, "inches")
  7952. },
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(5.5, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(100, "feet")
  7961. },
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7966. {
  7967. back: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(220, "lbs"),
  7970. name: "Back",
  7971. image: {
  7972. source: "./media/characters/mandake/back.svg"
  7973. }
  7974. }
  7975. },
  7976. [
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(7, "feet"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(78, "feet")
  7985. },
  7986. {
  7987. name: "Macro+",
  7988. height: math.unit(300, "meters")
  7989. },
  7990. {
  7991. name: "Macro++",
  7992. height: math.unit(2400, "feet")
  7993. },
  7994. {
  7995. name: "Megamacro",
  7996. height: math.unit(5167, "meters")
  7997. },
  7998. {
  7999. name: "Gigamacro",
  8000. height: math.unit(41769, "miles")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(6, "feet"),
  8009. weight: math.unit(120, "lbs"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/yozey/front.svg"
  8013. }
  8014. },
  8015. frontAlt: {
  8016. height: math.unit(6, "feet"),
  8017. weight: math.unit(120, "lbs"),
  8018. name: "Front (Alt)",
  8019. image: {
  8020. source: "./media/characters/yozey/front-alt.svg"
  8021. }
  8022. },
  8023. side: {
  8024. height: math.unit(6, "feet"),
  8025. weight: math.unit(120, "lbs"),
  8026. name: "Side",
  8027. image: {
  8028. source: "./media/characters/yozey/side.svg"
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(3, "inches"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(6, "feet")
  8041. }
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8046. {
  8047. front: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(103, "lbs"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/valeska-voss/front.svg"
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Mini-Sized Sub",
  8059. height: math.unit(3.1, "inches")
  8060. },
  8061. {
  8062. name: "Mid-Sized Sub",
  8063. height: math.unit(6.2, "inches")
  8064. },
  8065. {
  8066. name: "Full-Sized Sub",
  8067. height: math.unit(9.3, "inches")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(5 + 2 / 12, "foot"),
  8072. default: true
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(160, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/gene-zeta/front.svg",
  8085. extra: 3006 / 2826,
  8086. bottom: 182 / 3188
  8087. }
  8088. }
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(6, "inches")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(5 + 11 / 12, "foot"),
  8098. default: true
  8099. },
  8100. {
  8101. name: "Macro",
  8102. height: math.unit(140, "feet")
  8103. },
  8104. {
  8105. name: "Supercharged",
  8106. height: math.unit(2500, "feet")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(350, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/razinox/front.svg",
  8119. extra: 1686 / 1548,
  8120. bottom: 28.2 / 1868
  8121. }
  8122. },
  8123. back: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(350, "lbs"),
  8126. name: "Back",
  8127. image: {
  8128. source: "./media/characters/razinox/back.svg",
  8129. extra: 1660 / 1590,
  8130. bottom: 15 / 1665
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(10 + 8 / 12, "foot")
  8138. },
  8139. {
  8140. name: "Minimacro",
  8141. height: math.unit(15, "foot")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(60, "foot"),
  8146. default: true
  8147. },
  8148. {
  8149. name: "Megamacro",
  8150. height: math.unit(5, "miles")
  8151. },
  8152. {
  8153. name: "Gigamacro",
  8154. height: math.unit(6000, "miles")
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(6, "feet"),
  8163. weight: math.unit(150, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/cobalt/front.svg"
  8167. }
  8168. }
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(8 + 1 / 12, "foot")
  8174. },
  8175. {
  8176. name: "Macro",
  8177. height: math.unit(111, "foot"),
  8178. default: true
  8179. },
  8180. {
  8181. name: "Supracosmic",
  8182. height: math.unit(1e42, "feet")
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8188. {
  8189. front: {
  8190. height: math.unit(5, "inches"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/amanda/front.svg",
  8194. extra: 926/791,
  8195. bottom: 38/964
  8196. }
  8197. },
  8198. back: {
  8199. height: math.unit(5, "inches"),
  8200. name: "Back",
  8201. image: {
  8202. source: "./media/characters/amanda/back.svg",
  8203. extra: 909/805,
  8204. bottom: 43/952
  8205. }
  8206. },
  8207. },
  8208. [
  8209. {
  8210. name: "Micro",
  8211. height: math.unit(5, "inches"),
  8212. default: true
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(2.75, "meters"),
  8221. weight: math.unit(1200, "lb"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/teal/front.svg",
  8225. extra: 2463 / 2320,
  8226. bottom: 166 / 2629
  8227. }
  8228. },
  8229. back: {
  8230. height: math.unit(2.75, "meters"),
  8231. weight: math.unit(1200, "lb"),
  8232. name: "Back",
  8233. image: {
  8234. source: "./media/characters/teal/back.svg",
  8235. extra: 2580 / 2489,
  8236. bottom: 151 / 2731
  8237. }
  8238. },
  8239. sitting: {
  8240. height: math.unit(1.9, "meters"),
  8241. weight: math.unit(1200, "lb"),
  8242. name: "Sitting",
  8243. image: {
  8244. source: "./media/characters/teal/sitting.svg",
  8245. extra: 623 / 590,
  8246. bottom: 121 / 744
  8247. }
  8248. },
  8249. standing: {
  8250. height: math.unit(2.75, "meters"),
  8251. weight: math.unit(1200, "lb"),
  8252. name: "Standing",
  8253. image: {
  8254. source: "./media/characters/teal/standing.svg",
  8255. extra: 923 / 893,
  8256. bottom: 60 / 983
  8257. }
  8258. },
  8259. stretching: {
  8260. height: math.unit(3.65, "meters"),
  8261. weight: math.unit(1200, "lb"),
  8262. name: "Stretching",
  8263. image: {
  8264. source: "./media/characters/teal/stretching.svg",
  8265. extra: 1276 / 1244,
  8266. bottom: 0 / 1276
  8267. }
  8268. },
  8269. legged: {
  8270. height: math.unit(1.3, "meters"),
  8271. weight: math.unit(100, "lb"),
  8272. name: "Legged",
  8273. image: {
  8274. source: "./media/characters/teal/legged.svg",
  8275. extra: 462 / 437,
  8276. bottom: 24 / 486
  8277. }
  8278. },
  8279. naga: {
  8280. height: math.unit(5.4, "meters"),
  8281. weight: math.unit(4000, "lb"),
  8282. name: "Naga",
  8283. image: {
  8284. source: "./media/characters/teal/naga.svg",
  8285. extra: 1902 / 1858,
  8286. bottom: 0 / 1902
  8287. }
  8288. },
  8289. hand: {
  8290. height: math.unit(0.52, "meters"),
  8291. name: "Hand",
  8292. image: {
  8293. source: "./media/characters/teal/hand.svg"
  8294. }
  8295. },
  8296. maw: {
  8297. height: math.unit(0.43, "meters"),
  8298. name: "Maw",
  8299. image: {
  8300. source: "./media/characters/teal/maw.svg"
  8301. }
  8302. },
  8303. slit: {
  8304. height: math.unit(0.25, "meters"),
  8305. name: "Slit",
  8306. image: {
  8307. source: "./media/characters/teal/slit.svg"
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(2.75, "meters"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(300, "feet")
  8320. },
  8321. {
  8322. name: "Macro+",
  8323. height: math.unit(2000, "feet")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8329. {
  8330. frontCat: {
  8331. height: math.unit(6, "feet"),
  8332. weight: math.unit(180, "lbs"),
  8333. name: "Front (Cat)",
  8334. image: {
  8335. source: "./media/characters/ravin-amulet/front-cat.svg"
  8336. }
  8337. },
  8338. frontCatAlt: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(180, "lbs"),
  8341. name: "Front (Alt, Cat)",
  8342. image: {
  8343. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8344. }
  8345. },
  8346. frontWerewolf: {
  8347. height: math.unit(6 * 1.2, "feet"),
  8348. weight: math.unit(225, "lbs"),
  8349. name: "Front (Werewolf)",
  8350. image: {
  8351. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8352. }
  8353. },
  8354. backWerewolf: {
  8355. height: math.unit(6 * 1.2, "feet"),
  8356. weight: math.unit(225, "lbs"),
  8357. name: "Back (Werewolf)",
  8358. image: {
  8359. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Nano",
  8366. height: math.unit(1, "micrometer")
  8367. },
  8368. {
  8369. name: "Micro",
  8370. height: math.unit(1, "inch")
  8371. },
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(6, "feet"),
  8375. default: true
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(60, "feet")
  8380. }
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(165, "lbs"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/fluoresce/front.svg"
  8392. }
  8393. }
  8394. },
  8395. [
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(6, "cm")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(5 + 7 / 12, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(56, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(1.9, "miles")
  8412. },
  8413. ]
  8414. ))
  8415. characterMakers.push(() => makeCharacter(
  8416. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8417. {
  8418. front: {
  8419. height: math.unit(9 + 6 / 12, "feet"),
  8420. weight: math.unit(523, "lbs"),
  8421. name: "Side",
  8422. image: {
  8423. source: "./media/characters/aurora/side.svg",
  8424. extra: 474/393,
  8425. bottom: 5/479
  8426. }
  8427. }
  8428. },
  8429. [
  8430. {
  8431. name: "Normal",
  8432. height: math.unit(9 + 6 / 12, "feet")
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(96, "feet"),
  8437. default: true
  8438. },
  8439. {
  8440. name: "Macro+",
  8441. height: math.unit(243, "feet")
  8442. },
  8443. ]
  8444. ))
  8445. characterMakers.push(() => makeCharacter(
  8446. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8447. {
  8448. front: {
  8449. height: math.unit(194, "cm"),
  8450. weight: math.unit(90, "kg"),
  8451. name: "Front",
  8452. image: {
  8453. source: "./media/characters/ranek/front.svg",
  8454. extra: 1862/1791,
  8455. bottom: 80/1942
  8456. }
  8457. },
  8458. back: {
  8459. height: math.unit(194, "cm"),
  8460. weight: math.unit(90, "kg"),
  8461. name: "Back",
  8462. image: {
  8463. source: "./media/characters/ranek/back.svg",
  8464. extra: 1853/1787,
  8465. bottom: 74/1927
  8466. }
  8467. },
  8468. feral: {
  8469. height: math.unit(30, "cm"),
  8470. weight: math.unit(1.6, "lbs"),
  8471. name: "Feral",
  8472. image: {
  8473. source: "./media/characters/ranek/feral.svg",
  8474. extra: 990/631,
  8475. bottom: 29/1019
  8476. }
  8477. },
  8478. },
  8479. [
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(194, "cm"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(100, "meters")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(5 + 6 / 12, "feet"),
  8496. weight: math.unit(153, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/andrew-cooper/front.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Nano",
  8506. height: math.unit(1, "mm")
  8507. },
  8508. {
  8509. name: "Micro",
  8510. height: math.unit(2, "inches")
  8511. },
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(5 + 6 / 12, "feet"),
  8515. default: true
  8516. }
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(180, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/akane-sato/front.svg",
  8528. extra: 1219 / 1140
  8529. }
  8530. },
  8531. back: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(180, "lbs"),
  8534. name: "Back",
  8535. image: {
  8536. source: "./media/characters/akane-sato/back.svg",
  8537. extra: 1219 / 1170
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(2.5, "meters")
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(250, "meters"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Megamacro",
  8553. height: math.unit(25, "km")
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(65, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/rook/front.svg",
  8566. extra: 960 / 950
  8567. }
  8568. }
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(8.8, "feet")
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(88, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Megamacro",
  8582. height: math.unit(8, "miles")
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(12 + 2 / 12, "feet"),
  8591. weight: math.unit(808, "lbs"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/prodigy/front.svg"
  8595. }
  8596. }
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(12 + 2 / 12, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Macro",
  8606. height: math.unit(143, "feet")
  8607. },
  8608. {
  8609. name: "Macro+",
  8610. height: math.unit(400, "feet")
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(6, "feet"),
  8619. weight: math.unit(225, "lbs"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/daniel/front.svg"
  8623. }
  8624. },
  8625. leaning: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(225, "lbs"),
  8628. name: "Leaning",
  8629. image: {
  8630. source: "./media/characters/daniel/leaning.svg"
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(1000, "feet"),
  8638. default: true
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(88, "lbs"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/chiros/front.svg",
  8651. extra: 306 / 226
  8652. }
  8653. },
  8654. side: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(88, "lbs"),
  8657. name: "Side",
  8658. image: {
  8659. source: "./media/characters/chiros/side.svg",
  8660. extra: 306 / 226
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(6, "cm"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8674. {
  8675. front: {
  8676. height: math.unit(6, "feet"),
  8677. weight: math.unit(100, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/selka/front.svg",
  8681. extra: 947 / 887
  8682. }
  8683. }
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(5, "cm"),
  8689. default: true
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(8 + 3 / 12, "feet"),
  8698. weight: math.unit(424, "lbs"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/verin/front.svg",
  8702. extra: 1845 / 1550
  8703. }
  8704. },
  8705. frontArmored: {
  8706. height: math.unit(8 + 3 / 12, "feet"),
  8707. weight: math.unit(424, "lbs"),
  8708. name: "Front (Armored)",
  8709. image: {
  8710. source: "./media/characters/verin/front-armor.svg",
  8711. extra: 1845 / 1550,
  8712. bottom: 0.01
  8713. }
  8714. },
  8715. back: {
  8716. height: math.unit(8 + 3 / 12, "feet"),
  8717. weight: math.unit(424, "lbs"),
  8718. name: "Back",
  8719. image: {
  8720. source: "./media/characters/verin/back.svg",
  8721. bottom: 0.1,
  8722. extra: 1
  8723. }
  8724. },
  8725. foot: {
  8726. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8727. name: "Foot",
  8728. image: {
  8729. source: "./media/characters/verin/foot.svg"
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(8 + 3 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Minimacro",
  8740. height: math.unit(21, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(626, "feet")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(2.718, "meters"),
  8754. weight: math.unit(150, "lbs"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/sovrim-terraquian/front.svg",
  8758. extra: 1752/1689,
  8759. bottom: 36/1788
  8760. }
  8761. },
  8762. back: {
  8763. height: math.unit(2.718, "meters"),
  8764. weight: math.unit(150, "lbs"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/sovrim-terraquian/back.svg",
  8768. extra: 1698/1657,
  8769. bottom: 58/1756
  8770. }
  8771. },
  8772. tongue: {
  8773. height: math.unit(2.865, "feet"),
  8774. name: "Tongue",
  8775. image: {
  8776. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8777. }
  8778. },
  8779. hand: {
  8780. height: math.unit(1.61, "feet"),
  8781. name: "Hand",
  8782. image: {
  8783. source: "./media/characters/sovrim-terraquian/hand.svg"
  8784. }
  8785. },
  8786. foot: {
  8787. height: math.unit(1.05, "feet"),
  8788. name: "Foot",
  8789. image: {
  8790. source: "./media/characters/sovrim-terraquian/foot.svg"
  8791. }
  8792. },
  8793. footAlt: {
  8794. height: math.unit(0.88, "feet"),
  8795. name: "Foot (Alt)",
  8796. image: {
  8797. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8798. }
  8799. },
  8800. },
  8801. [
  8802. {
  8803. name: "Micro",
  8804. height: math.unit(2, "inches")
  8805. },
  8806. {
  8807. name: "Small",
  8808. height: math.unit(1, "meter")
  8809. },
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(Math.E, "meters"),
  8813. default: true
  8814. },
  8815. {
  8816. name: "Macro",
  8817. height: math.unit(20, "meters")
  8818. },
  8819. {
  8820. name: "Macro+",
  8821. height: math.unit(400, "meters")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(7, "feet"),
  8830. weight: math.unit(489, "lbs"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/reece-silvermane/front.svg",
  8834. bottom: 0.02,
  8835. extra: 1
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(1.5, "miles"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(78, "kg"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/kane/front.svg",
  8856. extra: 978 / 899
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(2.1, "m"),
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(1, "km"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(200, "kg"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/tegon/front.svg",
  8881. bottom: 0.01,
  8882. extra: 1
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(1, "inch")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(6 + 3 / 12, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(300, "feet")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(69, "miles")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8908. {
  8909. side: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(2304, "lbs"),
  8912. name: "Side",
  8913. image: {
  8914. source: "./media/characters/arcturax/side.svg",
  8915. extra: 790 / 376,
  8916. bottom: 0.01
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Micro",
  8923. height: math.unit(2, "inch")
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(6, "feet")
  8928. },
  8929. {
  8930. name: "Macro",
  8931. height: math.unit(39, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(7, "miles")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(50, "lbs"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/sentri/front.svg",
  8949. extra: 1750 / 1570,
  8950. bottom: 0.025
  8951. }
  8952. },
  8953. frontAlt: {
  8954. height: math.unit(6, "feet"),
  8955. weight: math.unit(50, "lbs"),
  8956. name: "Front (Alt)",
  8957. image: {
  8958. source: "./media/characters/sentri/front-alt.svg",
  8959. extra: 1750 / 1570,
  8960. bottom: 0.025
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(15, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(2500, "feet")
  8973. }
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(5 + 8 / 12, "feet"),
  8981. weight: math.unit(130, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/corvin/front.svg",
  8985. extra: 1803 / 1629
  8986. }
  8987. },
  8988. frontShirt: {
  8989. height: math.unit(5 + 8 / 12, "feet"),
  8990. weight: math.unit(130, "lbs"),
  8991. name: "Front (Shirt)",
  8992. image: {
  8993. source: "./media/characters/corvin/front-shirt.svg",
  8994. extra: 1803 / 1629
  8995. }
  8996. },
  8997. frontPoncho: {
  8998. height: math.unit(5 + 8 / 12, "feet"),
  8999. weight: math.unit(130, "lbs"),
  9000. name: "Front (Poncho)",
  9001. image: {
  9002. source: "./media/characters/corvin/front-poncho.svg",
  9003. extra: 1803 / 1629
  9004. }
  9005. },
  9006. side: {
  9007. height: math.unit(5 + 8 / 12, "feet"),
  9008. weight: math.unit(130, "lbs"),
  9009. name: "Side",
  9010. image: {
  9011. source: "./media/characters/corvin/side.svg",
  9012. extra: 1012 / 945
  9013. }
  9014. },
  9015. back: {
  9016. height: math.unit(5 + 8 / 12, "feet"),
  9017. weight: math.unit(130, "lbs"),
  9018. name: "Back",
  9019. image: {
  9020. source: "./media/characters/corvin/back.svg",
  9021. extra: 1803 / 1629
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Micro",
  9028. height: math.unit(3, "inches")
  9029. },
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(5 + 8 / 12, "feet")
  9033. },
  9034. {
  9035. name: "Macro",
  9036. height: math.unit(300, "feet"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Megamacro",
  9041. height: math.unit(500, "miles")
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(135, "lbs"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/q/front.svg",
  9054. extra: 854 / 752,
  9055. bottom: 0.005
  9056. }
  9057. },
  9058. back: {
  9059. height: math.unit(6, "feet"),
  9060. weight: math.unit(130, "lbs"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/q/back.svg",
  9064. extra: 854 / 752
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(90, "feet"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Extra Macro",
  9076. height: math.unit(300, "feet"),
  9077. },
  9078. {
  9079. name: "BIG WALF",
  9080. height: math.unit(750, "feet"),
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(3, "feet"),
  9089. weight: math.unit(28, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/citrine/front.svg"
  9093. }
  9094. }
  9095. },
  9096. [
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(3, "feet"),
  9100. default: true
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9106. {
  9107. front: {
  9108. height: math.unit(14, "feet"),
  9109. weight: math.unit(1450, "kg"),
  9110. preyCapacity: math.unit(15, "people"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/aura-starwind/front.svg",
  9114. extra: 1440/1327,
  9115. bottom: 11/1451
  9116. }
  9117. },
  9118. side: {
  9119. height: math.unit(14, "feet"),
  9120. weight: math.unit(1450, "kg"),
  9121. preyCapacity: math.unit(15, "people"),
  9122. name: "Side",
  9123. image: {
  9124. source: "./media/characters/aura-starwind/side.svg",
  9125. extra: 1654 / 1497
  9126. }
  9127. },
  9128. taur: {
  9129. height: math.unit(18, "feet"),
  9130. weight: math.unit(5500, "kg"),
  9131. preyCapacity: math.unit(50, "people"),
  9132. name: "Taur",
  9133. image: {
  9134. source: "./media/characters/aura-starwind/taur.svg",
  9135. extra: 1760 / 1650
  9136. }
  9137. },
  9138. feral: {
  9139. height: math.unit(46, "feet"),
  9140. weight: math.unit(25000, "kg"),
  9141. preyCapacity: math.unit(120, "people"),
  9142. name: "Feral",
  9143. image: {
  9144. source: "./media/characters/aura-starwind/feral.svg"
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Normal",
  9151. height: math.unit(14, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Macro",
  9156. height: math.unit(50, "meters")
  9157. },
  9158. {
  9159. name: "Megamacro",
  9160. height: math.unit(5000, "meters")
  9161. },
  9162. {
  9163. name: "Gigamacro",
  9164. height: math.unit(100000, "kilometers")
  9165. },
  9166. ]
  9167. ))
  9168. characterMakers.push(() => makeCharacter(
  9169. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9170. {
  9171. front: {
  9172. height: math.unit(2 + 7 / 12, "feet"),
  9173. weight: math.unit(32, "lbs"),
  9174. name: "Front",
  9175. image: {
  9176. source: "./media/characters/rivet/front.svg",
  9177. extra: 1716 / 1658,
  9178. bottom: 0.03
  9179. }
  9180. },
  9181. foot: {
  9182. height: math.unit(0.551, "feet"),
  9183. name: "Rivet's Foot",
  9184. image: {
  9185. source: "./media/characters/rivet/foot.svg"
  9186. },
  9187. rename: true
  9188. }
  9189. },
  9190. [
  9191. {
  9192. name: "Micro",
  9193. height: math.unit(1.5, "inches"),
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(2 + 7 / 12, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(85, "feet")
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(2.2, "km")
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(5 + 9 / 12, "feet"),
  9215. weight: math.unit(150, "lbs"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/coffee/front.svg",
  9219. extra: 946/880,
  9220. bottom: 66/1012
  9221. }
  9222. },
  9223. foot: {
  9224. height: math.unit(1.29, "feet"),
  9225. name: "Foot",
  9226. image: {
  9227. source: "./media/characters/coffee/foot.svg"
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Micro",
  9234. height: math.unit(2, "inches"),
  9235. },
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(5 + 9 / 12, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Macro",
  9243. height: math.unit(800, "feet")
  9244. },
  9245. {
  9246. name: "Megamacro",
  9247. height: math.unit(25, "miles")
  9248. }
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(6, "feet"),
  9256. weight: math.unit(200, "lbs"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/chari-gal/front.svg",
  9260. extra: 1568 / 1385,
  9261. bottom: 0.047
  9262. }
  9263. },
  9264. gigantamax: {
  9265. height: math.unit(6 * 16, "feet"),
  9266. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9267. name: "Gigantamax",
  9268. image: {
  9269. source: "./media/characters/chari-gal/gigantamax.svg",
  9270. extra: 1124 / 888,
  9271. bottom: 0.03
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Normal",
  9278. height: math.unit(5 + 7 / 12, "feet")
  9279. },
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(200, "feet"),
  9283. default: true
  9284. }
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9289. {
  9290. front: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(150, "lbs"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/nova/front.svg",
  9296. extra: 5000 / 4722,
  9297. bottom: 0.02
  9298. }
  9299. }
  9300. },
  9301. [
  9302. {
  9303. name: "Micro-",
  9304. height: math.unit(0.8, "inches")
  9305. },
  9306. {
  9307. name: "Micro",
  9308. height: math.unit(2, "inches"),
  9309. default: true
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9315. {
  9316. koboldFront: {
  9317. height: math.unit(3 + 1 / 12, "feet"),
  9318. weight: math.unit(21.7, "lbs"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/argent/kobold-front.svg",
  9322. extra: 1471 / 1331,
  9323. bottom: 100.8 / 1575.5
  9324. },
  9325. form: "kobold",
  9326. default: true
  9327. },
  9328. dragonFront: {
  9329. height: math.unit(75, "inches"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/argent/dragon-front.svg",
  9333. extra: 1389/1248,
  9334. bottom: 54/1443
  9335. },
  9336. form: "dragon",
  9337. },
  9338. dragonBack: {
  9339. height: math.unit(75, "inches"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/argent/dragon-back.svg",
  9343. extra: 1399/1271,
  9344. bottom: 23/1422
  9345. },
  9346. form: "dragon",
  9347. },
  9348. dragonDressed: {
  9349. height: math.unit(75, "inches"),
  9350. name: "Dressed",
  9351. image: {
  9352. source: "./media/characters/argent/dragon-dressed.svg",
  9353. extra: 1350/1215,
  9354. bottom: 26/1376
  9355. },
  9356. form: "dragon"
  9357. },
  9358. dragonHead: {
  9359. height: math.unit(23.5, "inches"),
  9360. name: "Head",
  9361. image: {
  9362. source: "./media/characters/argent/dragon-head.svg"
  9363. },
  9364. form: "dragon",
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Micro",
  9370. height: math.unit(2, "inches"),
  9371. form: "kobold",
  9372. },
  9373. {
  9374. name: "Normal",
  9375. height: math.unit(3 + 1 / 12, "feet"),
  9376. form: "kobold",
  9377. default: true
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(120, "feet"),
  9382. form: "kobold",
  9383. },
  9384. {
  9385. name: "Speck",
  9386. height: math.unit(1, "mm"),
  9387. form: "dragon",
  9388. },
  9389. {
  9390. name: "Tiny",
  9391. height: math.unit(1, "cm"),
  9392. form: "dragon",
  9393. },
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(5, "cm"),
  9397. form: "dragon",
  9398. },
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(75, "inches"),
  9402. form: "dragon",
  9403. default: true
  9404. },
  9405. {
  9406. name: "Extra Tall",
  9407. height: math.unit(9, "feet"),
  9408. form: "dragon",
  9409. },
  9410. {
  9411. name: "Inconvenient",
  9412. height: math.unit(5, "meters"),
  9413. form: "dragon",
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(70, "meters"),
  9418. form: "dragon",
  9419. },
  9420. {
  9421. name: "Macro+",
  9422. height: math.unit(250, "meters"),
  9423. form: "dragon",
  9424. },
  9425. {
  9426. name: "Megamacro",
  9427. height: math.unit(20, "km"),
  9428. form: "dragon",
  9429. },
  9430. {
  9431. name: "Mountainous",
  9432. height: math.unit(100, "km"),
  9433. form: "dragon",
  9434. },
  9435. {
  9436. name: "Continental",
  9437. height: math.unit(2, "megameters"),
  9438. form: "dragon",
  9439. },
  9440. {
  9441. name: "Too Big",
  9442. height: math.unit(900, "megameters"),
  9443. form: "dragon",
  9444. },
  9445. ],
  9446. {
  9447. "kobold": {
  9448. name: "Kobold",
  9449. default: true
  9450. },
  9451. "dragon": {
  9452. name: "Dragon",
  9453. },
  9454. }
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9458. {
  9459. lamp: {
  9460. height: math.unit(7 * 1559 / 989, "feet"),
  9461. name: "Magic Lamp",
  9462. image: {
  9463. source: "./media/characters/mira-al-cul/lamp.svg",
  9464. extra: 1617 / 1559
  9465. }
  9466. },
  9467. front: {
  9468. height: math.unit(7, "feet"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/mira-al-cul/front.svg",
  9472. extra: 1044 / 990
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Heavily Restricted",
  9479. height: math.unit(7 * 1559 / 989, "feet")
  9480. },
  9481. {
  9482. name: "Freshly Freed",
  9483. height: math.unit(50 * 1559 / 989, "feet")
  9484. },
  9485. {
  9486. name: "World Encompassing",
  9487. height: math.unit(10000 * 1559 / 989, "miles")
  9488. },
  9489. {
  9490. name: "Galactic",
  9491. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9492. },
  9493. {
  9494. name: "Palmed Universe",
  9495. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Multiversal Matriarch",
  9500. height: math.unit(8.87e10, "yottameters")
  9501. },
  9502. {
  9503. name: "Void Mother",
  9504. height: math.unit(3.14e110, "yottaparsecs")
  9505. },
  9506. {
  9507. name: "Toying with Transcendence",
  9508. height: math.unit(1e307, "meters")
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9514. {
  9515. front: {
  9516. height: math.unit(17 + 1 / 12, "feet"),
  9517. weight: math.unit(476.2 * 5, "lbs"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/kuro-shi-uchū/front.svg",
  9521. extra: 2329 / 1835,
  9522. bottom: 0.02
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(2, "inches")
  9530. },
  9531. {
  9532. name: "Normal",
  9533. height: math.unit(12, "meters")
  9534. },
  9535. {
  9536. name: "Planetary",
  9537. height: math.unit(0.00929, "AU"),
  9538. default: true
  9539. },
  9540. {
  9541. name: "Universal",
  9542. height: math.unit(20, "gigaparsecs")
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(5 + 2 / 12, "feet"),
  9551. weight: math.unit(120, "lbs"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/katherine/front.svg",
  9555. extra: 2075 / 1969
  9556. }
  9557. },
  9558. dress: {
  9559. height: math.unit(5 + 2 / 12, "feet"),
  9560. weight: math.unit(120, "lbs"),
  9561. name: "Dress",
  9562. image: {
  9563. source: "./media/characters/katherine/dress.svg",
  9564. extra: 2258 / 2064
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(1, "inches"),
  9572. default: true
  9573. },
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(5 + 2 / 12, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(100, "meters")
  9581. },
  9582. {
  9583. name: "Megamacro",
  9584. height: math.unit(80, "miles")
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(7 + 8 / 12, "feet"),
  9593. weight: math.unit(250, "lbs"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/yevis/front.svg",
  9597. extra: 1938 / 1755
  9598. }
  9599. }
  9600. },
  9601. [
  9602. {
  9603. name: "Mortal",
  9604. height: math.unit(7 + 8 / 12, "feet")
  9605. },
  9606. {
  9607. name: "Battle",
  9608. height: math.unit(25 + 11 / 12, "feet")
  9609. },
  9610. {
  9611. name: "Wrath",
  9612. height: math.unit(1654 + 11 / 12, "feet")
  9613. },
  9614. {
  9615. name: "Planet Destroyer",
  9616. height: math.unit(12000, "miles")
  9617. },
  9618. {
  9619. name: "Galaxy Conqueror",
  9620. height: math.unit(1.45, "zettameters"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Universal War",
  9625. height: math.unit(184, "gigaparsecs")
  9626. },
  9627. {
  9628. name: "Eternity War",
  9629. height: math.unit(1.98e55, "yottaparsecs")
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9635. {
  9636. front: {
  9637. height: math.unit(5 + 8 / 12, "feet"),
  9638. weight: math.unit(63, "kg"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/xavier/front.svg",
  9642. extra: 944 / 883
  9643. }
  9644. },
  9645. frontStretch: {
  9646. height: math.unit(5 + 8 / 12, "feet"),
  9647. weight: math.unit(63, "kg"),
  9648. name: "Stretching",
  9649. image: {
  9650. source: "./media/characters/xavier/front-stretch.svg",
  9651. extra: 962 / 820
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Normal",
  9658. height: math.unit(5 + 8 / 12, "feet")
  9659. },
  9660. {
  9661. name: "Macro",
  9662. height: math.unit(100, "meters"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "McLargeHuge",
  9667. height: math.unit(10, "miles")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(5 + 5 / 12, "feet"),
  9676. weight: math.unit(150, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/joshii/front.svg",
  9680. extra: 765 / 653,
  9681. bottom: 51 / 816
  9682. }
  9683. },
  9684. foot: {
  9685. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9686. name: "Foot",
  9687. image: {
  9688. source: "./media/characters/joshii/foot.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(2, "inches")
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(5 + 5 / 12, "feet")
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(785, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(24.5, "miles")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(6, "feet"),
  9717. weight: math.unit(150, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/goddess-elizabeth/front.svg",
  9721. extra: 1800 / 1525,
  9722. bottom: 0.005
  9723. }
  9724. },
  9725. foot: {
  9726. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9727. name: "Foot",
  9728. image: {
  9729. source: "./media/characters/goddess-elizabeth/foot.svg"
  9730. }
  9731. },
  9732. mouth: {
  9733. height: math.unit(6, "feet"),
  9734. name: "Mouth",
  9735. image: {
  9736. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Micro",
  9743. height: math.unit(12, "feet")
  9744. },
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(80, "miles"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Macro",
  9752. height: math.unit(15000, "parsecs")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9758. {
  9759. front: {
  9760. height: math.unit(5 + 9 / 12, "feet"),
  9761. weight: math.unit(144, "lb"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/kara/front.svg"
  9765. }
  9766. },
  9767. feet: {
  9768. height: math.unit(6 / 6.765, "feet"),
  9769. name: "Kara's Feet",
  9770. rename: true,
  9771. image: {
  9772. source: "./media/characters/kara/feet.svg"
  9773. }
  9774. },
  9775. },
  9776. [
  9777. {
  9778. name: "Normal",
  9779. height: math.unit(5 + 9 / 12, "feet")
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(174, "feet"),
  9784. default: true
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9790. {
  9791. front: {
  9792. height: math.unit(18, "feet"),
  9793. weight: math.unit(4050, "lb"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/tyrone/front.svg",
  9797. extra: 2405 / 2270,
  9798. bottom: 182 / 2587
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(18, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(300, "feet")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(15, "km")
  9815. },
  9816. {
  9817. name: "Gigamacro",
  9818. height: math.unit(500, "km")
  9819. },
  9820. {
  9821. name: "Teramacro",
  9822. height: math.unit(0.5, "gigameters")
  9823. },
  9824. {
  9825. name: "Omnimacro",
  9826. height: math.unit(1e252, "yottauniverse")
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(7 + 8 / 12, "feet"),
  9835. weight: math.unit(120, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/danny/front.svg",
  9839. extra: 1490 / 1350
  9840. }
  9841. },
  9842. back: {
  9843. height: math.unit(7 + 8 / 12, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Back",
  9846. image: {
  9847. source: "./media/characters/danny/back.svg",
  9848. extra: 1490 / 1350
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(7 + 8 / 12, "feet"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(3.5, "inches"),
  9865. weight: math.unit(19, "grams"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/mallow/front.svg",
  9869. extra: 471 / 431
  9870. }
  9871. },
  9872. back: {
  9873. height: math.unit(3.5, "inches"),
  9874. weight: math.unit(19, "grams"),
  9875. name: "Back",
  9876. image: {
  9877. source: "./media/characters/mallow/back.svg",
  9878. extra: 471 / 431
  9879. }
  9880. },
  9881. },
  9882. [
  9883. {
  9884. name: "Normal",
  9885. height: math.unit(3.5, "inches"),
  9886. default: true
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(9, "feet"),
  9895. weight: math.unit(230, "kg"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/starry-aqua/front.svg"
  9899. }
  9900. },
  9901. back: {
  9902. height: math.unit(9, "feet"),
  9903. weight: math.unit(230, "kg"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/starry-aqua/back.svg"
  9907. }
  9908. },
  9909. hand: {
  9910. height: math.unit(9 * 0.1168, "feet"),
  9911. name: "Hand",
  9912. image: {
  9913. source: "./media/characters/starry-aqua/hand.svg"
  9914. }
  9915. },
  9916. foot: {
  9917. height: math.unit(9 * 0.18, "feet"),
  9918. name: "Foot",
  9919. image: {
  9920. source: "./media/characters/starry-aqua/foot.svg"
  9921. }
  9922. }
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(3, "inches")
  9928. },
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(9, "feet")
  9932. },
  9933. {
  9934. name: "Macro",
  9935. height: math.unit(300, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Megamacro",
  9940. height: math.unit(3200, "feet")
  9941. }
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(15, "feet"),
  9949. weight: math.unit(5026, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/luka-towers/front.svg",
  9953. extra: 1269/1133,
  9954. bottom: 51/1320
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Normal",
  9961. height: math.unit(15, "feet"),
  9962. default: true
  9963. },
  9964. {
  9965. name: "Minimacro",
  9966. height: math.unit(25, "feet")
  9967. },
  9968. {
  9969. name: "Macro",
  9970. height: math.unit(320, "feet")
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(35000, "feet")
  9975. },
  9976. {
  9977. name: "Gigamacro",
  9978. height: math.unit(4000, "miles")
  9979. },
  9980. {
  9981. name: "Teramacro",
  9982. height: math.unit(15000, "miles")
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9988. {
  9989. front: {
  9990. height: math.unit(6, "feet"),
  9991. weight: math.unit(150, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/natalie-nightring/front.svg",
  9995. extra: 1,
  9996. bottom: 0.06
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Uh Oh",
  10003. height: math.unit(0.1, "mm")
  10004. },
  10005. {
  10006. name: "Small",
  10007. height: math.unit(3, "inches")
  10008. },
  10009. {
  10010. name: "Human Scale",
  10011. height: math.unit(6, "feet")
  10012. },
  10013. {
  10014. name: "Librarian",
  10015. height: math.unit(50, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Immense",
  10020. height: math.unit(200, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(180, "lbs"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/danni-rosie/front.svg",
  10033. extra: 1260 / 1128,
  10034. bottom: 0.022
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Micro",
  10041. height: math.unit(2, "inches"),
  10042. default: true
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(5 + 9 / 12, "feet"),
  10051. weight: math.unit(220, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/samantha-kruse/front.svg",
  10055. extra: (985 / 935),
  10056. bottom: 0.03
  10057. }
  10058. },
  10059. frontUndressed: {
  10060. height: math.unit(5 + 9 / 12, "feet"),
  10061. weight: math.unit(220, "lb"),
  10062. name: "Front (Undressed)",
  10063. image: {
  10064. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10065. extra: (973 / 923),
  10066. bottom: 0.025
  10067. }
  10068. },
  10069. fat: {
  10070. height: math.unit(5 + 9 / 12, "feet"),
  10071. weight: math.unit(900, "lb"),
  10072. name: "Front (Fat)",
  10073. image: {
  10074. source: "./media/characters/samantha-kruse/fat.svg",
  10075. extra: 2688 / 2561
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(5 + 9 / 12, "feet"),
  10083. default: true
  10084. }
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10089. {
  10090. back: {
  10091. height: math.unit(5 + 4 / 12, "feet"),
  10092. weight: math.unit(4963, "lb"),
  10093. name: "Back",
  10094. image: {
  10095. source: "./media/characters/amelia-rosie/back.svg",
  10096. extra: 1113 / 963,
  10097. bottom: 0.01
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Level 0",
  10104. height: math.unit(5 + 4 / 12, "feet")
  10105. },
  10106. {
  10107. name: "Level 1",
  10108. height: math.unit(164597, "feet"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "Level 2",
  10113. height: math.unit(956243, "miles")
  10114. },
  10115. {
  10116. name: "Level 3",
  10117. height: math.unit(29421709423, "miles")
  10118. },
  10119. {
  10120. name: "Level 4",
  10121. height: math.unit(154, "lightyears")
  10122. },
  10123. {
  10124. name: "Level 5",
  10125. height: math.unit(4738272, "lightyears")
  10126. },
  10127. {
  10128. name: "Level 6",
  10129. height: math.unit(145787152896, "lightyears")
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10135. {
  10136. front: {
  10137. height: math.unit(5 + 11 / 12, "feet"),
  10138. weight: math.unit(65, "kg"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/rook-kitara/front.svg",
  10142. extra: 1347 / 1274,
  10143. bottom: 0.005
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Totally Unfair",
  10150. height: math.unit(1.8, "mm")
  10151. },
  10152. {
  10153. name: "Lap Rookie",
  10154. height: math.unit(1.4, "feet")
  10155. },
  10156. {
  10157. name: "Normal",
  10158. height: math.unit(5 + 11 / 12, "feet"),
  10159. default: true
  10160. },
  10161. {
  10162. name: "How Did This Happen",
  10163. height: math.unit(80, "miles")
  10164. }
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(7, "feet"),
  10172. weight: math.unit(300, "lb"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/pisces/front.svg",
  10176. extra: 2255 / 2115,
  10177. bottom: 0.03
  10178. }
  10179. },
  10180. back: {
  10181. height: math.unit(7, "feet"),
  10182. weight: math.unit(300, "lb"),
  10183. name: "Back",
  10184. image: {
  10185. source: "./media/characters/pisces/back.svg",
  10186. extra: 2146 / 2055,
  10187. bottom: 0.04
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(7, "feet"),
  10195. default: true
  10196. },
  10197. {
  10198. name: "Swimming Pool",
  10199. height: math.unit(12.2, "meters")
  10200. },
  10201. {
  10202. name: "Olympic Swimming Pool",
  10203. height: math.unit(56.3, "meters")
  10204. },
  10205. {
  10206. name: "Lake Superior",
  10207. height: math.unit(93900, "meters")
  10208. },
  10209. {
  10210. name: "Mediterranean Sea",
  10211. height: math.unit(644457, "meters")
  10212. },
  10213. {
  10214. name: "World's Oceans",
  10215. height: math.unit(4567491, "meters")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(2.3, "meters"),
  10224. weight: math.unit(120, "kg"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/zelas/front.svg"
  10228. }
  10229. },
  10230. side: {
  10231. height: math.unit(2.3, "meters"),
  10232. weight: math.unit(120, "kg"),
  10233. name: "Side",
  10234. image: {
  10235. source: "./media/characters/zelas/side.svg"
  10236. }
  10237. },
  10238. back: {
  10239. height: math.unit(2.3, "meters"),
  10240. weight: math.unit(120, "kg"),
  10241. name: "Back",
  10242. image: {
  10243. source: "./media/characters/zelas/back.svg"
  10244. }
  10245. },
  10246. foot: {
  10247. height: math.unit(1.116, "feet"),
  10248. name: "Foot",
  10249. image: {
  10250. source: "./media/characters/zelas/foot.svg"
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(2.3, "meters")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(30, "meters"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(1, "inch"),
  10271. weight: math.unit(0.21, "grams"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/talbot/front.svg",
  10275. extra: 594 / 544
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(1, "inch"),
  10283. default: true
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10289. {
  10290. front: {
  10291. height: math.unit(3 + 3 / 12, "feet"),
  10292. weight: math.unit(51.8, "lb"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/fliss/front.svg",
  10296. extra: 840 / 640
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Teeny Tiny",
  10303. height: math.unit(1, "mm")
  10304. },
  10305. {
  10306. name: "Small",
  10307. height: math.unit(1, "inch"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Standard Sylveon",
  10312. height: math.unit(3 + 3 / 12, "feet")
  10313. },
  10314. {
  10315. name: "Large Nuisance",
  10316. height: math.unit(33, "feet")
  10317. },
  10318. {
  10319. name: "City Filler",
  10320. height: math.unit(3000, "feet")
  10321. },
  10322. {
  10323. name: "New Horizon",
  10324. height: math.unit(6000, "miles")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(5, "cm"),
  10333. weight: math.unit(1.94, "g"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/fleta/front.svg",
  10337. extra: 835 / 803
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(5, "cm"),
  10342. weight: math.unit(1.94, "g"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/fleta/back.svg",
  10346. extra: 835 / 803
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(5, "cm"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(225, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/dominic/front.svg",
  10367. extra: 1770 / 1620,
  10368. bottom: 0.025
  10369. }
  10370. },
  10371. back: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(225, "lb"),
  10374. name: "Back",
  10375. image: {
  10376. source: "./media/characters/dominic/back.svg",
  10377. extra: 1745 / 1620,
  10378. bottom: 0.065
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Nano",
  10385. height: math.unit(0.1, "mm")
  10386. },
  10387. {
  10388. name: "Micro-",
  10389. height: math.unit(1, "mm")
  10390. },
  10391. {
  10392. name: "Micro",
  10393. height: math.unit(4, "inches")
  10394. },
  10395. {
  10396. name: "Normal",
  10397. height: math.unit(6 + 4 / 12, "feet"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(115, "feet")
  10403. },
  10404. {
  10405. name: "Macro+",
  10406. height: math.unit(955, "feet")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(8990, "feet")
  10411. },
  10412. {
  10413. name: "Gigmacro",
  10414. height: math.unit(9310, "miles")
  10415. },
  10416. {
  10417. name: "Teramacro",
  10418. height: math.unit(1567005010, "miles")
  10419. },
  10420. {
  10421. name: "Examacro",
  10422. height: math.unit(1425, "parsecs")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(400, "feet"),
  10431. weight: math.unit(44444444, "lb"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/major-colonel/front.svg"
  10435. }
  10436. },
  10437. back: {
  10438. height: math.unit(400, "feet"),
  10439. weight: math.unit(44444444, "lb"),
  10440. name: "Back",
  10441. image: {
  10442. source: "./media/characters/major-colonel/back.svg"
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(400, "feet"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10456. {
  10457. catFront: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(120, "lb"),
  10460. name: "Front (Cat Side)",
  10461. image: {
  10462. source: "./media/characters/axel-lycan/cat-front.svg",
  10463. extra: 430 / 402,
  10464. bottom: 43 / 472.35
  10465. }
  10466. },
  10467. catBack: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(120, "lb"),
  10470. name: "Back (Cat Side)",
  10471. image: {
  10472. source: "./media/characters/axel-lycan/cat-back.svg",
  10473. extra: 447 / 419,
  10474. bottom: 23.3 / 469
  10475. }
  10476. },
  10477. wolfFront: {
  10478. height: math.unit(6, "feet"),
  10479. weight: math.unit(120, "lb"),
  10480. name: "Front (Wolf Side)",
  10481. image: {
  10482. source: "./media/characters/axel-lycan/wolf-front.svg",
  10483. extra: 485 / 456,
  10484. bottom: 19 / 504
  10485. }
  10486. },
  10487. wolfBack: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(120, "lb"),
  10490. name: "Back (Wolf Side)",
  10491. image: {
  10492. source: "./media/characters/axel-lycan/wolf-back.svg",
  10493. extra: 475 / 438,
  10494. bottom: 39.2 / 514
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(1, "km"),
  10502. default: true
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(5 + 9 / 12, "feet"),
  10511. weight: math.unit(175, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/vanrel-hyena/front.svg",
  10515. extra: 1086 / 1010,
  10516. bottom: 0.04
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(5 + 9 / 12, "feet"),
  10524. default: true
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10530. {
  10531. front: {
  10532. height: math.unit(6, "feet"),
  10533. weight: math.unit(103, "lb"),
  10534. name: "Front",
  10535. image: {
  10536. source: "./media/characters/abbott-absol/front.svg",
  10537. extra: 2010 / 1842
  10538. }
  10539. },
  10540. },
  10541. [
  10542. {
  10543. name: "Megamicro",
  10544. height: math.unit(0.1, "mm")
  10545. },
  10546. {
  10547. name: "Micro",
  10548. height: math.unit(1, "inch")
  10549. },
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(6, "feet"),
  10553. default: true
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(264, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/hector/front.svg",
  10566. extra: 2280 / 2130,
  10567. bottom: 0.07
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(12.25, "foot"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(160, "feet")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(150, "lb"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/sal/front.svg",
  10592. extra: 1846 / 1699,
  10593. bottom: 0.04
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Megamacro",
  10600. height: math.unit(10, "miles"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10607. {
  10608. front: {
  10609. height: math.unit(3, "meters"),
  10610. weight: math.unit(450, "kg"),
  10611. name: "front",
  10612. image: {
  10613. source: "./media/characters/ranger/front.svg",
  10614. extra: 2401 / 2243,
  10615. bottom: 0.05
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(3, "meters"),
  10623. default: true
  10624. },
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10629. {
  10630. front: {
  10631. height: math.unit(14, "feet"),
  10632. weight: math.unit(800, "kg"),
  10633. name: "Front",
  10634. image: {
  10635. source: "./media/characters/theresa/front.svg",
  10636. extra: 3575 / 3346,
  10637. bottom: 0.03
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(14, "feet"),
  10645. default: true
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10651. {
  10652. front: {
  10653. height: math.unit(6, "feet"),
  10654. weight: math.unit(3, "kg"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/ine/front.svg",
  10658. extra: 678 / 539,
  10659. bottom: 0.023
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Normal",
  10666. height: math.unit(2.265, "feet"),
  10667. default: true
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(5, "feet"),
  10676. weight: math.unit(30, "kg"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/vial/front.svg",
  10680. extra: 1365 / 1277,
  10681. bottom: 0.04
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(5, "feet"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10695. {
  10696. side: {
  10697. height: math.unit(3.4, "meters"),
  10698. weight: math.unit(1000, "lb"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/rovoska/side.svg",
  10702. extra: 4403 / 1515
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(3.4, "meters"),
  10710. default: true
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(8, "feet"),
  10719. weight: math.unit(315, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/gunner-rotthbauer/front.svg"
  10723. }
  10724. },
  10725. back: {
  10726. height: math.unit(8, "feet"),
  10727. weight: math.unit(315, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/gunner-rotthbauer/back.svg"
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Micro",
  10737. height: math.unit(3.5, "inches")
  10738. },
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(8, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Macro",
  10746. height: math.unit(250, "feet")
  10747. },
  10748. {
  10749. name: "Megamacro",
  10750. height: math.unit(1, "AU")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(5 + 5 / 12, "feet"),
  10759. weight: math.unit(140, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/allatia/front.svg",
  10763. extra: 1227 / 1180,
  10764. bottom: 0.027
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(5 + 5 / 12, "feet")
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(250, "feet"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Megamacro",
  10780. height: math.unit(8, "miles")
  10781. }
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(120, "lb"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/tene/front.svg",
  10793. extra: 814/750,
  10794. bottom: 36/850
  10795. }
  10796. },
  10797. stomping: {
  10798. height: math.unit(2.025, "meters"),
  10799. weight: math.unit(120, "lb"),
  10800. name: "Stomping",
  10801. image: {
  10802. source: "./media/characters/tene/stomping.svg",
  10803. extra: 885/821,
  10804. bottom: 15/900
  10805. }
  10806. },
  10807. sitting: {
  10808. height: math.unit(1, "meter"),
  10809. weight: math.unit(120, "lb"),
  10810. name: "Sitting",
  10811. image: {
  10812. source: "./media/characters/tene/sitting.svg",
  10813. extra: 396/366,
  10814. bottom: 79/475
  10815. }
  10816. },
  10817. smiling: {
  10818. height: math.unit(1.2, "feet"),
  10819. name: "Smiling",
  10820. image: {
  10821. source: "./media/characters/tene/smiling.svg",
  10822. extra: 1364/1071,
  10823. bottom: 0/1364
  10824. }
  10825. },
  10826. smug: {
  10827. height: math.unit(1.3, "feet"),
  10828. name: "Smug",
  10829. image: {
  10830. source: "./media/characters/tene/smug.svg",
  10831. extra: 1323/1082,
  10832. bottom: 0/1323
  10833. }
  10834. },
  10835. feral: {
  10836. height: math.unit(3.9, "feet"),
  10837. weight: math.unit(250, "lb"),
  10838. name: "Feral",
  10839. image: {
  10840. source: "./media/characters/tene/feral.svg",
  10841. extra: 717 / 458,
  10842. bottom: 0.179
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(6, "feet")
  10850. },
  10851. {
  10852. name: "Macro",
  10853. height: math.unit(300, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(5, "miles")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10864. {
  10865. side: {
  10866. height: math.unit(6, "feet"),
  10867. name: "Side",
  10868. image: {
  10869. source: "./media/characters/evander/side.svg",
  10870. extra: 877 / 477
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(0.83, "meters"),
  10878. default: true
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(12, "feet"),
  10887. weight: math.unit(1000, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10891. extra: 1762 / 1611
  10892. }
  10893. },
  10894. back: {
  10895. height: math.unit(12, "feet"),
  10896. weight: math.unit(1000, "lb"),
  10897. name: "Back",
  10898. image: {
  10899. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10900. extra: 1762 / 1611
  10901. }
  10902. },
  10903. },
  10904. [
  10905. {
  10906. name: "Normal",
  10907. height: math.unit(12, "feet"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Kaiju",
  10912. height: math.unit(150, "feet")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/zero-alurus/front.svg"
  10925. }
  10926. },
  10927. back: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(150, "lb"),
  10930. name: "Back",
  10931. image: {
  10932. source: "./media/characters/zero-alurus/back.svg"
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(5 + 10 / 12, "feet")
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(60, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro+",
  10948. height: math.unit(450, "feet")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(200, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/mega-shi/front.svg",
  10961. extra: 1279 / 1250,
  10962. bottom: 0.02
  10963. }
  10964. },
  10965. back: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(200, "lb"),
  10968. name: "Back",
  10969. image: {
  10970. source: "./media/characters/mega-shi/back.svg",
  10971. extra: 1279 / 1250,
  10972. bottom: 0.02
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(16 + 6 / 12, "feet")
  10980. },
  10981. {
  10982. name: "Third Dimension",
  10983. height: math.unit(40, "meters")
  10984. },
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(660, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Megamacro",
  10992. height: math.unit(10, "miles")
  10993. },
  10994. {
  10995. name: "Planetary Launch",
  10996. height: math.unit(500, "miles")
  10997. },
  10998. {
  10999. name: "Interstellar",
  11000. height: math.unit(1e9, "miles")
  11001. },
  11002. {
  11003. name: "Leaving the Universe",
  11004. height: math.unit(1, "gigaparsec")
  11005. },
  11006. {
  11007. name: "Travelling Universes",
  11008. height: math.unit(30e15, "parsecs")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(5 + 4/12, "feet"),
  11017. weight: math.unit(120, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/odyssey/front.svg",
  11021. extra: 1747/1571,
  11022. bottom: 47/1794
  11023. }
  11024. },
  11025. side: {
  11026. height: math.unit(5.1, "feet"),
  11027. weight: math.unit(120, "lb"),
  11028. name: "Side",
  11029. image: {
  11030. source: "./media/characters/odyssey/side.svg",
  11031. extra: 1847/1619,
  11032. bottom: 47/1894
  11033. }
  11034. },
  11035. lounging: {
  11036. height: math.unit(1.464, "feet"),
  11037. weight: math.unit(120, "lb"),
  11038. name: "Lounging",
  11039. image: {
  11040. source: "./media/characters/odyssey/lounging.svg",
  11041. extra: 1235/837,
  11042. bottom: 551/1786
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(5 + 4 / 12, "feet")
  11050. },
  11051. {
  11052. name: "Macro",
  11053. height: math.unit(1, "km")
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(3000, "km")
  11058. },
  11059. {
  11060. name: "Gigamacro",
  11061. height: math.unit(1, "AU"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Omniversal",
  11066. height: math.unit(100e14, "lightyears")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(300, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/mekuto/front.svg",
  11079. extra: 921 / 832,
  11080. bottom: 0.03
  11081. }
  11082. },
  11083. hand: {
  11084. height: math.unit(6 / 10.24, "feet"),
  11085. name: "Hand",
  11086. image: {
  11087. source: "./media/characters/mekuto/hand.svg"
  11088. }
  11089. },
  11090. foot: {
  11091. height: math.unit(6 / 5.05, "feet"),
  11092. name: "Foot",
  11093. image: {
  11094. source: "./media/characters/mekuto/foot.svg"
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Minimicro",
  11101. height: math.unit(0.2, "inches")
  11102. },
  11103. {
  11104. name: "Micro",
  11105. height: math.unit(1.5, "inches")
  11106. },
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(5 + 11 / 12, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Minimacro",
  11114. height: math.unit(17 + 9 / 12, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(177.5, "feet")
  11119. },
  11120. {
  11121. name: "Megamacro",
  11122. height: math.unit(152, "miles")
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(6.5, "inches"),
  11131. weight: math.unit(13, "oz"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/dafydd-tomos/front.svg",
  11135. extra: 2990 / 2603,
  11136. bottom: 0.03
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(6.5, "inches"),
  11144. default: true
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/splinter/front.svg",
  11157. extra: 2990 / 2882,
  11158. bottom: 0.04
  11159. }
  11160. },
  11161. back: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(150, "lb"),
  11164. name: "Back",
  11165. image: {
  11166. source: "./media/characters/splinter/back.svg",
  11167. extra: 2990 / 2882,
  11168. bottom: 0.04
  11169. }
  11170. },
  11171. },
  11172. [
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(6, "feet")
  11176. },
  11177. {
  11178. name: "Macro",
  11179. height: math.unit(230, "meters"),
  11180. default: true
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(4 + 10 / 12, "feet"),
  11189. weight: math.unit(480, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/snow-gabumon/front.svg",
  11193. extra: 1140 / 963,
  11194. bottom: 0.058
  11195. }
  11196. },
  11197. back: {
  11198. height: math.unit(4 + 10 / 12, "feet"),
  11199. weight: math.unit(480, "lb"),
  11200. name: "Back",
  11201. image: {
  11202. source: "./media/characters/snow-gabumon/back.svg",
  11203. extra: 1115 / 962,
  11204. bottom: 0.041
  11205. }
  11206. },
  11207. frontUndresed: {
  11208. height: math.unit(4 + 10 / 12, "feet"),
  11209. weight: math.unit(480, "lb"),
  11210. name: "Front (Undressed)",
  11211. image: {
  11212. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11213. extra: 1061 / 960,
  11214. bottom: 0.045
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(1, "inch")
  11222. },
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(4 + 10 / 12, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Macro",
  11230. height: math.unit(200, "feet")
  11231. },
  11232. {
  11233. name: "Megamacro",
  11234. height: math.unit(120, "miles")
  11235. },
  11236. {
  11237. name: "Gigamacro",
  11238. height: math.unit(9800, "miles")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(1.7, "meters"),
  11247. weight: math.unit(140, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/moody/front.svg",
  11251. extra: 3226 / 3007,
  11252. bottom: 0.087
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Micro",
  11259. height: math.unit(1, "mm")
  11260. },
  11261. {
  11262. name: "Normal",
  11263. height: math.unit(1.7, "meters"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Macro",
  11268. height: math.unit(80, "meters")
  11269. },
  11270. {
  11271. name: "Macro+",
  11272. height: math.unit(500, "meters")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(150, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/zyas/front.svg",
  11285. extra: 1180 / 1120,
  11286. bottom: 0.045
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(10, "feet"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(500, "feet")
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(5, "miles")
  11303. },
  11304. {
  11305. name: "Teramacro",
  11306. height: math.unit(150000, "miles")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/cuon/front.svg",
  11319. extra: 1390 / 1320,
  11320. bottom: 0.008
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(3, "inches")
  11328. },
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(18 + 9 / 12, "feet"),
  11332. default: true
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(360, "feet")
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(360, "miles")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(2.4, "meters"),
  11349. weight: math.unit(70, "kg"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/nyanuxk/front.svg",
  11353. extra: 1172 / 1084,
  11354. bottom: 0.065
  11355. }
  11356. },
  11357. side: {
  11358. height: math.unit(2.4, "meters"),
  11359. weight: math.unit(70, "kg"),
  11360. name: "Side",
  11361. image: {
  11362. source: "./media/characters/nyanuxk/side.svg",
  11363. extra: 1190 / 1132,
  11364. bottom: 0.007
  11365. }
  11366. },
  11367. back: {
  11368. height: math.unit(2.4, "meters"),
  11369. weight: math.unit(70, "kg"),
  11370. name: "Back",
  11371. image: {
  11372. source: "./media/characters/nyanuxk/back.svg",
  11373. extra: 1200 / 1141,
  11374. bottom: 0.015
  11375. }
  11376. },
  11377. foot: {
  11378. height: math.unit(0.52, "meters"),
  11379. name: "Foot",
  11380. image: {
  11381. source: "./media/characters/nyanuxk/foot.svg"
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Micro",
  11388. height: math.unit(2, "cm")
  11389. },
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(2.4, "meters"),
  11393. default: true
  11394. },
  11395. {
  11396. name: "Smaller Macro",
  11397. height: math.unit(120, "meters")
  11398. },
  11399. {
  11400. name: "Bigger Macro",
  11401. height: math.unit(1.2, "km")
  11402. },
  11403. {
  11404. name: "Megamacro",
  11405. height: math.unit(15, "kilometers")
  11406. },
  11407. {
  11408. name: "Gigamacro",
  11409. height: math.unit(2000, "km")
  11410. },
  11411. {
  11412. name: "Teramacro",
  11413. height: math.unit(500000, "km")
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11419. {
  11420. side: {
  11421. height: math.unit(6, "feet"),
  11422. name: "Side",
  11423. image: {
  11424. source: "./media/characters/ailbhe/side.svg",
  11425. extra: 757 / 464,
  11426. bottom: 0.041
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(1.07, "meters"),
  11434. default: true
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(6, "feet"),
  11443. weight: math.unit(120, "kg"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/zevulfius/front.svg",
  11447. extra: 965 / 903
  11448. }
  11449. },
  11450. side: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(120, "kg"),
  11453. name: "Side",
  11454. image: {
  11455. source: "./media/characters/zevulfius/side.svg",
  11456. extra: 939 / 900
  11457. }
  11458. },
  11459. back: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(120, "kg"),
  11462. name: "Back",
  11463. image: {
  11464. source: "./media/characters/zevulfius/back.svg",
  11465. extra: 918 / 854,
  11466. bottom: 0.005
  11467. }
  11468. },
  11469. foot: {
  11470. height: math.unit(6 / 3.72, "feet"),
  11471. name: "Foot",
  11472. image: {
  11473. source: "./media/characters/zevulfius/foot.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Macro",
  11480. height: math.unit(750, "meters")
  11481. },
  11482. {
  11483. name: "Megamacro",
  11484. height: math.unit(20, "km"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Gigamacro",
  11489. height: math.unit(2000, "km")
  11490. },
  11491. {
  11492. name: "Teramacro",
  11493. height: math.unit(250000, "km")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(100, "feet"),
  11502. weight: math.unit(350, "kg"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/rikes/front.svg",
  11506. extra: 1565 / 1483,
  11507. bottom: 0.017
  11508. }
  11509. },
  11510. },
  11511. [
  11512. {
  11513. name: "Macro",
  11514. height: math.unit(100, "feet"),
  11515. default: true
  11516. },
  11517. ]
  11518. ))
  11519. characterMakers.push(() => makeCharacter(
  11520. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11521. {
  11522. front: {
  11523. height: math.unit(8, "feet"),
  11524. weight: math.unit(356, "lb"),
  11525. name: "Front",
  11526. image: {
  11527. source: "./media/characters/adam-silver-mane/front.svg",
  11528. extra: 1036/937,
  11529. bottom: 63/1099
  11530. }
  11531. },
  11532. side: {
  11533. height: math.unit(8, "feet"),
  11534. weight: math.unit(356, "lb"),
  11535. name: "Side",
  11536. image: {
  11537. source: "./media/characters/adam-silver-mane/side.svg",
  11538. extra: 997/901,
  11539. bottom: 59/1056
  11540. }
  11541. },
  11542. frontNsfw: {
  11543. height: math.unit(8, "feet"),
  11544. weight: math.unit(356, "lb"),
  11545. name: "Front (NSFW)",
  11546. image: {
  11547. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11548. extra: 1036/937,
  11549. bottom: 63/1099
  11550. }
  11551. },
  11552. sideNsfw: {
  11553. height: math.unit(8, "feet"),
  11554. weight: math.unit(356, "lb"),
  11555. name: "Side (NSFW)",
  11556. image: {
  11557. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11558. extra: 997/901,
  11559. bottom: 59/1056
  11560. }
  11561. },
  11562. dick: {
  11563. height: math.unit(2.1, "feet"),
  11564. name: "Dick",
  11565. image: {
  11566. source: "./media/characters/adam-silver-mane/dick.svg"
  11567. }
  11568. },
  11569. taur: {
  11570. height: math.unit(16, "feet"),
  11571. weight: math.unit(1500, "kg"),
  11572. name: "Taur",
  11573. image: {
  11574. source: "./media/characters/adam-silver-mane/taur.svg",
  11575. extra: 1713 / 1571,
  11576. bottom: 0.01
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(8, "feet")
  11584. },
  11585. {
  11586. name: "Minimacro",
  11587. height: math.unit(80, "feet")
  11588. },
  11589. {
  11590. name: "MDA",
  11591. height: math.unit(80, "meters")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(800, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Megamacro",
  11600. height: math.unit(8000, "feet")
  11601. },
  11602. {
  11603. name: "Gigamacro",
  11604. height: math.unit(800, "miles")
  11605. },
  11606. {
  11607. name: "Teramacro",
  11608. height: math.unit(80000, "miles")
  11609. },
  11610. {
  11611. name: "Celestial",
  11612. height: math.unit(8e6, "miles")
  11613. },
  11614. {
  11615. name: "Star Dragon",
  11616. height: math.unit(800000, "parsecs")
  11617. },
  11618. {
  11619. name: "Godly",
  11620. height: math.unit(800, "teraparsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(150, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/ky'owin/front.svg",
  11633. extra: 3888 / 3068,
  11634. bottom: 0.015
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(6 + 8 / 12, "feet")
  11642. },
  11643. {
  11644. name: "Large",
  11645. height: math.unit(68, "feet")
  11646. },
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(132, "feet")
  11650. },
  11651. {
  11652. name: "Macro+",
  11653. height: math.unit(340, "feet")
  11654. },
  11655. {
  11656. name: "Macro++",
  11657. height: math.unit(680, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(1, "mile")
  11663. },
  11664. {
  11665. name: "Megamacro+",
  11666. height: math.unit(10, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(4, "feet"),
  11675. weight: math.unit(50, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/mal/front.svg",
  11679. extra: 785 / 724,
  11680. bottom: 0.07
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(4, "inches")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(4, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(200, "feet")
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/jordan-deware/front.svg",
  11709. extra: 1191 / 1012
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Nano",
  11716. height: math.unit(0.01, "mm")
  11717. },
  11718. {
  11719. name: "Minimicro",
  11720. height: math.unit(1, "mm")
  11721. },
  11722. {
  11723. name: "Micro",
  11724. height: math.unit(0.5, "inches")
  11725. },
  11726. {
  11727. name: "Normal",
  11728. height: math.unit(4, "feet"),
  11729. default: true
  11730. },
  11731. {
  11732. name: "Minimacro",
  11733. height: math.unit(40, "meters")
  11734. },
  11735. {
  11736. name: "Small Macro",
  11737. height: math.unit(400, "meters")
  11738. },
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(4, "miles")
  11742. },
  11743. {
  11744. name: "Megamacro",
  11745. height: math.unit(40, "miles")
  11746. },
  11747. {
  11748. name: "Megamacro+",
  11749. height: math.unit(400, "miles")
  11750. },
  11751. {
  11752. name: "Gigamacro",
  11753. height: math.unit(400000, "miles")
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11759. {
  11760. side: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(150, "lb"),
  11763. name: "Side",
  11764. image: {
  11765. source: "./media/characters/kimiko/side.svg",
  11766. extra: 600 / 358
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(15, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Macro",
  11778. height: math.unit(220, "feet")
  11779. },
  11780. {
  11781. name: "Macro+",
  11782. height: math.unit(1450, "feet")
  11783. },
  11784. {
  11785. name: "Megamacro",
  11786. height: math.unit(11500, "feet")
  11787. },
  11788. {
  11789. name: "Gigamacro",
  11790. height: math.unit(9500, "miles")
  11791. },
  11792. {
  11793. name: "Teramacro",
  11794. height: math.unit(2208005005, "miles")
  11795. },
  11796. {
  11797. name: "Examacro",
  11798. height: math.unit(2750, "parsecs")
  11799. },
  11800. {
  11801. name: "Zettamacro",
  11802. height: math.unit(101500, "parsecs")
  11803. },
  11804. ]
  11805. ))
  11806. characterMakers.push(() => makeCharacter(
  11807. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11808. {
  11809. front: {
  11810. height: math.unit(6, "feet"),
  11811. weight: math.unit(70, "kg"),
  11812. name: "Front",
  11813. image: {
  11814. source: "./media/characters/andrew-sleepy/front.svg"
  11815. }
  11816. },
  11817. side: {
  11818. height: math.unit(6, "feet"),
  11819. weight: math.unit(70, "kg"),
  11820. name: "Side",
  11821. image: {
  11822. source: "./media/characters/andrew-sleepy/side.svg"
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(1, "mm"),
  11830. default: true
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11836. {
  11837. front: {
  11838. height: math.unit(6, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/judio/front.svg",
  11843. extra: 1258 / 1110
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(5 + 6 / 12, "feet")
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(1000, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(10, "miles")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11865. {
  11866. frontDressed: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(68, "kg"),
  11869. name: "Front (Dressed)",
  11870. image: {
  11871. source: "./media/characters/nomaxice/front-dressed.svg",
  11872. extra: 1137/824,
  11873. bottom: 74/1211
  11874. }
  11875. },
  11876. frontShorts: {
  11877. height: math.unit(6, "feet"),
  11878. weight: math.unit(68, "kg"),
  11879. name: "Front (Shorts)",
  11880. image: {
  11881. source: "./media/characters/nomaxice/front-shorts.svg",
  11882. extra: 1137/824,
  11883. bottom: 74/1211
  11884. }
  11885. },
  11886. back: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(68, "kg"),
  11889. name: "Back",
  11890. image: {
  11891. source: "./media/characters/nomaxice/back.svg",
  11892. extra: 822/786,
  11893. bottom: 39/861
  11894. }
  11895. },
  11896. hand: {
  11897. height: math.unit(0.565, "feet"),
  11898. name: "Hand",
  11899. image: {
  11900. source: "./media/characters/nomaxice/hand.svg"
  11901. }
  11902. },
  11903. foot: {
  11904. height: math.unit(1, "feet"),
  11905. name: "Foot",
  11906. image: {
  11907. source: "./media/characters/nomaxice/foot.svg"
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(8, "cm")
  11915. },
  11916. {
  11917. name: "Norm",
  11918. height: math.unit(1.82, "m")
  11919. },
  11920. {
  11921. name: "Norm+",
  11922. height: math.unit(8.8, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Big",
  11927. height: math.unit(8, "meters")
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(18, "meters")
  11932. },
  11933. {
  11934. name: "Macro+",
  11935. height: math.unit(88, "meters")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(12, "feet"),
  11944. weight: math.unit(1.5, "tons"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/dydros/front.svg",
  11948. extra: 863 / 800,
  11949. bottom: 0.015
  11950. }
  11951. },
  11952. back: {
  11953. height: math.unit(12, "feet"),
  11954. weight: math.unit(1.5, "tons"),
  11955. name: "Back",
  11956. image: {
  11957. source: "./media/characters/dydros/back.svg",
  11958. extra: 900 / 843,
  11959. bottom: 0.005
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(12, "feet"),
  11967. default: true
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(100, "kg"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/riggi/front.svg",
  11980. extra: 5787 / 5303
  11981. }
  11982. },
  11983. hyper: {
  11984. height: math.unit(6 * 5 / 3, "feet"),
  11985. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11986. name: "Hyper",
  11987. image: {
  11988. source: "./media/characters/riggi/hyper.svg",
  11989. extra: 3595 / 3485
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Small Macro",
  11996. height: math.unit(50, "feet")
  11997. },
  11998. {
  11999. name: "Default",
  12000. height: math.unit(200, "feet"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Loom",
  12005. height: math.unit(10000, "feet")
  12006. },
  12007. {
  12008. name: "Cruising Altitude",
  12009. height: math.unit(30000, "feet")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(100, "miles")
  12014. },
  12015. {
  12016. name: "Continent Sized",
  12017. height: math.unit(2800, "miles")
  12018. },
  12019. {
  12020. name: "Earth Sized",
  12021. height: math.unit(8000, "miles")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(250, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/alexi/front.svg",
  12034. extra: 3483 / 3291,
  12035. bottom: 0.04
  12036. }
  12037. },
  12038. back: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(250, "lb"),
  12041. name: "Back",
  12042. image: {
  12043. source: "./media/characters/alexi/back.svg",
  12044. extra: 3533 / 3356,
  12045. bottom: 0.021
  12046. }
  12047. },
  12048. frontTransforming: {
  12049. height: math.unit(8.58, "feet"),
  12050. weight: math.unit(1300, "lb"),
  12051. name: "Transforming",
  12052. image: {
  12053. source: "./media/characters/alexi/front-transforming.svg",
  12054. extra: 437 / 409,
  12055. bottom: 19 / 458.66
  12056. }
  12057. },
  12058. frontTransformed: {
  12059. height: math.unit(12.5, "feet"),
  12060. weight: math.unit(4000, "lb"),
  12061. name: "Transformed",
  12062. image: {
  12063. source: "./media/characters/alexi/front-transformed.svg",
  12064. extra: 639 / 614,
  12065. bottom: 30.55 / 671
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(14, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Minimacro",
  12077. height: math.unit(30, "meters")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(500, "meters")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(9000, "km")
  12086. },
  12087. {
  12088. name: "Teramacro",
  12089. height: math.unit(384000, "km")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/kayroo/front.svg",
  12102. extra: 1153 / 1038,
  12103. bottom: 0.06
  12104. }
  12105. },
  12106. foot: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(150, "lb"),
  12109. name: "Foot",
  12110. image: {
  12111. source: "./media/characters/kayroo/foot.svg"
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(8, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Minimacro",
  12123. height: math.unit(250, "feet")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(2800, "feet")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(5200, "feet")
  12132. },
  12133. {
  12134. name: "Gigamacro",
  12135. height: math.unit(27000, "feet")
  12136. },
  12137. {
  12138. name: "Omega",
  12139. height: math.unit(45000, "feet")
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(18, "feet"),
  12148. weight: math.unit(5800, "lb"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/rhys/front.svg",
  12152. extra: 3386 / 3090,
  12153. bottom: 0.07
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(18, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Working Size",
  12165. height: math.unit(200, "feet")
  12166. },
  12167. {
  12168. name: "Demolition Size",
  12169. height: math.unit(2000, "feet")
  12170. },
  12171. {
  12172. name: "Maximum Licensed Size",
  12173. height: math.unit(5, "miles")
  12174. },
  12175. {
  12176. name: "Maximum Observed Size",
  12177. height: math.unit(10, "yottameters")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(250, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/toto/front.svg",
  12190. extra: 527 / 479,
  12191. bottom: 0.05
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Micro",
  12198. height: math.unit(3, "feet")
  12199. },
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(10, "feet")
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(150, "feet"),
  12207. default: true
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(1200, "feet")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "King", species: ["lion"], tags: ["anthro"] },
  12217. {
  12218. back: {
  12219. height: math.unit(6, "feet"),
  12220. weight: math.unit(150, "lb"),
  12221. name: "Back",
  12222. image: {
  12223. source: "./media/characters/king/back.svg"
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(2, "inches")
  12231. },
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(8, "feet")
  12235. },
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(200, "feet"),
  12239. default: true
  12240. },
  12241. {
  12242. name: "Megamacro",
  12243. height: math.unit(50, "miles")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(11, "feet"),
  12252. weight: math.unit(1400, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/cordite/front.svg",
  12256. extra: 1919/1827,
  12257. bottom: 40/1959
  12258. }
  12259. },
  12260. side: {
  12261. height: math.unit(11, "feet"),
  12262. weight: math.unit(1400, "lb"),
  12263. name: "Side",
  12264. image: {
  12265. source: "./media/characters/cordite/side.svg",
  12266. extra: 1908/1793,
  12267. bottom: 38/1946
  12268. }
  12269. },
  12270. back: {
  12271. height: math.unit(11, "feet"),
  12272. weight: math.unit(1400, "lb"),
  12273. name: "Back",
  12274. image: {
  12275. source: "./media/characters/cordite/back.svg",
  12276. extra: 1938/1837,
  12277. bottom: 10/1948
  12278. }
  12279. },
  12280. feral: {
  12281. height: math.unit(2, "feet"),
  12282. weight: math.unit(90, "lb"),
  12283. name: "Feral",
  12284. image: {
  12285. source: "./media/characters/cordite/feral.svg",
  12286. extra: 1260 / 755,
  12287. bottom: 0.05
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(11, "feet"),
  12295. default: true
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(150, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/pianostrong/front.svg",
  12308. extra: 6577 / 6254,
  12309. bottom: 0.02
  12310. }
  12311. },
  12312. side: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Side",
  12316. image: {
  12317. source: "./media/characters/pianostrong/side.svg",
  12318. extra: 6106 / 5730
  12319. }
  12320. },
  12321. back: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Back",
  12325. image: {
  12326. source: "./media/characters/pianostrong/back.svg",
  12327. extra: 6085 / 5733,
  12328. bottom: 0.01
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(100, "feet")
  12336. },
  12337. {
  12338. name: "Macro+",
  12339. height: math.unit(300, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Macro++",
  12344. height: math.unit(1000, "feet")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(150, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/kona/front.svg",
  12357. extra: 2960 / 2629,
  12358. bottom: 0.005
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(11 + 8 / 12, "feet")
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(850, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Macro+",
  12374. height: math.unit(1.5, "km"),
  12375. default: true
  12376. },
  12377. {
  12378. name: "Megamacro",
  12379. height: math.unit(80, "miles")
  12380. },
  12381. {
  12382. name: "Gigamacro",
  12383. height: math.unit(3500, "miles")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12389. {
  12390. side: {
  12391. height: math.unit(1.9, "meters"),
  12392. weight: math.unit(326, "kg"),
  12393. name: "Side",
  12394. image: {
  12395. source: "./media/characters/levi/side.svg",
  12396. extra: 1704 / 1334,
  12397. bottom: 0.02
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(1.9, "meters"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Macro",
  12409. height: math.unit(20, "meters")
  12410. },
  12411. {
  12412. name: "Macro+",
  12413. height: math.unit(200, "meters")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(2, "km")
  12418. },
  12419. {
  12420. name: "Megamacro+",
  12421. height: math.unit(20, "km")
  12422. },
  12423. {
  12424. name: "Gigamacro",
  12425. height: math.unit(2500, "km")
  12426. },
  12427. {
  12428. name: "Gigamacro+",
  12429. height: math.unit(120000, "km")
  12430. },
  12431. {
  12432. name: "Teramacro",
  12433. height: math.unit(7.77e6, "km")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6 + 4/12, "feet"),
  12442. weight: math.unit(190, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/bmc/front.svg",
  12446. extra: 1626/1472,
  12447. bottom: 79/1705
  12448. }
  12449. },
  12450. back: {
  12451. height: math.unit(6 + 4/12, "feet"),
  12452. weight: math.unit(190, "lb"),
  12453. name: "Back",
  12454. image: {
  12455. source: "./media/characters/bmc/back.svg",
  12456. extra: 1640/1479,
  12457. bottom: 45/1685
  12458. }
  12459. },
  12460. frontArmor: {
  12461. height: math.unit(6 + 4/12, "feet"),
  12462. weight: math.unit(190, "lb"),
  12463. name: "Front-armor",
  12464. image: {
  12465. source: "./media/characters/bmc/front-armor.svg",
  12466. extra: 1538/1468,
  12467. bottom: 79/1617
  12468. }
  12469. },
  12470. },
  12471. [
  12472. {
  12473. name: "Human-sized",
  12474. height: math.unit(6 + 4 / 12, "feet")
  12475. },
  12476. {
  12477. name: "Interactive Size",
  12478. height: math.unit(25, "feet")
  12479. },
  12480. {
  12481. name: "Small",
  12482. height: math.unit(250, "feet")
  12483. },
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(1250, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Good Day",
  12491. height: math.unit(88, "miles")
  12492. },
  12493. {
  12494. name: "Largest Measured Size",
  12495. height: math.unit(105.960, "galaxies")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(20, "feet"),
  12504. weight: math.unit(2016, "kg"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/sven-the-kaiju/front.svg",
  12508. extra: 1277/1250,
  12509. bottom: 35/1312
  12510. }
  12511. },
  12512. mouth: {
  12513. height: math.unit(1.85, "feet"),
  12514. name: "Mouth",
  12515. image: {
  12516. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Fairy",
  12523. height: math.unit(6, "inches")
  12524. },
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(20, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Rampage",
  12532. height: math.unit(200, "feet")
  12533. },
  12534. {
  12535. name: "Archfey Forest Guardian",
  12536. height: math.unit(1, "mile")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(4, "meters"),
  12545. weight: math.unit(2, "tons"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/marik/front.svg",
  12549. extra: 1057 / 1003,
  12550. bottom: 0.08
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(4, "meters"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(20, "meters")
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(50, "km")
  12567. },
  12568. {
  12569. name: "Gigamacro",
  12570. height: math.unit(100, "km")
  12571. },
  12572. {
  12573. name: "Alpha Macro",
  12574. height: math.unit(7.88e7, "yottameters")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(110, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/mel/front.svg",
  12587. extra: 736 / 617,
  12588. bottom: 0.017
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Pico",
  12595. height: math.unit(3, "pm")
  12596. },
  12597. {
  12598. name: "Nano",
  12599. height: math.unit(3, "nm")
  12600. },
  12601. {
  12602. name: "Micro",
  12603. height: math.unit(0.3, "mm"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Micro+",
  12608. height: math.unit(3, "mm")
  12609. },
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(5 + 10.5 / 12, "feet")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12618. {
  12619. kaiju: {
  12620. height: math.unit(1.75, "meters"),
  12621. weight: math.unit(55, "kg"),
  12622. name: "Kaiju",
  12623. image: {
  12624. source: "./media/characters/lykonous/kaiju.svg",
  12625. extra: 1055 / 946,
  12626. bottom: 0.135
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(2.5, "meters"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Kaiju Dragon",
  12638. height: math.unit(60, "meters")
  12639. },
  12640. {
  12641. name: "Mega Kaiju",
  12642. height: math.unit(120, "km")
  12643. },
  12644. {
  12645. name: "Giga Kaiju",
  12646. height: math.unit(200, "megameters")
  12647. },
  12648. {
  12649. name: "Terra Kaiju",
  12650. height: math.unit(400, "gigameters")
  12651. },
  12652. {
  12653. name: "Kaiju Dragon God",
  12654. height: math.unit(13000, "exaparsecs")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/blü/front.svg",
  12667. extra: 1883 / 1564,
  12668. bottom: 0.031
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(13, "feet"),
  12676. default: true
  12677. },
  12678. {
  12679. name: "Big Boi",
  12680. height: math.unit(150, "meters")
  12681. },
  12682. {
  12683. name: "Mini Stomper",
  12684. height: math.unit(300, "meters")
  12685. },
  12686. {
  12687. name: "Macro",
  12688. height: math.unit(1000, "meters")
  12689. },
  12690. {
  12691. name: "Megamacro",
  12692. height: math.unit(11000, "meters")
  12693. },
  12694. {
  12695. name: "Gigamacro",
  12696. height: math.unit(11000, "km")
  12697. },
  12698. {
  12699. name: "Teramacro",
  12700. height: math.unit(420000, "km")
  12701. },
  12702. {
  12703. name: "Examacro",
  12704. height: math.unit(120, "parsecs")
  12705. },
  12706. {
  12707. name: "God Tho",
  12708. height: math.unit(98000000000, "parsecs")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12714. {
  12715. taurFront: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(200, "lb"),
  12718. name: "Taur (Front)",
  12719. image: {
  12720. source: "./media/characters/scales/taur-front.svg",
  12721. extra: 1,
  12722. bottom: 0.05
  12723. }
  12724. },
  12725. taurBack: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(200, "lb"),
  12728. name: "Taur (Back)",
  12729. image: {
  12730. source: "./media/characters/scales/taur-back.svg",
  12731. extra: 1,
  12732. bottom: 0.08
  12733. }
  12734. },
  12735. anthro: {
  12736. height: math.unit(6 * 7 / 12, "feet"),
  12737. weight: math.unit(100, "lb"),
  12738. name: "Anthro",
  12739. image: {
  12740. source: "./media/characters/scales/anthro.svg",
  12741. extra: 1,
  12742. bottom: 0.06
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Normal",
  12749. height: math.unit(12, "feet"),
  12750. default: true
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12756. {
  12757. front: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(150, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/koragos/front.svg",
  12763. extra: 841 / 794,
  12764. bottom: 0.035
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/koragos/back.svg",
  12773. extra: 841 / 810,
  12774. bottom: 0.022
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(6 + 11 / 12, "feet"),
  12782. default: true
  12783. },
  12784. {
  12785. name: "Macro",
  12786. height: math.unit(490, "feet")
  12787. },
  12788. {
  12789. name: "Megamacro",
  12790. height: math.unit(10, "miles")
  12791. },
  12792. {
  12793. name: "Gigamacro",
  12794. height: math.unit(50, "miles")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(250, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/xylrem/front.svg",
  12807. extra: 3323 / 3050,
  12808. bottom: 0.065
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Micro",
  12815. height: math.unit(4, "feet")
  12816. },
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(16, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(2720, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(25000, "miles")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(8, "feet"),
  12837. weight: math.unit(250, "kg"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/ikideru/front.svg",
  12841. extra: 930 / 870,
  12842. bottom: 0.087
  12843. }
  12844. },
  12845. back: {
  12846. height: math.unit(8, "feet"),
  12847. weight: math.unit(250, "kg"),
  12848. name: "Back",
  12849. image: {
  12850. source: "./media/characters/ikideru/back.svg",
  12851. extra: 919 / 852,
  12852. bottom: 0.055
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Rare",
  12859. height: math.unit(8, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Playful Loom",
  12864. height: math.unit(80, "feet")
  12865. },
  12866. {
  12867. name: "City Leaner",
  12868. height: math.unit(230, "feet")
  12869. },
  12870. {
  12871. name: "Megamacro",
  12872. height: math.unit(2500, "feet")
  12873. },
  12874. {
  12875. name: "Gigamacro",
  12876. height: math.unit(26400, "feet")
  12877. },
  12878. {
  12879. name: "Tectonic Shifter",
  12880. height: math.unit(1.7, "megameters")
  12881. },
  12882. {
  12883. name: "Planet Carer",
  12884. height: math.unit(21, "megameters")
  12885. },
  12886. {
  12887. name: "God",
  12888. height: math.unit(11157.22, "parsecs")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(120, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/neo/front.svg"
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Micro",
  12907. height: math.unit(2, "inches"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Human Size",
  12912. height: math.unit(5 + 8 / 12, "feet")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(13 + 10 / 12, "feet"),
  12921. weight: math.unit(5320, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/chauncey-chantz/front.svg",
  12925. extra: 1587 / 1435,
  12926. bottom: 0.02
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(13 + 10 / 12, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(45, "feet")
  12939. },
  12940. {
  12941. name: "Megamacro",
  12942. height: math.unit(250, "miles")
  12943. },
  12944. {
  12945. name: "Planetary",
  12946. height: math.unit(10000, "miles")
  12947. },
  12948. {
  12949. name: "Galactic",
  12950. height: math.unit(40000, "parsecs")
  12951. },
  12952. {
  12953. name: "Universal",
  12954. height: math.unit(1, "yottameter")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12960. {
  12961. front: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(150, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/epifox/front.svg",
  12967. extra: 1,
  12968. bottom: 0.075
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(6, "inches")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(12, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(3810, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(500, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(1.8796, "m"),
  12997. weight: math.unit(230, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/colin-t/front.svg",
  13001. extra: 1272 / 1193,
  13002. bottom: 0.07
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(0.571, "meters")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(1.8796, "meters"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Tall",
  13018. height: math.unit(4, "meters")
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(67.241, "meters")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(371.856, "meters")
  13027. },
  13028. {
  13029. name: "Planetary",
  13030. height: math.unit(12631.5689, "km")
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(1.85, "meters"),
  13039. weight: math.unit(80, "kg"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/matvei/front.svg",
  13043. extra: 614 / 594,
  13044. bottom: 0.01
  13045. }
  13046. },
  13047. },
  13048. [
  13049. {
  13050. name: "Normal",
  13051. height: math.unit(1.85, "meters"),
  13052. default: true
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(5 + 9 / 12, "feet"),
  13061. weight: math.unit(70, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/quincy/front.svg",
  13065. extra: 3041 / 2751
  13066. }
  13067. },
  13068. back: {
  13069. height: math.unit(5 + 9 / 12, "feet"),
  13070. weight: math.unit(70, "lb"),
  13071. name: "Back",
  13072. image: {
  13073. source: "./media/characters/quincy/back.svg",
  13074. extra: 3041 / 2751
  13075. }
  13076. },
  13077. flying: {
  13078. height: math.unit(5 + 4 / 12, "feet"),
  13079. weight: math.unit(70, "lb"),
  13080. name: "Flying",
  13081. image: {
  13082. source: "./media/characters/quincy/flying.svg",
  13083. extra: 1044 / 930
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Micro",
  13090. height: math.unit(3, "cm")
  13091. },
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(5 + 9 / 12, "feet")
  13095. },
  13096. {
  13097. name: "Macro",
  13098. height: math.unit(200, "meters"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(1000, "meters")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(3 + 11/12, "feet"),
  13112. weight: math.unit(50, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/vanrel/front.svg",
  13116. extra: 1104/949,
  13117. bottom: 52/1156
  13118. }
  13119. },
  13120. back: {
  13121. height: math.unit(3 + 11/12, "feet"),
  13122. weight: math.unit(50, "lb"),
  13123. name: "Back",
  13124. image: {
  13125. source: "./media/characters/vanrel/back.svg",
  13126. extra: 1119/976,
  13127. bottom: 37/1156
  13128. }
  13129. },
  13130. tome: {
  13131. height: math.unit(1.35, "feet"),
  13132. weight: math.unit(10, "lb"),
  13133. name: "Vanrel's Tome",
  13134. rename: true,
  13135. image: {
  13136. source: "./media/characters/vanrel/tome.svg"
  13137. }
  13138. },
  13139. beans: {
  13140. height: math.unit(0.89, "feet"),
  13141. name: "Beans",
  13142. image: {
  13143. source: "./media/characters/vanrel/beans.svg"
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(3 + 11/12, "feet"),
  13151. default: true
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(7 + 5 / 12, "feet"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/kuiper-vanrel/front.svg",
  13163. extra: 1219/1169,
  13164. bottom: 69/1288
  13165. }
  13166. },
  13167. back: {
  13168. height: math.unit(7 + 5 / 12, "feet"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/kuiper-vanrel/back.svg",
  13172. extra: 1236/1193,
  13173. bottom: 27/1263
  13174. }
  13175. },
  13176. foot: {
  13177. height: math.unit(0.55, "meters"),
  13178. name: "Foot",
  13179. image: {
  13180. source: "./media/characters/kuiper-vanrel/foot.svg",
  13181. }
  13182. },
  13183. battle: {
  13184. height: math.unit(6.824, "feet"),
  13185. name: "Battle",
  13186. image: {
  13187. source: "./media/characters/kuiper-vanrel/battle.svg",
  13188. extra: 1466 / 1327,
  13189. bottom: 29 / 1492.5
  13190. }
  13191. },
  13192. meerkui: {
  13193. height: math.unit(18, "inches"),
  13194. name: "Meerkui",
  13195. image: {
  13196. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13197. extra: 1354/1289,
  13198. bottom: 69/1423
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(7 + 5 / 12, "feet"),
  13206. default: true
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(8 + 5 / 12, "feet"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/keset-vanrel/front.svg",
  13218. extra: 1231/1148,
  13219. bottom: 82/1313
  13220. }
  13221. },
  13222. back: {
  13223. height: math.unit(8 + 5 / 12, "feet"),
  13224. name: "Back",
  13225. image: {
  13226. source: "./media/characters/keset-vanrel/back.svg",
  13227. extra: 1240/1174,
  13228. bottom: 33/1273
  13229. }
  13230. },
  13231. hand: {
  13232. height: math.unit(0.6, "meters"),
  13233. name: "Hand",
  13234. image: {
  13235. source: "./media/characters/keset-vanrel/hand.svg"
  13236. }
  13237. },
  13238. foot: {
  13239. height: math.unit(0.94978, "meters"),
  13240. name: "Foot",
  13241. image: {
  13242. source: "./media/characters/keset-vanrel/foot.svg"
  13243. }
  13244. },
  13245. battle: {
  13246. height: math.unit(7.408, "feet"),
  13247. name: "Battle",
  13248. image: {
  13249. source: "./media/characters/keset-vanrel/battle.svg",
  13250. extra: 1890 / 1386,
  13251. bottom: 73.28 / 1970
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(8 + 5 / 12, "feet"),
  13259. default: true
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/neos/front.svg",
  13272. extra: 1696 / 992,
  13273. bottom: 0.14
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(54, "cm"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(100, "m")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(10, "km")
  13290. },
  13291. {
  13292. name: "Megamacro+",
  13293. height: math.unit(100, "km")
  13294. },
  13295. {
  13296. name: "Gigamacro",
  13297. height: math.unit(100, "Mm")
  13298. },
  13299. {
  13300. name: "Teramacro",
  13301. height: math.unit(100, "Gm")
  13302. },
  13303. {
  13304. name: "Examacro",
  13305. height: math.unit(100, "Em")
  13306. },
  13307. {
  13308. name: "Godly",
  13309. height: math.unit(10000, "Ym")
  13310. },
  13311. {
  13312. name: "Beyond Godly",
  13313. height: math.unit(25, "multiverses")
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13319. {
  13320. feminine: {
  13321. height: math.unit(5, "feet"),
  13322. weight: math.unit(100, "lb"),
  13323. name: "Feminine",
  13324. image: {
  13325. source: "./media/characters/sammy-mouse/feminine.svg",
  13326. extra: 2526 / 2425,
  13327. bottom: 0.123
  13328. }
  13329. },
  13330. masculine: {
  13331. height: math.unit(5, "feet"),
  13332. weight: math.unit(100, "lb"),
  13333. name: "Masculine",
  13334. image: {
  13335. source: "./media/characters/sammy-mouse/masculine.svg",
  13336. extra: 2526 / 2425,
  13337. bottom: 0.123
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Micro",
  13344. height: math.unit(5, "inches")
  13345. },
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(5, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(60, "feet")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(4, "feet"),
  13362. weight: math.unit(50, "lb"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/kole/front.svg",
  13366. extra: 1423 / 1303,
  13367. bottom: 0.025
  13368. }
  13369. },
  13370. back: {
  13371. height: math.unit(4, "feet"),
  13372. weight: math.unit(50, "lb"),
  13373. name: "Back",
  13374. image: {
  13375. source: "./media/characters/kole/back.svg",
  13376. extra: 1426 / 1280,
  13377. bottom: 0.02
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(4, "feet"),
  13385. default: true
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(2.5, "feet"),
  13394. weight: math.unit(32, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/rufran/front.svg",
  13398. extra: 1313/885,
  13399. bottom: 94/1407
  13400. }
  13401. },
  13402. side: {
  13403. height: math.unit(2.5, "feet"),
  13404. weight: math.unit(32, "lb"),
  13405. name: "Side",
  13406. image: {
  13407. source: "./media/characters/rufran/side.svg",
  13408. extra: 1109/852,
  13409. bottom: 118/1227
  13410. }
  13411. },
  13412. back: {
  13413. height: math.unit(2.5, "feet"),
  13414. weight: math.unit(32, "lb"),
  13415. name: "Back",
  13416. image: {
  13417. source: "./media/characters/rufran/back.svg",
  13418. extra: 1280/878,
  13419. bottom: 131/1411
  13420. }
  13421. },
  13422. mouth: {
  13423. height: math.unit(1.13, "feet"),
  13424. name: "Mouth",
  13425. image: {
  13426. source: "./media/characters/rufran/mouth.svg"
  13427. }
  13428. },
  13429. foot: {
  13430. height: math.unit(1.33, "feet"),
  13431. name: "Foot",
  13432. image: {
  13433. source: "./media/characters/rufran/foot.svg"
  13434. }
  13435. },
  13436. koboldFront: {
  13437. height: math.unit(2 + 6 / 12, "feet"),
  13438. weight: math.unit(20, "lb"),
  13439. name: "Front (Kobold)",
  13440. image: {
  13441. source: "./media/characters/rufran/kobold-front.svg",
  13442. extra: 2041 / 1839,
  13443. bottom: 0.055
  13444. }
  13445. },
  13446. koboldBack: {
  13447. height: math.unit(2 + 6 / 12, "feet"),
  13448. weight: math.unit(20, "lb"),
  13449. name: "Back (Kobold)",
  13450. image: {
  13451. source: "./media/characters/rufran/kobold-back.svg",
  13452. extra: 2054 / 1839,
  13453. bottom: 0.01
  13454. }
  13455. },
  13456. koboldHand: {
  13457. height: math.unit(0.2166, "meters"),
  13458. name: "Hand (Kobold)",
  13459. image: {
  13460. source: "./media/characters/rufran/kobold-hand.svg"
  13461. }
  13462. },
  13463. koboldFoot: {
  13464. height: math.unit(0.185, "meters"),
  13465. name: "Foot (Kobold)",
  13466. image: {
  13467. source: "./media/characters/rufran/kobold-foot.svg"
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(1, "inch")
  13475. },
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(2 + 6 / 12, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Big",
  13483. height: math.unit(60, "feet")
  13484. },
  13485. {
  13486. name: "Macro",
  13487. height: math.unit(325, "feet")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(0.3, "meters"),
  13496. weight: math.unit(3.5, "kg"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/chip/front.svg",
  13500. extra: 748 / 674
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Micro",
  13507. height: math.unit(1, "inch"),
  13508. default: true
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13514. {
  13515. side: {
  13516. height: math.unit(2.3, "meters"),
  13517. weight: math.unit(3500, "lb"),
  13518. name: "Side",
  13519. image: {
  13520. source: "./media/characters/torvid/side.svg",
  13521. extra: 1972 / 722,
  13522. bottom: 0.035
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Normal",
  13529. height: math.unit(2.3, "meters"),
  13530. default: true
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(2, "meters"),
  13539. weight: math.unit(150.5, "kg"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/susan/front.svg",
  13543. extra: 693 / 635,
  13544. bottom: 0.05
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(505, "miles"),
  13552. default: true
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/raindrops/front.svg",
  13565. extra: 2655 / 2461,
  13566. bottom: 49 / 2705
  13567. }
  13568. },
  13569. back: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Back",
  13573. image: {
  13574. source: "./media/characters/raindrops/back.svg",
  13575. extra: 2574 / 2400,
  13576. bottom: 65 / 2634
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Micro",
  13583. height: math.unit(6, "inches")
  13584. },
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(6 + 2 / 12, "feet")
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(131, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Megamacro",
  13596. height: math.unit(15, "miles")
  13597. },
  13598. {
  13599. name: "Gigamacro",
  13600. height: math.unit(4000, "miles")
  13601. },
  13602. {
  13603. name: "Teramacro",
  13604. height: math.unit(315000, "miles")
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13610. {
  13611. front: {
  13612. height: math.unit(2.794, "meters"),
  13613. weight: math.unit(325, "kg"),
  13614. name: "Front",
  13615. image: {
  13616. source: "./media/characters/tezwa/front.svg",
  13617. extra: 2083 / 1906,
  13618. bottom: 0.031
  13619. }
  13620. },
  13621. foot: {
  13622. height: math.unit(0.687, "meters"),
  13623. name: "Foot",
  13624. image: {
  13625. source: "./media/characters/tezwa/foot.svg"
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(9 + 2 / 12, "feet"),
  13633. default: true
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(58, "feet"),
  13642. weight: math.unit(89000, "lb"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/typhus/front.svg",
  13646. extra: 816 / 800,
  13647. bottom: 0.065
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Macro",
  13654. height: math.unit(58, "feet"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(12, "feet"),
  13664. weight: math.unit(6, "tonnes"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/lyra-von-wulf/front.svg",
  13668. extra: 1,
  13669. bottom: 0.10
  13670. }
  13671. },
  13672. frontMecha: {
  13673. height: math.unit(12, "feet"),
  13674. weight: math.unit(12, "tonnes"),
  13675. name: "Front (Mecha)",
  13676. image: {
  13677. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13678. extra: 1,
  13679. bottom: 0.042
  13680. }
  13681. },
  13682. maw: {
  13683. height: math.unit(2.2, "feet"),
  13684. name: "Maw",
  13685. image: {
  13686. source: "./media/characters/lyra-von-wulf/maw.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Normal",
  13693. height: math.unit(12, "feet"),
  13694. default: true
  13695. },
  13696. {
  13697. name: "Classic",
  13698. height: math.unit(50, "feet")
  13699. },
  13700. {
  13701. name: "Macro",
  13702. height: math.unit(500, "feet")
  13703. },
  13704. {
  13705. name: "Megamacro",
  13706. height: math.unit(1, "mile")
  13707. },
  13708. {
  13709. name: "Gigamacro",
  13710. height: math.unit(400, "miles")
  13711. },
  13712. {
  13713. name: "Teramacro",
  13714. height: math.unit(22000, "miles")
  13715. },
  13716. {
  13717. name: "Solarmacro",
  13718. height: math.unit(8600000, "miles")
  13719. },
  13720. {
  13721. name: "Galactic",
  13722. height: math.unit(1057000, "lightyears")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6 + 10 / 12, "feet"),
  13731. weight: math.unit(150, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/dixon/front.svg",
  13735. extra: 3361 / 3209,
  13736. bottom: 0.01
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Normal",
  13743. height: math.unit(6 + 10 / 12, "feet"),
  13744. default: true
  13745. },
  13746. {
  13747. name: "Big",
  13748. height: math.unit(12, "meters")
  13749. },
  13750. {
  13751. name: "Macro",
  13752. height: math.unit(500, "meters")
  13753. },
  13754. {
  13755. name: "Megamacro",
  13756. height: math.unit(2, "km")
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(185, "cm"),
  13765. weight: math.unit(68, "kg"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/kauko/front.svg",
  13769. extra: 1455 / 1421,
  13770. bottom: 0.03
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(185, "cm"),
  13775. weight: math.unit(68, "kg"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/kauko/back.svg",
  13779. extra: 1455 / 1421,
  13780. bottom: 0.004
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(185, "cm"),
  13788. default: true
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "kg"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/varg/front.svg",
  13801. extra: 1108 / 1018,
  13802. bottom: 0.0375
  13803. }
  13804. },
  13805. },
  13806. [
  13807. {
  13808. name: "Normal",
  13809. height: math.unit(5, "meters")
  13810. },
  13811. {
  13812. name: "Macro",
  13813. height: math.unit(200, "meters")
  13814. },
  13815. {
  13816. name: "Megamacro",
  13817. height: math.unit(20, "kilometers")
  13818. },
  13819. {
  13820. name: "True Size",
  13821. height: math.unit(211, "km"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Gigamacro",
  13826. height: math.unit(1000, "km")
  13827. },
  13828. {
  13829. name: "Gigamacro+",
  13830. height: math.unit(8000, "km")
  13831. },
  13832. {
  13833. name: "Teramacro",
  13834. height: math.unit(1000000, "km")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(7 + 7 / 12, "feet"),
  13843. weight: math.unit(267, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/dayza/front.svg",
  13847. extra: 1262 / 1200,
  13848. bottom: 0.035
  13849. }
  13850. },
  13851. side: {
  13852. height: math.unit(7 + 7 / 12, "feet"),
  13853. weight: math.unit(267, "lb"),
  13854. name: "Side",
  13855. image: {
  13856. source: "./media/characters/dayza/side.svg",
  13857. extra: 1295 / 1245,
  13858. bottom: 0.05
  13859. }
  13860. },
  13861. back: {
  13862. height: math.unit(7 + 7 / 12, "feet"),
  13863. weight: math.unit(267, "lb"),
  13864. name: "Back",
  13865. image: {
  13866. source: "./media/characters/dayza/back.svg",
  13867. extra: 1241 / 1170
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(7 + 7 / 12, "feet"),
  13875. default: true
  13876. },
  13877. {
  13878. name: "Macro",
  13879. height: math.unit(155, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(6 + 5 / 12, "feet"),
  13888. weight: math.unit(160, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/xanthos/front.svg",
  13892. extra: 1,
  13893. bottom: 0.04
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(6 + 5 / 12, "feet"),
  13898. weight: math.unit(160, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/xanthos/back.svg",
  13902. extra: 1,
  13903. bottom: 0.03
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(0.928, "feet"),
  13908. name: "Hand",
  13909. image: {
  13910. source: "./media/characters/xanthos/hand.svg"
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(1.286, "feet"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/xanthos/foot.svg"
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(6 + 5 / 12, "feet"),
  13925. default: true
  13926. },
  13927. {
  13928. name: "Normal+",
  13929. height: math.unit(6, "meters")
  13930. },
  13931. {
  13932. name: "Macro",
  13933. height: math.unit(40, "feet")
  13934. },
  13935. {
  13936. name: "Macro+",
  13937. height: math.unit(200, "meters")
  13938. },
  13939. {
  13940. name: "Megamacro",
  13941. height: math.unit(20, "km")
  13942. },
  13943. {
  13944. name: "Megamacro+",
  13945. height: math.unit(100, "km")
  13946. },
  13947. {
  13948. name: "Gigamacro",
  13949. height: math.unit(200, "megameters")
  13950. },
  13951. {
  13952. name: "Gigamacro+",
  13953. height: math.unit(1.5, "gigameters")
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(6 + 3 / 12, "feet"),
  13962. weight: math.unit(215, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/grynn/front.svg",
  13966. extra: 4627 / 4209,
  13967. bottom: 0.047
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(6, "inches")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(6 + 3 / 12, "feet"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Big",
  13983. height: math.unit(104, "feet")
  13984. },
  13985. {
  13986. name: "Macro",
  13987. height: math.unit(944, "feet")
  13988. },
  13989. {
  13990. name: "Macro+",
  13991. height: math.unit(9480, "feet")
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(78752, "feet")
  13996. },
  13997. {
  13998. name: "Megamacro+",
  13999. height: math.unit(630128, "feet")
  14000. },
  14001. {
  14002. name: "Megamacro++",
  14003. height: math.unit(3150695, "feet")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(7 + 5 / 12, "feet"),
  14012. weight: math.unit(450, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/mocha-aura/front.svg",
  14016. extra: 1907 / 1817,
  14017. bottom: 0.04
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(7 + 5 / 12, "feet"),
  14022. weight: math.unit(450, "lb"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/mocha-aura/back.svg",
  14026. extra: 1900 / 1825,
  14027. bottom: 0.045
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Nano",
  14034. height: math.unit(1, "nm")
  14035. },
  14036. {
  14037. name: "Megamicro",
  14038. height: math.unit(1, "mm")
  14039. },
  14040. {
  14041. name: "Micro",
  14042. height: math.unit(3, "inches")
  14043. },
  14044. {
  14045. name: "Normal",
  14046. height: math.unit(7 + 5 / 12, "feet"),
  14047. default: true
  14048. },
  14049. {
  14050. name: "Macro",
  14051. height: math.unit(30, "feet")
  14052. },
  14053. {
  14054. name: "Megamacro",
  14055. height: math.unit(3500, "feet")
  14056. },
  14057. {
  14058. name: "Teramacro",
  14059. height: math.unit(500000, "miles")
  14060. },
  14061. {
  14062. name: "Petamacro",
  14063. height: math.unit(50000000000000000, "parsecs")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/ilisha-devya/front.svg",
  14076. extra: 1053/1049,
  14077. bottom: 270/1323
  14078. }
  14079. },
  14080. back: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Back",
  14084. image: {
  14085. source: "./media/characters/ilisha-devya/back.svg",
  14086. extra: 1131/1128,
  14087. bottom: 39/1170
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Macro",
  14094. height: math.unit(500, "feet"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(10, "miles")
  14100. },
  14101. {
  14102. name: "Gigamacro",
  14103. height: math.unit(100000, "miles")
  14104. },
  14105. {
  14106. name: "Examacro",
  14107. height: math.unit(1e9, "lightyears")
  14108. },
  14109. {
  14110. name: "Omniversal",
  14111. height: math.unit(1e33, "lightyears")
  14112. },
  14113. {
  14114. name: "Beyond Infinite",
  14115. height: math.unit(1e100, "lightyears")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14121. {
  14122. Side: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(150, "lb"),
  14125. name: "Side",
  14126. image: {
  14127. source: "./media/characters/mira/side.svg",
  14128. extra: 900 / 799,
  14129. bottom: 0.02
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Human Size",
  14136. height: math.unit(6, "feet")
  14137. },
  14138. {
  14139. name: "Macro",
  14140. height: math.unit(100, "feet"),
  14141. default: true
  14142. },
  14143. {
  14144. name: "Megamacro",
  14145. height: math.unit(10, "miles")
  14146. },
  14147. {
  14148. name: "Gigamacro",
  14149. height: math.unit(25000, "miles")
  14150. },
  14151. {
  14152. name: "Teramacro",
  14153. height: math.unit(300, "AU")
  14154. },
  14155. {
  14156. name: "Full Size",
  14157. height: math.unit(4.5e10, "lightyears")
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(150, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/holly/front.svg",
  14170. extra: 639 / 606
  14171. }
  14172. },
  14173. back: {
  14174. height: math.unit(6, "feet"),
  14175. weight: math.unit(150, "lb"),
  14176. name: "Back",
  14177. image: {
  14178. source: "./media/characters/holly/back.svg",
  14179. extra: 623 / 598
  14180. }
  14181. },
  14182. frontWorking: {
  14183. height: math.unit(6, "feet"),
  14184. weight: math.unit(150, "lb"),
  14185. name: "Front (Working)",
  14186. image: {
  14187. source: "./media/characters/holly/front-working.svg",
  14188. extra: 607 / 577,
  14189. bottom: 0.048
  14190. }
  14191. },
  14192. },
  14193. [
  14194. {
  14195. name: "Normal",
  14196. height: math.unit(12 + 3 / 12, "feet"),
  14197. default: true
  14198. },
  14199. ]
  14200. ))
  14201. characterMakers.push(() => makeCharacter(
  14202. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14203. {
  14204. front: {
  14205. height: math.unit(6, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/porter/front.svg",
  14210. extra: 1,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. frontRobes: {
  14215. height: math.unit(6, "feet"),
  14216. weight: math.unit(150, "lb"),
  14217. name: "Front (Robes)",
  14218. image: {
  14219. source: "./media/characters/porter/front-robes.svg",
  14220. extra: 1.01,
  14221. bottom: 0.01
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(11 + 9 / 12, "feet"),
  14229. default: true
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14235. {
  14236. legendary: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(150, "lb"),
  14239. name: "Legendary",
  14240. image: {
  14241. source: "./media/characters/lucy/legendary.svg",
  14242. extra: 1355 / 1100,
  14243. bottom: 0.045
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Legendary",
  14250. height: math.unit(86882 * 2, "miles"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(150, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/drusilla/front.svg",
  14264. extra: 678 / 635,
  14265. bottom: 0.03
  14266. }
  14267. },
  14268. back: {
  14269. height: math.unit(6, "feet"),
  14270. weight: math.unit(150, "lb"),
  14271. name: "Back",
  14272. image: {
  14273. source: "./media/characters/drusilla/back.svg",
  14274. extra: 678 / 635,
  14275. bottom: 0.005
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(100, "feet")
  14283. },
  14284. {
  14285. name: "Canon Height",
  14286. height: math.unit(2000, "feet"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(6, "feet"),
  14296. weight: math.unit(180, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/renard-thatch/front.svg",
  14300. extra: 2411 / 2275,
  14301. bottom: 0.01
  14302. }
  14303. },
  14304. frontPosing: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(180, "lb"),
  14307. name: "Front (Posing)",
  14308. image: {
  14309. source: "./media/characters/renard-thatch/front-posing.svg",
  14310. extra: 2381 / 2261,
  14311. bottom: 0.01
  14312. }
  14313. },
  14314. back: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(180, "lb"),
  14317. name: "Back",
  14318. image: {
  14319. source: "./media/characters/renard-thatch/back.svg",
  14320. extra: 2428 / 2288
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Micro",
  14327. height: math.unit(3, "inches")
  14328. },
  14329. {
  14330. name: "Default",
  14331. height: math.unit(6, "feet"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(75, "feet")
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(1450, "feet"),
  14345. weight: math.unit(1.21e6, "tons"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/sekvra/front.svg",
  14349. extra: 1193/1190,
  14350. bottom: 78/1271
  14351. }
  14352. },
  14353. side: {
  14354. height: math.unit(1450, "feet"),
  14355. weight: math.unit(1.21e6, "tons"),
  14356. name: "Side",
  14357. image: {
  14358. source: "./media/characters/sekvra/side.svg",
  14359. extra: 1193/1190,
  14360. bottom: 52/1245
  14361. }
  14362. },
  14363. back: {
  14364. height: math.unit(1450, "feet"),
  14365. weight: math.unit(1.21e6, "tons"),
  14366. name: "Back",
  14367. image: {
  14368. source: "./media/characters/sekvra/back.svg",
  14369. extra: 1219/1216,
  14370. bottom: 21/1240
  14371. }
  14372. },
  14373. frontClothed: {
  14374. height: math.unit(1450, "feet"),
  14375. weight: math.unit(1.21e6, "tons"),
  14376. name: "Front (Clothed)",
  14377. image: {
  14378. source: "./media/characters/sekvra/front-clothed.svg",
  14379. extra: 1192/1189,
  14380. bottom: 79/1271
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Macro",
  14387. height: math.unit(1450, "feet"),
  14388. default: true
  14389. },
  14390. {
  14391. name: "Megamacro",
  14392. height: math.unit(15000, "feet")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/carmine/front.svg",
  14405. extra: 1,
  14406. bottom: 0.035
  14407. }
  14408. },
  14409. frontArmor: {
  14410. height: math.unit(6, "feet"),
  14411. weight: math.unit(150, "lb"),
  14412. name: "Front (Armor)",
  14413. image: {
  14414. source: "./media/characters/carmine/front-armor.svg",
  14415. extra: 1,
  14416. bottom: 0.035
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Large",
  14423. height: math.unit(1, "mile")
  14424. },
  14425. {
  14426. name: "Huge",
  14427. height: math.unit(40, "miles"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Colossal",
  14432. height: math.unit(2500, "miles")
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14438. {
  14439. front: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(150, "lb"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/elyssia/front.svg",
  14445. extra: 2201 / 2035,
  14446. bottom: 0.05
  14447. }
  14448. },
  14449. frontClothed: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Front (Clothed)",
  14453. image: {
  14454. source: "./media/characters/elyssia/front-clothed.svg",
  14455. extra: 2201 / 2035,
  14456. bottom: 0.05
  14457. }
  14458. },
  14459. back: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Back",
  14463. image: {
  14464. source: "./media/characters/elyssia/back.svg",
  14465. extra: 2201 / 2035,
  14466. bottom: 0.013
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Smaller",
  14473. height: math.unit(150, "feet")
  14474. },
  14475. {
  14476. name: "Standard",
  14477. height: math.unit(1400, "feet"),
  14478. default: true
  14479. },
  14480. {
  14481. name: "Distracted",
  14482. height: math.unit(15000, "feet")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(7 + 4/12, "feet"),
  14491. weight: math.unit(690, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/geno-maxwell/front.svg",
  14495. extra: 984/856,
  14496. bottom: 87/1071
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(7 + 4/12, "feet"),
  14501. weight: math.unit(690, "lb"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/geno-maxwell/back.svg",
  14505. extra: 981/854,
  14506. bottom: 57/1038
  14507. }
  14508. },
  14509. frontCostume: {
  14510. height: math.unit(7 + 4/12, "feet"),
  14511. weight: math.unit(690, "lb"),
  14512. name: "Front (Costume)",
  14513. image: {
  14514. source: "./media/characters/geno-maxwell/front-costume.svg",
  14515. extra: 984/856,
  14516. bottom: 87/1071
  14517. }
  14518. },
  14519. backcostume: {
  14520. height: math.unit(7 + 4/12, "feet"),
  14521. weight: math.unit(690, "lb"),
  14522. name: "Back (Costume)",
  14523. image: {
  14524. source: "./media/characters/geno-maxwell/back-costume.svg",
  14525. extra: 981/854,
  14526. bottom: 57/1038
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(3, "inches")
  14534. },
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(7 + 4 / 12, "feet"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(220, "feet")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(11, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(7 + 4/12, "feet"),
  14555. weight: math.unit(750, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/regena-maxwell/front.svg",
  14559. extra: 984/856,
  14560. bottom: 87/1071
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(7 + 4/12, "feet"),
  14565. weight: math.unit(750, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/regena-maxwell/back.svg",
  14569. extra: 981/854,
  14570. bottom: 57/1038
  14571. }
  14572. },
  14573. frontCostume: {
  14574. height: math.unit(7 + 4/12, "feet"),
  14575. weight: math.unit(750, "lb"),
  14576. name: "Front (Costume)",
  14577. image: {
  14578. source: "./media/characters/regena-maxwell/front-costume.svg",
  14579. extra: 984/856,
  14580. bottom: 87/1071
  14581. }
  14582. },
  14583. backcostume: {
  14584. height: math.unit(7 + 4/12, "feet"),
  14585. weight: math.unit(750, "lb"),
  14586. name: "Back (Costume)",
  14587. image: {
  14588. source: "./media/characters/regena-maxwell/back-costume.svg",
  14589. extra: 981/854,
  14590. bottom: 57/1038
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Normal",
  14597. height: math.unit(7 + 4 / 12, "feet"),
  14598. default: true
  14599. },
  14600. {
  14601. name: "Macro",
  14602. height: math.unit(220, "feet")
  14603. },
  14604. {
  14605. name: "Megamacro",
  14606. height: math.unit(11, "miles")
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14619. extra: 860 / 690,
  14620. bottom: 0.03
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(1.7, "meters"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/quilly/front.svg",
  14641. extra: 890 / 776
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Gigamacro",
  14648. height: math.unit(404090, "miles"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(7 + 8 / 12, "feet"),
  14658. weight: math.unit(350, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/tempest/front.svg",
  14662. extra: 1175 / 1086,
  14663. bottom: 0.02
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(7 + 8 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14677. {
  14678. side: {
  14679. height: math.unit(4 + 5 / 12, "feet"),
  14680. weight: math.unit(80, "lb"),
  14681. name: "Side",
  14682. image: {
  14683. source: "./media/characters/rodger/side.svg",
  14684. extra: 1235 / 1118
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Micro",
  14691. height: math.unit(1, "inch")
  14692. },
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(4 + 5 / 12, "feet"),
  14696. default: true
  14697. },
  14698. {
  14699. name: "Macro",
  14700. height: math.unit(120, "feet")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(6, "feet"),
  14709. weight: math.unit(150, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/danyel/front.svg",
  14713. extra: 1185 / 1123,
  14714. bottom: 0.05
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Shrunken",
  14721. height: math.unit(0.5, "mm")
  14722. },
  14723. {
  14724. name: "Micro",
  14725. height: math.unit(1, "mm"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Upsized",
  14730. height: math.unit(5 + 5 / 12, "feet")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(5 + 6 / 12, "feet"),
  14739. weight: math.unit(200, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/vivian-bijoux/front.svg",
  14743. extra: 1217/1209,
  14744. bottom: 76/1293
  14745. }
  14746. },
  14747. back: {
  14748. height: math.unit(5 + 6 / 12, "feet"),
  14749. weight: math.unit(200, "lb"),
  14750. name: "Back",
  14751. image: {
  14752. source: "./media/characters/vivian-bijoux/back.svg",
  14753. extra: 1214/1208,
  14754. bottom: 51/1265
  14755. }
  14756. },
  14757. dressed: {
  14758. height: math.unit(5 + 6 / 12, "feet"),
  14759. weight: math.unit(200, "lb"),
  14760. name: "Dressed",
  14761. image: {
  14762. source: "./media/characters/vivian-bijoux/dressed.svg",
  14763. extra: 1217/1209,
  14764. bottom: 76/1293
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 6 / 12, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Bad Dream",
  14776. height: math.unit(500, "feet")
  14777. },
  14778. {
  14779. name: "Nightmare",
  14780. height: math.unit(500, "miles")
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(6 + 1 / 12, "feet"),
  14789. weight: math.unit(260, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/zeta/front.svg",
  14793. extra: 1968 / 1889,
  14794. bottom: 0.06
  14795. }
  14796. },
  14797. back: {
  14798. height: math.unit(6 + 1 / 12, "feet"),
  14799. weight: math.unit(260, "lb"),
  14800. name: "Back",
  14801. image: {
  14802. source: "./media/characters/zeta/back.svg",
  14803. extra: 1944 / 1858,
  14804. bottom: 0.03
  14805. }
  14806. },
  14807. hand: {
  14808. height: math.unit(1.112, "feet"),
  14809. name: "Hand",
  14810. image: {
  14811. source: "./media/characters/zeta/hand.svg"
  14812. }
  14813. },
  14814. foot: {
  14815. height: math.unit(1.48, "feet"),
  14816. name: "Foot",
  14817. image: {
  14818. source: "./media/characters/zeta/foot.svg"
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Micro",
  14825. height: math.unit(6, "inches")
  14826. },
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(6 + 1 / 12, "feet"),
  14830. default: true
  14831. },
  14832. {
  14833. name: "Macro",
  14834. height: math.unit(20, "feet")
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/jamie-larsen/front.svg",
  14847. extra: 962 / 933,
  14848. bottom: 0.02
  14849. }
  14850. },
  14851. back: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Back",
  14855. image: {
  14856. source: "./media/characters/jamie-larsen/back.svg",
  14857. extra: 997 / 946
  14858. }
  14859. },
  14860. },
  14861. [
  14862. {
  14863. name: "Macro",
  14864. height: math.unit(28 + 7 / 12, "feet"),
  14865. default: true
  14866. },
  14867. {
  14868. name: "Macro+",
  14869. height: math.unit(180, "feet")
  14870. },
  14871. {
  14872. name: "Megamacro",
  14873. height: math.unit(10, "miles")
  14874. },
  14875. {
  14876. name: "Gigamacro",
  14877. height: math.unit(200000, "miles")
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(6, "feet"),
  14886. weight: math.unit(120, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/vance/front.svg",
  14890. extra: 1980 / 1890,
  14891. bottom: 0.09
  14892. }
  14893. },
  14894. back: {
  14895. height: math.unit(6, "feet"),
  14896. weight: math.unit(120, "lb"),
  14897. name: "Back",
  14898. image: {
  14899. source: "./media/characters/vance/back.svg",
  14900. extra: 2081 / 1994,
  14901. bottom: 0.014
  14902. }
  14903. },
  14904. hand: {
  14905. height: math.unit(0.88, "feet"),
  14906. name: "Hand",
  14907. image: {
  14908. source: "./media/characters/vance/hand.svg"
  14909. }
  14910. },
  14911. foot: {
  14912. height: math.unit(0.64, "feet"),
  14913. name: "Foot",
  14914. image: {
  14915. source: "./media/characters/vance/foot.svg"
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Small",
  14922. height: math.unit(90, "feet"),
  14923. default: true
  14924. },
  14925. {
  14926. name: "Macro",
  14927. height: math.unit(100, "meters")
  14928. },
  14929. {
  14930. name: "Megamacro",
  14931. height: math.unit(15, "miles")
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(180, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/xochitl/front.svg",
  14944. extra: 2297 / 2261,
  14945. bottom: 0.065
  14946. }
  14947. },
  14948. back: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(180, "lb"),
  14951. name: "Back",
  14952. image: {
  14953. source: "./media/characters/xochitl/back.svg",
  14954. extra: 2386 / 2354,
  14955. bottom: 0.01
  14956. }
  14957. },
  14958. foot: {
  14959. height: math.unit(6 / 5 * 1.15, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Foot",
  14962. image: {
  14963. source: "./media/characters/xochitl/foot.svg"
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Macro",
  14970. height: math.unit(80, "feet")
  14971. },
  14972. {
  14973. name: "Macro+",
  14974. height: math.unit(400, "feet"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Gigamacro",
  14979. height: math.unit(80000, "miles")
  14980. },
  14981. {
  14982. name: "Gigamacro+",
  14983. height: math.unit(400000, "miles")
  14984. },
  14985. {
  14986. name: "Teramacro",
  14987. height: math.unit(300, "AU")
  14988. },
  14989. ]
  14990. ))
  14991. characterMakers.push(() => makeCharacter(
  14992. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14993. {
  14994. front: {
  14995. height: math.unit(6, "feet"),
  14996. weight: math.unit(150, "lb"),
  14997. name: "Front",
  14998. image: {
  14999. source: "./media/characters/vincent/front.svg",
  15000. extra: 1130 / 1080,
  15001. bottom: 0.055
  15002. }
  15003. },
  15004. beak: {
  15005. height: math.unit(6 * 0.1, "feet"),
  15006. name: "Beak",
  15007. image: {
  15008. source: "./media/characters/vincent/beak.svg"
  15009. }
  15010. },
  15011. hand: {
  15012. height: math.unit(6 * 0.85, "feet"),
  15013. weight: math.unit(150, "lb"),
  15014. name: "Hand",
  15015. image: {
  15016. source: "./media/characters/vincent/hand.svg"
  15017. }
  15018. },
  15019. foot: {
  15020. height: math.unit(6 * 0.19, "feet"),
  15021. weight: math.unit(150, "lb"),
  15022. name: "Foot",
  15023. image: {
  15024. source: "./media/characters/vincent/foot.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Base",
  15031. height: math.unit(6 + 5 / 12, "feet"),
  15032. default: true
  15033. },
  15034. {
  15035. name: "Macro",
  15036. height: math.unit(300, "feet")
  15037. },
  15038. {
  15039. name: "Megamacro",
  15040. height: math.unit(2, "miles")
  15041. },
  15042. {
  15043. name: "Gigamacro",
  15044. height: math.unit(1000, "miles")
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(2, "meters"),
  15053. weight: math.unit(500, "kg"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/coatl/front.svg",
  15057. extra: 3948 / 3500,
  15058. bottom: 0.082
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(4, "meters")
  15066. },
  15067. {
  15068. name: "Macro",
  15069. height: math.unit(100, "meters"),
  15070. default: true
  15071. },
  15072. {
  15073. name: "Macro+",
  15074. height: math.unit(300, "meters")
  15075. },
  15076. {
  15077. name: "Megamacro",
  15078. height: math.unit(3, "gigameters")
  15079. },
  15080. {
  15081. name: "Megamacro+",
  15082. height: math.unit(300, "terameters")
  15083. },
  15084. {
  15085. name: "Megamacro++",
  15086. height: math.unit(3, "lightyears")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(6, "feet"),
  15095. weight: math.unit(50, "kg"),
  15096. name: "front",
  15097. image: {
  15098. source: "./media/characters/shiroryu/front.svg",
  15099. extra: 1990 / 1935
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Mortal Mingling",
  15106. height: math.unit(3, "meters")
  15107. },
  15108. {
  15109. name: "Kaiju-ish",
  15110. height: math.unit(250, "meters")
  15111. },
  15112. {
  15113. name: "Somewhat Godly",
  15114. height: math.unit(400, "km"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Planetary",
  15119. height: math.unit(300, "megameters")
  15120. },
  15121. {
  15122. name: "Galaxy-dwarfing",
  15123. height: math.unit(450, "kiloparsecs")
  15124. },
  15125. {
  15126. name: "Universe Eater",
  15127. height: math.unit(150, "gigaparsecs")
  15128. },
  15129. {
  15130. name: "Almost Immeasurable",
  15131. height: math.unit(1.3e266, "yottaparsecs")
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15137. {
  15138. front: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/umeko/front.svg",
  15144. extra: 1,
  15145. bottom: 0.019
  15146. }
  15147. },
  15148. frontArmored: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Front (Armored)",
  15152. image: {
  15153. source: "./media/characters/umeko/front-armored.svg",
  15154. extra: 1,
  15155. bottom: 0.021
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Macro",
  15162. height: math.unit(220, "feet"),
  15163. default: true
  15164. },
  15165. {
  15166. name: "Guardian Dragon",
  15167. height: math.unit(50, "miles")
  15168. },
  15169. {
  15170. name: "Cosmic",
  15171. height: math.unit(800000, "miles")
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(150, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/cassidy/front.svg",
  15184. extra: 810/808,
  15185. bottom: 41/851
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Canon Height",
  15192. height: math.unit(120, "feet"),
  15193. default: true
  15194. },
  15195. {
  15196. name: "Macro+",
  15197. height: math.unit(400, "feet")
  15198. },
  15199. {
  15200. name: "Macro++",
  15201. height: math.unit(4000, "feet")
  15202. },
  15203. {
  15204. name: "Megamacro",
  15205. height: math.unit(3, "miles")
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/isaac/front.svg",
  15218. extra: 896 / 815,
  15219. bottom: 0.11
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Human Size",
  15226. height: math.unit(8, "feet"),
  15227. default: true
  15228. },
  15229. {
  15230. name: "Macro",
  15231. height: math.unit(400, "feet")
  15232. },
  15233. {
  15234. name: "Megamacro",
  15235. height: math.unit(50, "miles")
  15236. },
  15237. {
  15238. name: "Canon Height",
  15239. height: math.unit(200, "AU")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(6, "feet"),
  15248. weight: math.unit(72, "kg"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/sleekit/front.svg",
  15252. extra: 4693 / 4487,
  15253. bottom: 0.012
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Minimum Height",
  15260. height: math.unit(10, "meters")
  15261. },
  15262. {
  15263. name: "Smaller",
  15264. height: math.unit(25, "meters")
  15265. },
  15266. {
  15267. name: "Larger",
  15268. height: math.unit(38, "meters"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Maximum height",
  15273. height: math.unit(100, "meters")
  15274. },
  15275. ]
  15276. ))
  15277. characterMakers.push(() => makeCharacter(
  15278. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15279. {
  15280. front: {
  15281. height: math.unit(6, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Front",
  15284. image: {
  15285. source: "./media/characters/nillia/front.svg",
  15286. extra: 2195 / 2037,
  15287. bottom: 0.005
  15288. }
  15289. },
  15290. back: {
  15291. height: math.unit(6, "feet"),
  15292. weight: math.unit(150, "lb"),
  15293. name: "Back",
  15294. image: {
  15295. source: "./media/characters/nillia/back.svg",
  15296. extra: 2195 / 2037,
  15297. bottom: 0.005
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Canon Height",
  15304. height: math.unit(489, "feet"),
  15305. default: true
  15306. }
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/mesmyriza/front.svg",
  15318. extra: 2067 / 1784,
  15319. bottom: 0.035
  15320. }
  15321. },
  15322. foot: {
  15323. height: math.unit(6 / (250 / 35), "feet"),
  15324. name: "Foot",
  15325. image: {
  15326. source: "./media/characters/mesmyriza/foot.svg"
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(457, "meters"),
  15334. default: true
  15335. },
  15336. {
  15337. name: "Megamacro",
  15338. height: math.unit(8, "megameters")
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(250, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/saudade/front.svg",
  15351. extra: 1172 / 1139,
  15352. bottom: 0.035
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Micro",
  15359. height: math.unit(3, "inches")
  15360. },
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(6, "feet"),
  15364. default: true
  15365. },
  15366. {
  15367. name: "Macro",
  15368. height: math.unit(50, "feet")
  15369. },
  15370. {
  15371. name: "Megamacro",
  15372. height: math.unit(2800, "feet")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(5 + 4 / 12, "feet"),
  15381. weight: math.unit(100, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/keireer/front.svg",
  15385. extra: 716 / 666,
  15386. bottom: 0.05
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5 + 4 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(5.5, "feet"),
  15403. weight: math.unit(90, "kg"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/mirja/front.svg",
  15407. extra: 1452/1262,
  15408. bottom: 67/1519
  15409. }
  15410. },
  15411. frontDressed: {
  15412. height: math.unit(5.5, "feet"),
  15413. weight: math.unit(90, "lb"),
  15414. name: "Front (Dressed)",
  15415. image: {
  15416. source: "./media/characters/mirja/dressed.svg",
  15417. extra: 1452/1262,
  15418. bottom: 67/1519
  15419. }
  15420. },
  15421. back: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(90, "lb"),
  15424. name: "Back",
  15425. image: {
  15426. source: "./media/characters/mirja/back.svg",
  15427. extra: 1892/1795,
  15428. bottom: 48/1940
  15429. }
  15430. },
  15431. maw: {
  15432. height: math.unit(1.312, "feet"),
  15433. name: "Maw",
  15434. image: {
  15435. source: "./media/characters/mirja/maw.svg"
  15436. }
  15437. },
  15438. paw: {
  15439. height: math.unit(1.15, "feet"),
  15440. name: "Paw",
  15441. image: {
  15442. source: "./media/characters/mirja/paw.svg"
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "\"Incognito\"",
  15449. height: math.unit(3, "meters")
  15450. },
  15451. {
  15452. name: "Strolling Size",
  15453. height: math.unit(15, "km")
  15454. },
  15455. {
  15456. name: "Larger Strolling Size",
  15457. height: math.unit(400, "km")
  15458. },
  15459. {
  15460. name: "Preferred Size",
  15461. height: math.unit(5000, "km"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "True Size",
  15466. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(15, "feet"),
  15475. weight: math.unit(880, "kg"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/nightraver/front.svg",
  15479. extra: 2444 / 2160,
  15480. bottom: 0.027
  15481. }
  15482. },
  15483. back: {
  15484. height: math.unit(15, "feet"),
  15485. weight: math.unit(880, "kg"),
  15486. name: "Back",
  15487. image: {
  15488. source: "./media/characters/nightraver/back.svg",
  15489. extra: 2309 / 2180,
  15490. bottom: 0.005
  15491. }
  15492. },
  15493. sole: {
  15494. height: math.unit(2.878, "feet"),
  15495. name: "Sole",
  15496. image: {
  15497. source: "./media/characters/nightraver/sole.svg"
  15498. }
  15499. },
  15500. foot: {
  15501. height: math.unit(2.285, "feet"),
  15502. name: "Foot",
  15503. image: {
  15504. source: "./media/characters/nightraver/foot.svg"
  15505. }
  15506. },
  15507. maw: {
  15508. height: math.unit(2.67, "feet"),
  15509. name: "Maw",
  15510. image: {
  15511. source: "./media/characters/nightraver/maw.svg"
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Micro",
  15518. height: math.unit(1, "cm")
  15519. },
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(15, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Macro",
  15527. height: math.unit(300, "feet")
  15528. },
  15529. {
  15530. name: "Megamacro",
  15531. height: math.unit(300, "miles")
  15532. },
  15533. {
  15534. name: "Gigamacro",
  15535. height: math.unit(10000, "miles")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15541. {
  15542. side: {
  15543. height: math.unit(2, "inches"),
  15544. weight: math.unit(5, "grams"),
  15545. name: "Side",
  15546. image: {
  15547. source: "./media/characters/arc/side.svg"
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Micro",
  15554. height: math.unit(2, "inches"),
  15555. default: true
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(1.1938, "meters"),
  15564. weight: math.unit(54, "kg"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/nebula-shahar/front.svg",
  15568. extra: 1642 / 1436,
  15569. bottom: 0.06
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Megamicro",
  15576. height: math.unit(0.3, "mm")
  15577. },
  15578. {
  15579. name: "Micro",
  15580. height: math.unit(3, "cm")
  15581. },
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(138, "cm"),
  15585. default: true
  15586. },
  15587. {
  15588. name: "Macro",
  15589. height: math.unit(30, "m")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(5.24, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/shayla/front.svg",
  15602. extra: 1512 / 1414,
  15603. bottom: 0.01
  15604. }
  15605. },
  15606. back: {
  15607. height: math.unit(5.24, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Back",
  15610. image: {
  15611. source: "./media/characters/shayla/back.svg",
  15612. extra: 1512 / 1414
  15613. }
  15614. },
  15615. hand: {
  15616. height: math.unit(0.7781496062992126, "feet"),
  15617. name: "Hand",
  15618. image: {
  15619. source: "./media/characters/shayla/hand.svg"
  15620. }
  15621. },
  15622. foot: {
  15623. height: math.unit(1.4206036745406823, "feet"),
  15624. name: "Foot",
  15625. image: {
  15626. source: "./media/characters/shayla/foot.svg"
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Micro",
  15633. height: math.unit(0.32, "feet")
  15634. },
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(5.24, "feet"),
  15638. default: true
  15639. },
  15640. {
  15641. name: "Macro",
  15642. height: math.unit(492.12, "feet")
  15643. },
  15644. {
  15645. name: "Megamacro",
  15646. height: math.unit(186.41, "miles")
  15647. },
  15648. ]
  15649. ))
  15650. characterMakers.push(() => makeCharacter(
  15651. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15652. {
  15653. front: {
  15654. height: math.unit(2.2, "m"),
  15655. weight: math.unit(120, "kg"),
  15656. name: "Front",
  15657. image: {
  15658. source: "./media/characters/pia-jr/front.svg",
  15659. extra: 1000 / 970,
  15660. bottom: 0.035
  15661. }
  15662. },
  15663. hand: {
  15664. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15665. name: "Hand",
  15666. image: {
  15667. source: "./media/characters/pia-jr/hand.svg"
  15668. }
  15669. },
  15670. paw: {
  15671. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15672. name: "Paw",
  15673. image: {
  15674. source: "./media/characters/pia-jr/paw.svg"
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Micro",
  15681. height: math.unit(1.2, "cm")
  15682. },
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(2.2, "m"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Macro",
  15690. height: math.unit(180, "m")
  15691. },
  15692. {
  15693. name: "Megamacro",
  15694. height: math.unit(420, "km")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(2, "m"),
  15703. weight: math.unit(115, "kg"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/pia-sr/front.svg",
  15707. extra: 760 / 730,
  15708. bottom: 0.015
  15709. }
  15710. },
  15711. back: {
  15712. height: math.unit(2, "m"),
  15713. weight: math.unit(115, "kg"),
  15714. name: "Back",
  15715. image: {
  15716. source: "./media/characters/pia-sr/back.svg",
  15717. extra: 760 / 730,
  15718. bottom: 0.01
  15719. }
  15720. },
  15721. hand: {
  15722. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15723. name: "Hand",
  15724. image: {
  15725. source: "./media/characters/pia-sr/hand.svg"
  15726. }
  15727. },
  15728. foot: {
  15729. height: math.unit(1.83, "feet"),
  15730. name: "Foot",
  15731. image: {
  15732. source: "./media/characters/pia-sr/foot.svg"
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Micro",
  15739. height: math.unit(88, "mm")
  15740. },
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(2, "m"),
  15744. default: true
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(200, "m")
  15749. },
  15750. {
  15751. name: "Megamacro",
  15752. height: math.unit(420, "km")
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(8 + 2 / 12, "feet"),
  15761. weight: math.unit(300, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/kibibyte/front.svg",
  15765. extra: 2221 / 2098,
  15766. bottom: 0.04
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(8 + 2 / 12, "feet"),
  15774. default: true
  15775. },
  15776. {
  15777. name: "Socialable Macro",
  15778. height: math.unit(50, "feet")
  15779. },
  15780. {
  15781. name: "Macro",
  15782. height: math.unit(300, "feet")
  15783. },
  15784. {
  15785. name: "Megamacro",
  15786. height: math.unit(500, "miles")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/felix/front.svg",
  15799. extra: 762 / 722,
  15800. bottom: 0.02
  15801. }
  15802. },
  15803. frontClothed: {
  15804. height: math.unit(6, "feet"),
  15805. weight: math.unit(150, "lb"),
  15806. name: "Front (Clothed)",
  15807. image: {
  15808. source: "./media/characters/felix/front-clothed.svg",
  15809. extra: 762 / 722,
  15810. bottom: 0.02
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(6 + 8 / 12, "feet"),
  15818. default: true
  15819. },
  15820. {
  15821. name: "Macro",
  15822. height: math.unit(2600, "feet")
  15823. },
  15824. {
  15825. name: "Megamacro",
  15826. height: math.unit(450, "miles")
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6 + 1 / 12, "feet"),
  15835. weight: math.unit(250, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/tobo/front.svg",
  15839. extra: 608 / 586,
  15840. bottom: 0.023
  15841. }
  15842. },
  15843. back: {
  15844. height: math.unit(6 + 1 / 12, "feet"),
  15845. weight: math.unit(250, "lb"),
  15846. name: "Back",
  15847. image: {
  15848. source: "./media/characters/tobo/back.svg",
  15849. extra: 608 / 586
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Nano",
  15856. height: math.unit(2, "nm")
  15857. },
  15858. {
  15859. name: "Megamicro",
  15860. height: math.unit(0.1, "mm")
  15861. },
  15862. {
  15863. name: "Micro",
  15864. height: math.unit(1, "inch"),
  15865. default: true
  15866. },
  15867. {
  15868. name: "Human-sized",
  15869. height: math.unit(6 + 1 / 12, "feet")
  15870. },
  15871. {
  15872. name: "Macro",
  15873. height: math.unit(250, "feet")
  15874. },
  15875. {
  15876. name: "Megamacro",
  15877. height: math.unit(75, "miles")
  15878. },
  15879. {
  15880. name: "Texas-sized",
  15881. height: math.unit(750, "miles")
  15882. },
  15883. {
  15884. name: "Teramacro",
  15885. height: math.unit(50000, "miles")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(269, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/danny-kapowsky/front.svg",
  15898. extra: 766 / 736,
  15899. bottom: 0.044
  15900. }
  15901. },
  15902. back: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(269, "lb"),
  15905. name: "Back",
  15906. image: {
  15907. source: "./media/characters/danny-kapowsky/back.svg",
  15908. extra: 797 / 760,
  15909. bottom: 0.025
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(150, "feet"),
  15917. default: true
  15918. },
  15919. {
  15920. name: "Macro+",
  15921. height: math.unit(200, "feet")
  15922. },
  15923. {
  15924. name: "Macro++",
  15925. height: math.unit(300, "feet")
  15926. },
  15927. {
  15928. name: "Macro+++",
  15929. height: math.unit(400, "feet")
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15935. {
  15936. side: {
  15937. height: math.unit(6, "feet"),
  15938. weight: math.unit(170, "lb"),
  15939. name: "Side",
  15940. image: {
  15941. source: "./media/characters/finn/side.svg",
  15942. extra: 1953 / 1807,
  15943. bottom: 0.057
  15944. }
  15945. },
  15946. },
  15947. [
  15948. {
  15949. name: "Megamacro",
  15950. height: math.unit(14445, "feet"),
  15951. default: true
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(5 + 6 / 12, "feet"),
  15960. weight: math.unit(125, "lb"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/roy/front.svg",
  15964. extra: 1,
  15965. bottom: 0.11
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Micro",
  15972. height: math.unit(3, "inches"),
  15973. default: true
  15974. },
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(5 + 6 / 12, "feet")
  15978. },
  15979. {
  15980. name: "Lesser Macro",
  15981. height: math.unit(60, "feet")
  15982. },
  15983. {
  15984. name: "Greater Macro",
  15985. height: math.unit(120, "feet")
  15986. },
  15987. ]
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(100, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/aevsivs/front.svg",
  15998. extra: 1,
  15999. bottom: 0.03
  16000. }
  16001. },
  16002. back: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(100, "lb"),
  16005. name: "Back",
  16006. image: {
  16007. source: "./media/characters/aevsivs/back.svg"
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Micro",
  16014. height: math.unit(2, "inches"),
  16015. default: true
  16016. },
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(5, "feet")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(5 + 7 / 12, "feet"),
  16028. weight: math.unit(159, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/hildegard/front.svg",
  16032. extra: 289 / 269,
  16033. bottom: 7.63 / 297.8
  16034. }
  16035. },
  16036. back: {
  16037. height: math.unit(5 + 7 / 12, "feet"),
  16038. weight: math.unit(159, "lb"),
  16039. name: "Back",
  16040. image: {
  16041. source: "./media/characters/hildegard/back.svg",
  16042. extra: 280 / 260,
  16043. bottom: 2.3 / 282
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(5 + 7 / 12, "feet"),
  16051. default: true
  16052. },
  16053. ]
  16054. ))
  16055. characterMakers.push(() => makeCharacter(
  16056. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16057. {
  16058. bernard: {
  16059. height: math.unit(2 + 7 / 12, "feet"),
  16060. weight: math.unit(66, "lb"),
  16061. name: "Bernard",
  16062. rename: true,
  16063. image: {
  16064. source: "./media/characters/bernard-wilder/bernard.svg",
  16065. extra: 192 / 128,
  16066. bottom: 0.05
  16067. }
  16068. },
  16069. wilder: {
  16070. height: math.unit(5 + 8 / 12, "feet"),
  16071. weight: math.unit(143, "lb"),
  16072. name: "Wilder",
  16073. rename: true,
  16074. image: {
  16075. source: "./media/characters/bernard-wilder/wilder.svg",
  16076. extra: 361 / 312,
  16077. bottom: 0.02
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(2 + 7 / 12, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16091. {
  16092. anthro: {
  16093. height: math.unit(6 + 1 / 12, "feet"),
  16094. weight: math.unit(155, "lb"),
  16095. name: "Anthro",
  16096. image: {
  16097. source: "./media/characters/hearth/anthro.svg",
  16098. extra: 1178/1136,
  16099. bottom: 28/1206
  16100. }
  16101. },
  16102. feral: {
  16103. height: math.unit(3.78, "feet"),
  16104. weight: math.unit(35, "kg"),
  16105. name: "Feral",
  16106. image: {
  16107. source: "./media/characters/hearth/feral.svg",
  16108. extra: 153 / 135,
  16109. bottom: 0.03
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(6 + 1 / 12, "feet"),
  16117. default: true
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(6, "feet"),
  16126. weight: math.unit(182, "lb"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/ingrid/front.svg",
  16130. extra: 294 / 268,
  16131. bottom: 0.027
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16145. {
  16146. eevee: {
  16147. height: math.unit(2 + 10 / 12, "feet"),
  16148. weight: math.unit(86, "lb"),
  16149. name: "Malgam",
  16150. image: {
  16151. source: "./media/characters/malgam/eevee.svg",
  16152. extra: 952/784,
  16153. bottom: 38/990
  16154. }
  16155. },
  16156. sylveon: {
  16157. height: math.unit(4, "feet"),
  16158. weight: math.unit(101, "lb"),
  16159. name: "Future Malgam",
  16160. rename: true,
  16161. image: {
  16162. source: "./media/characters/malgam/sylveon.svg",
  16163. extra: 371 / 325,
  16164. bottom: 0.015
  16165. }
  16166. },
  16167. gigantamax: {
  16168. height: math.unit(50, "feet"),
  16169. name: "Gigantamax Malgam",
  16170. rename: true,
  16171. image: {
  16172. source: "./media/characters/malgam/gigantamax.svg"
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(2 + 10 / 12, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(5 + 11 / 12, "feet"),
  16189. weight: math.unit(188, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/fleur/front.svg",
  16193. extra: 309 / 283,
  16194. bottom: 0.007
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(5 + 11 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 4 / 12, "feet"),
  16211. weight: math.unit(122, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/jude/front.svg",
  16215. extra: 288 / 273,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(5 + 4 / 12, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 11 / 12, "feet"),
  16233. weight: math.unit(190, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/seara/front.svg",
  16237. extra: 1,
  16238. bottom: 0.05
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(5 + 11 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(16 + 5 / 12, "feet"),
  16255. weight: math.unit(524, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/caspian-lugia/front.svg",
  16259. extra: 1,
  16260. bottom: 0.04
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(16 + 5 / 12, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(5 + 7 / 12, "feet"),
  16277. weight: math.unit(170, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/mika/front.svg",
  16281. extra: 1,
  16282. bottom: 0.016
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(5 + 7 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6 + 2 / 12, "feet"),
  16299. weight: math.unit(268, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/sol/front.svg",
  16303. extra: 247 / 231,
  16304. bottom: 0.05
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(6 + 2 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16318. {
  16319. buizel: {
  16320. height: math.unit(2 + 5 / 12, "feet"),
  16321. weight: math.unit(87, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/umiko/buizel.svg",
  16325. extra: 172 / 157,
  16326. bottom: 0.01
  16327. },
  16328. form: "buizel",
  16329. default: true
  16330. },
  16331. floatzel: {
  16332. height: math.unit(5 + 9 / 12, "feet"),
  16333. weight: math.unit(250, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/umiko/floatzel.svg",
  16337. extra: 1076/1006,
  16338. bottom: 15/1091
  16339. },
  16340. form: "floatzel",
  16341. default: true
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(2 + 5 / 12, "feet"),
  16348. form: "buizel",
  16349. default: true
  16350. },
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(5 + 9 / 12, "feet"),
  16354. form: "floatzel",
  16355. default: true
  16356. },
  16357. ],
  16358. {
  16359. "buizel": {
  16360. name: "Buizel"
  16361. },
  16362. "floatzel": {
  16363. name: "Floatzel",
  16364. default: true
  16365. }
  16366. }
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6 + 2 / 12, "feet"),
  16373. weight: math.unit(146, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/iliac/front.svg",
  16377. extra: 389 / 365,
  16378. bottom: 0.035
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6 + 2 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6, "feet"),
  16395. weight: math.unit(170, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/topaz/front.svg",
  16399. extra: 317 / 303,
  16400. bottom: 0.055
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(6, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(5 + 11 / 12, "feet"),
  16417. weight: math.unit(144, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/gabriel/front.svg",
  16421. extra: 285 / 262,
  16422. bottom: 0.004
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(5 + 11 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16436. {
  16437. side: {
  16438. height: math.unit(6 + 5 / 12, "feet"),
  16439. weight: math.unit(300, "lb"),
  16440. name: "Side",
  16441. image: {
  16442. source: "./media/characters/tempest-suicune/side.svg",
  16443. extra: 195 / 154,
  16444. bottom: 0.04
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(6 + 5 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(7 + 2 / 12, "feet"),
  16461. weight: math.unit(322, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/vulcan/front.svg",
  16465. extra: 154 / 147,
  16466. bottom: 0.04
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(7 + 2 / 12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(5 + 10 / 12, "feet"),
  16483. weight: math.unit(264, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/gault/front.svg",
  16487. extra: 161 / 140,
  16488. bottom: 0.028
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(5 + 10 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(6, "feet"),
  16505. weight: math.unit(150, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/shard/front.svg",
  16509. extra: 273 / 238,
  16510. bottom: 0.02
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(3 + 6 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(5 + 11 / 12, "feet"),
  16527. weight: math.unit(146, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/ashe/front.svg",
  16531. extra: 400 / 373,
  16532. bottom: 0.01
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(5 + 11 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(5 + 5 / 12, "feet"),
  16549. weight: math.unit(135, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/beatrix/front.svg",
  16553. extra: 392 / 379,
  16554. bottom: 0.01
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(6, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(6 + 2/12, "feet"),
  16571. weight: math.unit(135, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/ignatius/front.svg",
  16575. extra: 1380/1259,
  16576. bottom: 27/1407
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(6 + 2/12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16590. {
  16591. front: {
  16592. height: math.unit(6 + 2 / 12, "feet"),
  16593. weight: math.unit(138, "lb"),
  16594. name: "Front",
  16595. image: {
  16596. source: "./media/characters/mei-li/front.svg",
  16597. extra: 237 / 229,
  16598. bottom: 0.03
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 2 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(2 + 4 / 12, "feet"),
  16615. weight: math.unit(62, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/puru/front.svg",
  16619. extra: 206 / 149,
  16620. bottom: 0.06
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(2 + 4 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16634. {
  16635. anthro: {
  16636. height: math.unit(5 + 8/12, "feet"),
  16637. weight: math.unit(200, "lb"),
  16638. energyNeed: math.unit(2000, "kcal"),
  16639. name: "Anthro",
  16640. image: {
  16641. source: "./media/characters/kee/anthro.svg",
  16642. extra: 3251/3184,
  16643. bottom: 250/3501
  16644. }
  16645. },
  16646. taur: {
  16647. height: math.unit(11, "feet"),
  16648. weight: math.unit(500, "lb"),
  16649. energyNeed: math.unit(5000, "kcal"),
  16650. name: "Taur",
  16651. image: {
  16652. source: "./media/characters/kee/taur.svg",
  16653. extra: 1362/1320,
  16654. bottom: 83/1445
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(5 + 8/12, "feet"),
  16662. default: true
  16663. },
  16664. {
  16665. name: "Macro",
  16666. height: math.unit(35, "feet")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16672. {
  16673. anthro: {
  16674. height: math.unit(7, "feet"),
  16675. weight: math.unit(190, "lb"),
  16676. name: "Anthro",
  16677. image: {
  16678. source: "./media/characters/cobalt-dracha/anthro.svg",
  16679. extra: 231 / 225,
  16680. bottom: 0.04
  16681. }
  16682. },
  16683. feral: {
  16684. height: math.unit(9 + 7 / 12, "feet"),
  16685. weight: math.unit(294, "lb"),
  16686. name: "Feral",
  16687. image: {
  16688. source: "./media/characters/cobalt-dracha/feral.svg",
  16689. extra: 692 / 633,
  16690. bottom: 0.05
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(7, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16704. {
  16705. fallen: {
  16706. height: math.unit(11 + 8 / 12, "feet"),
  16707. weight: math.unit(485, "lb"),
  16708. name: "Java (Fallen)",
  16709. rename: true,
  16710. image: {
  16711. source: "./media/characters/java/fallen.svg",
  16712. extra: 226 / 208,
  16713. bottom: 0.005
  16714. }
  16715. },
  16716. godkin: {
  16717. height: math.unit(10 + 6 / 12, "feet"),
  16718. weight: math.unit(328, "lb"),
  16719. name: "Java (Godkin)",
  16720. rename: true,
  16721. image: {
  16722. source: "./media/characters/java/godkin.svg",
  16723. extra: 1104/1068,
  16724. bottom: 36/1140
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(11 + 8 / 12, "feet"),
  16732. default: true
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(5 + 9 / 12, "feet"),
  16741. weight: math.unit(170, "lb"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/purna/front.svg",
  16745. extra: 239 / 229,
  16746. bottom: 0.01
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(5 + 9 / 12, "feet"),
  16754. default: true
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16760. {
  16761. front: {
  16762. height: math.unit(5 + 9 / 12, "feet"),
  16763. weight: math.unit(142, "lb"),
  16764. name: "Front",
  16765. image: {
  16766. source: "./media/characters/kuva/front.svg",
  16767. extra: 281 / 271,
  16768. bottom: 0.006
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(5 + 9 / 12, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16782. {
  16783. anthro: {
  16784. height: math.unit(9 + 2 / 12, "feet"),
  16785. weight: math.unit(270, "lb"),
  16786. name: "Anthro",
  16787. image: {
  16788. source: "./media/characters/embra/anthro.svg",
  16789. extra: 200 / 187,
  16790. bottom: 0.02
  16791. }
  16792. },
  16793. feral: {
  16794. height: math.unit(18 + 8 / 12, "feet"),
  16795. weight: math.unit(576, "lb"),
  16796. name: "Feral",
  16797. image: {
  16798. source: "./media/characters/embra/feral.svg",
  16799. extra: 152 / 137,
  16800. bottom: 0.037
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Normal",
  16807. height: math.unit(9 + 2 / 12, "feet"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16814. {
  16815. anthro: {
  16816. height: math.unit(10 + 9 / 12, "feet"),
  16817. weight: math.unit(224, "lb"),
  16818. name: "Anthro",
  16819. image: {
  16820. source: "./media/characters/grottos/anthro.svg",
  16821. extra: 350 / 332,
  16822. bottom: 0.045
  16823. }
  16824. },
  16825. feral: {
  16826. height: math.unit(20 + 7 / 12, "feet"),
  16827. weight: math.unit(629, "lb"),
  16828. name: "Feral",
  16829. image: {
  16830. source: "./media/characters/grottos/feral.svg",
  16831. extra: 207 / 190,
  16832. bottom: 0.05
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(10 + 9 / 12, "feet"),
  16840. default: true
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16846. {
  16847. anthro: {
  16848. height: math.unit(9 + 6 / 12, "feet"),
  16849. weight: math.unit(298, "lb"),
  16850. name: "Anthro",
  16851. image: {
  16852. source: "./media/characters/frifna/anthro.svg",
  16853. extra: 282 / 269,
  16854. bottom: 0.015
  16855. }
  16856. },
  16857. feral: {
  16858. height: math.unit(16 + 2 / 12, "feet"),
  16859. weight: math.unit(624, "lb"),
  16860. name: "Feral",
  16861. image: {
  16862. source: "./media/characters/frifna/feral.svg"
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(9 + 6 / 12, "feet"),
  16870. default: true
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6 + 2 / 12, "feet"),
  16879. weight: math.unit(168, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/elise/front.svg",
  16883. extra: 276 / 271
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(6 + 2 / 12, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(5 + 10 / 12, "feet"),
  16900. weight: math.unit(210, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/glade/front.svg",
  16904. extra: 258 / 247,
  16905. bottom: 0.008
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(5 + 10 / 12, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16919. {
  16920. front: {
  16921. height: math.unit(5 + 10 / 12, "feet"),
  16922. weight: math.unit(129, "lb"),
  16923. name: "Front",
  16924. image: {
  16925. source: "./media/characters/rina/front.svg",
  16926. extra: 266 / 255,
  16927. bottom: 0.005
  16928. }
  16929. },
  16930. },
  16931. [
  16932. {
  16933. name: "Normal",
  16934. height: math.unit(5 + 10 / 12, "feet"),
  16935. default: true
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(6 + 1 / 12, "feet"),
  16944. weight: math.unit(192, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/veronica/front.svg",
  16948. extra: 319 / 309,
  16949. bottom: 0.005
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6 + 1 / 12, "feet"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(9 + 3 / 12, "feet"),
  16966. weight: math.unit(1100, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/braxton/front.svg",
  16970. extra: 1057 / 984,
  16971. bottom: 0.05
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(9 + 3 / 12, "feet")
  16979. },
  16980. {
  16981. name: "Giant",
  16982. height: math.unit(300, "feet"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Macro",
  16987. height: math.unit(700, "feet")
  16988. },
  16989. {
  16990. name: "Megamacro",
  16991. height: math.unit(6000, "feet")
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(6 + 7 / 12, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/blue-feyonics/front.svg",
  17004. extra: 1403 / 1306,
  17005. bottom: 0.047
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(6 + 7 / 12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(1.8, "meters"),
  17022. weight: math.unit(60, "kg"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/maxwell/front.svg",
  17026. extra: 2060 / 1873
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Micro",
  17033. height: math.unit(1, "mm")
  17034. },
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(1.8, "meter"),
  17038. default: true
  17039. },
  17040. {
  17041. name: "Macro",
  17042. height: math.unit(30, "meters")
  17043. },
  17044. {
  17045. name: "Megamacro",
  17046. height: math.unit(10, "km")
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17052. {
  17053. front: {
  17054. height: math.unit(6, "feet"),
  17055. weight: math.unit(150, "lb"),
  17056. name: "Front",
  17057. image: {
  17058. source: "./media/characters/jack/front.svg",
  17059. extra: 1754 / 1640,
  17060. bottom: 0.01
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(80000, "feet"),
  17068. default: true
  17069. },
  17070. {
  17071. name: "Max size",
  17072. height: math.unit(10, "lightyears")
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17078. {
  17079. urban: {
  17080. height: math.unit(5, "feet"),
  17081. weight: math.unit(240, "lb"),
  17082. name: "Urban",
  17083. image: {
  17084. source: "./media/characters/cafat/urban.svg",
  17085. extra: 1223/1126,
  17086. bottom: 205/1428
  17087. }
  17088. },
  17089. summer: {
  17090. height: math.unit(5, "feet"),
  17091. weight: math.unit(240, "lb"),
  17092. name: "Summer",
  17093. image: {
  17094. source: "./media/characters/cafat/summer.svg",
  17095. extra: 1223/1126,
  17096. bottom: 205/1428
  17097. }
  17098. },
  17099. winter: {
  17100. height: math.unit(5, "feet"),
  17101. weight: math.unit(240, "lb"),
  17102. name: "Winter",
  17103. image: {
  17104. source: "./media/characters/cafat/winter.svg",
  17105. extra: 1223/1126,
  17106. bottom: 205/1428
  17107. }
  17108. },
  17109. lingerie: {
  17110. height: math.unit(5, "feet"),
  17111. weight: math.unit(240, "lb"),
  17112. name: "Lingerie",
  17113. image: {
  17114. source: "./media/characters/cafat/lingerie.svg",
  17115. extra: 1223/1126,
  17116. bottom: 205/1428
  17117. }
  17118. },
  17119. upright: {
  17120. height: math.unit(6.3, "feet"),
  17121. weight: math.unit(240, "lb"),
  17122. name: "Upright",
  17123. image: {
  17124. source: "./media/characters/cafat/upright.svg",
  17125. bottom: 0.01
  17126. }
  17127. },
  17128. uprightFull: {
  17129. height: math.unit(6.3, "feet"),
  17130. weight: math.unit(240, "lb"),
  17131. name: "Upright (Full)",
  17132. image: {
  17133. source: "./media/characters/cafat/upright-full.svg",
  17134. bottom: 0.01
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Small",
  17141. height: math.unit(5, "feet"),
  17142. default: true
  17143. },
  17144. {
  17145. name: "Large",
  17146. height: math.unit(13, "feet")
  17147. },
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17152. {
  17153. front: {
  17154. height: math.unit(6, "feet"),
  17155. weight: math.unit(150, "lb"),
  17156. name: "Front",
  17157. image: {
  17158. source: "./media/characters/verin-raharra/front.svg",
  17159. extra: 5019 / 4835,
  17160. bottom: 0.023
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(7 + 5 / 12, "feet"),
  17168. default: true
  17169. },
  17170. {
  17171. name: "Upsized",
  17172. height: math.unit(20, "feet")
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17178. {
  17179. front: {
  17180. height: math.unit(7, "feet"),
  17181. weight: math.unit(230, "lb"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/nakata/front.svg",
  17185. extra: 1.005,
  17186. bottom: 0.01
  17187. }
  17188. },
  17189. },
  17190. [
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(7, "feet"),
  17194. default: true
  17195. },
  17196. {
  17197. name: "Big",
  17198. height: math.unit(14, "feet")
  17199. },
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(400, "feet")
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(4.91, "feet"),
  17211. weight: math.unit(100, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/lily/front.svg",
  17215. extra: 1585 / 1415,
  17216. bottom: 0.02
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(4.91, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17230. {
  17231. laying: {
  17232. height: math.unit(4 + 4 / 12, "feet"),
  17233. weight: math.unit(600, "lb"),
  17234. name: "Laying",
  17235. image: {
  17236. source: "./media/characters/sheila/laying.svg",
  17237. extra: 1333 / 1265,
  17238. bottom: 0.16
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(4 + 4 / 12, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17252. {
  17253. front: {
  17254. height: math.unit(6, "feet"),
  17255. weight: math.unit(190, "lb"),
  17256. name: "Front",
  17257. image: {
  17258. source: "./media/characters/sax/front.svg",
  17259. extra: 1187 / 973,
  17260. bottom: 0.042
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Micro",
  17267. height: math.unit(4, "inches"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(6, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/pandora/front.svg",
  17281. extra: 2720 / 2556,
  17282. bottom: 0.015
  17283. }
  17284. },
  17285. back: {
  17286. height: math.unit(6, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Back",
  17289. image: {
  17290. source: "./media/characters/pandora/back.svg",
  17291. extra: 2720 / 2556,
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. beans: {
  17296. height: math.unit(6 / 8, "feet"),
  17297. name: "Beans",
  17298. image: {
  17299. source: "./media/characters/pandora/beans.svg"
  17300. }
  17301. },
  17302. collar: {
  17303. height: math.unit(0.31, "feet"),
  17304. name: "Collar",
  17305. image: {
  17306. source: "./media/characters/pandora/collar.svg"
  17307. }
  17308. },
  17309. skirt: {
  17310. height: math.unit(6, "feet"),
  17311. weight: math.unit(150, "lb"),
  17312. name: "Skirt",
  17313. image: {
  17314. source: "./media/characters/pandora/skirt.svg",
  17315. extra: 1622 / 1525,
  17316. bottom: 0.015
  17317. }
  17318. },
  17319. hoodie: {
  17320. height: math.unit(6, "feet"),
  17321. weight: math.unit(150, "lb"),
  17322. name: "Hoodie",
  17323. image: {
  17324. source: "./media/characters/pandora/hoodie.svg",
  17325. extra: 1622 / 1525,
  17326. bottom: 0.015
  17327. }
  17328. },
  17329. casual: {
  17330. height: math.unit(6, "feet"),
  17331. weight: math.unit(150, "lb"),
  17332. name: "Casual",
  17333. image: {
  17334. source: "./media/characters/pandora/casual.svg",
  17335. extra: 1622 / 1525,
  17336. bottom: 0.015
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(6, "feet")
  17344. },
  17345. {
  17346. name: "Big Steppy",
  17347. height: math.unit(1, "km"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Galactic Steppy",
  17352. height: math.unit(2, "gigameters")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17358. {
  17359. side: {
  17360. height: math.unit(10, "feet"),
  17361. weight: math.unit(800, "kg"),
  17362. name: "Side",
  17363. image: {
  17364. source: "./media/characters/venio-darcony/side.svg",
  17365. extra: 1373 / 1003,
  17366. bottom: 0.037
  17367. }
  17368. },
  17369. front: {
  17370. height: math.unit(19, "feet"),
  17371. weight: math.unit(800, "kg"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/venio-darcony/front.svg"
  17375. }
  17376. },
  17377. back: {
  17378. height: math.unit(19, "feet"),
  17379. weight: math.unit(800, "kg"),
  17380. name: "Back",
  17381. image: {
  17382. source: "./media/characters/venio-darcony/back.svg"
  17383. }
  17384. },
  17385. sideNsfw: {
  17386. height: math.unit(10, "feet"),
  17387. weight: math.unit(800, "kg"),
  17388. name: "Side (NSFW)",
  17389. image: {
  17390. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17391. extra: 1373 / 1003,
  17392. bottom: 0.037
  17393. }
  17394. },
  17395. frontNsfw: {
  17396. height: math.unit(19, "feet"),
  17397. weight: math.unit(800, "kg"),
  17398. name: "Front (NSFW)",
  17399. image: {
  17400. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17401. }
  17402. },
  17403. backNsfw: {
  17404. height: math.unit(19, "feet"),
  17405. weight: math.unit(800, "kg"),
  17406. name: "Back (NSFW)",
  17407. image: {
  17408. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17409. }
  17410. },
  17411. sideArmored: {
  17412. height: math.unit(10, "feet"),
  17413. weight: math.unit(800, "kg"),
  17414. name: "Side (Armored)",
  17415. image: {
  17416. source: "./media/characters/venio-darcony/side-armored.svg",
  17417. extra: 1373 / 1003,
  17418. bottom: 0.037
  17419. }
  17420. },
  17421. frontArmored: {
  17422. height: math.unit(19, "feet"),
  17423. weight: math.unit(900, "kg"),
  17424. name: "Front (Armored)",
  17425. image: {
  17426. source: "./media/characters/venio-darcony/front-armored.svg"
  17427. }
  17428. },
  17429. backArmored: {
  17430. height: math.unit(19, "feet"),
  17431. weight: math.unit(900, "kg"),
  17432. name: "Back (Armored)",
  17433. image: {
  17434. source: "./media/characters/venio-darcony/back-armored.svg"
  17435. }
  17436. },
  17437. sword: {
  17438. height: math.unit(10, "feet"),
  17439. weight: math.unit(50, "lb"),
  17440. name: "Sword",
  17441. image: {
  17442. source: "./media/characters/venio-darcony/sword.svg"
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(10, "feet")
  17450. },
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(130, "feet"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Macro+",
  17458. height: math.unit(240, "feet")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(150, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/veski/front.svg",
  17471. extra: 1299 / 1225,
  17472. bottom: 0.04
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(150, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/veski/back.svg",
  17481. extra: 1299 / 1225,
  17482. bottom: 0.008
  17483. }
  17484. },
  17485. maw: {
  17486. height: math.unit(1.5 * 1.21, "feet"),
  17487. name: "Maw",
  17488. image: {
  17489. source: "./media/characters/veski/maw.svg"
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Macro",
  17496. height: math.unit(2, "km"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17503. {
  17504. front: {
  17505. height: math.unit(5 + 7 / 12, "feet"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/isabelle/front.svg",
  17509. extra: 2130 / 1976,
  17510. bottom: 0.05
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Supermicro",
  17517. height: math.unit(10, "micrometers")
  17518. },
  17519. {
  17520. name: "Micro",
  17521. height: math.unit(1, "inch")
  17522. },
  17523. {
  17524. name: "Tiny",
  17525. height: math.unit(5, "inches")
  17526. },
  17527. {
  17528. name: "Standard",
  17529. height: math.unit(5 + 7 / 12, "inches")
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(80, "meters"),
  17534. default: true
  17535. },
  17536. {
  17537. name: "Megamacro",
  17538. height: math.unit(250, "meters")
  17539. },
  17540. {
  17541. name: "Gigamacro",
  17542. height: math.unit(5, "km")
  17543. },
  17544. {
  17545. name: "Cosmic",
  17546. height: math.unit(2.5e6, "miles")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(6, "feet"),
  17555. weight: math.unit(150, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/hanzo/front.svg",
  17559. extra: 374 / 344,
  17560. bottom: 0.02
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(8, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(7, "feet"),
  17577. weight: math.unit(130, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/anna/front.svg",
  17581. extra: 169 / 145,
  17582. bottom: 0.06
  17583. }
  17584. },
  17585. full: {
  17586. height: math.unit(4.96, "feet"),
  17587. weight: math.unit(220, "lb"),
  17588. name: "Full",
  17589. image: {
  17590. source: "./media/characters/anna/full.svg",
  17591. extra: 138 / 114,
  17592. bottom: 0.15
  17593. }
  17594. },
  17595. tongue: {
  17596. height: math.unit(2.53, "feet"),
  17597. name: "Tongue",
  17598. image: {
  17599. source: "./media/characters/anna/tongue.svg"
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(7, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(7, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/ian-corvid/front.svg",
  17620. extra: 150 / 142,
  17621. bottom: 0.02
  17622. }
  17623. },
  17624. back: {
  17625. height: math.unit(7, "feet"),
  17626. weight: math.unit(150, "lb"),
  17627. name: "Back",
  17628. image: {
  17629. source: "./media/characters/ian-corvid/back.svg",
  17630. extra: 150 / 143,
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. stomping: {
  17635. height: math.unit(7, "feet"),
  17636. weight: math.unit(150, "lb"),
  17637. name: "Stomping",
  17638. image: {
  17639. source: "./media/characters/ian-corvid/stomping.svg",
  17640. extra: 76 / 72
  17641. }
  17642. },
  17643. sitting: {
  17644. height: math.unit(7 / 1.8, "feet"),
  17645. weight: math.unit(150, "lb"),
  17646. name: "Sitting",
  17647. image: {
  17648. source: "./media/characters/ian-corvid/sitting.svg",
  17649. extra: 1400 / 1269,
  17650. bottom: 0.15
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Tiny Microw",
  17657. height: math.unit(1, "inch")
  17658. },
  17659. {
  17660. name: "Microw",
  17661. height: math.unit(6, "inches")
  17662. },
  17663. {
  17664. name: "Crow",
  17665. height: math.unit(7 + 1 / 12, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Macrow",
  17670. height: math.unit(176, "feet")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(5 + 7 / 12, "feet"),
  17679. weight: math.unit(147, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/natalie-kellon/front.svg",
  17683. extra: 1214 / 1141,
  17684. bottom: 0.02
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Micro",
  17691. height: math.unit(1 / 16, "inch")
  17692. },
  17693. {
  17694. name: "Tiny",
  17695. height: math.unit(4, "inches")
  17696. },
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(5 + 7 / 12, "feet"),
  17700. default: true
  17701. },
  17702. {
  17703. name: "Amazon",
  17704. height: math.unit(12, "feet")
  17705. },
  17706. {
  17707. name: "Giantess",
  17708. height: math.unit(160, "meters")
  17709. },
  17710. {
  17711. name: "Titaness",
  17712. height: math.unit(800, "meters")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(6, "feet"),
  17721. weight: math.unit(150, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/alluria/front.svg",
  17725. extra: 806 / 738,
  17726. bottom: 0.01
  17727. }
  17728. },
  17729. side: {
  17730. height: math.unit(6, "feet"),
  17731. weight: math.unit(150, "lb"),
  17732. name: "Side",
  17733. image: {
  17734. source: "./media/characters/alluria/side.svg",
  17735. extra: 800 / 750,
  17736. }
  17737. },
  17738. back: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(150, "lb"),
  17741. name: "Back",
  17742. image: {
  17743. source: "./media/characters/alluria/back.svg",
  17744. extra: 806 / 738,
  17745. }
  17746. },
  17747. frontMaid: {
  17748. height: math.unit(6, "feet"),
  17749. weight: math.unit(150, "lb"),
  17750. name: "Front (Maid)",
  17751. image: {
  17752. source: "./media/characters/alluria/front-maid.svg",
  17753. extra: 806 / 738,
  17754. bottom: 0.01
  17755. }
  17756. },
  17757. sideMaid: {
  17758. height: math.unit(6, "feet"),
  17759. weight: math.unit(150, "lb"),
  17760. name: "Side (Maid)",
  17761. image: {
  17762. source: "./media/characters/alluria/side-maid.svg",
  17763. extra: 800 / 750,
  17764. bottom: 0.005
  17765. }
  17766. },
  17767. backMaid: {
  17768. height: math.unit(6, "feet"),
  17769. weight: math.unit(150, "lb"),
  17770. name: "Back (Maid)",
  17771. image: {
  17772. source: "./media/characters/alluria/back-maid.svg",
  17773. extra: 806 / 738,
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Micro",
  17780. height: math.unit(6, "inches"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(6, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/kyle/front.svg",
  17794. extra: 1069 / 962,
  17795. bottom: 77.228 / 1727.45
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(150, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(6, "feet"),
  17812. weight: math.unit(300, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/duncan/front.svg",
  17816. extra: 1650 / 1482,
  17817. bottom: 0.05
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Macro",
  17824. height: math.unit(100, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(5 + 4 / 12, "feet"),
  17834. weight: math.unit(220, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/memory/front.svg",
  17838. extra: 3641 / 3545,
  17839. bottom: 0.03
  17840. }
  17841. },
  17842. back: {
  17843. height: math.unit(5 + 4 / 12, "feet"),
  17844. weight: math.unit(220, "lb"),
  17845. name: "Back",
  17846. image: {
  17847. source: "./media/characters/memory/back.svg",
  17848. extra: 3641 / 3545,
  17849. bottom: 0.025
  17850. }
  17851. },
  17852. frontSkirt: {
  17853. height: math.unit(5 + 4 / 12, "feet"),
  17854. weight: math.unit(220, "lb"),
  17855. name: "Front (Skirt)",
  17856. image: {
  17857. source: "./media/characters/memory/front-skirt.svg",
  17858. extra: 3641 / 3545,
  17859. bottom: 0.03
  17860. }
  17861. },
  17862. frontDress: {
  17863. height: math.unit(5 + 4 / 12, "feet"),
  17864. weight: math.unit(220, "lb"),
  17865. name: "Front (Dress)",
  17866. image: {
  17867. source: "./media/characters/memory/front-dress.svg",
  17868. extra: 3641 / 3545,
  17869. bottom: 0.03
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Micro",
  17876. height: math.unit(6, "inches"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(5 + 4 / 12, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(4 + 11 / 12, "feet"),
  17890. weight: math.unit(100, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/luno/front.svg",
  17894. extra: 1535 / 1487,
  17895. bottom: 0.03
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(3, "inches")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(4 + 11 / 12, "feet"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(300, "feet")
  17912. },
  17913. {
  17914. name: "Megamacro",
  17915. height: math.unit(700, "miles")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(6 + 2 / 12, "feet"),
  17924. weight: math.unit(170, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/jamesy/front.svg",
  17928. extra: 440 / 382,
  17929. bottom: 0.005
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Micro",
  17936. height: math.unit(3, "inches")
  17937. },
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(6 + 2 / 12, "feet"),
  17941. default: true
  17942. },
  17943. {
  17944. name: "Macro",
  17945. height: math.unit(300, "feet")
  17946. },
  17947. {
  17948. name: "Megamacro",
  17949. height: math.unit(700, "miles")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(6, "feet"),
  17958. weight: math.unit(160, "lb"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/mark/front.svg",
  17962. extra: 3300 / 3100,
  17963. bottom: 136.42 / 3440.47
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Macro",
  17970. height: math.unit(120, "meters")
  17971. },
  17972. {
  17973. name: "Bigger Macro",
  17974. height: math.unit(350, "meters")
  17975. },
  17976. {
  17977. name: "Megamacro",
  17978. height: math.unit(8, "km"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Continental",
  17983. height: math.unit(4550, "km")
  17984. },
  17985. {
  17986. name: "Planetary",
  17987. height: math.unit(65000, "km")
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17993. {
  17994. front: {
  17995. height: math.unit(6, "feet"),
  17996. weight: math.unit(400, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/mac/front.svg",
  18000. extra: 1048 / 987.7,
  18001. bottom: 60 / 1107.6,
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Macro",
  18008. height: math.unit(500, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18015. {
  18016. front: {
  18017. height: math.unit(5 + 2 / 12, "feet"),
  18018. weight: math.unit(190, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/bari/front.svg",
  18022. extra: 3156 / 2880,
  18023. bottom: 0.03
  18024. }
  18025. },
  18026. back: {
  18027. height: math.unit(5 + 2 / 12, "feet"),
  18028. weight: math.unit(190, "lb"),
  18029. name: "Back",
  18030. image: {
  18031. source: "./media/characters/bari/back.svg",
  18032. extra: 3260 / 2834,
  18033. bottom: 0.025
  18034. }
  18035. },
  18036. frontPlush: {
  18037. height: math.unit(5 + 2 / 12, "feet"),
  18038. weight: math.unit(190, "lb"),
  18039. name: "Front (Plush)",
  18040. image: {
  18041. source: "./media/characters/bari/front-plush.svg",
  18042. extra: 1112 / 1061,
  18043. bottom: 0.002
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(3, "inches")
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(5 + 2 / 12, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(20, "feet")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6 + 1 / 12, "feet"),
  18068. weight: math.unit(275, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/hunter-misha-raven/front.svg"
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Mortal",
  18078. height: math.unit(6 + 1 / 12, "feet")
  18079. },
  18080. {
  18081. name: "Divine",
  18082. height: math.unit(1.12134e34, "parsecs"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(6 + 3 / 12, "feet"),
  18092. weight: math.unit(220, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/max-calore/front.svg",
  18096. extra: 1700 / 1648,
  18097. bottom: 0.01
  18098. }
  18099. },
  18100. back: {
  18101. height: math.unit(6 + 3 / 12, "feet"),
  18102. weight: math.unit(220, "lb"),
  18103. name: "Back",
  18104. image: {
  18105. source: "./media/characters/max-calore/back.svg",
  18106. extra: 1700 / 1648,
  18107. bottom: 0.01
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(6 + 3 / 12, "feet"),
  18115. default: true
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18121. {
  18122. side: {
  18123. height: math.unit(2 + 8 / 12, "feet"),
  18124. weight: math.unit(99, "lb"),
  18125. name: "Side",
  18126. image: {
  18127. source: "./media/characters/aspen/side.svg",
  18128. extra: 152 / 138,
  18129. bottom: 0.032
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(2 + 8 / 12, "feet"),
  18137. default: true
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18143. {
  18144. side: {
  18145. height: math.unit(3 + 2 / 12, "feet"),
  18146. weight: math.unit(224, "lb"),
  18147. name: "Side",
  18148. image: {
  18149. source: "./media/characters/sheila-feral-wolf/side.svg",
  18150. extra: 179 / 166,
  18151. bottom: 0.03
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(3 + 2 / 12, "feet"),
  18159. default: true
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18165. {
  18166. side: {
  18167. height: math.unit(1 + 9 / 12, "feet"),
  18168. weight: math.unit(38, "lb"),
  18169. name: "Side",
  18170. image: {
  18171. source: "./media/characters/michelle/side.svg",
  18172. extra: 147 / 136.7,
  18173. bottom: 0.03
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(1 + 9 / 12, "feet"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(1.54, "feet"),
  18190. weight: math.unit(50, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/nino/front.svg"
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Normal",
  18200. height: math.unit(1.54, "feet"),
  18201. default: true
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(1.49, "feet"),
  18210. weight: math.unit(45, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/viola/front.svg"
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(1.49, "feet"),
  18221. default: true
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(6 + 5 / 12, "feet"),
  18230. weight: math.unit(580, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/atlas/front.svg",
  18234. extra: 298.5 / 290,
  18235. bottom: 0.015
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(6 + 5 / 12, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18249. {
  18250. side: {
  18251. height: math.unit(15.6, "inches"),
  18252. weight: math.unit(10, "lb"),
  18253. name: "Side",
  18254. image: {
  18255. source: "./media/characters/davy/side.svg",
  18256. extra: 200 / 170,
  18257. bottom: 0.01
  18258. }
  18259. },
  18260. },
  18261. [
  18262. {
  18263. name: "Normal",
  18264. height: math.unit(15.6, "inches"),
  18265. default: true
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18271. {
  18272. side: {
  18273. height: math.unit(4 + 8 / 12, "feet"),
  18274. weight: math.unit(166, "lb"),
  18275. name: "Side",
  18276. image: {
  18277. source: "./media/characters/fiona/side.svg",
  18278. extra: 232 / 220,
  18279. bottom: 0.03
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(4 + 8 / 12, "feet"),
  18287. default: true
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18293. {
  18294. front: {
  18295. height: math.unit(26, "inches"),
  18296. weight: math.unit(35, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/lyla/front.svg",
  18300. bottom: 0.1
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(3, "feet"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18314. {
  18315. side: {
  18316. height: math.unit(1.8, "feet"),
  18317. weight: math.unit(44, "lb"),
  18318. name: "Side",
  18319. image: {
  18320. source: "./media/characters/perseus/side.svg",
  18321. bottom: 0.21
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(1.8, "feet"),
  18329. default: true
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18335. {
  18336. side: {
  18337. height: math.unit(4 + 2 / 12, "feet"),
  18338. weight: math.unit(20, "lb"),
  18339. name: "Side",
  18340. image: {
  18341. source: "./media/characters/remus/side.svg"
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(4 + 2 / 12, "feet"),
  18349. default: true
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(4 + 11 / 12, "feet"),
  18358. weight: math.unit(114, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/raf/front.svg",
  18362. extra: 1504/1339,
  18363. bottom: 26/1530
  18364. }
  18365. },
  18366. side: {
  18367. height: math.unit(4 + 11 / 12, "feet"),
  18368. weight: math.unit(114, "lb"),
  18369. name: "Side",
  18370. image: {
  18371. source: "./media/characters/raf/side.svg",
  18372. extra: 1466/1316,
  18373. bottom: 29/1495
  18374. }
  18375. },
  18376. paw: {
  18377. height: math.unit(1.45, "feet"),
  18378. name: "Paw",
  18379. image: {
  18380. source: "./media/characters/raf/paw.svg"
  18381. },
  18382. extraAttributes: {
  18383. "toeSize": {
  18384. name: "Toe Size",
  18385. power: 2,
  18386. type: "area",
  18387. base: math.unit(0.004, "m^2")
  18388. },
  18389. "padSize": {
  18390. name: "Pad Size",
  18391. power: 2,
  18392. type: "area",
  18393. base: math.unit(0.04, "m^2")
  18394. },
  18395. "footSize": {
  18396. name: "Foot Size",
  18397. power: 2,
  18398. type: "area",
  18399. base: math.unit(0.08, "m^2")
  18400. },
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Micro",
  18407. height: math.unit(2, "inches")
  18408. },
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(4 + 11 / 12, "feet"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(70, "feet")
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18422. {
  18423. front: {
  18424. height: math.unit(1.5, "meters"),
  18425. weight: math.unit(68, "kg"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/liam-einarr/front.svg",
  18429. extra: 2822 / 2666
  18430. }
  18431. },
  18432. back: {
  18433. height: math.unit(1.5, "meters"),
  18434. weight: math.unit(68, "kg"),
  18435. name: "Back",
  18436. image: {
  18437. source: "./media/characters/liam-einarr/back.svg",
  18438. extra: 2822 / 2666,
  18439. bottom: 0.015
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(1.5, "meters"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(150, "meters")
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(35, "km")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(75, "kg"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/linda/front.svg",
  18468. extra: 930 / 874,
  18469. bottom: 0.004
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(6, "feet"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(6 + 8 / 12, "feet"),
  18486. weight: math.unit(220, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/caylex/front.svg",
  18490. extra: 821 / 772,
  18491. bottom: 0.07
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(6 + 8 / 12, "feet"),
  18496. weight: math.unit(220, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/caylex/back.svg",
  18500. extra: 821 / 772,
  18501. bottom: 0.022
  18502. }
  18503. },
  18504. hand: {
  18505. height: math.unit(1.25, "feet"),
  18506. name: "Hand",
  18507. image: {
  18508. source: "./media/characters/caylex/hand.svg"
  18509. }
  18510. },
  18511. foot: {
  18512. height: math.unit(1.6, "feet"),
  18513. name: "Foot",
  18514. image: {
  18515. source: "./media/characters/caylex/foot.svg"
  18516. }
  18517. },
  18518. armored: {
  18519. height: math.unit(6 + 8 / 12, "feet"),
  18520. weight: math.unit(250, "lb"),
  18521. name: "Armored",
  18522. image: {
  18523. source: "./media/characters/caylex/armored.svg",
  18524. extra: 1420 / 1310,
  18525. bottom: 0.045
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(6 + 8 / 12, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Normal+",
  18537. height: math.unit(12, "feet")
  18538. },
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18543. {
  18544. front: {
  18545. height: math.unit(7 + 6 / 12, "feet"),
  18546. weight: math.unit(288, "lb"),
  18547. name: "Front",
  18548. image: {
  18549. source: "./media/characters/alana/front.svg",
  18550. extra: 679 / 653,
  18551. bottom: 22.5 / 701
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(7 + 6 / 12, "feet")
  18559. },
  18560. {
  18561. name: "Large",
  18562. height: math.unit(50, "feet")
  18563. },
  18564. {
  18565. name: "Macro",
  18566. height: math.unit(100, "feet"),
  18567. default: true
  18568. },
  18569. {
  18570. name: "Macro+",
  18571. height: math.unit(200, "feet")
  18572. },
  18573. ]
  18574. ))
  18575. characterMakers.push(() => makeCharacter(
  18576. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18577. {
  18578. front: {
  18579. height: math.unit(6 + 1 / 12, "feet"),
  18580. weight: math.unit(210, "lb"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/hasani/front.svg",
  18584. extra: 244 / 232,
  18585. bottom: 0.01
  18586. }
  18587. },
  18588. back: {
  18589. height: math.unit(6 + 1 / 12, "feet"),
  18590. weight: math.unit(210, "lb"),
  18591. name: "Back",
  18592. image: {
  18593. source: "./media/characters/hasani/back.svg",
  18594. extra: 244 / 232,
  18595. bottom: 0.01
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(6 + 1 / 12, "feet")
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(175, "feet"),
  18607. default: true
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(1.82, "meters"),
  18616. weight: math.unit(140, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/nita/front.svg",
  18620. extra: 2473 / 2363,
  18621. bottom: 0.01
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(1.82, "m")
  18629. },
  18630. {
  18631. name: "Macro",
  18632. height: math.unit(300, "m")
  18633. },
  18634. {
  18635. name: "Mistake Canon",
  18636. height: math.unit(0.5, "miles"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Big Mistake",
  18641. height: math.unit(13, "miles")
  18642. },
  18643. {
  18644. name: "Playing God",
  18645. height: math.unit(2450, "miles")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(4, "feet"),
  18654. weight: math.unit(120, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/shiriko/front.svg",
  18658. extra: 970/934,
  18659. bottom: 5/975
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(4, "feet"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6, "feet"),
  18676. name: "front",
  18677. image: {
  18678. source: "./media/characters/deja/front.svg",
  18679. extra: 926 / 840,
  18680. bottom: 0.07
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Planck Length",
  18687. height: math.unit(1.6e-35, "meters")
  18688. },
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(30.48, "meters"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Universal",
  18696. height: math.unit(8.8e26, "meters")
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18702. {
  18703. side: {
  18704. height: math.unit(8, "feet"),
  18705. weight: math.unit(6300, "lb"),
  18706. name: "Side",
  18707. image: {
  18708. source: "./media/characters/anima/side.svg",
  18709. bottom: 0.035
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(8, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(8, "feet"),
  18726. weight: math.unit(350, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/bianca/front.svg",
  18730. extra: 234 / 225,
  18731. bottom: 0.03
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(8, "feet"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(11 + 5/12, "feet"),
  18748. weight: math.unit(1200, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/adinia/front.svg",
  18752. extra: 1767/1641,
  18753. bottom: 44/1811
  18754. },
  18755. extraAttributes: {
  18756. "energyIntake": {
  18757. name: "Energy Intake",
  18758. power: 3,
  18759. type: "energy",
  18760. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18761. },
  18762. }
  18763. },
  18764. back: {
  18765. height: math.unit(11 + 5/12, "feet"),
  18766. weight: math.unit(1200, "lb"),
  18767. name: "Back",
  18768. image: {
  18769. source: "./media/characters/adinia/back.svg",
  18770. extra: 1834/1684,
  18771. bottom: 14/1848
  18772. },
  18773. extraAttributes: {
  18774. "energyIntake": {
  18775. name: "Energy Intake",
  18776. power: 3,
  18777. type: "energy",
  18778. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18779. },
  18780. }
  18781. },
  18782. maw: {
  18783. height: math.unit(3.79, "feet"),
  18784. name: "Maw",
  18785. image: {
  18786. source: "./media/characters/adinia/maw.svg"
  18787. }
  18788. },
  18789. rump: {
  18790. height: math.unit(4.6, "feet"),
  18791. name: "Rump",
  18792. image: {
  18793. source: "./media/characters/adinia/rump.svg"
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(11 + 5 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(3, "meters"),
  18810. weight: math.unit(200, "kg"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/lykasa/front.svg",
  18814. extra: 1076 / 976,
  18815. bottom: 0.06
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(3, "meters")
  18823. },
  18824. {
  18825. name: "Kaiju",
  18826. height: math.unit(120, "meters"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Mega Kaiju",
  18831. height: math.unit(240, "km")
  18832. },
  18833. {
  18834. name: "Giga Kaiju",
  18835. height: math.unit(400, "megameters")
  18836. },
  18837. {
  18838. name: "Tera Kaiju",
  18839. height: math.unit(800, "gigameters")
  18840. },
  18841. {
  18842. name: "Kaiju Dragon Goddess",
  18843. height: math.unit(26, "zettaparsecs")
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18849. {
  18850. side: {
  18851. height: math.unit(283 / 124 * 6, "feet"),
  18852. weight: math.unit(35000, "lb"),
  18853. name: "Side",
  18854. image: {
  18855. source: "./media/characters/malfaren/side.svg",
  18856. extra: 1310/529,
  18857. bottom: 24/1334
  18858. }
  18859. },
  18860. front: {
  18861. height: math.unit(22.36, "feet"),
  18862. weight: math.unit(35000, "lb"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/malfaren/front.svg",
  18866. extra: 1237/1115,
  18867. bottom: 32/1269
  18868. }
  18869. },
  18870. maw: {
  18871. height: math.unit(6.9, "feet"),
  18872. name: "Maw",
  18873. image: {
  18874. source: "./media/characters/malfaren/maw.svg"
  18875. }
  18876. },
  18877. dick: {
  18878. height: math.unit(6.19, "feet"),
  18879. name: "Dick",
  18880. image: {
  18881. source: "./media/characters/malfaren/dick.svg"
  18882. }
  18883. },
  18884. eye: {
  18885. height: math.unit(0.69, "feet"),
  18886. name: "Eye",
  18887. image: {
  18888. source: "./media/characters/malfaren/eye.svg"
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Big",
  18895. height: math.unit(283 / 162 * 6, "feet"),
  18896. },
  18897. {
  18898. name: "Bigger",
  18899. height: math.unit(283 / 124 * 6, "feet")
  18900. },
  18901. {
  18902. name: "Massive",
  18903. height: math.unit(283 / 92 * 6, "feet"),
  18904. default: true
  18905. },
  18906. {
  18907. name: "👀💦",
  18908. height: math.unit(283 / 73 * 6, "feet"),
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(1.7, "m"),
  18917. weight: math.unit(70, "kg"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/kernel/front.svg",
  18921. extra: 222 / 210,
  18922. bottom: 0.007
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Nano",
  18929. height: math.unit(17, "micrometers")
  18930. },
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(1.7, "mm")
  18934. },
  18935. {
  18936. name: "Small",
  18937. height: math.unit(1.7, "cm")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(1.7, "m"),
  18942. default: true
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(1.75, "meters"),
  18951. weight: math.unit(65, "kg"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/jayne-folest/front.svg",
  18955. extra: 2115 / 2007,
  18956. bottom: 0.02
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(1.75, "meters"),
  18961. weight: math.unit(65, "kg"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/jayne-folest/back.svg",
  18965. extra: 2115 / 2007,
  18966. bottom: 0.005
  18967. }
  18968. },
  18969. frontClothed: {
  18970. height: math.unit(1.75, "meters"),
  18971. weight: math.unit(65, "kg"),
  18972. name: "Front (Clothed)",
  18973. image: {
  18974. source: "./media/characters/jayne-folest/front-clothed.svg",
  18975. extra: 2115 / 2007,
  18976. bottom: 0.035
  18977. }
  18978. },
  18979. hand: {
  18980. height: math.unit(1 / 1.260, "feet"),
  18981. name: "Hand",
  18982. image: {
  18983. source: "./media/characters/jayne-folest/hand.svg"
  18984. }
  18985. },
  18986. foot: {
  18987. height: math.unit(1 / 0.918, "feet"),
  18988. name: "Foot",
  18989. image: {
  18990. source: "./media/characters/jayne-folest/foot.svg"
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Micro",
  18997. height: math.unit(4, "cm")
  18998. },
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(1.75, "meters")
  19002. },
  19003. {
  19004. name: "Macro",
  19005. height: math.unit(47.5, "meters"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(180, "cm"),
  19015. weight: math.unit(70, "kg"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/algier/front.svg",
  19019. extra: 596 / 572,
  19020. bottom: 0.04
  19021. }
  19022. },
  19023. back: {
  19024. height: math.unit(180, "cm"),
  19025. weight: math.unit(70, "kg"),
  19026. name: "Back",
  19027. image: {
  19028. source: "./media/characters/algier/back.svg",
  19029. extra: 596 / 572,
  19030. bottom: 0.025
  19031. }
  19032. },
  19033. frontdressed: {
  19034. height: math.unit(180, "cm"),
  19035. weight: math.unit(150, "kg"),
  19036. name: "Front-dressed",
  19037. image: {
  19038. source: "./media/characters/algier/front-dressed.svg",
  19039. extra: 596 / 572,
  19040. bottom: 0.038
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Micro",
  19047. height: math.unit(5, "cm")
  19048. },
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(180, "cm"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(64, "m")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19062. {
  19063. upright: {
  19064. height: math.unit(7, "feet"),
  19065. weight: math.unit(300, "lb"),
  19066. name: "Upright",
  19067. image: {
  19068. source: "./media/characters/pretzel/upright.svg",
  19069. extra: 534 / 522,
  19070. bottom: 0.065
  19071. }
  19072. },
  19073. sprawling: {
  19074. height: math.unit(3.75, "feet"),
  19075. weight: math.unit(300, "lb"),
  19076. name: "Sprawling",
  19077. image: {
  19078. source: "./media/characters/pretzel/sprawling.svg",
  19079. extra: 314 / 281,
  19080. bottom: 0.1
  19081. }
  19082. },
  19083. tongue: {
  19084. height: math.unit(2, "feet"),
  19085. name: "Tongue",
  19086. image: {
  19087. source: "./media/characters/pretzel/tongue.svg"
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(7, "feet"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "Oversized",
  19099. height: math.unit(15, "feet")
  19100. },
  19101. {
  19102. name: "Huge",
  19103. height: math.unit(30, "feet")
  19104. },
  19105. {
  19106. name: "Macro",
  19107. height: math.unit(250, "feet")
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19113. {
  19114. sideFront: {
  19115. height: math.unit(5 + 2 / 12, "feet"),
  19116. weight: math.unit(120, "lb"),
  19117. name: "Front Side",
  19118. image: {
  19119. source: "./media/characters/roxi/side-front.svg",
  19120. extra: 2924 / 2717,
  19121. bottom: 0.08
  19122. }
  19123. },
  19124. sideBack: {
  19125. height: math.unit(5 + 2 / 12, "feet"),
  19126. weight: math.unit(120, "lb"),
  19127. name: "Back Side",
  19128. image: {
  19129. source: "./media/characters/roxi/side-back.svg",
  19130. extra: 2904 / 2693,
  19131. bottom: 0.06
  19132. }
  19133. },
  19134. front: {
  19135. height: math.unit(5 + 2 / 12, "feet"),
  19136. weight: math.unit(120, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/roxi/front.svg",
  19140. extra: 2028 / 1907,
  19141. bottom: 0.01
  19142. }
  19143. },
  19144. frontAlt: {
  19145. height: math.unit(5 + 2 / 12, "feet"),
  19146. weight: math.unit(120, "lb"),
  19147. name: "Front (Alt)",
  19148. image: {
  19149. source: "./media/characters/roxi/front-alt.svg",
  19150. extra: 1828 / 1798,
  19151. bottom: 0.01
  19152. }
  19153. },
  19154. sitting: {
  19155. height: math.unit(2.8, "feet"),
  19156. weight: math.unit(120, "lb"),
  19157. name: "Sitting",
  19158. image: {
  19159. source: "./media/characters/roxi/sitting.svg",
  19160. extra: 2660 / 2462,
  19161. bottom: 0.1
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(5 + 2 / 12, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19175. {
  19176. side: {
  19177. height: math.unit(55, "feet"),
  19178. weight: math.unit(153, "tons"),
  19179. name: "Side",
  19180. image: {
  19181. source: "./media/characters/shadow/side.svg",
  19182. extra: 701 / 628,
  19183. bottom: 0.02
  19184. }
  19185. },
  19186. flying: {
  19187. height: math.unit(145, "feet"),
  19188. weight: math.unit(153, "tons"),
  19189. name: "Flying",
  19190. image: {
  19191. source: "./media/characters/shadow/flying.svg"
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(55, "feet"),
  19199. default: true
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(6, "feet"),
  19208. weight: math.unit(200, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/marcie/front.svg",
  19212. extra: 960 / 876,
  19213. bottom: 58 / 1017.87
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Macro",
  19220. height: math.unit(1, "mile"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(7, "feet"),
  19230. weight: math.unit(200, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/kachina/front.svg",
  19234. extra: 1290.68 / 1119,
  19235. bottom: 36.5 / 1327.18
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(7, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19249. {
  19250. looking: {
  19251. height: math.unit(2, "meters"),
  19252. weight: math.unit(300, "kg"),
  19253. name: "Looking",
  19254. image: {
  19255. source: "./media/characters/kash/looking.svg",
  19256. extra: 474 / 344,
  19257. bottom: 0.03
  19258. }
  19259. },
  19260. side: {
  19261. height: math.unit(2, "meters"),
  19262. weight: math.unit(300, "kg"),
  19263. name: "Side",
  19264. image: {
  19265. source: "./media/characters/kash/side.svg",
  19266. extra: 302 / 251,
  19267. bottom: 0.03
  19268. }
  19269. },
  19270. front: {
  19271. height: math.unit(2, "meters"),
  19272. weight: math.unit(300, "kg"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/kash/front.svg",
  19276. extra: 495 / 360,
  19277. bottom: 0.015
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(2, "meters"),
  19285. default: true
  19286. },
  19287. {
  19288. name: "Big",
  19289. height: math.unit(3, "meters")
  19290. },
  19291. {
  19292. name: "Large",
  19293. height: math.unit(5, "meters")
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19299. {
  19300. feeding: {
  19301. height: math.unit(6.7, "feet"),
  19302. weight: math.unit(350, "lb"),
  19303. name: "Feeding",
  19304. image: {
  19305. source: "./media/characters/lalim/feeding.svg",
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(6.7, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(9.5, "feet"),
  19322. weight: math.unit(600, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/de'vout/front.svg",
  19326. extra: 1443 / 1328,
  19327. bottom: 0.025
  19328. }
  19329. },
  19330. back: {
  19331. height: math.unit(9.5, "feet"),
  19332. weight: math.unit(600, "lb"),
  19333. name: "Back",
  19334. image: {
  19335. source: "./media/characters/de'vout/back.svg",
  19336. extra: 1443 / 1328
  19337. }
  19338. },
  19339. frontDressed: {
  19340. height: math.unit(9.5, "feet"),
  19341. weight: math.unit(600, "lb"),
  19342. name: "Front (Dressed",
  19343. image: {
  19344. source: "./media/characters/de'vout/front-dressed.svg",
  19345. extra: 1443 / 1328,
  19346. bottom: 0.025
  19347. }
  19348. },
  19349. backDressed: {
  19350. height: math.unit(9.5, "feet"),
  19351. weight: math.unit(600, "lb"),
  19352. name: "Back (Dressed",
  19353. image: {
  19354. source: "./media/characters/de'vout/back-dressed.svg",
  19355. extra: 1443 / 1328
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(9.5, "feet"),
  19363. default: true
  19364. },
  19365. ]
  19366. ))
  19367. characterMakers.push(() => makeCharacter(
  19368. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19369. {
  19370. front: {
  19371. height: math.unit(8, "feet"),
  19372. weight: math.unit(225, "lb"),
  19373. name: "Front",
  19374. image: {
  19375. source: "./media/characters/talana/front.svg",
  19376. extra: 1410 / 1300,
  19377. bottom: 0.015
  19378. }
  19379. },
  19380. frontDressed: {
  19381. height: math.unit(8, "feet"),
  19382. weight: math.unit(225, "lb"),
  19383. name: "Front (Dressed",
  19384. image: {
  19385. source: "./media/characters/talana/front-dressed.svg",
  19386. extra: 1410 / 1300,
  19387. bottom: 0.015
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(8, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19401. {
  19402. side: {
  19403. height: math.unit(7.2, "feet"),
  19404. weight: math.unit(150, "lb"),
  19405. name: "Side",
  19406. image: {
  19407. source: "./media/characters/xeauvok/side.svg",
  19408. extra: 1975 / 1523,
  19409. bottom: 0.07
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(7.2, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19423. {
  19424. side: {
  19425. height: math.unit(4, "meters"),
  19426. weight: math.unit(2200, "kg"),
  19427. name: "Side",
  19428. image: {
  19429. source: "./media/characters/zara/side.svg",
  19430. extra: 765/744,
  19431. bottom: 156/921
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(4, "meters"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19445. {
  19446. side: {
  19447. height: math.unit(6, "feet"),
  19448. weight: math.unit(150, "lb"),
  19449. name: "Side",
  19450. image: {
  19451. source: "./media/characters/richard-dragon/side.svg",
  19452. extra: 845 / 340,
  19453. bottom: 0.017
  19454. }
  19455. },
  19456. maw: {
  19457. height: math.unit(2.97, "feet"),
  19458. name: "Maw",
  19459. image: {
  19460. source: "./media/characters/richard-dragon/maw.svg"
  19461. }
  19462. },
  19463. },
  19464. [
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(4, "feet"),
  19472. weight: math.unit(100, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/richard-smeargle/front.svg",
  19476. extra: 2952 / 2820,
  19477. bottom: 0.028
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(4, "feet"),
  19485. default: true
  19486. },
  19487. {
  19488. name: "Dynamax",
  19489. height: math.unit(20, "meters")
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19495. {
  19496. front: {
  19497. height: math.unit(6, "feet"),
  19498. weight: math.unit(110, "lb"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/klay/front.svg",
  19502. extra: 962 / 883,
  19503. bottom: 0.04
  19504. }
  19505. },
  19506. back: {
  19507. height: math.unit(6, "feet"),
  19508. weight: math.unit(110, "lb"),
  19509. name: "Back",
  19510. image: {
  19511. source: "./media/characters/klay/back.svg",
  19512. extra: 962 / 883
  19513. }
  19514. },
  19515. beans: {
  19516. height: math.unit(1.15, "feet"),
  19517. name: "Beans",
  19518. image: {
  19519. source: "./media/characters/klay/beans.svg"
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Micro",
  19526. height: math.unit(6, "inches")
  19527. },
  19528. {
  19529. name: "Mini",
  19530. height: math.unit(3, "feet")
  19531. },
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(6, "feet"),
  19535. default: true
  19536. },
  19537. {
  19538. name: "Big",
  19539. height: math.unit(25, "feet")
  19540. },
  19541. {
  19542. name: "Macro",
  19543. height: math.unit(100, "feet")
  19544. },
  19545. {
  19546. name: "Megamacro",
  19547. height: math.unit(400, "feet")
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19553. {
  19554. front: {
  19555. height: math.unit(6, "feet"),
  19556. weight: math.unit(160, "lb"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/marcus/front.svg",
  19560. extra: 734 / 676,
  19561. bottom: 0.03
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Little",
  19568. height: math.unit(6, "feet")
  19569. },
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(110, "feet"),
  19573. default: true
  19574. },
  19575. {
  19576. name: "Macro",
  19577. height: math.unit(250, "feet")
  19578. },
  19579. {
  19580. name: "Megamacro",
  19581. height: math.unit(1000, "feet")
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(7, "feet"),
  19590. weight: math.unit(275, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/claude-delroute/front.svg",
  19594. extra: 902/827,
  19595. bottom: 26/928
  19596. }
  19597. },
  19598. side: {
  19599. height: math.unit(7, "feet"),
  19600. weight: math.unit(275, "lb"),
  19601. name: "Side",
  19602. image: {
  19603. source: "./media/characters/claude-delroute/side.svg",
  19604. extra: 908/853,
  19605. bottom: 16/924
  19606. }
  19607. },
  19608. back: {
  19609. height: math.unit(7, "feet"),
  19610. weight: math.unit(275, "lb"),
  19611. name: "Back",
  19612. image: {
  19613. source: "./media/characters/claude-delroute/back.svg",
  19614. extra: 911/829,
  19615. bottom: 18/929
  19616. }
  19617. },
  19618. maw: {
  19619. height: math.unit(0.6407, "meters"),
  19620. name: "Maw",
  19621. image: {
  19622. source: "./media/characters/claude-delroute/maw.svg"
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(7, "feet"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Lorge",
  19634. height: math.unit(20, "feet")
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(8 + 4 / 12, "feet"),
  19643. weight: math.unit(600, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/dragonien/front.svg",
  19647. extra: 100 / 94,
  19648. bottom: 3.3 / 103.3445
  19649. }
  19650. },
  19651. back: {
  19652. height: math.unit(8 + 4 / 12, "feet"),
  19653. weight: math.unit(600, "lb"),
  19654. name: "Back",
  19655. image: {
  19656. source: "./media/characters/dragonien/back.svg",
  19657. extra: 776 / 746,
  19658. bottom: 6.4 / 782.0616
  19659. }
  19660. },
  19661. foot: {
  19662. height: math.unit(1.54, "feet"),
  19663. name: "Foot",
  19664. image: {
  19665. source: "./media/characters/dragonien/foot.svg",
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(8 + 4 / 12, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(200, "feet")
  19678. },
  19679. {
  19680. name: "Megamacro",
  19681. height: math.unit(1, "mile")
  19682. },
  19683. {
  19684. name: "Gigamacro",
  19685. height: math.unit(1000, "miles")
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19691. {
  19692. front: {
  19693. height: math.unit(5 + 2 / 12, "feet"),
  19694. weight: math.unit(110, "lb"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/desta/front.svg",
  19698. extra: 767 / 726,
  19699. bottom: 11.7 / 779
  19700. }
  19701. },
  19702. back: {
  19703. height: math.unit(5 + 2 / 12, "feet"),
  19704. weight: math.unit(110, "lb"),
  19705. name: "Back",
  19706. image: {
  19707. source: "./media/characters/desta/back.svg",
  19708. extra: 777 / 728,
  19709. bottom: 6 / 784
  19710. }
  19711. },
  19712. frontAlt: {
  19713. height: math.unit(5 + 2 / 12, "feet"),
  19714. weight: math.unit(110, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/desta/front-alt.svg",
  19718. extra: 1482 / 1417
  19719. }
  19720. },
  19721. side: {
  19722. height: math.unit(5 + 2 / 12, "feet"),
  19723. weight: math.unit(110, "lb"),
  19724. name: "Side",
  19725. image: {
  19726. source: "./media/characters/desta/side.svg",
  19727. extra: 2579 / 2491,
  19728. bottom: 0.053
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Micro",
  19735. height: math.unit(6, "inches")
  19736. },
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 2 / 12, "feet"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Macro",
  19744. height: math.unit(62, "feet")
  19745. },
  19746. {
  19747. name: "Megamacro",
  19748. height: math.unit(1800, "feet")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(10, "feet"),
  19757. weight: math.unit(700, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/storm-alystar/front.svg",
  19761. extra: 2112 / 1898,
  19762. bottom: 0.034
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Micro",
  19769. height: math.unit(3.5, "inches")
  19770. },
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(10, "feet"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Macro",
  19778. height: math.unit(400, "feet")
  19779. },
  19780. {
  19781. name: "Deific",
  19782. height: math.unit(60, "miles")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(2.35, "meters"),
  19791. weight: math.unit(119, "kg"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/ilia/front.svg",
  19795. extra: 1285 / 1255,
  19796. bottom: 0.06
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(2.35, "meters")
  19804. },
  19805. {
  19806. name: "Macro",
  19807. height: math.unit(140, "meters"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Megamacro",
  19812. height: math.unit(100, "miles")
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(6 + 5 / 12, "feet"),
  19821. weight: math.unit(190, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/kingdead/front.svg",
  19825. extra: 1228 / 1177
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Micro",
  19832. height: math.unit(7, "inches")
  19833. },
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(6 + 5 / 12, "feet")
  19837. },
  19838. {
  19839. name: "Macro",
  19840. height: math.unit(150, "feet"),
  19841. default: true
  19842. },
  19843. {
  19844. name: "Megamacro",
  19845. height: math.unit(200, "miles")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(8, "feet"),
  19854. weight: math.unit(600, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/kyrehx/front.svg",
  19858. extra: 1195 / 1095,
  19859. bottom: 0.034
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Micro",
  19866. height: math.unit(2, "inches")
  19867. },
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(8, "feet"),
  19871. default: true
  19872. },
  19873. {
  19874. name: "Macro",
  19875. height: math.unit(255, "feet")
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19881. {
  19882. front: {
  19883. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19884. weight: math.unit(184, "lb"),
  19885. name: "Front",
  19886. image: {
  19887. source: "./media/characters/xang/front.svg",
  19888. extra: 845 / 755
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19896. default: true
  19897. },
  19898. {
  19899. name: "Macro",
  19900. height: math.unit(0.935 * 146, "feet")
  19901. },
  19902. {
  19903. name: "Megamacro",
  19904. height: math.unit(0.935 * 3, "miles")
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19910. {
  19911. frontDressed: {
  19912. height: math.unit(5 + 7 / 12, "feet"),
  19913. weight: math.unit(140, "lb"),
  19914. name: "Front (Dressed)",
  19915. image: {
  19916. source: "./media/characters/doc-weardno/front-dressed.svg",
  19917. extra: 263 / 234
  19918. }
  19919. },
  19920. backDressed: {
  19921. height: math.unit(5 + 7 / 12, "feet"),
  19922. weight: math.unit(140, "lb"),
  19923. name: "Back (Dressed)",
  19924. image: {
  19925. source: "./media/characters/doc-weardno/back-dressed.svg",
  19926. extra: 266 / 238
  19927. }
  19928. },
  19929. front: {
  19930. height: math.unit(5 + 7 / 12, "feet"),
  19931. weight: math.unit(140, "lb"),
  19932. name: "Front",
  19933. image: {
  19934. source: "./media/characters/doc-weardno/front.svg",
  19935. extra: 254 / 233
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Micro",
  19942. height: math.unit(3, "inches")
  19943. },
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(5 + 7 / 12, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(25, "feet")
  19952. },
  19953. {
  19954. name: "Megamacro",
  19955. height: math.unit(2, "miles")
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19961. {
  19962. front: {
  19963. height: math.unit(6 + 2 / 12, "feet"),
  19964. weight: math.unit(153, "lb"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/seth-whilst/front.svg",
  19968. bottom: 0.07
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Micro",
  19975. height: math.unit(5, "inches")
  19976. },
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(6 + 2 / 12, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(3, "inches"),
  19989. weight: math.unit(8, "grams"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/pocket-jabari/front.svg",
  19993. extra: 1024 / 974,
  19994. bottom: 0.039
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Minimicro",
  20001. height: math.unit(8, "mm")
  20002. },
  20003. {
  20004. name: "Micro",
  20005. height: math.unit(3, "inches"),
  20006. default: true
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(3, "feet")
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20016. {
  20017. frontDressed: {
  20018. height: math.unit(15, "feet"),
  20019. weight: math.unit(3280, "lb"),
  20020. name: "Front (Dressed)",
  20021. image: {
  20022. source: "./media/characters/sapphy/front-dressed.svg",
  20023. extra: 1951/1654,
  20024. bottom: 194/2145
  20025. },
  20026. form: "anthro",
  20027. default: true
  20028. },
  20029. backDressed: {
  20030. height: math.unit(15, "feet"),
  20031. weight: math.unit(3280, "lb"),
  20032. name: "Back (Dressed)",
  20033. image: {
  20034. source: "./media/characters/sapphy/back-dressed.svg",
  20035. extra: 2058/1918,
  20036. bottom: 125/2183
  20037. },
  20038. form: "anthro"
  20039. },
  20040. frontNude: {
  20041. height: math.unit(15, "feet"),
  20042. weight: math.unit(3280, "lb"),
  20043. name: "Front (Nude)",
  20044. image: {
  20045. source: "./media/characters/sapphy/front-nude.svg",
  20046. extra: 1951/1654,
  20047. bottom: 194/2145
  20048. },
  20049. form: "anthro"
  20050. },
  20051. backNude: {
  20052. height: math.unit(15, "feet"),
  20053. weight: math.unit(3280, "lb"),
  20054. name: "Back (Nude)",
  20055. image: {
  20056. source: "./media/characters/sapphy/back-nude.svg",
  20057. extra: 2058/1918,
  20058. bottom: 125/2183
  20059. },
  20060. form: "anthro"
  20061. },
  20062. full: {
  20063. height: math.unit(15, "feet"),
  20064. weight: math.unit(3280, "lb"),
  20065. name: "Full",
  20066. image: {
  20067. source: "./media/characters/sapphy/full.svg",
  20068. extra: 1396/1317,
  20069. bottom: 44/1440
  20070. },
  20071. form: "anthro"
  20072. },
  20073. dick: {
  20074. height: math.unit(3.8, "feet"),
  20075. name: "Dick",
  20076. image: {
  20077. source: "./media/characters/sapphy/dick.svg"
  20078. },
  20079. form: "anthro"
  20080. },
  20081. feral: {
  20082. height: math.unit(35, "feet"),
  20083. weight: math.unit(160, "tons"),
  20084. name: "Feral",
  20085. image: {
  20086. source: "./media/characters/sapphy/feral.svg",
  20087. extra: 1050/573,
  20088. bottom: 60/1110
  20089. },
  20090. form: "feral",
  20091. default: true
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(15, "feet"),
  20098. form: "anthro"
  20099. },
  20100. {
  20101. name: "Casual Macro",
  20102. height: math.unit(120, "feet"),
  20103. form: "anthro"
  20104. },
  20105. {
  20106. name: "Macro",
  20107. height: math.unit(2150, "feet"),
  20108. default: true,
  20109. form: "anthro"
  20110. },
  20111. {
  20112. name: "Megamacro",
  20113. height: math.unit(8, "miles"),
  20114. form: "anthro"
  20115. },
  20116. {
  20117. name: "Galaxy Mom",
  20118. height: math.unit(6, "megalightyears"),
  20119. form: "anthro"
  20120. },
  20121. {
  20122. name: "Normal",
  20123. height: math.unit(35, "feet"),
  20124. form: "feral",
  20125. default: true
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(300, "feet"),
  20130. form: "feral"
  20131. },
  20132. {
  20133. name: "Galaxy Mom",
  20134. height: math.unit(10, "megalightyears"),
  20135. form: "feral"
  20136. },
  20137. ],
  20138. {
  20139. "anthro": {
  20140. name: "Anthro",
  20141. default: true
  20142. },
  20143. "feral": {
  20144. name: "Feral"
  20145. }
  20146. }
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20150. {
  20151. hyenaFront: {
  20152. height: math.unit(6, "feet"),
  20153. weight: math.unit(190, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/kiro/hyena-front.svg",
  20157. extra: 927/839,
  20158. bottom: 91/1018
  20159. },
  20160. form: "hyena",
  20161. default: true
  20162. },
  20163. front: {
  20164. height: math.unit(6, "feet"),
  20165. weight: math.unit(170, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/kiro/front.svg",
  20169. extra: 1064 / 1012,
  20170. bottom: 0.052
  20171. },
  20172. form: "folf",
  20173. default: true
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Micro",
  20179. height: math.unit(6, "inches"),
  20180. form: "folf"
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(6, "feet"),
  20185. form: "folf",
  20186. default: true
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(72, "feet"),
  20191. form: "folf"
  20192. },
  20193. {
  20194. name: "Micro",
  20195. height: math.unit(6, "inches"),
  20196. form: "hyena"
  20197. },
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(6, "feet"),
  20201. form: "hyena",
  20202. default: true
  20203. },
  20204. {
  20205. name: "Macro",
  20206. height: math.unit(72, "feet"),
  20207. form: "hyena"
  20208. },
  20209. ],
  20210. {
  20211. "hyena": {
  20212. name: "Hyena",
  20213. default: true
  20214. },
  20215. "folf": {
  20216. name: "Folf",
  20217. },
  20218. }
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(5 + 9 / 12, "feet"),
  20225. weight: math.unit(175, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/irishfox/front.svg",
  20229. extra: 1912 / 1680,
  20230. bottom: 0.02
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Nano",
  20237. height: math.unit(1, "mm")
  20238. },
  20239. {
  20240. name: "Micro",
  20241. height: math.unit(2, "inches")
  20242. },
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(5 + 9 / 12, "feet"),
  20246. default: true
  20247. },
  20248. {
  20249. name: "Macro",
  20250. height: math.unit(45, "feet")
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20256. {
  20257. front: {
  20258. height: math.unit(6 + 1 / 12, "feet"),
  20259. weight: math.unit(75, "lb"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/aronai-sieyes/front.svg",
  20263. extra: 1532/1450,
  20264. bottom: 42/1574
  20265. }
  20266. },
  20267. side: {
  20268. height: math.unit(6 + 1 / 12, "feet"),
  20269. weight: math.unit(75, "lb"),
  20270. name: "Side",
  20271. image: {
  20272. source: "./media/characters/aronai-sieyes/side.svg",
  20273. extra: 1422/1365,
  20274. bottom: 148/1570
  20275. }
  20276. },
  20277. back: {
  20278. height: math.unit(6 + 1 / 12, "feet"),
  20279. weight: math.unit(75, "lb"),
  20280. name: "Back",
  20281. image: {
  20282. source: "./media/characters/aronai-sieyes/back.svg",
  20283. extra: 1526/1464,
  20284. bottom: 51/1577
  20285. }
  20286. },
  20287. dressed: {
  20288. height: math.unit(6 + 1 / 12, "feet"),
  20289. weight: math.unit(75, "lb"),
  20290. name: "Dressed",
  20291. image: {
  20292. source: "./media/characters/aronai-sieyes/dressed.svg",
  20293. extra: 1559/1483,
  20294. bottom: 39/1598
  20295. }
  20296. },
  20297. slit: {
  20298. height: math.unit(1.3, "feet"),
  20299. name: "Slit",
  20300. image: {
  20301. source: "./media/characters/aronai-sieyes/slit.svg"
  20302. }
  20303. },
  20304. slitSpread: {
  20305. height: math.unit(0.9, "feet"),
  20306. name: "Slit (Spread)",
  20307. image: {
  20308. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20309. }
  20310. },
  20311. rump: {
  20312. height: math.unit(1.3, "feet"),
  20313. name: "Rump",
  20314. image: {
  20315. source: "./media/characters/aronai-sieyes/rump.svg"
  20316. }
  20317. },
  20318. maw: {
  20319. height: math.unit(1.25, "feet"),
  20320. name: "Maw",
  20321. image: {
  20322. source: "./media/characters/aronai-sieyes/maw.svg"
  20323. }
  20324. },
  20325. feral: {
  20326. height: math.unit(18, "feet"),
  20327. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20328. name: "Feral",
  20329. image: {
  20330. source: "./media/characters/aronai-sieyes/feral.svg",
  20331. extra: 1530 / 1240,
  20332. bottom: 0.035
  20333. }
  20334. },
  20335. },
  20336. [
  20337. {
  20338. name: "Micro",
  20339. height: math.unit(2, "inches")
  20340. },
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(6 + 1 / 12, "feet"),
  20344. default: true
  20345. }
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(12, "feet"),
  20353. weight: math.unit(410, "kg"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/xuna/front.svg",
  20357. extra: 2184 / 1980
  20358. }
  20359. },
  20360. side: {
  20361. height: math.unit(12, "feet"),
  20362. weight: math.unit(410, "kg"),
  20363. name: "Side",
  20364. image: {
  20365. source: "./media/characters/xuna/side.svg",
  20366. extra: 2184 / 1980
  20367. }
  20368. },
  20369. back: {
  20370. height: math.unit(12, "feet"),
  20371. weight: math.unit(410, "kg"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/xuna/back.svg",
  20375. extra: 2184 / 1980
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Nano glow",
  20382. height: math.unit(10, "nm")
  20383. },
  20384. {
  20385. name: "Micro floof",
  20386. height: math.unit(0.3, "m")
  20387. },
  20388. {
  20389. name: "Huggable softy boi",
  20390. height: math.unit(3.6576, "m"),
  20391. default: true
  20392. },
  20393. {
  20394. name: "Admirable floof",
  20395. height: math.unit(80, "meters")
  20396. },
  20397. {
  20398. name: "Gentle macro",
  20399. height: math.unit(300, "meters")
  20400. },
  20401. {
  20402. name: "Very careful floof",
  20403. height: math.unit(3200, "meters")
  20404. },
  20405. {
  20406. name: "The mega floof",
  20407. height: math.unit(36000, "meters")
  20408. },
  20409. {
  20410. name: "Giga-fur-Wicker",
  20411. height: math.unit(4800000, "meters")
  20412. },
  20413. {
  20414. name: "Licky world",
  20415. height: math.unit(20000000, "meters")
  20416. },
  20417. {
  20418. name: "Floofy cyan sun",
  20419. height: math.unit(1500000000, "meters")
  20420. },
  20421. {
  20422. name: "Milky Wicker",
  20423. height: math.unit(1000000000000000000000, "meters")
  20424. },
  20425. {
  20426. name: "The observing Wicker",
  20427. height: math.unit(999999999999999999999999999, "meters")
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(5 + 9 / 12, "feet"),
  20436. weight: math.unit(150, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/arokha-sieyes/front.svg",
  20440. extra: 1425 / 1284,
  20441. bottom: 0.05
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Normal",
  20448. height: math.unit(5 + 9 / 12, "feet")
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(30, "meters"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20459. {
  20460. front: {
  20461. height: math.unit(6, "feet"),
  20462. weight: math.unit(180, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/arokh-sieyes/front.svg",
  20466. extra: 1830 / 1769,
  20467. bottom: 0.01
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(6, "feet")
  20475. },
  20476. {
  20477. name: "Macro",
  20478. height: math.unit(30, "meters"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20485. {
  20486. side: {
  20487. height: math.unit(13 + 1 / 12, "feet"),
  20488. weight: math.unit(8.5, "tonnes"),
  20489. preyCapacity: math.unit(36, "people"),
  20490. name: "Side",
  20491. image: {
  20492. source: "./media/characters/goldeneye/side.svg",
  20493. extra: 1139/741,
  20494. bottom: 98/1237
  20495. }
  20496. },
  20497. front: {
  20498. height: math.unit(5.1, "feet"),
  20499. weight: math.unit(8.5, "tonnes"),
  20500. preyCapacity: math.unit(36, "people"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/goldeneye/front.svg",
  20504. extra: 635/365,
  20505. bottom: 598/1233
  20506. }
  20507. },
  20508. maw: {
  20509. height: math.unit(6.6, "feet"),
  20510. name: "Maw",
  20511. image: {
  20512. source: "./media/characters/goldeneye/maw.svg"
  20513. }
  20514. },
  20515. headFront: {
  20516. height: math.unit(8, "feet"),
  20517. name: "Head (Front)",
  20518. image: {
  20519. source: "./media/characters/goldeneye/head-front.svg"
  20520. }
  20521. },
  20522. headSide: {
  20523. height: math.unit(6, "feet"),
  20524. name: "Head (Side)",
  20525. image: {
  20526. source: "./media/characters/goldeneye/head-side.svg"
  20527. }
  20528. },
  20529. headBack: {
  20530. height: math.unit(8, "feet"),
  20531. name: "Head (Back)",
  20532. image: {
  20533. source: "./media/characters/goldeneye/head-back.svg"
  20534. }
  20535. },
  20536. paw: {
  20537. height: math.unit(3.4, "feet"),
  20538. name: "Paw",
  20539. image: {
  20540. source: "./media/characters/goldeneye/paw.svg"
  20541. }
  20542. },
  20543. toering: {
  20544. height: math.unit(0.45, "feet"),
  20545. name: "Toering",
  20546. image: {
  20547. source: "./media/characters/goldeneye/toering.svg"
  20548. }
  20549. },
  20550. eyes: {
  20551. height: math.unit(0.5, "feet"),
  20552. name: "Eyes",
  20553. image: {
  20554. source: "./media/characters/goldeneye/eyes.svg"
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(13 + 1 / 12, "feet"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20568. {
  20569. front: {
  20570. height: math.unit(6 + 1 / 12, "feet"),
  20571. weight: math.unit(210, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/leonardo-lycheborne/front.svg",
  20575. extra: 776/723,
  20576. bottom: 34/810
  20577. }
  20578. },
  20579. side: {
  20580. height: math.unit(6 + 1 / 12, "feet"),
  20581. weight: math.unit(210, "lb"),
  20582. name: "Side",
  20583. image: {
  20584. source: "./media/characters/leonardo-lycheborne/side.svg",
  20585. extra: 780/728,
  20586. bottom: 12/792
  20587. }
  20588. },
  20589. back: {
  20590. height: math.unit(6 + 1 / 12, "feet"),
  20591. weight: math.unit(210, "lb"),
  20592. name: "Back",
  20593. image: {
  20594. source: "./media/characters/leonardo-lycheborne/back.svg",
  20595. extra: 775/721,
  20596. bottom: 17/792
  20597. }
  20598. },
  20599. hand: {
  20600. height: math.unit(1.08, "feet"),
  20601. name: "Hand",
  20602. image: {
  20603. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20604. }
  20605. },
  20606. foot: {
  20607. height: math.unit(1.32, "feet"),
  20608. name: "Foot",
  20609. image: {
  20610. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20611. }
  20612. },
  20613. maw: {
  20614. height: math.unit(1, "feet"),
  20615. name: "Maw",
  20616. image: {
  20617. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20618. }
  20619. },
  20620. were: {
  20621. height: math.unit(20, "feet"),
  20622. weight: math.unit(7800, "lb"),
  20623. name: "Were",
  20624. image: {
  20625. source: "./media/characters/leonardo-lycheborne/were.svg",
  20626. extra: 1224/1165,
  20627. bottom: 72/1296
  20628. }
  20629. },
  20630. feral: {
  20631. height: math.unit(7.5, "feet"),
  20632. weight: math.unit(600, "lb"),
  20633. name: "Feral",
  20634. image: {
  20635. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20636. extra: 797/702,
  20637. bottom: 139/936
  20638. }
  20639. },
  20640. taur: {
  20641. height: math.unit(11, "feet"),
  20642. weight: math.unit(3300, "lb"),
  20643. name: "Taur",
  20644. image: {
  20645. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20646. extra: 1271/1197,
  20647. bottom: 47/1318
  20648. }
  20649. },
  20650. barghest: {
  20651. height: math.unit(11, "feet"),
  20652. weight: math.unit(1300, "lb"),
  20653. name: "Barghest",
  20654. image: {
  20655. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20656. extra: 1291/1204,
  20657. bottom: 37/1328
  20658. }
  20659. },
  20660. dick: {
  20661. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20662. name: "Dick",
  20663. image: {
  20664. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20665. }
  20666. },
  20667. dickWere: {
  20668. height: math.unit((20) / 3.8, "feet"),
  20669. name: "Dick (Were)",
  20670. image: {
  20671. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(6 + 1 / 12, "feet"),
  20679. default: true
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20685. {
  20686. front: {
  20687. height: math.unit(10, "feet"),
  20688. weight: math.unit(350, "lb"),
  20689. name: "Front",
  20690. image: {
  20691. source: "./media/characters/jet/front.svg",
  20692. extra: 2050 / 1980,
  20693. bottom: 0.013
  20694. }
  20695. },
  20696. back: {
  20697. height: math.unit(10, "feet"),
  20698. weight: math.unit(350, "lb"),
  20699. name: "Back",
  20700. image: {
  20701. source: "./media/characters/jet/back.svg",
  20702. extra: 2050 / 1980,
  20703. bottom: 0.013
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Micro",
  20710. height: math.unit(6, "inches")
  20711. },
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(10, "feet"),
  20715. default: true
  20716. },
  20717. {
  20718. name: "Macro",
  20719. height: math.unit(100, "feet")
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20725. {
  20726. front: {
  20727. height: math.unit(15, "feet"),
  20728. weight: math.unit(2800, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/tanarath/front.svg",
  20732. extra: 2392 / 2220,
  20733. bottom: 0.03
  20734. }
  20735. },
  20736. back: {
  20737. height: math.unit(15, "feet"),
  20738. weight: math.unit(2800, "lb"),
  20739. name: "Back",
  20740. image: {
  20741. source: "./media/characters/tanarath/back.svg",
  20742. extra: 2392 / 2220,
  20743. bottom: 0.03
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(15, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(7 + 1 / 12, "feet"),
  20760. weight: math.unit(175, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/patty-cattybatty/front.svg",
  20764. extra: 908 / 874,
  20765. bottom: 0.025
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Micro",
  20772. height: math.unit(1, "inch")
  20773. },
  20774. {
  20775. name: "Normal",
  20776. height: math.unit(7 + 1 / 12, "feet")
  20777. },
  20778. {
  20779. name: "Mini Macro",
  20780. height: math.unit(155, "feet")
  20781. },
  20782. {
  20783. name: "Macro",
  20784. height: math.unit(1077, "feet")
  20785. },
  20786. {
  20787. name: "Mega Macro",
  20788. height: math.unit(47650, "feet"),
  20789. default: true
  20790. },
  20791. {
  20792. name: "Giga Macro",
  20793. height: math.unit(440, "miles")
  20794. },
  20795. {
  20796. name: "Tera Macro",
  20797. height: math.unit(8700, "miles")
  20798. },
  20799. {
  20800. name: "Planetary Macro",
  20801. height: math.unit(32700, "miles")
  20802. },
  20803. {
  20804. name: "Solar Macro",
  20805. height: math.unit(550000, "miles")
  20806. },
  20807. {
  20808. name: "Celestial Macro",
  20809. height: math.unit(2.5, "AU")
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(4 + 5 / 12, "feet"),
  20818. weight: math.unit(90, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/cappu/front.svg",
  20822. extra: 1247 / 1152,
  20823. bottom: 0.012
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(4 + 5 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20837. {
  20838. frontDressed: {
  20839. height: math.unit(70, "cm"),
  20840. weight: math.unit(6, "kg"),
  20841. name: "Front (Dressed)",
  20842. image: {
  20843. source: "./media/characters/sebi/front-dressed.svg",
  20844. extra: 713.5 / 686.5,
  20845. bottom: 0.003
  20846. }
  20847. },
  20848. front: {
  20849. height: math.unit(70, "cm"),
  20850. weight: math.unit(5, "kg"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/sebi/front.svg",
  20854. extra: 713.5 / 686.5,
  20855. bottom: 0.003
  20856. }
  20857. }
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(70, "cm"),
  20863. default: true
  20864. },
  20865. {
  20866. name: "Macro",
  20867. height: math.unit(8, "meters")
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(6, "feet"),
  20876. weight: math.unit(150, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/typhek/front.svg",
  20880. extra: 1948 / 1929,
  20881. bottom: 0.025
  20882. }
  20883. },
  20884. side: {
  20885. height: math.unit(6, "feet"),
  20886. weight: math.unit(150, "lb"),
  20887. name: "Side",
  20888. image: {
  20889. source: "./media/characters/typhek/side.svg",
  20890. extra: 2034 / 2010,
  20891. bottom: 0.003
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(6, "feet"),
  20896. weight: math.unit(150, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/typhek/back.svg",
  20900. extra: 2005 / 1978,
  20901. bottom: 0.004
  20902. }
  20903. },
  20904. palm: {
  20905. height: math.unit(1.2, "feet"),
  20906. name: "Palm",
  20907. image: {
  20908. source: "./media/characters/typhek/palm.svg"
  20909. }
  20910. },
  20911. fist: {
  20912. height: math.unit(1.1, "feet"),
  20913. name: "Fist",
  20914. image: {
  20915. source: "./media/characters/typhek/fist.svg"
  20916. }
  20917. },
  20918. foot: {
  20919. height: math.unit(1.57, "feet"),
  20920. name: "Foot",
  20921. image: {
  20922. source: "./media/characters/typhek/foot.svg"
  20923. }
  20924. },
  20925. sole: {
  20926. height: math.unit(2.05, "feet"),
  20927. name: "Sole",
  20928. image: {
  20929. source: "./media/characters/typhek/sole.svg"
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Macro",
  20936. height: math.unit(40, "stories"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Megamacro",
  20941. height: math.unit(1, "mile")
  20942. },
  20943. {
  20944. name: "Gigamacro",
  20945. height: math.unit(4000, "solarradii")
  20946. },
  20947. {
  20948. name: "Universal",
  20949. height: math.unit(1.1, "universes")
  20950. }
  20951. ]
  20952. ))
  20953. characterMakers.push(() => makeCharacter(
  20954. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20955. {
  20956. side: {
  20957. height: math.unit(5 + 7 / 12, "feet"),
  20958. weight: math.unit(150, "lb"),
  20959. name: "Side",
  20960. image: {
  20961. source: "./media/characters/kassy/side.svg",
  20962. extra: 1280 / 1225,
  20963. bottom: 0.002
  20964. }
  20965. },
  20966. front: {
  20967. height: math.unit(5 + 7 / 12, "feet"),
  20968. weight: math.unit(150, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/kassy/front.svg",
  20972. extra: 1280 / 1225,
  20973. bottom: 0.025
  20974. }
  20975. },
  20976. back: {
  20977. height: math.unit(5 + 7 / 12, "feet"),
  20978. weight: math.unit(150, "lb"),
  20979. name: "Back",
  20980. image: {
  20981. source: "./media/characters/kassy/back.svg",
  20982. extra: 1280 / 1225,
  20983. bottom: 0.002
  20984. }
  20985. },
  20986. foot: {
  20987. height: math.unit(1.266, "feet"),
  20988. name: "Foot",
  20989. image: {
  20990. source: "./media/characters/kassy/foot.svg"
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(5 + 7 / 12, "feet")
  20998. },
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(137, "feet"),
  21002. default: true
  21003. },
  21004. {
  21005. name: "Megamacro",
  21006. height: math.unit(1, "mile")
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(6 + 1 / 12, "feet"),
  21015. weight: math.unit(200, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/neil/front.svg",
  21019. extra: 1326 / 1250,
  21020. bottom: 0.023
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(6 + 1 / 12, "feet"),
  21028. default: true
  21029. },
  21030. {
  21031. name: "Macro",
  21032. height: math.unit(200, "feet")
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21038. {
  21039. front: {
  21040. height: math.unit(5 + 9 / 12, "feet"),
  21041. weight: math.unit(190, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/atticus/front.svg",
  21045. extra: 2934 / 2785,
  21046. bottom: 0.025
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(5 + 9 / 12, "feet"),
  21054. default: true
  21055. },
  21056. {
  21057. name: "Macro",
  21058. height: math.unit(180, "feet")
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21064. {
  21065. side: {
  21066. height: math.unit(9, "feet"),
  21067. weight: math.unit(650, "lb"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/milo/side.svg",
  21071. extra: 2644 / 2310,
  21072. bottom: 0.032
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(9, "feet"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(300, "feet")
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21090. {
  21091. side: {
  21092. height: math.unit(8, "meters"),
  21093. weight: math.unit(90000, "kg"),
  21094. name: "Side",
  21095. image: {
  21096. source: "./media/characters/ijzer/side.svg",
  21097. extra: 2756 / 1600,
  21098. bottom: 0.01
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Small",
  21105. height: math.unit(3, "meters")
  21106. },
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(8, "meters"),
  21110. default: true
  21111. },
  21112. {
  21113. name: "Normal+",
  21114. height: math.unit(10, "meters")
  21115. },
  21116. {
  21117. name: "Bigger",
  21118. height: math.unit(24, "meters")
  21119. },
  21120. {
  21121. name: "Huge",
  21122. height: math.unit(80, "meters")
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(6 + 2 / 12, "feet"),
  21131. weight: math.unit(153, "lb"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/luca-cervicum/front.svg",
  21135. extra: 370 / 327,
  21136. bottom: 0.015
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(6 + 2 / 12, "feet"),
  21141. weight: math.unit(153, "lb"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/luca-cervicum/back.svg",
  21145. extra: 367 / 333,
  21146. bottom: 0.005
  21147. }
  21148. },
  21149. frontGear: {
  21150. height: math.unit(6 + 2 / 12, "feet"),
  21151. weight: math.unit(173, "lb"),
  21152. name: "Front (Gear)",
  21153. image: {
  21154. source: "./media/characters/luca-cervicum/front-gear.svg",
  21155. extra: 377 / 333,
  21156. bottom: 0.006
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(6 + 2 / 12, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(6 + 1 / 12, "feet"),
  21173. weight: math.unit(304, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/oliver/front.svg",
  21177. extra: 157 / 143,
  21178. bottom: 0.08
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(6 + 1 / 12, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5 + 7 / 12, "feet"),
  21195. weight: math.unit(140, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/shane/front.svg",
  21199. extra: 304 / 289,
  21200. bottom: 0.005
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(5 + 7 / 12, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(5 + 9 / 12, "feet"),
  21217. weight: math.unit(178, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/shin/front.svg",
  21221. extra: 159 / 151,
  21222. bottom: 0.015
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5 + 9 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(5 + 10 / 12, "feet"),
  21239. weight: math.unit(168, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/xerxes/front.svg",
  21243. extra: 282 / 260,
  21244. bottom: 0.045
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5 + 10 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(6 + 7 / 12, "feet"),
  21261. weight: math.unit(208, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/chaska/front.svg",
  21265. extra: 332 / 319,
  21266. bottom: 0.015
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(6 + 7 / 12, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21280. {
  21281. front: {
  21282. height: math.unit(5 + 8 / 12, "feet"),
  21283. weight: math.unit(208, "lb"),
  21284. name: "Front",
  21285. image: {
  21286. source: "./media/characters/enuk/front.svg",
  21287. extra: 437 / 406,
  21288. bottom: 0.02
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Normal",
  21295. height: math.unit(5 + 8 / 12, "feet"),
  21296. default: true
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(5 + 10 / 12, "feet"),
  21305. weight: math.unit(252, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/bruun/front.svg",
  21309. extra: 197 / 187,
  21310. bottom: 0.012
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(5 + 10 / 12, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(6 + 10 / 12, "feet"),
  21327. weight: math.unit(255, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/alexeev/front.svg",
  21331. extra: 213 / 200,
  21332. bottom: 0.05
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(6 + 10 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21346. {
  21347. front: {
  21348. height: math.unit(2 + 8 / 12, "feet"),
  21349. weight: math.unit(22, "lb"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/evelyn/front.svg",
  21353. extra: 208 / 180
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(2 + 8 / 12, "feet"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(5 + 9 / 12, "feet"),
  21370. weight: math.unit(139, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/inca/front.svg",
  21374. extra: 294 / 291,
  21375. bottom: 0.03
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(5 + 9 / 12, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(6 + 3 / 12, "feet"),
  21392. weight: math.unit(185, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/mera/front.svg",
  21396. extra: 291 / 277,
  21397. bottom: 0.03
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(6 + 3 / 12, "feet"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21411. {
  21412. front: {
  21413. height: math.unit(6 + 7 / 12, "feet"),
  21414. weight: math.unit(160, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/ceres/front.svg",
  21418. extra: 1023 / 950,
  21419. bottom: 0.027
  21420. }
  21421. },
  21422. back: {
  21423. height: math.unit(6 + 7 / 12, "feet"),
  21424. weight: math.unit(160, "lb"),
  21425. name: "Back",
  21426. image: {
  21427. source: "./media/characters/ceres/back.svg",
  21428. extra: 1023 / 950
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(6 + 7 / 12, "feet"),
  21436. default: true
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21442. {
  21443. front: {
  21444. height: math.unit(5 + 10 / 12, "feet"),
  21445. weight: math.unit(150, "lb"),
  21446. name: "Front",
  21447. image: {
  21448. source: "./media/characters/kris/front.svg",
  21449. extra: 885 / 803,
  21450. bottom: 0.03
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(5 + 10 / 12, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21464. {
  21465. front: {
  21466. height: math.unit(7, "feet"),
  21467. weight: math.unit(120, "kg"),
  21468. name: "Front",
  21469. image: {
  21470. source: "./media/characters/taluthus/front.svg",
  21471. extra: 903 / 833,
  21472. bottom: 0.015
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(7, "feet"),
  21480. default: true
  21481. },
  21482. {
  21483. name: "Macro",
  21484. height: math.unit(300, "feet")
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(5 + 9 / 12, "feet"),
  21493. weight: math.unit(145, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/dawn/front.svg",
  21497. extra: 2094 / 2016,
  21498. bottom: 0.025
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(5 + 9 / 12, "feet"),
  21503. weight: math.unit(160, "lb"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/dawn/back.svg",
  21507. extra: 2112 / 2080,
  21508. bottom: 0.005
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Normal",
  21515. height: math.unit(6 + 7 / 12, "feet"),
  21516. default: true
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21522. {
  21523. anthro: {
  21524. height: math.unit(8 + 3 / 12, "feet"),
  21525. weight: math.unit(450, "lb"),
  21526. name: "Anthro",
  21527. image: {
  21528. source: "./media/characters/arador/anthro.svg",
  21529. extra: 1835 / 1718,
  21530. bottom: 0.025
  21531. }
  21532. },
  21533. feral: {
  21534. height: math.unit(4, "feet"),
  21535. weight: math.unit(200, "lb"),
  21536. name: "Feral",
  21537. image: {
  21538. source: "./media/characters/arador/feral.svg",
  21539. extra: 1683 / 1514,
  21540. bottom: 0.07
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(8 + 3 / 12, "feet")
  21548. },
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(82.5, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(5 + 10 / 12, "feet"),
  21561. weight: math.unit(125, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/dharsi/front.svg",
  21565. extra: 716 / 630,
  21566. bottom: 0.035
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Nano",
  21573. height: math.unit(100, "nm")
  21574. },
  21575. {
  21576. name: "Micro",
  21577. height: math.unit(2, "inches")
  21578. },
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(5 + 10 / 12, "feet"),
  21582. default: true
  21583. },
  21584. {
  21585. name: "Macro",
  21586. height: math.unit(1000, "feet")
  21587. },
  21588. {
  21589. name: "Megamacro",
  21590. height: math.unit(10, "miles")
  21591. },
  21592. {
  21593. name: "Gigamacro",
  21594. height: math.unit(3000, "miles")
  21595. },
  21596. {
  21597. name: "Teramacro",
  21598. height: math.unit(500000, "miles")
  21599. },
  21600. {
  21601. name: "Teramacro+",
  21602. height: math.unit(30, "galaxies")
  21603. },
  21604. ]
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(6, "feet"),
  21611. weight: math.unit(150, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/deathy/front.svg",
  21615. extra: 1552 / 1463,
  21616. bottom: 0.025
  21617. }
  21618. },
  21619. side: {
  21620. height: math.unit(6, "feet"),
  21621. weight: math.unit(150, "lb"),
  21622. name: "Side",
  21623. image: {
  21624. source: "./media/characters/deathy/side.svg",
  21625. extra: 1604 / 1455,
  21626. bottom: 0.025
  21627. }
  21628. },
  21629. back: {
  21630. height: math.unit(6, "feet"),
  21631. weight: math.unit(150, "lb"),
  21632. name: "Back",
  21633. image: {
  21634. source: "./media/characters/deathy/back.svg",
  21635. extra: 1580 / 1463,
  21636. bottom: 0.005
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Micro",
  21643. height: math.unit(5, "millimeters")
  21644. },
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(6 + 5 / 12, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21654. {
  21655. front: {
  21656. height: math.unit(16, "feet"),
  21657. weight: math.unit(4000, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/juniper/front.svg",
  21661. bottom: 0.04
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(16, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(6, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/hipster/front.svg",
  21682. extra: 1312 / 1209,
  21683. bottom: 0.025
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(6, "feet"),
  21688. weight: math.unit(150, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/hipster/back.svg",
  21692. extra: 1281 / 1196,
  21693. bottom: 0.01
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Micro",
  21700. height: math.unit(1, "mm")
  21701. },
  21702. {
  21703. name: "Normal",
  21704. height: math.unit(4, "inches"),
  21705. default: true
  21706. },
  21707. {
  21708. name: "Macro",
  21709. height: math.unit(500, "feet")
  21710. },
  21711. {
  21712. name: "Megamacro",
  21713. height: math.unit(1000, "miles")
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21719. {
  21720. front: {
  21721. height: math.unit(6, "feet"),
  21722. weight: math.unit(150, "lb"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/tendirmuldr/front.svg",
  21726. extra: 1878 / 1772,
  21727. bottom: 0.015
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Megamacro",
  21734. height: math.unit(1500, "miles"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21741. {
  21742. front: {
  21743. height: math.unit(14, "feet"),
  21744. weight: math.unit(12000, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/mort/front.svg",
  21748. extra: 365 / 318,
  21749. bottom: 0.01
  21750. }
  21751. },
  21752. side: {
  21753. height: math.unit(14, "feet"),
  21754. weight: math.unit(12000, "lb"),
  21755. name: "Side",
  21756. image: {
  21757. source: "./media/characters/mort/side.svg",
  21758. extra: 365 / 318,
  21759. bottom: 0.052
  21760. },
  21761. default: true
  21762. },
  21763. back: {
  21764. height: math.unit(14, "feet"),
  21765. weight: math.unit(12000, "lb"),
  21766. name: "Back",
  21767. image: {
  21768. source: "./media/characters/mort/back.svg",
  21769. extra: 371 / 332,
  21770. bottom: 0.18
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(14, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21784. {
  21785. front: {
  21786. height: math.unit(8, "feet"),
  21787. weight: math.unit(1, "ton"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/lycoa/front.svg",
  21791. extra: 1836/1728,
  21792. bottom: 81/1917
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(8, "feet"),
  21797. weight: math.unit(1, "ton"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/lycoa/back.svg",
  21801. extra: 1785/1720,
  21802. bottom: 91/1876
  21803. }
  21804. },
  21805. head: {
  21806. height: math.unit(1.6243, "feet"),
  21807. name: "Head",
  21808. image: {
  21809. source: "./media/characters/lycoa/head.svg",
  21810. extra: 1011/782,
  21811. bottom: 0/1011
  21812. }
  21813. },
  21814. tailmaw: {
  21815. height: math.unit(1.9, "feet"),
  21816. name: "Tailmaw",
  21817. image: {
  21818. source: "./media/characters/lycoa/tailmaw.svg"
  21819. }
  21820. },
  21821. tentacles: {
  21822. height: math.unit(2.1, "feet"),
  21823. name: "Tentacles",
  21824. image: {
  21825. source: "./media/characters/lycoa/tentacles.svg"
  21826. }
  21827. },
  21828. dick: {
  21829. height: math.unit(1.73, "feet"),
  21830. name: "Dick",
  21831. image: {
  21832. source: "./media/characters/lycoa/dick.svg"
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(8, "feet"),
  21840. default: true
  21841. },
  21842. {
  21843. name: "Macro",
  21844. height: math.unit(30, "feet")
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21850. {
  21851. front: {
  21852. height: math.unit(4 + 2 / 12, "feet"),
  21853. weight: math.unit(70, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/naldara/front.svg",
  21857. extra: 1664/1387,
  21858. bottom: 81/1745
  21859. },
  21860. form: "anthro",
  21861. default: true
  21862. },
  21863. naga: {
  21864. height: math.unit(20, "feet"),
  21865. weight: math.unit(15000, "kg"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/naldara/naga.svg",
  21869. extra: 1590/1396,
  21870. bottom: 285/1875
  21871. },
  21872. form: "naga",
  21873. default: true
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(4 + 2 / 12, "feet"),
  21880. form: "anthro",
  21881. default: true
  21882. },
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(20, "feet"),
  21886. form: "naga",
  21887. default: true
  21888. },
  21889. ],
  21890. {
  21891. "anthro": {
  21892. name: "Anthro",
  21893. default: true
  21894. },
  21895. "naga": {
  21896. name: "Naga"
  21897. }
  21898. }
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(13 + 7 / 12, "feet"),
  21905. weight: math.unit(1500, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/briar/front.svg",
  21909. extra: 1223/1157,
  21910. bottom: 123/1346
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(13 + 7 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21924. {
  21925. side: {
  21926. height: math.unit(16, "feet"),
  21927. weight: math.unit(500, "lb"),
  21928. name: "Side",
  21929. image: {
  21930. source: "./media/characters/vanguard/side.svg",
  21931. extra: 1022/914,
  21932. bottom: 30/1052
  21933. }
  21934. },
  21935. sideAlt: {
  21936. height: math.unit(10, "feet"),
  21937. weight: math.unit(500, "lb"),
  21938. name: "Side (Alt)",
  21939. image: {
  21940. source: "./media/characters/vanguard/side-alt.svg",
  21941. extra: 502 / 425,
  21942. bottom: 0.087
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(17.71, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(7.5, "feet"),
  21959. weight: math.unit(2, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/artemis/work-safe-front.svg",
  21963. extra: 1192 / 1075,
  21964. bottom: 0.07
  21965. },
  21966. form: "work-safe",
  21967. default: true
  21968. },
  21969. frontNsfw: {
  21970. height: math.unit(7.5, "feet"),
  21971. weight: math.unit(2, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/artemis/calibrating-front.svg",
  21975. extra: 1192 / 1075,
  21976. bottom: 0.07
  21977. },
  21978. form: "calibrating",
  21979. default: true
  21980. },
  21981. frontNsfwer: {
  21982. height: math.unit(7.5, "feet"),
  21983. weight: math.unit(2, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/artemis/oversize-load-front.svg",
  21987. extra: 1192 / 1075,
  21988. bottom: 0.07
  21989. },
  21990. form: "oversize-load",
  21991. default: true
  21992. },
  21993. side: {
  21994. height: math.unit(7.5, "feet"),
  21995. weight: math.unit(2, "lb"),
  21996. name: "Side",
  21997. image: {
  21998. source: "./media/characters/artemis/work-safe-side.svg",
  21999. extra: 1192 / 1075,
  22000. bottom: 0.07
  22001. },
  22002. form: "work-safe"
  22003. },
  22004. sideNsfw: {
  22005. height: math.unit(7.5, "feet"),
  22006. weight: math.unit(2, "lb"),
  22007. name: "Side",
  22008. image: {
  22009. source: "./media/characters/artemis/calibrating-side.svg",
  22010. extra: 1192 / 1075,
  22011. bottom: 0.07
  22012. },
  22013. form: "calibrating"
  22014. },
  22015. sideNsfwer: {
  22016. height: math.unit(7.5, "feet"),
  22017. weight: math.unit(2, "lb"),
  22018. name: "Side",
  22019. image: {
  22020. source: "./media/characters/artemis/oversize-load-side.svg",
  22021. extra: 1192 / 1075,
  22022. bottom: 0.07
  22023. },
  22024. form: "oversize-load"
  22025. },
  22026. maw: {
  22027. height: math.unit(1.1, "feet"),
  22028. name: "Maw",
  22029. image: {
  22030. source: "./media/characters/artemis/maw.svg"
  22031. },
  22032. form: "work-safe"
  22033. },
  22034. stomach: {
  22035. height: math.unit(0.95, "feet"),
  22036. name: "Stomach",
  22037. image: {
  22038. source: "./media/characters/artemis/stomach.svg"
  22039. },
  22040. form: "work-safe"
  22041. },
  22042. dickCanine: {
  22043. height: math.unit(1, "feet"),
  22044. name: "Dick (Canine)",
  22045. image: {
  22046. source: "./media/characters/artemis/dick-canine.svg"
  22047. },
  22048. form: "calibrating"
  22049. },
  22050. dickEquine: {
  22051. height: math.unit(0.85, "feet"),
  22052. name: "Dick (Equine)",
  22053. image: {
  22054. source: "./media/characters/artemis/dick-equine.svg"
  22055. },
  22056. form: "calibrating"
  22057. },
  22058. dickExotic: {
  22059. height: math.unit(0.85, "feet"),
  22060. name: "Dick (Exotic)",
  22061. image: {
  22062. source: "./media/characters/artemis/dick-exotic.svg"
  22063. },
  22064. form: "calibrating"
  22065. },
  22066. dickCanineBigger: {
  22067. height: math.unit(1 * 1.33, "feet"),
  22068. name: "Dick (Canine)",
  22069. image: {
  22070. source: "./media/characters/artemis/dick-canine.svg"
  22071. },
  22072. form: "oversize-load"
  22073. },
  22074. dickEquineBigger: {
  22075. height: math.unit(0.85 * 1.33, "feet"),
  22076. name: "Dick (Equine)",
  22077. image: {
  22078. source: "./media/characters/artemis/dick-equine.svg"
  22079. },
  22080. form: "oversize-load"
  22081. },
  22082. dickExoticBigger: {
  22083. height: math.unit(0.85 * 1.33, "feet"),
  22084. name: "Dick (Exotic)",
  22085. image: {
  22086. source: "./media/characters/artemis/dick-exotic.svg"
  22087. },
  22088. form: "oversize-load"
  22089. },
  22090. },
  22091. [
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(7.5, "feet"),
  22095. form: "work-safe",
  22096. default: true
  22097. },
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(7.5, "feet"),
  22101. form: "calibrating",
  22102. default: true
  22103. },
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(7.5, "feet"),
  22107. form: "oversize-load",
  22108. default: true
  22109. },
  22110. {
  22111. name: "Enlarged",
  22112. height: math.unit(12, "feet"),
  22113. form: "work-safe",
  22114. },
  22115. {
  22116. name: "Enlarged",
  22117. height: math.unit(12, "feet"),
  22118. form: "calibrating",
  22119. },
  22120. {
  22121. name: "Enlarged",
  22122. height: math.unit(12, "feet"),
  22123. form: "oversize-load",
  22124. },
  22125. ],
  22126. {
  22127. "work-safe": {
  22128. name: "Work-Safe",
  22129. default: true
  22130. },
  22131. "calibrating": {
  22132. name: "Calibrating"
  22133. },
  22134. "oversize-load": {
  22135. name: "Oversize Load"
  22136. }
  22137. }
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(5 + 3 / 12, "feet"),
  22144. weight: math.unit(160, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/kira/front.svg",
  22148. extra: 906 / 786,
  22149. bottom: 0.01
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(5 + 3 / 12, "feet"),
  22154. weight: math.unit(160, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/kira/back.svg",
  22158. extra: 882 / 757,
  22159. bottom: 0.005
  22160. }
  22161. },
  22162. frontDressed: {
  22163. height: math.unit(5 + 3 / 12, "feet"),
  22164. weight: math.unit(160, "lb"),
  22165. name: "Front (Dressed)",
  22166. image: {
  22167. source: "./media/characters/kira/front-dressed.svg",
  22168. extra: 906 / 786,
  22169. bottom: 0.01
  22170. }
  22171. },
  22172. beans: {
  22173. height: math.unit(0.92, "feet"),
  22174. name: "Beans",
  22175. image: {
  22176. source: "./media/characters/kira/beans.svg"
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Normal",
  22183. height: math.unit(5 + 3 / 12, "feet"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(5 + 4 / 12, "feet"),
  22193. weight: math.unit(145, "lb"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/scramble/front.svg",
  22197. extra: 763 / 727,
  22198. bottom: 0.05
  22199. }
  22200. },
  22201. back: {
  22202. height: math.unit(5 + 4 / 12, "feet"),
  22203. weight: math.unit(145, "lb"),
  22204. name: "Back",
  22205. image: {
  22206. source: "./media/characters/scramble/back.svg",
  22207. extra: 826 / 737,
  22208. bottom: 0.002
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(5 + 4 / 12, "feet"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22222. {
  22223. side: {
  22224. height: math.unit(6 + 2 / 12, "feet"),
  22225. weight: math.unit(190, "lb"),
  22226. name: "Side",
  22227. image: {
  22228. source: "./media/characters/biscuit/side.svg",
  22229. extra: 858 / 791,
  22230. bottom: 0.044
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Normal",
  22237. height: math.unit(6 + 2 / 12, "feet"),
  22238. default: true
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(5 + 2 / 12, "feet"),
  22247. weight: math.unit(120, "lb"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/poffin/front.svg",
  22251. extra: 786 / 680,
  22252. bottom: 0.005
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(5 + 2 / 12, "feet"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(6 + 3 / 12, "feet"),
  22269. weight: math.unit(519, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/dhari/front.svg",
  22273. extra: 1048 / 946,
  22274. bottom: 0.015
  22275. }
  22276. },
  22277. back: {
  22278. height: math.unit(6 + 3 / 12, "feet"),
  22279. weight: math.unit(519, "lb"),
  22280. name: "Back",
  22281. image: {
  22282. source: "./media/characters/dhari/back.svg",
  22283. extra: 1048 / 931,
  22284. bottom: 0.005
  22285. }
  22286. },
  22287. frontDressed: {
  22288. height: math.unit(6 + 3 / 12, "feet"),
  22289. weight: math.unit(519, "lb"),
  22290. name: "Front (Dressed)",
  22291. image: {
  22292. source: "./media/characters/dhari/front-dressed.svg",
  22293. extra: 1713 / 1546,
  22294. bottom: 0.02
  22295. }
  22296. },
  22297. backDressed: {
  22298. height: math.unit(6 + 3 / 12, "feet"),
  22299. weight: math.unit(519, "lb"),
  22300. name: "Back (Dressed)",
  22301. image: {
  22302. source: "./media/characters/dhari/back-dressed.svg",
  22303. extra: 1699 / 1537,
  22304. bottom: 0.01
  22305. }
  22306. },
  22307. maw: {
  22308. height: math.unit(0.95, "feet"),
  22309. name: "Maw",
  22310. image: {
  22311. source: "./media/characters/dhari/maw.svg"
  22312. }
  22313. },
  22314. wereFront: {
  22315. height: math.unit(12 + 8 / 12, "feet"),
  22316. weight: math.unit(4000, "lb"),
  22317. name: "Front (Were)",
  22318. image: {
  22319. source: "./media/characters/dhari/were-front.svg",
  22320. extra: 1065 / 969,
  22321. bottom: 0.015
  22322. }
  22323. },
  22324. wereBack: {
  22325. height: math.unit(12 + 8 / 12, "feet"),
  22326. weight: math.unit(4000, "lb"),
  22327. name: "Back (Were)",
  22328. image: {
  22329. source: "./media/characters/dhari/were-back.svg",
  22330. extra: 1065 / 969,
  22331. bottom: 0.012
  22332. }
  22333. },
  22334. wereMaw: {
  22335. height: math.unit(0.625, "meters"),
  22336. name: "Maw (Were)",
  22337. image: {
  22338. source: "./media/characters/dhari/were-maw.svg"
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(6 + 3 / 12, "feet"),
  22346. default: true
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22352. {
  22353. anthro: {
  22354. height: math.unit(5 + 7 / 12, "feet"),
  22355. weight: math.unit(175, "lb"),
  22356. name: "Anthro",
  22357. image: {
  22358. source: "./media/characters/rena-dyne/anthro.svg",
  22359. extra: 1849 / 1785,
  22360. bottom: 0.005
  22361. }
  22362. },
  22363. taur: {
  22364. height: math.unit(15 + 6 / 12, "feet"),
  22365. weight: math.unit(8000, "lb"),
  22366. name: "Taur",
  22367. image: {
  22368. source: "./media/characters/rena-dyne/taur.svg",
  22369. extra: 2315 / 2234,
  22370. bottom: 0.033
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(5 + 7 / 12, "feet"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22384. {
  22385. front: {
  22386. height: math.unit(8, "feet"),
  22387. weight: math.unit(600, "lb"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/weremeep/front.svg",
  22391. extra: 970/849,
  22392. bottom: 7/977
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Normal",
  22399. height: math.unit(8, "feet"),
  22400. default: true
  22401. },
  22402. {
  22403. name: "Lorg",
  22404. height: math.unit(12, "feet")
  22405. },
  22406. {
  22407. name: "Oh Lawd She Comin'",
  22408. height: math.unit(20, "feet")
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22414. {
  22415. front: {
  22416. height: math.unit(4, "feet"),
  22417. weight: math.unit(90, "lb"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/reza/front.svg",
  22421. extra: 1183 / 1111,
  22422. bottom: 0.017
  22423. }
  22424. },
  22425. back: {
  22426. height: math.unit(4, "feet"),
  22427. weight: math.unit(90, "lb"),
  22428. name: "Back",
  22429. image: {
  22430. source: "./media/characters/reza/back.svg",
  22431. extra: 1183 / 1111,
  22432. bottom: 0.01
  22433. }
  22434. },
  22435. drake: {
  22436. height: math.unit(30, "feet"),
  22437. weight: math.unit(246960, "lb"),
  22438. name: "Drake",
  22439. image: {
  22440. source: "./media/characters/reza/drake.svg",
  22441. extra: 2350 / 2024,
  22442. bottom: 60.7 / 2403
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(4, "feet"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22456. {
  22457. side: {
  22458. height: math.unit(15, "feet"),
  22459. weight: math.unit(14, "tons"),
  22460. name: "Side",
  22461. image: {
  22462. source: "./media/characters/athea/side.svg",
  22463. extra: 960 / 540,
  22464. bottom: 0.003
  22465. }
  22466. },
  22467. sitting: {
  22468. height: math.unit(6 * 2.85, "feet"),
  22469. weight: math.unit(14, "tons"),
  22470. name: "Sitting",
  22471. image: {
  22472. source: "./media/characters/athea/sitting.svg",
  22473. extra: 621 / 581,
  22474. bottom: 0.075
  22475. }
  22476. },
  22477. maw: {
  22478. height: math.unit(7.59498031496063, "feet"),
  22479. name: "Maw",
  22480. image: {
  22481. source: "./media/characters/athea/maw.svg"
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Lap Cat",
  22488. height: math.unit(2.5, "feet")
  22489. },
  22490. {
  22491. name: "Minimacro",
  22492. height: math.unit(15, "feet"),
  22493. default: true
  22494. },
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(120, "feet")
  22498. },
  22499. {
  22500. name: "Macro+",
  22501. height: math.unit(640, "feet")
  22502. },
  22503. {
  22504. name: "Colossus",
  22505. height: math.unit(2.2, "miles")
  22506. },
  22507. ]
  22508. ))
  22509. characterMakers.push(() => makeCharacter(
  22510. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22511. {
  22512. front: {
  22513. height: math.unit(8 + 8 / 12, "feet"),
  22514. weight: math.unit(130, "kg"),
  22515. name: "Front",
  22516. image: {
  22517. source: "./media/characters/seroko/front.svg",
  22518. extra: 1385 / 1280,
  22519. bottom: 0.025
  22520. }
  22521. },
  22522. back: {
  22523. height: math.unit(8 + 8 / 12, "feet"),
  22524. weight: math.unit(130, "kg"),
  22525. name: "Back",
  22526. image: {
  22527. source: "./media/characters/seroko/back.svg",
  22528. extra: 1369 / 1238,
  22529. bottom: 0.018
  22530. }
  22531. },
  22532. frontDressed: {
  22533. height: math.unit(8 + 8 / 12, "feet"),
  22534. weight: math.unit(130, "kg"),
  22535. name: "Front (Dressed)",
  22536. image: {
  22537. source: "./media/characters/seroko/front-dressed.svg",
  22538. extra: 1366 / 1275,
  22539. bottom: 0.03
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(8 + 8 / 12, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(5.5, "feet"),
  22556. weight: math.unit(160, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/quatzi/front.svg",
  22560. extra: 2346 / 2242,
  22561. bottom: 0.015
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(5.5, "feet"),
  22569. default: true
  22570. },
  22571. {
  22572. name: "Big",
  22573. height: math.unit(7.7, "feet")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(5 + 11 / 12, "feet"),
  22582. weight: math.unit(180, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/sen/front.svg",
  22586. extra: 1321 / 1254,
  22587. bottom: 0.015
  22588. }
  22589. },
  22590. side: {
  22591. height: math.unit(5 + 11 / 12, "feet"),
  22592. weight: math.unit(180, "lb"),
  22593. name: "Side",
  22594. image: {
  22595. source: "./media/characters/sen/side.svg",
  22596. extra: 1321 / 1254,
  22597. bottom: 0.007
  22598. }
  22599. },
  22600. back: {
  22601. height: math.unit(5 + 11 / 12, "feet"),
  22602. weight: math.unit(180, "lb"),
  22603. name: "Back",
  22604. image: {
  22605. source: "./media/characters/sen/back.svg",
  22606. extra: 1321 / 1254
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5 + 11 / 12, "feet"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(166.6, "cm"),
  22623. weight: math.unit(66.6, "kg"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/fruity/front.svg",
  22627. extra: 1510 / 1386,
  22628. bottom: 0.04
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(166.6, "cm"),
  22633. weight: math.unit(66.6, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/fruity/back.svg",
  22637. extra: 1563 / 1435,
  22638. bottom: 0.005
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(166.6, "cm"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Demonic",
  22650. height: math.unit(166.6, "feet")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22656. {
  22657. side: {
  22658. height: math.unit(10, "feet"),
  22659. weight: math.unit(500, "lb"),
  22660. name: "Side",
  22661. image: {
  22662. source: "./media/characters/zost/side.svg",
  22663. extra: 2870/2533,
  22664. bottom: 252/3122
  22665. }
  22666. },
  22667. mawFront: {
  22668. height: math.unit(1.08, "meters"),
  22669. name: "Maw (Front)",
  22670. image: {
  22671. source: "./media/characters/zost/maw-front.svg"
  22672. }
  22673. },
  22674. mawSide: {
  22675. height: math.unit(2.66, "feet"),
  22676. name: "Maw (Side)",
  22677. image: {
  22678. source: "./media/characters/zost/maw-side.svg"
  22679. }
  22680. },
  22681. wingspan: {
  22682. height: math.unit(7.4, "feet"),
  22683. name: "Wingspan",
  22684. image: {
  22685. source: "./media/characters/zost/wingspan.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(10, "feet"),
  22693. default: true
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(5 + 4 / 12, "feet"),
  22702. weight: math.unit(120, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/luci/front.svg",
  22706. extra: 1985 / 1884,
  22707. bottom: 0.04
  22708. }
  22709. },
  22710. back: {
  22711. height: math.unit(5 + 4 / 12, "feet"),
  22712. weight: math.unit(120, "lb"),
  22713. name: "Back",
  22714. image: {
  22715. source: "./media/characters/luci/back.svg",
  22716. extra: 1892 / 1791,
  22717. bottom: 0.002
  22718. }
  22719. },
  22720. },
  22721. [
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(5 + 4 / 12, "feet"),
  22725. default: true
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22731. {
  22732. front: {
  22733. height: math.unit(1500, "feet"),
  22734. weight: math.unit(3.8e6, "tons"),
  22735. name: "Front",
  22736. image: {
  22737. source: "./media/characters/2th/front.svg",
  22738. extra: 3489 / 3350,
  22739. bottom: 0.1
  22740. }
  22741. },
  22742. foot: {
  22743. height: math.unit(461, "feet"),
  22744. name: "Foot",
  22745. image: {
  22746. source: "./media/characters/2th/foot.svg"
  22747. }
  22748. },
  22749. },
  22750. [
  22751. {
  22752. name: "\"Micro\"",
  22753. height: math.unit(15 + 7 / 12, "feet")
  22754. },
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(1500, "feet"),
  22758. default: true
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(5000, "feet")
  22763. },
  22764. {
  22765. name: "Megamacro",
  22766. height: math.unit(15, "miles")
  22767. },
  22768. {
  22769. name: "Gigamacro",
  22770. height: math.unit(4000, "miles")
  22771. },
  22772. {
  22773. name: "Galactic",
  22774. height: math.unit(50, "AU")
  22775. },
  22776. ]
  22777. ))
  22778. characterMakers.push(() => makeCharacter(
  22779. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22780. {
  22781. front: {
  22782. height: math.unit(5 + 6 / 12, "feet"),
  22783. weight: math.unit(220, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/amethyst/front.svg",
  22787. extra: 2078 / 2040,
  22788. bottom: 0.045
  22789. }
  22790. },
  22791. back: {
  22792. height: math.unit(5 + 6 / 12, "feet"),
  22793. weight: math.unit(220, "lb"),
  22794. name: "Back",
  22795. image: {
  22796. source: "./media/characters/amethyst/back.svg",
  22797. extra: 2021 / 1989,
  22798. bottom: 0.02
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(5 + 6 / 12, "feet"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(4 + 11 / 12, "feet"),
  22815. weight: math.unit(120, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/yumi-akiyama/front.svg",
  22819. extra: 1327 / 1235,
  22820. bottom: 0.02
  22821. }
  22822. },
  22823. back: {
  22824. height: math.unit(4 + 11 / 12, "feet"),
  22825. weight: math.unit(120, "lb"),
  22826. name: "Back",
  22827. image: {
  22828. source: "./media/characters/yumi-akiyama/back.svg",
  22829. extra: 1287 / 1245,
  22830. bottom: 0.002
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Galactic",
  22837. height: math.unit(50, "galaxies"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Universal",
  22842. height: math.unit(100, "universes")
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(8, "feet"),
  22851. weight: math.unit(500, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/rifter-yrmori/front.svg",
  22855. extra: 1180 / 1125,
  22856. bottom: 0.02
  22857. }
  22858. },
  22859. back: {
  22860. height: math.unit(8, "feet"),
  22861. weight: math.unit(500, "lb"),
  22862. name: "Back",
  22863. image: {
  22864. source: "./media/characters/rifter-yrmori/back.svg",
  22865. extra: 1190 / 1145,
  22866. bottom: 0.001
  22867. }
  22868. },
  22869. wings: {
  22870. height: math.unit(7.75, "feet"),
  22871. weight: math.unit(500, "lb"),
  22872. name: "Wings",
  22873. image: {
  22874. source: "./media/characters/rifter-yrmori/wings.svg",
  22875. extra: 1357 / 1285
  22876. }
  22877. },
  22878. maw: {
  22879. height: math.unit(0.8, "feet"),
  22880. name: "Maw",
  22881. image: {
  22882. source: "./media/characters/rifter-yrmori/maw.svg"
  22883. }
  22884. },
  22885. mawfront: {
  22886. height: math.unit(1.45, "feet"),
  22887. name: "Maw (Front)",
  22888. image: {
  22889. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(8, "feet"),
  22897. default: true
  22898. },
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(42, "meters")
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22907. {
  22908. were: {
  22909. height: math.unit(25 + 6 / 12, "feet"),
  22910. weight: math.unit(10000, "lb"),
  22911. name: "Were",
  22912. image: {
  22913. source: "./media/characters/tahajin/were.svg",
  22914. extra: 801 / 770,
  22915. bottom: 0.042
  22916. }
  22917. },
  22918. aquatic: {
  22919. height: math.unit(6 + 4 / 12, "feet"),
  22920. weight: math.unit(160, "lb"),
  22921. name: "Aquatic",
  22922. image: {
  22923. source: "./media/characters/tahajin/aquatic.svg",
  22924. extra: 572 / 542,
  22925. bottom: 0.04
  22926. }
  22927. },
  22928. chow: {
  22929. height: math.unit(8 + 11 / 12, "feet"),
  22930. weight: math.unit(450, "lb"),
  22931. name: "Chow",
  22932. image: {
  22933. source: "./media/characters/tahajin/chow.svg",
  22934. extra: 660 / 640,
  22935. bottom: 0.015
  22936. }
  22937. },
  22938. demiNaga: {
  22939. height: math.unit(6 + 8 / 12, "feet"),
  22940. weight: math.unit(300, "lb"),
  22941. name: "Demi Naga",
  22942. image: {
  22943. source: "./media/characters/tahajin/demi-naga.svg",
  22944. extra: 643 / 615,
  22945. bottom: 0.1
  22946. }
  22947. },
  22948. data: {
  22949. height: math.unit(5, "inches"),
  22950. weight: math.unit(0.1, "lb"),
  22951. name: "Data",
  22952. image: {
  22953. source: "./media/characters/tahajin/data.svg"
  22954. }
  22955. },
  22956. fluu: {
  22957. height: math.unit(5 + 7 / 12, "feet"),
  22958. weight: math.unit(140, "lb"),
  22959. name: "Fluu",
  22960. image: {
  22961. source: "./media/characters/tahajin/fluu.svg",
  22962. extra: 628 / 592,
  22963. bottom: 0.02
  22964. }
  22965. },
  22966. starWarrior: {
  22967. height: math.unit(4 + 5 / 12, "feet"),
  22968. weight: math.unit(50, "lb"),
  22969. name: "Star Warrior",
  22970. image: {
  22971. source: "./media/characters/tahajin/star-warrior.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Normal",
  22978. height: math.unit(25 + 6 / 12, "feet"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(8, "feet"),
  22988. weight: math.unit(350, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/gabira/front.svg",
  22992. extra: 1261/1154,
  22993. bottom: 51/1312
  22994. }
  22995. },
  22996. back: {
  22997. height: math.unit(8, "feet"),
  22998. weight: math.unit(350, "lb"),
  22999. name: "Back",
  23000. image: {
  23001. source: "./media/characters/gabira/back.svg",
  23002. extra: 1265/1163,
  23003. bottom: 46/1311
  23004. }
  23005. },
  23006. head: {
  23007. height: math.unit(2.85, "feet"),
  23008. name: "Head",
  23009. image: {
  23010. source: "./media/characters/gabira/head.svg"
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(8, "feet"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(5 + 3 / 12, "feet"),
  23027. weight: math.unit(137, "lb"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/sasha-katraine/front.svg",
  23031. extra: 1745/1694,
  23032. bottom: 37/1782
  23033. }
  23034. },
  23035. back: {
  23036. height: math.unit(5 + 3 / 12, "feet"),
  23037. weight: math.unit(137, "lb"),
  23038. name: "Back",
  23039. image: {
  23040. source: "./media/characters/sasha-katraine/back.svg",
  23041. extra: 1776/1699,
  23042. bottom: 26/1802
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Micro",
  23049. height: math.unit(5, "inches")
  23050. },
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(5 + 3 / 12, "feet"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23060. {
  23061. side: {
  23062. height: math.unit(4, "inches"),
  23063. weight: math.unit(200, "grams"),
  23064. name: "Side",
  23065. image: {
  23066. source: "./media/characters/der/side.svg",
  23067. extra: 719 / 400,
  23068. bottom: 30.6 / 749.9187
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Micro",
  23075. height: math.unit(4, "inches"),
  23076. default: true
  23077. },
  23078. ]
  23079. ))
  23080. characterMakers.push(() => makeCharacter(
  23081. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23082. {
  23083. side: {
  23084. height: math.unit(30, "meters"),
  23085. weight: math.unit(700, "tonnes"),
  23086. name: "Side",
  23087. image: {
  23088. source: "./media/characters/fixerdragon/side.svg",
  23089. extra: (1293.0514 - 116.03) / 1106.86,
  23090. bottom: 116.03 / 1293.0514
  23091. }
  23092. },
  23093. },
  23094. [
  23095. {
  23096. name: "Planck",
  23097. height: math.unit(1.6e-35, "meters")
  23098. },
  23099. {
  23100. name: "Micro",
  23101. height: math.unit(0.4, "meters")
  23102. },
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(30, "meters"),
  23106. default: true
  23107. },
  23108. {
  23109. name: "Megamacro",
  23110. height: math.unit(1.2, "megameters")
  23111. },
  23112. {
  23113. name: "Teramacro",
  23114. height: math.unit(130, "terameters")
  23115. },
  23116. {
  23117. name: "Yottamacro",
  23118. height: math.unit(6200, "yottameters")
  23119. },
  23120. ]
  23121. ));
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(8, "feet"),
  23127. weight: math.unit(250, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/kite/front.svg",
  23131. extra: 2796 / 2659,
  23132. bottom: 0.002
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(8, "feet"),
  23140. default: true
  23141. },
  23142. {
  23143. name: "Macro",
  23144. height: math.unit(360, "feet")
  23145. },
  23146. {
  23147. name: "Megamacro",
  23148. height: math.unit(1500, "feet")
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23154. {
  23155. front: {
  23156. height: math.unit(5 + 11/12, "feet"),
  23157. weight: math.unit(170, "lb"),
  23158. name: "Front",
  23159. image: {
  23160. source: "./media/characters/poojawa-vynar/front.svg",
  23161. extra: 1735/1585,
  23162. bottom: 96/1831
  23163. }
  23164. },
  23165. back: {
  23166. height: math.unit(5 + 11/12, "feet"),
  23167. weight: math.unit(170, "lb"),
  23168. name: "Back",
  23169. image: {
  23170. source: "./media/characters/poojawa-vynar/back.svg",
  23171. extra: 1749/1607,
  23172. bottom: 28/1777
  23173. }
  23174. },
  23175. male: {
  23176. height: math.unit(5 + 11/12, "feet"),
  23177. weight: math.unit(170, "lb"),
  23178. name: "Male",
  23179. image: {
  23180. source: "./media/characters/poojawa-vynar/male.svg",
  23181. extra: 1855/1713,
  23182. bottom: 63/1918
  23183. }
  23184. },
  23185. taur: {
  23186. height: math.unit(5 + 11/12, "feet"),
  23187. weight: math.unit(170, "lb"),
  23188. name: "Taur",
  23189. image: {
  23190. source: "./media/characters/poojawa-vynar/taur.svg",
  23191. extra: 1151/1059,
  23192. bottom: 356/1507
  23193. }
  23194. },
  23195. frontDressed: {
  23196. height: math.unit(5 + 11/12, "feet"),
  23197. weight: math.unit(170, "lb"),
  23198. name: "Front (Dressed)",
  23199. image: {
  23200. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23201. extra: 1735/1585,
  23202. bottom: 96/1831
  23203. }
  23204. },
  23205. backDressed: {
  23206. height: math.unit(5 + 11/12, "feet"),
  23207. weight: math.unit(170, "lb"),
  23208. name: "Back (Dressed)",
  23209. image: {
  23210. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23211. extra: 1749/1607,
  23212. bottom: 28/1777
  23213. }
  23214. },
  23215. maleDressed: {
  23216. height: math.unit(5 + 11/12, "feet"),
  23217. weight: math.unit(170, "lb"),
  23218. name: "Male (Dressed)",
  23219. image: {
  23220. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23221. extra: 1855/1713,
  23222. bottom: 63/1918
  23223. }
  23224. },
  23225. taurDressed: {
  23226. height: math.unit(5 + 11/12, "feet"),
  23227. weight: math.unit(170, "lb"),
  23228. name: "Taur (Dressed)",
  23229. image: {
  23230. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23231. extra: 1151/1059,
  23232. bottom: 356/1507
  23233. }
  23234. },
  23235. maw: {
  23236. height: math.unit(1.46, "feet"),
  23237. name: "Maw",
  23238. image: {
  23239. source: "./media/characters/poojawa-vynar/maw.svg"
  23240. }
  23241. },
  23242. head: {
  23243. height: math.unit(2.34, "feet"),
  23244. name: "Head",
  23245. image: {
  23246. source: "./media/characters/poojawa-vynar/head.svg"
  23247. }
  23248. },
  23249. paw: {
  23250. height: math.unit(1.61, "feet"),
  23251. name: "Paw",
  23252. image: {
  23253. source: "./media/characters/poojawa-vynar/paw.svg"
  23254. }
  23255. },
  23256. pawToering: {
  23257. height: math.unit(1.72, "feet"),
  23258. name: "Paw (Toering)",
  23259. image: {
  23260. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23261. }
  23262. },
  23263. toering: {
  23264. height: math.unit(2.9, "inches"),
  23265. name: "Toering",
  23266. image: {
  23267. source: "./media/characters/poojawa-vynar/toering.svg"
  23268. }
  23269. },
  23270. shaft: {
  23271. height: math.unit(0.625, "feet"),
  23272. name: "Shaft",
  23273. image: {
  23274. source: "./media/characters/poojawa-vynar/shaft.svg"
  23275. }
  23276. },
  23277. spade: {
  23278. height: math.unit(0.42, "feet"),
  23279. name: "Spade",
  23280. image: {
  23281. source: "./media/characters/poojawa-vynar/spade.svg"
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Shortstack",
  23288. height: math.unit(4, "feet")
  23289. },
  23290. {
  23291. name: "Normal",
  23292. height: math.unit(5 + 11 / 12, "feet"),
  23293. default: true
  23294. },
  23295. {
  23296. name: "Tauric",
  23297. height: math.unit(4, "meters")
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(293, "meters"),
  23306. weight: math.unit(70400, "tons"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/violette/front.svg",
  23310. extra: 1227 / 1180,
  23311. bottom: 0.005
  23312. }
  23313. },
  23314. back: {
  23315. height: math.unit(293, "meters"),
  23316. weight: math.unit(70400, "tons"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/violette/back.svg",
  23320. extra: 1227 / 1180,
  23321. bottom: 0.005
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(293, "meters"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(1050, "feet"),
  23338. weight: math.unit(200000, "tons"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/alessandra/front.svg",
  23342. extra: 960 / 912,
  23343. bottom: 0.06
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Macro",
  23350. height: math.unit(1050, "feet")
  23351. },
  23352. {
  23353. name: "Macro+",
  23354. height: math.unit(900, "meters"),
  23355. default: true
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(5, "feet"),
  23364. weight: math.unit(187, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/person/front.svg",
  23368. extra: 3087 / 2945,
  23369. bottom: 91 / 3181
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Micro",
  23376. height: math.unit(3, "inches")
  23377. },
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(90, "feet")
  23386. },
  23387. {
  23388. name: "Max Size",
  23389. height: math.unit(280, "feet")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(4.5, "meters"),
  23398. weight: math.unit(3200, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/ty/front.svg",
  23402. extra: 1038 / 960,
  23403. bottom: 31.156 / 1068
  23404. }
  23405. },
  23406. back: {
  23407. height: math.unit(4.5, "meters"),
  23408. weight: math.unit(3200, "lb"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/ty/back.svg",
  23412. extra: 1044 / 966,
  23413. bottom: 7.48 / 1049
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Normal",
  23420. height: math.unit(4.5, "meters"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(5 + 4 / 12, "feet"),
  23430. weight: math.unit(115, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/rocky/front.svg",
  23434. extra: 1012 / 975,
  23435. bottom: 54 / 1066
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Normal",
  23442. height: math.unit(5 + 4 / 12, "feet"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23449. {
  23450. upright: {
  23451. height: math.unit(6, "meters"),
  23452. weight: math.unit(4000, "kg"),
  23453. name: "Upright",
  23454. image: {
  23455. source: "./media/characters/ruin/upright.svg",
  23456. extra: 668 / 661,
  23457. bottom: 42 / 799.8396
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Normal",
  23464. height: math.unit(6, "meters"),
  23465. default: true
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23471. {
  23472. front: {
  23473. height: math.unit(5, "feet"),
  23474. weight: math.unit(106, "lb"),
  23475. name: "Front",
  23476. image: {
  23477. source: "./media/characters/robin/front.svg",
  23478. extra: 862 / 799,
  23479. bottom: 42.4 / 914.8856
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(5, "feet"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23493. {
  23494. side: {
  23495. height: math.unit(3, "feet"),
  23496. weight: math.unit(225, "lb"),
  23497. name: "Side",
  23498. image: {
  23499. source: "./media/characters/saian/side.svg",
  23500. extra: 566 / 356,
  23501. bottom: 79.7 / 643
  23502. }
  23503. },
  23504. maw: {
  23505. height: math.unit(2.85, "feet"),
  23506. name: "Maw",
  23507. image: {
  23508. source: "./media/characters/saian/maw.svg"
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Normal",
  23515. height: math.unit(3, "feet"),
  23516. default: true
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23522. {
  23523. side: {
  23524. height: math.unit(8, "feet"),
  23525. weight: math.unit(300, "lb"),
  23526. name: "Side",
  23527. image: {
  23528. source: "./media/characters/equus-silvermane/side.svg",
  23529. extra: 2176 / 2050,
  23530. bottom: 65.7 / 2245
  23531. }
  23532. },
  23533. front: {
  23534. height: math.unit(8, "feet"),
  23535. weight: math.unit(300, "lb"),
  23536. name: "Front",
  23537. image: {
  23538. source: "./media/characters/equus-silvermane/front.svg",
  23539. extra: 4633 / 4400,
  23540. bottom: 71.3 / 4706.915
  23541. }
  23542. },
  23543. sideStepping: {
  23544. height: math.unit(8, "feet"),
  23545. weight: math.unit(300, "lb"),
  23546. name: "Side (Stepping)",
  23547. image: {
  23548. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23549. extra: 1968 / 1860,
  23550. bottom: 16.4 / 1989
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(8, "feet")
  23558. },
  23559. {
  23560. name: "Minimacro",
  23561. height: math.unit(75, "feet"),
  23562. default: true
  23563. },
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(150, "feet")
  23567. },
  23568. {
  23569. name: "Macro+",
  23570. height: math.unit(1000, "feet")
  23571. },
  23572. {
  23573. name: "Megamacro",
  23574. height: math.unit(1, "mile")
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23580. {
  23581. side: {
  23582. height: math.unit(20, "feet"),
  23583. weight: math.unit(30000, "kg"),
  23584. name: "Side",
  23585. image: {
  23586. source: "./media/characters/windar/side.svg",
  23587. extra: 1491 / 1248,
  23588. bottom: 82.56 / 1568
  23589. }
  23590. },
  23591. },
  23592. [
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(20, "feet"),
  23596. default: true
  23597. },
  23598. ]
  23599. ))
  23600. characterMakers.push(() => makeCharacter(
  23601. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23602. {
  23603. side: {
  23604. height: math.unit(15.66, "feet"),
  23605. weight: math.unit(150, "lb"),
  23606. name: "Side",
  23607. image: {
  23608. source: "./media/characters/melody/side.svg",
  23609. extra: 1097 / 944,
  23610. bottom: 11.8 / 1109
  23611. }
  23612. },
  23613. sideOutfit: {
  23614. height: math.unit(15.66, "feet"),
  23615. weight: math.unit(150, "lb"),
  23616. name: "Side (Outfit)",
  23617. image: {
  23618. source: "./media/characters/melody/side-outfit.svg",
  23619. extra: 1097 / 944,
  23620. bottom: 11.8 / 1109
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(15.66, "feet"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23634. {
  23635. armoredFront: {
  23636. height: math.unit(8, "feet"),
  23637. weight: math.unit(325, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/windera/armored-front.svg",
  23641. extra: 1830/1598,
  23642. bottom: 151/1981
  23643. },
  23644. form: "armored",
  23645. default: true
  23646. },
  23647. macroFront: {
  23648. height: math.unit(70, "feet"),
  23649. weight: math.unit(315453, "lb"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/windera/macro-front.svg",
  23653. extra: 963/883,
  23654. bottom: 23/986
  23655. },
  23656. form: "macro",
  23657. default: true
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(8, "feet"),
  23664. default: true,
  23665. form: "armored"
  23666. },
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(70, "feet"),
  23670. default: true,
  23671. form: "macro"
  23672. },
  23673. ],
  23674. {
  23675. "armored": {
  23676. name: "Armored",
  23677. default: true
  23678. },
  23679. "macro": {
  23680. name: "Macro",
  23681. },
  23682. }
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23686. {
  23687. front: {
  23688. height: math.unit(28.75, "feet"),
  23689. weight: math.unit(2000, "kg"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/sonear/front.svg",
  23693. extra: 1041.1 / 964.9,
  23694. bottom: 53.7 / 1096.6
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(28.75, "feet"),
  23702. default: true
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23708. {
  23709. side: {
  23710. height: math.unit(25.5, "feet"),
  23711. weight: math.unit(23000, "kg"),
  23712. name: "Side",
  23713. image: {
  23714. source: "./media/characters/kanara/side.svg"
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(25.5, "feet"),
  23722. default: true
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23728. {
  23729. side: {
  23730. height: math.unit(10, "feet"),
  23731. weight: math.unit(1000, "kg"),
  23732. name: "Side",
  23733. image: {
  23734. source: "./media/characters/ereus/side.svg",
  23735. extra: 1157 / 959,
  23736. bottom: 153 / 1312.5
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(10, "feet"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23750. {
  23751. side: {
  23752. height: math.unit(4.5, "feet"),
  23753. weight: math.unit(500, "lb"),
  23754. name: "Side",
  23755. image: {
  23756. source: "./media/characters/e-ter/side.svg",
  23757. extra: 1550 / 1248,
  23758. bottom: 146 / 1694
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(4.5, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23772. {
  23773. side: {
  23774. height: math.unit(9.7, "feet"),
  23775. weight: math.unit(4000, "kg"),
  23776. name: "Side",
  23777. image: {
  23778. source: "./media/characters/yamie/side.svg"
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(9.7, "feet"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23792. {
  23793. front: {
  23794. height: math.unit(50, "feet"),
  23795. weight: math.unit(50000, "kg"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/anders/front.svg",
  23799. extra: 570 / 539,
  23800. bottom: 14.7 / 586.7
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Large",
  23807. height: math.unit(50, "feet")
  23808. },
  23809. {
  23810. name: "Macro",
  23811. height: math.unit(2000, "feet"),
  23812. default: true
  23813. },
  23814. {
  23815. name: "Megamacro",
  23816. height: math.unit(12, "miles")
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23822. {
  23823. front: {
  23824. height: math.unit(7 + 2 / 12, "feet"),
  23825. weight: math.unit(300, "lb"),
  23826. name: "Front",
  23827. image: {
  23828. source: "./media/characters/reban/front.svg",
  23829. extra: 1287/1212,
  23830. bottom: 148/1435
  23831. }
  23832. },
  23833. head: {
  23834. height: math.unit(1.95, "feet"),
  23835. name: "Head",
  23836. image: {
  23837. source: "./media/characters/reban/head.svg"
  23838. }
  23839. },
  23840. maw: {
  23841. height: math.unit(0.95, "feet"),
  23842. name: "Maw",
  23843. image: {
  23844. source: "./media/characters/reban/maw.svg"
  23845. }
  23846. },
  23847. foot: {
  23848. height: math.unit(1.65, "feet"),
  23849. name: "Foot",
  23850. image: {
  23851. source: "./media/characters/reban/foot.svg"
  23852. }
  23853. },
  23854. dick: {
  23855. height: math.unit(7 / 5, "feet"),
  23856. name: "Dick",
  23857. image: {
  23858. source: "./media/characters/reban/dick.svg"
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Natural Height",
  23865. height: math.unit(7 + 2 / 12, "feet")
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(500, "feet"),
  23870. default: true
  23871. },
  23872. {
  23873. name: "Canon Height",
  23874. height: math.unit(50, "AU")
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(6, "feet"),
  23883. weight: math.unit(150, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/terrance-keayes/front.svg",
  23887. extra: 1.005,
  23888. bottom: 151 / 1615
  23889. }
  23890. },
  23891. side: {
  23892. height: math.unit(6, "feet"),
  23893. weight: math.unit(150, "lb"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/terrance-keayes/side.svg",
  23897. extra: 1.005,
  23898. bottom: 129.4 / 1544
  23899. }
  23900. },
  23901. back: {
  23902. height: math.unit(6, "feet"),
  23903. weight: math.unit(150, "lb"),
  23904. name: "Back",
  23905. image: {
  23906. source: "./media/characters/terrance-keayes/back.svg",
  23907. extra: 1.005,
  23908. bottom: 58.4 / 1557.3
  23909. }
  23910. },
  23911. dick: {
  23912. height: math.unit(6 * 0.208, "feet"),
  23913. name: "Dick",
  23914. image: {
  23915. source: "./media/characters/terrance-keayes/dick.svg"
  23916. }
  23917. },
  23918. },
  23919. [
  23920. {
  23921. name: "Canon Height",
  23922. height: math.unit(35, "miles"),
  23923. default: true
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(6, "feet"),
  23932. weight: math.unit(150, "lb"),
  23933. name: "Front",
  23934. image: {
  23935. source: "./media/characters/ofelia/front.svg",
  23936. extra: 1130/1117,
  23937. bottom: 91/1221
  23938. }
  23939. },
  23940. back: {
  23941. height: math.unit(6, "feet"),
  23942. weight: math.unit(150, "lb"),
  23943. name: "Back",
  23944. image: {
  23945. source: "./media/characters/ofelia/back.svg",
  23946. extra: 1172/1159,
  23947. bottom: 28/1200
  23948. }
  23949. },
  23950. maw: {
  23951. height: math.unit(1, "feet"),
  23952. name: "Maw",
  23953. image: {
  23954. source: "./media/characters/ofelia/maw.svg"
  23955. }
  23956. },
  23957. foot: {
  23958. height: math.unit(1.949, "feet"),
  23959. name: "Foot",
  23960. image: {
  23961. source: "./media/characters/ofelia/foot.svg"
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Canon Height",
  23968. height: math.unit(2000, "miles"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23975. {
  23976. front: {
  23977. height: math.unit(6, "feet"),
  23978. weight: math.unit(150, "lb"),
  23979. name: "Front",
  23980. image: {
  23981. source: "./media/characters/samuel/front.svg",
  23982. extra: 265 / 258,
  23983. bottom: 2 / 266.1566
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Macro",
  23990. height: math.unit(100, "feet"),
  23991. default: true
  23992. },
  23993. {
  23994. name: "Full Size",
  23995. height: math.unit(1000, "miles")
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(6, "feet"),
  24004. weight: math.unit(300, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/beishir-kiel/front.svg",
  24008. extra: 569 / 547,
  24009. bottom: 41.9 / 609
  24010. }
  24011. },
  24012. maw: {
  24013. height: math.unit(6 * 0.202, "feet"),
  24014. name: "Maw",
  24015. image: {
  24016. source: "./media/characters/beishir-kiel/maw.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(300, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(5 + 7/12, "feet"),
  24033. weight: math.unit(120, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/logan-grey/front.svg",
  24037. extra: 1836/1738,
  24038. bottom: 108/1944
  24039. }
  24040. },
  24041. back: {
  24042. height: math.unit(5 + 7/12, "feet"),
  24043. weight: math.unit(120, "lb"),
  24044. name: "Back",
  24045. image: {
  24046. source: "./media/characters/logan-grey/back.svg",
  24047. extra: 1880/1794,
  24048. bottom: 24/1904
  24049. }
  24050. },
  24051. frontSfw: {
  24052. height: math.unit(5 + 7/12, "feet"),
  24053. weight: math.unit(120, "lb"),
  24054. name: "Front (SFW)",
  24055. image: {
  24056. source: "./media/characters/logan-grey/front-sfw.svg",
  24057. extra: 1836/1738,
  24058. bottom: 108/1944
  24059. }
  24060. },
  24061. backSfw: {
  24062. height: math.unit(5 + 7/12, "feet"),
  24063. weight: math.unit(120, "lb"),
  24064. name: "Back (SFW)",
  24065. image: {
  24066. source: "./media/characters/logan-grey/back-sfw.svg",
  24067. extra: 1880/1794,
  24068. bottom: 24/1904
  24069. }
  24070. },
  24071. hands: {
  24072. height: math.unit(0.84, "feet"),
  24073. name: "Hands",
  24074. image: {
  24075. source: "./media/characters/logan-grey/hands.svg"
  24076. }
  24077. },
  24078. paws: {
  24079. height: math.unit(0.72, "feet"),
  24080. name: "Paws",
  24081. image: {
  24082. source: "./media/characters/logan-grey/paws.svg"
  24083. }
  24084. },
  24085. cock: {
  24086. height: math.unit(1.45, "feet"),
  24087. name: "Cock",
  24088. image: {
  24089. source: "./media/characters/logan-grey/cock.svg"
  24090. }
  24091. },
  24092. cockAlt: {
  24093. height: math.unit(1.437, "feet"),
  24094. name: "Cock (alt)",
  24095. image: {
  24096. source: "./media/characters/logan-grey/cock-alt.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(5 + 8 / 12, "feet")
  24104. },
  24105. {
  24106. name: "The 500 Foot Femboy",
  24107. height: math.unit(500, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Megmacro",
  24112. height: math.unit(20, "miles")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(8 + 2 / 12, "feet"),
  24121. weight: math.unit(275, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/draganta/front.svg",
  24125. extra: 1177 / 1135,
  24126. bottom: 33.46 / 1212.1
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(8 + 6 / 12, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(150, "feet")
  24139. },
  24140. {
  24141. name: "Megamacro",
  24142. height: math.unit(1000, "miles")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(1.72, "m"),
  24151. weight: math.unit(80, "lb"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/voski/front.svg",
  24155. extra: 2076.22 / 2022.4,
  24156. bottom: 102.7 / 2177.3866
  24157. }
  24158. },
  24159. frontFlaccid: {
  24160. height: math.unit(1.72, "m"),
  24161. weight: math.unit(80, "lb"),
  24162. name: "Front (Flaccid)",
  24163. image: {
  24164. source: "./media/characters/voski/front-flaccid.svg",
  24165. extra: 2076.22 / 2022.4,
  24166. bottom: 102.7 / 2177.3866
  24167. }
  24168. },
  24169. frontErect: {
  24170. height: math.unit(1.72, "m"),
  24171. weight: math.unit(80, "lb"),
  24172. name: "Front (Erect)",
  24173. image: {
  24174. source: "./media/characters/voski/front-erect.svg",
  24175. extra: 2076.22 / 2022.4,
  24176. bottom: 102.7 / 2177.3866
  24177. }
  24178. },
  24179. back: {
  24180. height: math.unit(1.72, "m"),
  24181. weight: math.unit(80, "lb"),
  24182. name: "Back",
  24183. image: {
  24184. source: "./media/characters/voski/back.svg",
  24185. extra: 2104 / 2051,
  24186. bottom: 10.45 / 2113.63
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(1.72, "m")
  24194. },
  24195. {
  24196. name: "Macro",
  24197. height: math.unit(55, "m"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Macro+",
  24202. height: math.unit(300, "m")
  24203. },
  24204. {
  24205. name: "Macro++",
  24206. height: math.unit(700, "m")
  24207. },
  24208. {
  24209. name: "Macro+++",
  24210. height: math.unit(4500, "m")
  24211. },
  24212. {
  24213. name: "Macro++++",
  24214. height: math.unit(45, "km")
  24215. },
  24216. {
  24217. name: "Macro+++++",
  24218. height: math.unit(1220, "km")
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(2.3, "m"),
  24227. weight: math.unit(304, "kg"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/icowom-lee/front.svg",
  24231. extra: 985 / 955,
  24232. bottom: 25.4 / 1012
  24233. }
  24234. },
  24235. fronttentacles: {
  24236. height: math.unit(2.3, "m"),
  24237. weight: math.unit(304, "kg"),
  24238. name: "Front-tentacles",
  24239. image: {
  24240. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24241. extra: 985 / 955,
  24242. bottom: 25.4 / 1012
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(2.3, "m"),
  24247. weight: math.unit(304, "kg"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/icowom-lee/back.svg",
  24251. extra: 975 / 954,
  24252. bottom: 9.5 / 985
  24253. }
  24254. },
  24255. backtentacles: {
  24256. height: math.unit(2.3, "m"),
  24257. weight: math.unit(304, "kg"),
  24258. name: "Back-tentacles",
  24259. image: {
  24260. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24261. extra: 975 / 954,
  24262. bottom: 9.5 / 985
  24263. }
  24264. },
  24265. frontDressed: {
  24266. height: math.unit(2.3, "m"),
  24267. weight: math.unit(304, "kg"),
  24268. name: "Front (Dressed)",
  24269. image: {
  24270. source: "./media/characters/icowom-lee/front-dressed.svg",
  24271. extra: 3076 / 2933,
  24272. bottom: 51.4 / 3125.1889
  24273. }
  24274. },
  24275. rump: {
  24276. height: math.unit(0.776, "meters"),
  24277. name: "Rump",
  24278. image: {
  24279. source: "./media/characters/icowom-lee/rump.svg"
  24280. }
  24281. },
  24282. genitals: {
  24283. height: math.unit(0.78, "meters"),
  24284. name: "Genitals",
  24285. image: {
  24286. source: "./media/characters/icowom-lee/genitals.svg"
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(2.3, "meters"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(94, "meters"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(22, "meters"),
  24308. weight: math.unit(21000, "kg"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/shock-diamond/front.svg",
  24312. extra: 2204 / 2053,
  24313. bottom: 65 / 2239.47
  24314. }
  24315. },
  24316. frontNude: {
  24317. height: math.unit(22, "meters"),
  24318. weight: math.unit(21000, "kg"),
  24319. name: "Front (Nude)",
  24320. image: {
  24321. source: "./media/characters/shock-diamond/front-nude.svg",
  24322. extra: 2514 / 2285,
  24323. bottom: 13 / 2527.56
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(3, "meters")
  24331. },
  24332. {
  24333. name: "Macro",
  24334. height: math.unit(22, "meters"),
  24335. default: true
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24341. {
  24342. front: {
  24343. height: math.unit(5 + 4/12, "feet"),
  24344. weight: math.unit(125, "lb"),
  24345. name: "Front",
  24346. image: {
  24347. source: "./media/characters/rory/front.svg",
  24348. extra: 1790/1681,
  24349. bottom: 66/1856
  24350. }
  24351. },
  24352. back: {
  24353. height: math.unit(5 + 4/12, "feet"),
  24354. weight: math.unit(125, "lb"),
  24355. name: "Back",
  24356. image: {
  24357. source: "./media/characters/rory/back.svg",
  24358. extra: 1805/1690,
  24359. bottom: 56/1861
  24360. }
  24361. },
  24362. frontDressed: {
  24363. height: math.unit(5 + 4/12, "feet"),
  24364. weight: math.unit(125, "lb"),
  24365. name: "Front (Dressed)",
  24366. image: {
  24367. source: "./media/characters/rory/front-dressed.svg",
  24368. extra: 1790/1681,
  24369. bottom: 66/1856
  24370. }
  24371. },
  24372. backDressed: {
  24373. height: math.unit(5 + 4/12, "feet"),
  24374. weight: math.unit(125, "lb"),
  24375. name: "Back (Dressed)",
  24376. image: {
  24377. source: "./media/characters/rory/back-dressed.svg",
  24378. extra: 1805/1690,
  24379. bottom: 56/1861
  24380. }
  24381. },
  24382. frontNsfw: {
  24383. height: math.unit(5 + 4/12, "feet"),
  24384. weight: math.unit(125, "lb"),
  24385. name: "Front (NSFW)",
  24386. image: {
  24387. source: "./media/characters/rory/front-nsfw.svg",
  24388. extra: 1790/1681,
  24389. bottom: 66/1856
  24390. }
  24391. },
  24392. backNsfw: {
  24393. height: math.unit(5 + 4/12, "feet"),
  24394. weight: math.unit(125, "lb"),
  24395. name: "Back (NSFW)",
  24396. image: {
  24397. source: "./media/characters/rory/back-nsfw.svg",
  24398. extra: 1805/1690,
  24399. bottom: 56/1861
  24400. }
  24401. },
  24402. dick: {
  24403. height: math.unit(0.8, "feet"),
  24404. name: "Dick",
  24405. image: {
  24406. source: "./media/characters/rory/dick.svg"
  24407. }
  24408. },
  24409. },
  24410. [
  24411. {
  24412. name: "Micro",
  24413. height: math.unit(3, "inches")
  24414. },
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(5 + 4/12, "feet"),
  24418. default: true
  24419. },
  24420. {
  24421. name: "Macro",
  24422. height: math.unit(90, "feet")
  24423. },
  24424. {
  24425. name: "Supercharged",
  24426. height: math.unit(270, "feet")
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24432. {
  24433. front: {
  24434. height: math.unit(5 + 9 / 12, "feet"),
  24435. weight: math.unit(190, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/sprisk/front.svg",
  24439. extra: 1225 / 1180,
  24440. bottom: 42.7 / 1266.4
  24441. }
  24442. },
  24443. frontNsfw: {
  24444. height: math.unit(5 + 9 / 12, "feet"),
  24445. weight: math.unit(190, "lb"),
  24446. name: "Front (NSFW)",
  24447. image: {
  24448. source: "./media/characters/sprisk/front-nsfw.svg",
  24449. extra: 1225 / 1180,
  24450. bottom: 42.7 / 1266.4
  24451. }
  24452. },
  24453. back: {
  24454. height: math.unit(5 + 9 / 12, "feet"),
  24455. weight: math.unit(190, "lb"),
  24456. name: "Back",
  24457. image: {
  24458. source: "./media/characters/sprisk/back.svg",
  24459. extra: 1247 / 1200,
  24460. bottom: 5.6 / 1253.04
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Tiny",
  24467. height: math.unit(2, "inches")
  24468. },
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(5 + 9 / 12, "feet"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Mini Macro",
  24476. height: math.unit(18, "feet")
  24477. },
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(100, "feet")
  24481. },
  24482. {
  24483. name: "MACRO",
  24484. height: math.unit(50, "miles")
  24485. },
  24486. {
  24487. name: "M A C R O",
  24488. height: math.unit(300, "miles")
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24494. {
  24495. side: {
  24496. height: math.unit(15.6, "meters"),
  24497. weight: math.unit(700000, "kg"),
  24498. name: "Side",
  24499. image: {
  24500. source: "./media/characters/bunsen/side.svg",
  24501. extra: 1644 / 358
  24502. }
  24503. },
  24504. foot: {
  24505. height: math.unit(1.611 * 1644 / 358, "meter"),
  24506. name: "Foot",
  24507. image: {
  24508. source: "./media/characters/bunsen/foot.svg"
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Small",
  24515. height: math.unit(10, "feet")
  24516. },
  24517. {
  24518. name: "Normal",
  24519. height: math.unit(15.6, "meters"),
  24520. default: true
  24521. },
  24522. ]
  24523. ))
  24524. characterMakers.push(() => makeCharacter(
  24525. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24526. {
  24527. front: {
  24528. height: math.unit(4 + 11 / 12, "feet"),
  24529. weight: math.unit(140, "lb"),
  24530. name: "Front",
  24531. image: {
  24532. source: "./media/characters/sesh/front.svg",
  24533. extra: 3420 / 3231,
  24534. bottom: 72 / 3949.5
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(4 + 11 / 12, "feet")
  24542. },
  24543. {
  24544. name: "Grown",
  24545. height: math.unit(15, "feet"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Macro",
  24550. height: math.unit(1500, "feet")
  24551. },
  24552. {
  24553. name: "Megamacro",
  24554. height: math.unit(30, "miles")
  24555. },
  24556. {
  24557. name: "Continental",
  24558. height: math.unit(3000, "miles")
  24559. },
  24560. {
  24561. name: "Gravity Mass",
  24562. height: math.unit(300000, "miles")
  24563. },
  24564. {
  24565. name: "Planet Buster",
  24566. height: math.unit(30000000, "miles")
  24567. },
  24568. {
  24569. name: "Big",
  24570. height: math.unit(3000000000, "miles")
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(9, "feet"),
  24579. weight: math.unit(350, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/pepper/front.svg",
  24583. extra: 1448 / 1312,
  24584. bottom: 9.4 / 1457.88
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(9, "feet"),
  24589. weight: math.unit(350, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/pepper/back.svg",
  24593. extra: 1423 / 1300,
  24594. bottom: 4.6 / 1429
  24595. }
  24596. },
  24597. maw: {
  24598. height: math.unit(0.932, "feet"),
  24599. name: "Maw",
  24600. image: {
  24601. source: "./media/characters/pepper/maw.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(9, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(6, "feet"),
  24618. weight: math.unit(150, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/maelstrom/front.svg",
  24622. extra: 2100 / 1883,
  24623. bottom: 94 / 2196.7
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Less Kaiju",
  24630. height: math.unit(200, "feet")
  24631. },
  24632. {
  24633. name: "Kaiju",
  24634. height: math.unit(400, "feet"),
  24635. default: true
  24636. },
  24637. {
  24638. name: "Kaiju-er",
  24639. height: math.unit(600, "feet")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(6 + 5 / 12, "feet"),
  24648. weight: math.unit(180, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/lexir/front.svg",
  24652. extra: 180 / 172,
  24653. bottom: 12 / 192
  24654. }
  24655. },
  24656. back: {
  24657. height: math.unit(6 + 5 / 12, "feet"),
  24658. weight: math.unit(180, "lb"),
  24659. name: "Back",
  24660. image: {
  24661. source: "./media/characters/lexir/back.svg",
  24662. extra: 1273/1201,
  24663. bottom: 39/1312
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Very Smal",
  24670. height: math.unit(1, "nm")
  24671. },
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(6 + 5 / 12, "feet"),
  24675. default: true
  24676. },
  24677. {
  24678. name: "Macro",
  24679. height: math.unit(1, "mile")
  24680. },
  24681. {
  24682. name: "Megamacro",
  24683. height: math.unit(50, "miles")
  24684. },
  24685. ]
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24689. {
  24690. front: {
  24691. height: math.unit(1.5, "meters"),
  24692. weight: math.unit(100, "lb"),
  24693. name: "Front",
  24694. image: {
  24695. source: "./media/characters/maksio/front.svg",
  24696. extra: 1549 / 1531,
  24697. bottom: 123.7 / 1674.5429
  24698. }
  24699. },
  24700. back: {
  24701. height: math.unit(1.5, "meters"),
  24702. weight: math.unit(100, "lb"),
  24703. name: "Back",
  24704. image: {
  24705. source: "./media/characters/maksio/back.svg",
  24706. extra: 1541 / 1509,
  24707. bottom: 97 / 1639
  24708. }
  24709. },
  24710. hand: {
  24711. height: math.unit(0.621, "feet"),
  24712. name: "Hand",
  24713. image: {
  24714. source: "./media/characters/maksio/hand.svg"
  24715. }
  24716. },
  24717. foot: {
  24718. height: math.unit(1.611, "feet"),
  24719. name: "Foot",
  24720. image: {
  24721. source: "./media/characters/maksio/foot.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Shrunken",
  24728. height: math.unit(10, "cm")
  24729. },
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(150, "cm"),
  24733. default: true
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(100, "feet"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/erza-bear/front.svg",
  24745. extra: 2449 / 2390,
  24746. bottom: 46 / 2494
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(100, "feet"),
  24751. name: "Back",
  24752. image: {
  24753. source: "./media/characters/erza-bear/back.svg",
  24754. extra: 2489 / 2430,
  24755. bottom: 85.4 / 2480
  24756. }
  24757. },
  24758. tail: {
  24759. height: math.unit(42, "feet"),
  24760. name: "Tail",
  24761. image: {
  24762. source: "./media/characters/erza-bear/tail.svg"
  24763. }
  24764. },
  24765. tongue: {
  24766. height: math.unit(8, "feet"),
  24767. name: "Tongue",
  24768. image: {
  24769. source: "./media/characters/erza-bear/tongue.svg"
  24770. }
  24771. },
  24772. dick: {
  24773. height: math.unit(10.5, "feet"),
  24774. name: "Dick",
  24775. image: {
  24776. source: "./media/characters/erza-bear/dick.svg"
  24777. }
  24778. },
  24779. dickVertical: {
  24780. height: math.unit(16.9, "feet"),
  24781. name: "Dick (Vertical)",
  24782. image: {
  24783. source: "./media/characters/erza-bear/dick-vertical.svg"
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Macro",
  24790. height: math.unit(100, "feet"),
  24791. default: true
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24797. {
  24798. front: {
  24799. height: math.unit(172, "cm"),
  24800. weight: math.unit(73, "kg"),
  24801. name: "Front",
  24802. image: {
  24803. source: "./media/characters/violet-flor/front.svg",
  24804. extra: 1530 / 1442,
  24805. bottom: 61.9 / 1588.8
  24806. }
  24807. },
  24808. back: {
  24809. height: math.unit(180, "cm"),
  24810. weight: math.unit(73, "kg"),
  24811. name: "Back",
  24812. image: {
  24813. source: "./media/characters/violet-flor/back.svg",
  24814. extra: 1692 / 1630,
  24815. bottom: 20 / 1712
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(172, "cm"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(6, "feet"),
  24832. weight: math.unit(220, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/lynn-rhea/front.svg",
  24836. extra: 310 / 273
  24837. }
  24838. },
  24839. back: {
  24840. height: math.unit(6, "feet"),
  24841. weight: math.unit(220, "lb"),
  24842. name: "Back",
  24843. image: {
  24844. source: "./media/characters/lynn-rhea/back.svg",
  24845. extra: 310 / 273
  24846. }
  24847. },
  24848. dicks: {
  24849. height: math.unit(0.9, "feet"),
  24850. name: "Dicks",
  24851. image: {
  24852. source: "./media/characters/lynn-rhea/dicks.svg"
  24853. }
  24854. },
  24855. slit: {
  24856. height: math.unit(0.4, "feet"),
  24857. name: "Slit",
  24858. image: {
  24859. source: "./media/characters/lynn-rhea/slit.svg"
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Micro",
  24866. height: math.unit(1, "inch")
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(60, "feet"),
  24871. default: true
  24872. },
  24873. {
  24874. name: "Megamacro",
  24875. height: math.unit(2, "miles")
  24876. },
  24877. {
  24878. name: "Gigamacro",
  24879. height: math.unit(3, "earths")
  24880. },
  24881. {
  24882. name: "Galactic",
  24883. height: math.unit(0.8, "galaxies")
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24889. {
  24890. front: {
  24891. height: math.unit(1600, "feet"),
  24892. weight: math.unit(85758785169, "kg"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/valathos/front.svg",
  24896. extra: 1451 / 1339
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Macro",
  24903. height: math.unit(1600, "feet"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24910. {
  24911. front: {
  24912. height: math.unit(7 + 5 / 12, "feet"),
  24913. weight: math.unit(300, "lb"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/azula/front.svg",
  24917. extra: 3208 / 2880,
  24918. bottom: 80.2 / 3277
  24919. }
  24920. },
  24921. back: {
  24922. height: math.unit(7 + 5 / 12, "feet"),
  24923. weight: math.unit(300, "lb"),
  24924. name: "Back",
  24925. image: {
  24926. source: "./media/characters/azula/back.svg",
  24927. extra: 3169 / 2822,
  24928. bottom: 150.6 / 3321
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Normal",
  24935. height: math.unit(7 + 5 / 12, "feet"),
  24936. default: true
  24937. },
  24938. {
  24939. name: "Big",
  24940. height: math.unit(20, "feet")
  24941. },
  24942. ]
  24943. ))
  24944. characterMakers.push(() => makeCharacter(
  24945. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24946. {
  24947. front: {
  24948. height: math.unit(5 + 1 / 12, "feet"),
  24949. weight: math.unit(110, "lb"),
  24950. name: "Front",
  24951. image: {
  24952. source: "./media/characters/rupert/front.svg",
  24953. extra: 1549 / 1495,
  24954. bottom: 54.2 / 1604.4
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Normal",
  24961. height: math.unit(5 + 1 / 12, "feet"),
  24962. default: true
  24963. },
  24964. ]
  24965. ))
  24966. characterMakers.push(() => makeCharacter(
  24967. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24968. {
  24969. front: {
  24970. height: math.unit(8 + 4 / 12, "feet"),
  24971. weight: math.unit(350, "lb"),
  24972. name: "Front",
  24973. image: {
  24974. source: "./media/characters/sheera-castellar/front.svg",
  24975. extra: 1957 / 1894,
  24976. bottom: 26.97 / 1975.017
  24977. }
  24978. },
  24979. side: {
  24980. height: math.unit(8 + 4 / 12, "feet"),
  24981. weight: math.unit(350, "lb"),
  24982. name: "Side",
  24983. image: {
  24984. source: "./media/characters/sheera-castellar/side.svg",
  24985. extra: 1957 / 1894
  24986. }
  24987. },
  24988. back: {
  24989. height: math.unit(8 + 4 / 12, "feet"),
  24990. weight: math.unit(350, "lb"),
  24991. name: "Back",
  24992. image: {
  24993. source: "./media/characters/sheera-castellar/back.svg",
  24994. extra: 1957 / 1894
  24995. }
  24996. },
  24997. angled: {
  24998. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24999. weight: math.unit(350, "lb"),
  25000. name: "Angled",
  25001. image: {
  25002. source: "./media/characters/sheera-castellar/angled.svg",
  25003. extra: 1807 / 1707,
  25004. bottom: 68 / 1875
  25005. }
  25006. },
  25007. genitals: {
  25008. height: math.unit(2.2, "feet"),
  25009. name: "Genitals",
  25010. image: {
  25011. source: "./media/characters/sheera-castellar/genitals.svg"
  25012. }
  25013. },
  25014. taur: {
  25015. height: math.unit(10 + 6/12, "feet"),
  25016. name: "Taur",
  25017. image: {
  25018. source: "./media/characters/sheera-castellar/taur.svg",
  25019. extra: 2017/1909,
  25020. bottom: 185/2202
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(8 + 4 / 12, "feet")
  25028. },
  25029. {
  25030. name: "Macro",
  25031. height: math.unit(150, "feet"),
  25032. default: true
  25033. },
  25034. {
  25035. name: "Macro+",
  25036. height: math.unit(800, "feet")
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(6, "feet"),
  25045. weight: math.unit(150, "lb"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/jaipur/front.svg",
  25049. extra: 3860 / 3731,
  25050. bottom: 287 / 4140
  25051. }
  25052. },
  25053. back: {
  25054. height: math.unit(6, "feet"),
  25055. weight: math.unit(150, "lb"),
  25056. name: "Back",
  25057. image: {
  25058. source: "./media/characters/jaipur/back.svg",
  25059. extra: 1637/1561,
  25060. bottom: 154/1791
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(1.85, "meters"),
  25068. default: true
  25069. },
  25070. {
  25071. name: "Macro",
  25072. height: math.unit(150, "meters")
  25073. },
  25074. {
  25075. name: "Macro+",
  25076. height: math.unit(0.5, "miles")
  25077. },
  25078. {
  25079. name: "Macro++",
  25080. height: math.unit(2.5, "miles")
  25081. },
  25082. {
  25083. name: "Macro+++",
  25084. height: math.unit(12, "miles")
  25085. },
  25086. {
  25087. name: "Macro++++",
  25088. height: math.unit(120, "miles")
  25089. },
  25090. {
  25091. name: "Macro+++++",
  25092. height: math.unit(1200, "miles")
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25098. {
  25099. front: {
  25100. height: math.unit(6, "feet"),
  25101. weight: math.unit(150, "lb"),
  25102. name: "Front",
  25103. image: {
  25104. source: "./media/characters/sheila-wolf/front.svg",
  25105. extra: 1931 / 1808,
  25106. bottom: 29.5 / 1960
  25107. }
  25108. },
  25109. dick: {
  25110. height: math.unit(1.464, "feet"),
  25111. name: "Dick",
  25112. image: {
  25113. source: "./media/characters/sheila-wolf/dick.svg"
  25114. }
  25115. },
  25116. muzzle: {
  25117. height: math.unit(0.513, "feet"),
  25118. name: "Muzzle",
  25119. image: {
  25120. source: "./media/characters/sheila-wolf/muzzle.svg"
  25121. }
  25122. },
  25123. },
  25124. [
  25125. {
  25126. name: "Macro",
  25127. height: math.unit(70, "feet"),
  25128. default: true
  25129. },
  25130. ]
  25131. ))
  25132. characterMakers.push(() => makeCharacter(
  25133. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25134. {
  25135. front: {
  25136. height: math.unit(32, "meters"),
  25137. weight: math.unit(300000, "kg"),
  25138. name: "Front",
  25139. image: {
  25140. source: "./media/characters/almor/front.svg",
  25141. extra: 1408 / 1322,
  25142. bottom: 94.6 / 1506.5
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Macro",
  25149. height: math.unit(32, "meters"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(7, "feet"),
  25159. weight: math.unit(200, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/silver/front.svg",
  25163. extra: 472.1 / 450.5,
  25164. bottom: 26.5 / 499.424
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(7, "feet"),
  25172. default: true
  25173. },
  25174. {
  25175. name: "Macro",
  25176. height: math.unit(800, "feet")
  25177. },
  25178. {
  25179. name: "Megamacro",
  25180. height: math.unit(250, "miles")
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(6, "feet"),
  25189. weight: math.unit(150, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/pliskin/front.svg",
  25193. extra: 1469 / 1359,
  25194. bottom: 70 / 1540
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Micro",
  25201. height: math.unit(3, "inches")
  25202. },
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(5 + 11 / 12, "feet"),
  25206. default: true
  25207. },
  25208. {
  25209. name: "Macro",
  25210. height: math.unit(120, "feet")
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(6, "feet"),
  25219. weight: math.unit(150, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/sammy/front.svg",
  25223. extra: 1193 / 1089,
  25224. bottom: 30.5 / 1226
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Macro",
  25231. height: math.unit(1700, "feet"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Examacro",
  25236. height: math.unit(2.5e9, "lightyears")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(21, "meters"),
  25245. weight: math.unit(12, "tonnes"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/kuru/front.svg",
  25249. extra: 4301 / 3785,
  25250. bottom: 371.3 / 4691
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Macro",
  25257. height: math.unit(21, "meters"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(23, "meters"),
  25267. weight: math.unit(12.2, "tonnes"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/rakka/front.svg",
  25271. extra: 4670 / 4169,
  25272. bottom: 301 / 4968.7
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Macro",
  25279. height: math.unit(23, "meters"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(6, "feet"),
  25289. weight: math.unit(150, "lb"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/rhys-feline/front.svg",
  25293. extra: 2488 / 2308,
  25294. bottom: 35.67 / 2519.19
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Really Small",
  25301. height: math.unit(1, "nm")
  25302. },
  25303. {
  25304. name: "Micro",
  25305. height: math.unit(4, "inches")
  25306. },
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(4 + 10 / 12, "feet"),
  25310. default: true
  25311. },
  25312. {
  25313. name: "Macro",
  25314. height: math.unit(100, "feet")
  25315. },
  25316. {
  25317. name: "Megamacto",
  25318. height: math.unit(50, "miles")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25324. {
  25325. side: {
  25326. height: math.unit(30, "feet"),
  25327. weight: math.unit(35000, "kg"),
  25328. name: "Side",
  25329. image: {
  25330. source: "./media/characters/alydar/side.svg",
  25331. extra: 234 / 222,
  25332. bottom: 6.5 / 241
  25333. }
  25334. },
  25335. front: {
  25336. height: math.unit(30, "feet"),
  25337. weight: math.unit(35000, "kg"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/alydar/front.svg",
  25341. extra: 223.37 / 210.2,
  25342. bottom: 22.3 / 246.76
  25343. }
  25344. },
  25345. top: {
  25346. height: math.unit(64.54, "feet"),
  25347. weight: math.unit(35000, "kg"),
  25348. name: "Top",
  25349. image: {
  25350. source: "./media/characters/alydar/top.svg"
  25351. }
  25352. },
  25353. anthro: {
  25354. height: math.unit(30, "feet"),
  25355. weight: math.unit(9000, "kg"),
  25356. name: "Anthro",
  25357. image: {
  25358. source: "./media/characters/alydar/anthro.svg",
  25359. extra: 432 / 421,
  25360. bottom: 7.18 / 440
  25361. }
  25362. },
  25363. maw: {
  25364. height: math.unit(11.693, "feet"),
  25365. name: "Maw",
  25366. image: {
  25367. source: "./media/characters/alydar/maw.svg"
  25368. }
  25369. },
  25370. head: {
  25371. height: math.unit(11.693, "feet"),
  25372. name: "Head",
  25373. image: {
  25374. source: "./media/characters/alydar/head.svg"
  25375. }
  25376. },
  25377. headAlt: {
  25378. height: math.unit(12.861, "feet"),
  25379. name: "Head (Alt)",
  25380. image: {
  25381. source: "./media/characters/alydar/head-alt.svg"
  25382. }
  25383. },
  25384. wing: {
  25385. height: math.unit(20.712, "feet"),
  25386. name: "Wing",
  25387. image: {
  25388. source: "./media/characters/alydar/wing.svg"
  25389. }
  25390. },
  25391. wingFeather: {
  25392. height: math.unit(9.662, "feet"),
  25393. name: "Wing Feather",
  25394. image: {
  25395. source: "./media/characters/alydar/wing-feather.svg"
  25396. }
  25397. },
  25398. countourFeather: {
  25399. height: math.unit(4.154, "feet"),
  25400. name: "Contour Feather",
  25401. image: {
  25402. source: "./media/characters/alydar/contour-feather.svg"
  25403. }
  25404. },
  25405. },
  25406. [
  25407. {
  25408. name: "Diplomatic",
  25409. height: math.unit(13, "feet"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Small",
  25414. height: math.unit(30, "feet")
  25415. },
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(95, "feet"),
  25419. default: true
  25420. },
  25421. {
  25422. name: "Large",
  25423. height: math.unit(285, "feet")
  25424. },
  25425. {
  25426. name: "Incomprehensible",
  25427. height: math.unit(450, "megameters")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25433. {
  25434. side: {
  25435. height: math.unit(11, "feet"),
  25436. weight: math.unit(1750, "kg"),
  25437. name: "Side",
  25438. image: {
  25439. source: "./media/characters/selicia/side.svg",
  25440. extra: 440 / 396,
  25441. bottom: 24.8 / 465.979
  25442. }
  25443. },
  25444. maw: {
  25445. height: math.unit(4.665, "feet"),
  25446. name: "Maw",
  25447. image: {
  25448. source: "./media/characters/selicia/maw.svg"
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(11, "feet"),
  25456. default: true
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25462. {
  25463. side: {
  25464. height: math.unit(2 + 6 / 12, "feet"),
  25465. weight: math.unit(30, "lb"),
  25466. name: "Side",
  25467. image: {
  25468. source: "./media/characters/layla/side.svg",
  25469. extra: 244 / 188,
  25470. bottom: 18.2 / 262.1
  25471. }
  25472. },
  25473. back: {
  25474. height: math.unit(2 + 6 / 12, "feet"),
  25475. weight: math.unit(30, "lb"),
  25476. name: "Back",
  25477. image: {
  25478. source: "./media/characters/layla/back.svg",
  25479. extra: 308 / 241.5,
  25480. bottom: 8.9 / 316.8
  25481. }
  25482. },
  25483. cumming: {
  25484. height: math.unit(2 + 6 / 12, "feet"),
  25485. weight: math.unit(30, "lb"),
  25486. name: "Cumming",
  25487. image: {
  25488. source: "./media/characters/layla/cumming.svg",
  25489. extra: 342 / 279,
  25490. bottom: 595 / 938
  25491. }
  25492. },
  25493. dickFlaccid: {
  25494. height: math.unit(2.595, "feet"),
  25495. name: "Flaccid Genitals",
  25496. image: {
  25497. source: "./media/characters/layla/dick-flaccid.svg"
  25498. }
  25499. },
  25500. dickErect: {
  25501. height: math.unit(2.359, "feet"),
  25502. name: "Erect Genitals",
  25503. image: {
  25504. source: "./media/characters/layla/dick-erect.svg"
  25505. }
  25506. },
  25507. dragon: {
  25508. height: math.unit(40, "feet"),
  25509. name: "Dragon",
  25510. image: {
  25511. source: "./media/characters/layla/dragon.svg",
  25512. extra: 610/535,
  25513. bottom: 367/977
  25514. }
  25515. },
  25516. taur: {
  25517. height: math.unit(30, "feet"),
  25518. name: "Taur",
  25519. image: {
  25520. source: "./media/characters/layla/taur.svg",
  25521. extra: 1268/1199,
  25522. bottom: 112/1380
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Micro",
  25529. height: math.unit(1, "inch")
  25530. },
  25531. {
  25532. name: "Small",
  25533. height: math.unit(1, "foot")
  25534. },
  25535. {
  25536. name: "Normal",
  25537. height: math.unit(2 + 6 / 12, "feet"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Macro",
  25542. height: math.unit(200, "feet")
  25543. },
  25544. {
  25545. name: "Megamacro",
  25546. height: math.unit(1000, "miles")
  25547. },
  25548. {
  25549. name: "Planetary",
  25550. height: math.unit(8000, "miles")
  25551. },
  25552. {
  25553. name: "True Layla",
  25554. height: math.unit(200000 * 7, "multiverses")
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25560. {
  25561. back: {
  25562. height: math.unit(10.5, "feet"),
  25563. weight: math.unit(800, "lb"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/knox/back.svg",
  25567. extra: 1486 / 1089,
  25568. bottom: 107 / 1601.4
  25569. }
  25570. },
  25571. side: {
  25572. height: math.unit(10.5, "feet"),
  25573. weight: math.unit(800, "lb"),
  25574. name: "Side",
  25575. image: {
  25576. source: "./media/characters/knox/side.svg",
  25577. extra: 244 / 218,
  25578. bottom: 14 / 260
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Compact",
  25585. height: math.unit(10.5, "feet"),
  25586. default: true
  25587. },
  25588. {
  25589. name: "Dynamax",
  25590. height: math.unit(210, "feet")
  25591. },
  25592. {
  25593. name: "Full Macro",
  25594. height: math.unit(850, "feet")
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(28, "feet"),
  25603. weight: math.unit(10500, "lb"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/kayda/front.svg",
  25607. extra: 1536 / 1428,
  25608. bottom: 68.7 / 1603
  25609. }
  25610. },
  25611. back: {
  25612. height: math.unit(28, "feet"),
  25613. weight: math.unit(10500, "lb"),
  25614. name: "Back",
  25615. image: {
  25616. source: "./media/characters/kayda/back.svg",
  25617. extra: 1557 / 1464,
  25618. bottom: 39.5 / 1597.49
  25619. }
  25620. },
  25621. dick: {
  25622. height: math.unit(3.858, "feet"),
  25623. name: "Dick",
  25624. image: {
  25625. source: "./media/characters/kayda/dick.svg"
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Macro",
  25632. height: math.unit(28, "feet"),
  25633. default: true
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25639. {
  25640. front: {
  25641. height: math.unit(10 + 11 / 12, "feet"),
  25642. weight: math.unit(1400, "lb"),
  25643. name: "Front",
  25644. image: {
  25645. source: "./media/characters/brian/front.svg",
  25646. extra: 737 / 692,
  25647. bottom: 55.4 / 785
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(10 + 11 / 12, "feet"),
  25655. default: true
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25661. {
  25662. front: {
  25663. height: math.unit(5 + 8 / 12, "feet"),
  25664. weight: math.unit(140, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/khemri/front.svg",
  25668. extra: 4780 / 4059,
  25669. bottom: 80.1 / 4859.25
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Micro",
  25676. height: math.unit(6, "inches")
  25677. },
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(5 + 8 / 12, "feet"),
  25681. default: true
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25687. {
  25688. front: {
  25689. height: math.unit(13, "feet"),
  25690. weight: math.unit(1700, "lb"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/felix-braveheart/front.svg",
  25694. extra: 1222 / 1157,
  25695. bottom: 53.2 / 1280
  25696. }
  25697. },
  25698. back: {
  25699. height: math.unit(13, "feet"),
  25700. weight: math.unit(1700, "lb"),
  25701. name: "Back",
  25702. image: {
  25703. source: "./media/characters/felix-braveheart/back.svg",
  25704. extra: 1277 / 1203,
  25705. bottom: 50.2 / 1327
  25706. }
  25707. },
  25708. feral: {
  25709. height: math.unit(6, "feet"),
  25710. weight: math.unit(400, "lb"),
  25711. name: "Feral",
  25712. image: {
  25713. source: "./media/characters/felix-braveheart/feral.svg",
  25714. extra: 682 / 625,
  25715. bottom: 6.9 / 688
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(13, "feet"),
  25723. default: true
  25724. },
  25725. ]
  25726. ))
  25727. characterMakers.push(() => makeCharacter(
  25728. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25729. {
  25730. side: {
  25731. height: math.unit(5 + 11 / 12, "feet"),
  25732. weight: math.unit(1400, "lb"),
  25733. name: "Side",
  25734. image: {
  25735. source: "./media/characters/shadow-blade/side.svg",
  25736. extra: 1726 / 1267,
  25737. bottom: 58.4 / 1785
  25738. }
  25739. },
  25740. },
  25741. [
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(5 + 11 / 12, "feet"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(1 + 6 / 12, "feet"),
  25754. weight: math.unit(25, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/karla-halldor/front.svg",
  25758. extra: 1459 / 1383,
  25759. bottom: 12 / 1472
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Normal",
  25766. height: math.unit(1 + 6 / 12, "feet"),
  25767. default: true
  25768. },
  25769. ]
  25770. ))
  25771. characterMakers.push(() => makeCharacter(
  25772. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25773. {
  25774. front: {
  25775. height: math.unit(6 + 2 / 12, "feet"),
  25776. weight: math.unit(160, "lb"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/ariam/front.svg",
  25780. extra: 1073/976,
  25781. bottom: 52/1125
  25782. }
  25783. },
  25784. back: {
  25785. height: math.unit(6 + 2/12, "feet"),
  25786. weight: math.unit(160, "lb"),
  25787. name: "Back",
  25788. image: {
  25789. source: "./media/characters/ariam/back.svg",
  25790. extra: 1103/1023,
  25791. bottom: 9/1112
  25792. }
  25793. },
  25794. dressed: {
  25795. height: math.unit(6 + 2/12, "feet"),
  25796. weight: math.unit(160, "lb"),
  25797. name: "Dressed",
  25798. image: {
  25799. source: "./media/characters/ariam/dressed.svg",
  25800. extra: 1099/1009,
  25801. bottom: 25/1124
  25802. }
  25803. },
  25804. squatting: {
  25805. height: math.unit(4.1, "feet"),
  25806. weight: math.unit(160, "lb"),
  25807. name: "Squatting",
  25808. image: {
  25809. source: "./media/characters/ariam/squatting.svg",
  25810. extra: 2617 / 2112,
  25811. bottom: 61.2 / 2681,
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(6 + 2 / 12, "feet"),
  25819. default: true
  25820. },
  25821. {
  25822. name: "Normal+",
  25823. height: math.unit(4, "meters")
  25824. },
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(50, "meters")
  25828. },
  25829. {
  25830. name: "Macro+",
  25831. height: math.unit(100, "meters")
  25832. },
  25833. {
  25834. name: "Megamacro",
  25835. height: math.unit(20, "km")
  25836. },
  25837. {
  25838. name: "Caretaker",
  25839. height: math.unit(444, "megameters")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(1.67, "meters"),
  25848. weight: math.unit(140, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25852. extra: 438 / 410,
  25853. bottom: 0.75 / 439
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Shrunken",
  25860. height: math.unit(7.6, "cm")
  25861. },
  25862. {
  25863. name: "Human Scale",
  25864. height: math.unit(1.67, "meters")
  25865. },
  25866. {
  25867. name: "Wolxi Scale",
  25868. height: math.unit(36.7, "meters"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(1.73, "meters"),
  25878. weight: math.unit(240, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/izue-two-mothers/front.svg",
  25882. extra: 469 / 437,
  25883. bottom: 1.24 / 470.6
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Shrunken",
  25890. height: math.unit(7.86, "cm")
  25891. },
  25892. {
  25893. name: "Human Scale",
  25894. height: math.unit(1.73, "meters")
  25895. },
  25896. {
  25897. name: "Wolxi Scale",
  25898. height: math.unit(38, "meters"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(1.55, "meters"),
  25908. weight: math.unit(120, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/teeku-love-shack/front.svg",
  25912. extra: 387 / 362,
  25913. bottom: 1.51 / 388
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Shrunken",
  25920. height: math.unit(7, "cm")
  25921. },
  25922. {
  25923. name: "Human Scale",
  25924. height: math.unit(1.55, "meters")
  25925. },
  25926. {
  25927. name: "Wolxi Scale",
  25928. height: math.unit(34.1, "meters"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(1.83, "meters"),
  25938. weight: math.unit(135, "lb"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/dejma-the-red/front.svg",
  25942. extra: 480 / 458,
  25943. bottom: 1.8 / 482
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Shrunken",
  25950. height: math.unit(8.3, "cm")
  25951. },
  25952. {
  25953. name: "Human Scale",
  25954. height: math.unit(1.83, "meters")
  25955. },
  25956. {
  25957. name: "Wolxi Scale",
  25958. height: math.unit(40, "meters"),
  25959. default: true
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(1.78, "meters"),
  25968. weight: math.unit(65, "kg"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/aki/front.svg",
  25972. extra: 452 / 415
  25973. }
  25974. },
  25975. frontNsfw: {
  25976. height: math.unit(1.78, "meters"),
  25977. weight: math.unit(65, "kg"),
  25978. name: "Front (NSFW)",
  25979. image: {
  25980. source: "./media/characters/aki/front-nsfw.svg",
  25981. extra: 452 / 415
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(1.78, "meters"),
  25986. weight: math.unit(65, "kg"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/aki/back.svg",
  25990. extra: 452 / 415
  25991. }
  25992. },
  25993. rump: {
  25994. height: math.unit(2.05, "feet"),
  25995. name: "Rump",
  25996. image: {
  25997. source: "./media/characters/aki/rump.svg"
  25998. }
  25999. },
  26000. dick: {
  26001. height: math.unit(0.95, "feet"),
  26002. name: "Dick",
  26003. image: {
  26004. source: "./media/characters/aki/dick.svg"
  26005. }
  26006. },
  26007. },
  26008. [
  26009. {
  26010. name: "Micro",
  26011. height: math.unit(15, "cm")
  26012. },
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(178, "cm"),
  26016. default: true
  26017. },
  26018. {
  26019. name: "Macro",
  26020. height: math.unit(214, "m")
  26021. },
  26022. {
  26023. name: "Macro+",
  26024. height: math.unit(534, "m")
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(5 + 5 / 12, "feet"),
  26033. weight: math.unit(120, "lb"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/ari/front.svg",
  26037. extra: 1550/1471,
  26038. bottom: 39/1589
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(5 + 5 / 12, "feet")
  26046. },
  26047. {
  26048. name: "Macro",
  26049. height: math.unit(100, "feet"),
  26050. default: true
  26051. },
  26052. {
  26053. name: "Megamacro",
  26054. height: math.unit(100, "miles")
  26055. },
  26056. {
  26057. name: "Gigamacro",
  26058. height: math.unit(80000, "miles")
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26064. {
  26065. side: {
  26066. height: math.unit(9, "feet"),
  26067. weight: math.unit(400, "kg"),
  26068. name: "Side",
  26069. image: {
  26070. source: "./media/characters/bolt/side.svg",
  26071. extra: 1126 / 896,
  26072. bottom: 60 / 1187.3,
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Micro",
  26079. height: math.unit(5, "inches")
  26080. },
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(9, "feet"),
  26084. default: true
  26085. },
  26086. {
  26087. name: "Macro",
  26088. height: math.unit(700, "feet")
  26089. },
  26090. {
  26091. name: "Max Size",
  26092. height: math.unit(1.52e22, "yottameters")
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(4.3, "meters"),
  26101. weight: math.unit(3, "tons"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/draekon-sylviar/front.svg",
  26105. extra: 2072/1512,
  26106. bottom: 74/2146
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(4.3, "meters"),
  26111. weight: math.unit(3, "tons"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/draekon-sylviar/back.svg",
  26115. extra: 1639/1483,
  26116. bottom: 41/1680
  26117. }
  26118. },
  26119. feral: {
  26120. height: math.unit(1.15, "meters"),
  26121. weight: math.unit(3, "tons"),
  26122. name: "Feral",
  26123. image: {
  26124. source: "./media/characters/draekon-sylviar/feral.svg",
  26125. extra: 1033/395,
  26126. bottom: 130/1163
  26127. }
  26128. },
  26129. maw: {
  26130. height: math.unit(1.3, "meters"),
  26131. name: "Maw",
  26132. image: {
  26133. source: "./media/characters/draekon-sylviar/maw.svg"
  26134. }
  26135. },
  26136. mawSeparated: {
  26137. height: math.unit(1.53, "meters"),
  26138. name: "Separated Maw",
  26139. image: {
  26140. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26141. }
  26142. },
  26143. tail: {
  26144. height: math.unit(1.15, "meters"),
  26145. name: "Tail",
  26146. image: {
  26147. source: "./media/characters/draekon-sylviar/tail.svg"
  26148. }
  26149. },
  26150. tailDick: {
  26151. height: math.unit(1.15, "meters"),
  26152. name: "Tail (Dick)",
  26153. image: {
  26154. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26155. }
  26156. },
  26157. tailDickSeparated: {
  26158. height: math.unit(1.19, "meters"),
  26159. name: "Tail (Separated Dick)",
  26160. image: {
  26161. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26162. }
  26163. },
  26164. slit: {
  26165. height: math.unit(1, "meters"),
  26166. name: "Slit",
  26167. image: {
  26168. source: "./media/characters/draekon-sylviar/slit.svg"
  26169. }
  26170. },
  26171. dick: {
  26172. height: math.unit(1.15, "meters"),
  26173. name: "Dick",
  26174. image: {
  26175. source: "./media/characters/draekon-sylviar/dick.svg"
  26176. }
  26177. },
  26178. dickSeparated: {
  26179. height: math.unit(1.1, "meters"),
  26180. name: "Separated Dick",
  26181. image: {
  26182. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26183. }
  26184. },
  26185. sheath: {
  26186. height: math.unit(1.15, "meters"),
  26187. name: "Sheath",
  26188. image: {
  26189. source: "./media/characters/draekon-sylviar/sheath.svg"
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Small",
  26196. height: math.unit(4.53 / 2, "meters"),
  26197. default: true
  26198. },
  26199. {
  26200. name: "Normal",
  26201. height: math.unit(4.53, "meters"),
  26202. default: true
  26203. },
  26204. {
  26205. name: "Large",
  26206. height: math.unit(4.53 * 2, "meters"),
  26207. },
  26208. ]
  26209. ))
  26210. characterMakers.push(() => makeCharacter(
  26211. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26212. {
  26213. front: {
  26214. height: math.unit(6 + 2 / 12, "feet"),
  26215. weight: math.unit(180, "lb"),
  26216. name: "Front",
  26217. image: {
  26218. source: "./media/characters/brawler/front.svg",
  26219. extra: 3301 / 3027,
  26220. bottom: 138 / 3439
  26221. }
  26222. },
  26223. },
  26224. [
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(6 + 2 / 12, "feet"),
  26228. default: true
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(11, "feet"),
  26237. weight: math.unit(1000, "lb"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/alex/front.svg",
  26241. bottom: 44.5 / 620
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Micro",
  26248. height: math.unit(5, "inches")
  26249. },
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(11, "feet"),
  26253. default: true
  26254. },
  26255. {
  26256. name: "Macro",
  26257. height: math.unit(9.5e9, "feet")
  26258. },
  26259. {
  26260. name: "Max Size",
  26261. height: math.unit(1.4e283, "yottameters")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26267. {
  26268. female: {
  26269. height: math.unit(29.9, "m"),
  26270. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26271. name: "Female",
  26272. image: {
  26273. source: "./media/characters/zenari/female.svg",
  26274. extra: 3281.6 / 3217,
  26275. bottom: 72.2 / 3353
  26276. }
  26277. },
  26278. male: {
  26279. height: math.unit(27.7, "m"),
  26280. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26281. name: "Male",
  26282. image: {
  26283. source: "./media/characters/zenari/male.svg",
  26284. extra: 3008 / 2991,
  26285. bottom: 54.6 / 3069
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Macro",
  26292. height: math.unit(29.7, "meters"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26299. {
  26300. female: {
  26301. height: math.unit(23.8, "m"),
  26302. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26303. name: "Female",
  26304. image: {
  26305. source: "./media/characters/mactarian/female.svg",
  26306. extra: 2662 / 2569,
  26307. bottom: 73 / 2736
  26308. }
  26309. },
  26310. male: {
  26311. height: math.unit(23.8, "m"),
  26312. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26313. name: "Male",
  26314. image: {
  26315. source: "./media/characters/mactarian/male.svg",
  26316. extra: 2673 / 2600,
  26317. bottom: 76 / 2750
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Macro",
  26324. height: math.unit(23.8, "meters"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26331. {
  26332. female: {
  26333. height: math.unit(19.3, "m"),
  26334. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26335. name: "Female",
  26336. image: {
  26337. source: "./media/characters/umok/female.svg",
  26338. extra: 2186 / 2078,
  26339. bottom: 87 / 2277
  26340. }
  26341. },
  26342. male: {
  26343. height: math.unit(19.5, "m"),
  26344. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26345. name: "Male",
  26346. image: {
  26347. source: "./media/characters/umok/male.svg",
  26348. extra: 2233 / 2140,
  26349. bottom: 24.4 / 2258
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Macro",
  26356. height: math.unit(19.3, "meters"),
  26357. default: true
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26363. {
  26364. female: {
  26365. height: math.unit(26.15, "m"),
  26366. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26367. name: "Female",
  26368. image: {
  26369. source: "./media/characters/joraxian/female.svg",
  26370. extra: 2912 / 2824,
  26371. bottom: 36 / 2956
  26372. }
  26373. },
  26374. male: {
  26375. height: math.unit(25.4, "m"),
  26376. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26377. name: "Male",
  26378. image: {
  26379. source: "./media/characters/joraxian/male.svg",
  26380. extra: 2877 / 2721,
  26381. bottom: 82 / 2967
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Macro",
  26388. height: math.unit(26.15, "meters"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26395. {
  26396. female: {
  26397. height: math.unit(21.6, "m"),
  26398. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26399. name: "Female",
  26400. image: {
  26401. source: "./media/characters/sthara/female.svg",
  26402. extra: 2516 / 2347,
  26403. bottom: 21.5 / 2537
  26404. }
  26405. },
  26406. male: {
  26407. height: math.unit(24, "m"),
  26408. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26409. name: "Male",
  26410. image: {
  26411. source: "./media/characters/sthara/male.svg",
  26412. extra: 2732 / 2607,
  26413. bottom: 23 / 2732
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(21.6, "meters"),
  26421. default: true
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(6 + 4 / 12, "feet"),
  26430. weight: math.unit(175, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/luka-bryzant/front.svg",
  26434. extra: 311 / 289,
  26435. bottom: 4 / 315
  26436. }
  26437. },
  26438. back: {
  26439. height: math.unit(6 + 4 / 12, "feet"),
  26440. weight: math.unit(175, "lb"),
  26441. name: "Back",
  26442. image: {
  26443. source: "./media/characters/luka-bryzant/back.svg",
  26444. extra: 311 / 289,
  26445. bottom: 3.8 / 313.7
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Micro",
  26452. height: math.unit(10, "inches")
  26453. },
  26454. {
  26455. name: "Normal",
  26456. height: math.unit(6 + 4 / 12, "feet"),
  26457. default: true
  26458. },
  26459. {
  26460. name: "Large",
  26461. height: math.unit(12, "feet")
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26467. {
  26468. front: {
  26469. height: math.unit(5 + 7 / 12, "feet"),
  26470. weight: math.unit(185, "lb"),
  26471. name: "Front",
  26472. image: {
  26473. source: "./media/characters/aman-aquila/front.svg",
  26474. extra: 1013 / 976,
  26475. bottom: 45.6 / 1057
  26476. }
  26477. },
  26478. side: {
  26479. height: math.unit(5 + 7 / 12, "feet"),
  26480. weight: math.unit(185, "lb"),
  26481. name: "Side",
  26482. image: {
  26483. source: "./media/characters/aman-aquila/side.svg",
  26484. extra: 1054 / 1011,
  26485. bottom: 15 / 1070
  26486. }
  26487. },
  26488. back: {
  26489. height: math.unit(5 + 7 / 12, "feet"),
  26490. weight: math.unit(185, "lb"),
  26491. name: "Back",
  26492. image: {
  26493. source: "./media/characters/aman-aquila/back.svg",
  26494. extra: 1026 / 970,
  26495. bottom: 12 / 1039
  26496. }
  26497. },
  26498. head: {
  26499. height: math.unit(1.211, "feet"),
  26500. name: "Head",
  26501. image: {
  26502. source: "./media/characters/aman-aquila/head.svg",
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Minimicro",
  26509. height: math.unit(0.057, "inches")
  26510. },
  26511. {
  26512. name: "Micro",
  26513. height: math.unit(7, "inches")
  26514. },
  26515. {
  26516. name: "Mini",
  26517. height: math.unit(3 + 7 / 12, "feet")
  26518. },
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(5 + 7 / 12, "feet"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(157 + 7 / 12, "feet")
  26527. },
  26528. {
  26529. name: "Megamacro",
  26530. height: math.unit(1557 + 7 / 12, "feet")
  26531. },
  26532. {
  26533. name: "Gigamacro",
  26534. height: math.unit(15557 + 7 / 12, "feet")
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(3 + 2 / 12, "inches"),
  26543. weight: math.unit(0.3, "ounces"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/hiphae/front.svg",
  26547. extra: 1931 / 1683,
  26548. bottom: 24 / 1955
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(3 + 1 / 2, "inches"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(5 + 10 / 12, "feet"),
  26565. weight: math.unit(165, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/nicky/front.svg",
  26569. extra: 3144 / 2886,
  26570. bottom: 45.6 / 3192
  26571. }
  26572. },
  26573. back: {
  26574. height: math.unit(5 + 10 / 12, "feet"),
  26575. weight: math.unit(165, "lb"),
  26576. name: "Back",
  26577. image: {
  26578. source: "./media/characters/nicky/back.svg",
  26579. extra: 3055 / 2804,
  26580. bottom: 28.4 / 3087
  26581. }
  26582. },
  26583. frontclothed: {
  26584. height: math.unit(5 + 10 / 12, "feet"),
  26585. weight: math.unit(165, "lb"),
  26586. name: "Front-clothed",
  26587. image: {
  26588. source: "./media/characters/nicky/front-clothed.svg",
  26589. extra: 3184.9 / 2926.9,
  26590. bottom: 86.5 / 3239.9
  26591. }
  26592. },
  26593. foot: {
  26594. height: math.unit(1.16, "feet"),
  26595. name: "Foot",
  26596. image: {
  26597. source: "./media/characters/nicky/foot.svg"
  26598. }
  26599. },
  26600. feet: {
  26601. height: math.unit(1.34, "feet"),
  26602. name: "Feet",
  26603. image: {
  26604. source: "./media/characters/nicky/feet.svg"
  26605. }
  26606. },
  26607. maw: {
  26608. height: math.unit(0.9, "feet"),
  26609. name: "Maw",
  26610. image: {
  26611. source: "./media/characters/nicky/maw.svg"
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(5 + 10 / 12, "feet"),
  26619. default: true
  26620. },
  26621. {
  26622. name: "Macro",
  26623. height: math.unit(60, "feet")
  26624. },
  26625. {
  26626. name: "Megamacro",
  26627. height: math.unit(1, "mile")
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26633. {
  26634. side: {
  26635. height: math.unit(10, "feet"),
  26636. weight: math.unit(600, "lb"),
  26637. name: "Side",
  26638. image: {
  26639. source: "./media/characters/blair/side.svg",
  26640. bottom: 16.6 / 475,
  26641. extra: 458 / 431
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Micro",
  26648. height: math.unit(8, "inches")
  26649. },
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(10, "feet"),
  26653. default: true
  26654. },
  26655. {
  26656. name: "Macro",
  26657. height: math.unit(180, "feet")
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26663. {
  26664. front: {
  26665. height: math.unit(5 + 4 / 12, "feet"),
  26666. weight: math.unit(125, "lb"),
  26667. name: "Front",
  26668. image: {
  26669. source: "./media/characters/fisher/front.svg",
  26670. extra: 444 / 390,
  26671. bottom: 2 / 444.8
  26672. }
  26673. },
  26674. },
  26675. [
  26676. {
  26677. name: "Micro",
  26678. height: math.unit(4, "inches")
  26679. },
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(5 + 4 / 12, "feet"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Macro",
  26687. height: math.unit(100, "feet")
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(6.71, "feet"),
  26696. weight: math.unit(200, "lb"),
  26697. preyCapacity: math.unit(1000000, "people"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/gliss/front.svg",
  26701. extra: 2347 / 2231,
  26702. bottom: 113 / 2462
  26703. }
  26704. },
  26705. hammerspaceSize: {
  26706. height: math.unit(6.71 * 717, "feet"),
  26707. weight: math.unit(200, "lb"),
  26708. preyCapacity: math.unit(1000000, "people"),
  26709. name: "Hammerspace Size",
  26710. image: {
  26711. source: "./media/characters/gliss/front.svg",
  26712. extra: 2347 / 2231,
  26713. bottom: 113 / 2462
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(6.71, "feet"),
  26721. default: true
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26727. {
  26728. side: {
  26729. height: math.unit(1.44, "m"),
  26730. weight: math.unit(80, "kg"),
  26731. name: "Side",
  26732. image: {
  26733. source: "./media/characters/dune-anderson/side.svg",
  26734. bottom: 49 / 1426
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Wolf-sized",
  26741. height: math.unit(1.44, "meters")
  26742. },
  26743. {
  26744. name: "Normal",
  26745. height: math.unit(5.05, "meters"),
  26746. default: true
  26747. },
  26748. {
  26749. name: "Big",
  26750. height: math.unit(14.4, "meters")
  26751. },
  26752. {
  26753. name: "Huge",
  26754. height: math.unit(144, "meters")
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26760. {
  26761. front: {
  26762. height: math.unit(7, "feet"),
  26763. weight: math.unit(425, "lb"),
  26764. name: "Front",
  26765. image: {
  26766. source: "./media/characters/hind/front.svg",
  26767. extra: 2091 / 1860,
  26768. bottom: 129 / 2220
  26769. }
  26770. },
  26771. back: {
  26772. height: math.unit(7, "feet"),
  26773. weight: math.unit(425, "lb"),
  26774. name: "Back",
  26775. image: {
  26776. source: "./media/characters/hind/back.svg",
  26777. extra: 2091 / 1860,
  26778. bottom: 24.6 / 2309
  26779. }
  26780. },
  26781. tail: {
  26782. height: math.unit(2.8, "feet"),
  26783. name: "Tail",
  26784. image: {
  26785. source: "./media/characters/hind/tail.svg"
  26786. }
  26787. },
  26788. head: {
  26789. height: math.unit(2.55, "feet"),
  26790. name: "Head",
  26791. image: {
  26792. source: "./media/characters/hind/head.svg"
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "XS",
  26799. height: math.unit(0.7, "feet")
  26800. },
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(7, "feet"),
  26804. default: true
  26805. },
  26806. {
  26807. name: "XL",
  26808. height: math.unit(70, "feet")
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26814. {
  26815. front: {
  26816. height: math.unit(2.1, "meters"),
  26817. weight: math.unit(150, "lb"),
  26818. name: "Front",
  26819. image: {
  26820. source: "./media/characters/tharquench-sizestealer/front.svg",
  26821. extra: 1605/1470,
  26822. bottom: 36/1641
  26823. }
  26824. },
  26825. frontAlt: {
  26826. height: math.unit(2.1, "meters"),
  26827. weight: math.unit(150, "lb"),
  26828. name: "Front (Alt)",
  26829. image: {
  26830. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26831. extra: 2318 / 2063,
  26832. bottom: 93.4 / 2410
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Nano",
  26839. height: math.unit(1, "mm")
  26840. },
  26841. {
  26842. name: "Micro",
  26843. height: math.unit(1, "cm")
  26844. },
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(2.1, "meters"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(7 + 5 / 12, "feet"),
  26857. weight: math.unit(357, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/solex-draconov/front.svg",
  26861. extra: 1993 / 1865,
  26862. bottom: 117 / 2111
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Natural Height",
  26869. height: math.unit(7 + 5 / 12, "feet"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Macro",
  26874. height: math.unit(350, "feet")
  26875. },
  26876. {
  26877. name: "Macro+",
  26878. height: math.unit(1000, "feet")
  26879. },
  26880. {
  26881. name: "Megamacro",
  26882. height: math.unit(20, "km")
  26883. },
  26884. {
  26885. name: "Megamacro+",
  26886. height: math.unit(1000, "km")
  26887. },
  26888. {
  26889. name: "Gigamacro",
  26890. height: math.unit(2.5, "Gm")
  26891. },
  26892. {
  26893. name: "Teramacro",
  26894. height: math.unit(15, "Tm")
  26895. },
  26896. {
  26897. name: "Galactic",
  26898. height: math.unit(30, "Zm")
  26899. },
  26900. {
  26901. name: "Universal",
  26902. height: math.unit(21000, "Ym")
  26903. },
  26904. {
  26905. name: "Omniversal",
  26906. height: math.unit(9.861e50, "Ym")
  26907. },
  26908. {
  26909. name: "Existential",
  26910. height: math.unit(1e300, "meters")
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26916. {
  26917. side: {
  26918. height: math.unit(25, "feet"),
  26919. weight: math.unit(90000, "lb"),
  26920. name: "Side",
  26921. image: {
  26922. source: "./media/characters/mandarax/side.svg",
  26923. extra: 614 / 332,
  26924. bottom: 55 / 630
  26925. }
  26926. },
  26927. lounging: {
  26928. height: math.unit(15.4, "feet"),
  26929. weight: math.unit(90000, "lb"),
  26930. name: "Lounging",
  26931. image: {
  26932. source: "./media/characters/mandarax/lounging.svg",
  26933. extra: 817/609,
  26934. bottom: 685/1502
  26935. }
  26936. },
  26937. head: {
  26938. height: math.unit(11.4, "feet"),
  26939. name: "Head",
  26940. image: {
  26941. source: "./media/characters/mandarax/head.svg"
  26942. }
  26943. },
  26944. belly: {
  26945. height: math.unit(33, "feet"),
  26946. name: "Belly",
  26947. preyCapacity: math.unit(500, "people"),
  26948. image: {
  26949. source: "./media/characters/mandarax/belly.svg"
  26950. }
  26951. },
  26952. dick: {
  26953. height: math.unit(8.46, "feet"),
  26954. name: "Dick",
  26955. image: {
  26956. source: "./media/characters/mandarax/dick.svg"
  26957. }
  26958. },
  26959. top: {
  26960. height: math.unit(28, "meters"),
  26961. name: "Top",
  26962. image: {
  26963. source: "./media/characters/mandarax/top.svg"
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(25, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(5, "feet"),
  26980. weight: math.unit(90, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/pixil/front.svg",
  26984. extra: 2000 / 1618,
  26985. bottom: 12.3 / 2011
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(5, "feet"),
  26993. default: true
  26994. },
  26995. {
  26996. name: "Megamacro",
  26997. height: math.unit(10, "miles"),
  26998. },
  26999. ]
  27000. ))
  27001. characterMakers.push(() => makeCharacter(
  27002. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27003. {
  27004. front: {
  27005. height: math.unit(7 + 2 / 12, "feet"),
  27006. weight: math.unit(200, "lb"),
  27007. name: "Front",
  27008. image: {
  27009. source: "./media/characters/angel/front.svg",
  27010. extra: 1830 / 1737,
  27011. bottom: 22.6 / 1854,
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Normal",
  27018. height: math.unit(7 + 2 / 12, "feet"),
  27019. default: true
  27020. },
  27021. {
  27022. name: "Macro",
  27023. height: math.unit(1000, "feet")
  27024. },
  27025. {
  27026. name: "Megamacro",
  27027. height: math.unit(2, "miles")
  27028. },
  27029. {
  27030. name: "Gigamacro",
  27031. height: math.unit(20, "earths")
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(5, "feet"),
  27040. weight: math.unit(180, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/mekana/front.svg",
  27044. extra: 1671 / 1605,
  27045. bottom: 3.5 / 1691
  27046. }
  27047. },
  27048. side: {
  27049. height: math.unit(5, "feet"),
  27050. weight: math.unit(180, "lb"),
  27051. name: "Side",
  27052. image: {
  27053. source: "./media/characters/mekana/side.svg",
  27054. extra: 1671 / 1605,
  27055. bottom: 3.5 / 1691
  27056. }
  27057. },
  27058. back: {
  27059. height: math.unit(5, "feet"),
  27060. weight: math.unit(180, "lb"),
  27061. name: "Back",
  27062. image: {
  27063. source: "./media/characters/mekana/back.svg",
  27064. extra: 1671 / 1605,
  27065. bottom: 3.5 / 1691
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(5, "feet"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(4 + 6 / 12, "feet"),
  27082. weight: math.unit(80, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/pixie/front.svg",
  27086. extra: 1924 / 1825,
  27087. bottom: 22.4 / 1946
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(4 + 6 / 12, "feet"),
  27095. default: true
  27096. },
  27097. {
  27098. name: "Macro",
  27099. height: math.unit(40, "feet")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(2.1, "meters"),
  27108. weight: math.unit(200, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/the-lascivious/front.svg",
  27112. extra: 1 / 0.893,
  27113. bottom: 3.5 / 573.7
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Human Scale",
  27120. height: math.unit(2.1, "meters")
  27121. },
  27122. {
  27123. name: "Wolxi Scale",
  27124. height: math.unit(46.2, "m"),
  27125. default: true
  27126. },
  27127. {
  27128. name: "Boinker of Buildings",
  27129. height: math.unit(10, "km")
  27130. },
  27131. {
  27132. name: "Shagger of Skyscrapers",
  27133. height: math.unit(40, "km")
  27134. },
  27135. {
  27136. name: "Banger of Boroughs",
  27137. height: math.unit(4000, "km")
  27138. },
  27139. {
  27140. name: "Screwer of States",
  27141. height: math.unit(100000, "km")
  27142. },
  27143. {
  27144. name: "Pounder of Planets",
  27145. height: math.unit(2000000, "km")
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27151. {
  27152. front: {
  27153. height: math.unit(6, "feet"),
  27154. weight: math.unit(150, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/aj/front.svg",
  27158. extra: 2039 / 1562,
  27159. bottom: 40 / 2079
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Normal",
  27166. height: math.unit(11 + 6 / 12, "feet"),
  27167. default: true
  27168. },
  27169. {
  27170. name: "Megamacro",
  27171. height: math.unit(60, "megameters")
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27177. {
  27178. side: {
  27179. height: math.unit(31 + 8 / 12, "feet"),
  27180. weight: math.unit(75000, "kg"),
  27181. name: "Side",
  27182. image: {
  27183. source: "./media/characters/koros/side.svg",
  27184. extra: 1442 / 1297,
  27185. bottom: 122.7 / 1562
  27186. }
  27187. },
  27188. dicksKingsCrown: {
  27189. height: math.unit(6, "feet"),
  27190. name: "Dicks (King's Crown)",
  27191. image: {
  27192. source: "./media/characters/koros/dicks-kings-crown.svg"
  27193. }
  27194. },
  27195. dicksTailSet: {
  27196. height: math.unit(3, "feet"),
  27197. name: "Dicks (Tail Set)",
  27198. image: {
  27199. source: "./media/characters/koros/dicks-tail-set.svg"
  27200. }
  27201. },
  27202. dickCumming: {
  27203. height: math.unit(7.98, "feet"),
  27204. name: "Dick (Cumming)",
  27205. image: {
  27206. source: "./media/characters/koros/dick-cumming.svg"
  27207. }
  27208. },
  27209. dicksBack: {
  27210. height: math.unit(5.9, "feet"),
  27211. name: "Dicks (Back)",
  27212. image: {
  27213. source: "./media/characters/koros/dicks-back.svg"
  27214. }
  27215. },
  27216. dicksFront: {
  27217. height: math.unit(3.72, "feet"),
  27218. name: "Dicks (Front)",
  27219. image: {
  27220. source: "./media/characters/koros/dicks-front.svg"
  27221. }
  27222. },
  27223. dicksPeeking: {
  27224. height: math.unit(3.0, "feet"),
  27225. name: "Dicks (Peeking)",
  27226. image: {
  27227. source: "./media/characters/koros/dicks-peeking.svg"
  27228. }
  27229. },
  27230. eye: {
  27231. height: math.unit(1.7, "feet"),
  27232. name: "Eye",
  27233. image: {
  27234. source: "./media/characters/koros/eye.svg"
  27235. }
  27236. },
  27237. headFront: {
  27238. height: math.unit(11.69, "feet"),
  27239. name: "Head (Front)",
  27240. image: {
  27241. source: "./media/characters/koros/head-front.svg"
  27242. }
  27243. },
  27244. headSide: {
  27245. height: math.unit(14, "feet"),
  27246. name: "Head (Side)",
  27247. image: {
  27248. source: "./media/characters/koros/head-side.svg"
  27249. }
  27250. },
  27251. leg: {
  27252. height: math.unit(17, "feet"),
  27253. name: "Leg",
  27254. image: {
  27255. source: "./media/characters/koros/leg.svg"
  27256. }
  27257. },
  27258. mawSide: {
  27259. height: math.unit(12.8, "feet"),
  27260. name: "Maw (Side)",
  27261. image: {
  27262. source: "./media/characters/koros/maw-side.svg"
  27263. }
  27264. },
  27265. mawSpitting: {
  27266. height: math.unit(17, "feet"),
  27267. name: "Maw (Spitting)",
  27268. image: {
  27269. source: "./media/characters/koros/maw-spitting.svg"
  27270. }
  27271. },
  27272. slit: {
  27273. height: math.unit(2.8, "feet"),
  27274. name: "Slit",
  27275. image: {
  27276. source: "./media/characters/koros/slit.svg"
  27277. }
  27278. },
  27279. stomach: {
  27280. height: math.unit(6.8, "feet"),
  27281. preyCapacity: math.unit(20, "people"),
  27282. name: "Stomach",
  27283. image: {
  27284. source: "./media/characters/koros/stomach.svg"
  27285. }
  27286. },
  27287. wingspanBottom: {
  27288. height: math.unit(114, "feet"),
  27289. name: "Wingspan (Bottom)",
  27290. image: {
  27291. source: "./media/characters/koros/wingspan-bottom.svg"
  27292. }
  27293. },
  27294. wingspanTop: {
  27295. height: math.unit(104, "feet"),
  27296. name: "Wingspan (Top)",
  27297. image: {
  27298. source: "./media/characters/koros/wingspan-top.svg"
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Normal",
  27305. height: math.unit(31 + 8 / 12, "feet"),
  27306. default: true
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(18 + 5 / 12, "feet"),
  27315. weight: math.unit(3750, "kg"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/vexx/front.svg",
  27319. extra: 426 / 396,
  27320. bottom: 31.5 / 458
  27321. }
  27322. },
  27323. maw: {
  27324. height: math.unit(6, "feet"),
  27325. name: "Maw",
  27326. image: {
  27327. source: "./media/characters/vexx/maw.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(18 + 5 / 12, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27341. {
  27342. front: {
  27343. height: math.unit(17 + 6 / 12, "feet"),
  27344. weight: math.unit(150, "lb"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/baadra/front.svg",
  27348. extra: 1694/1553,
  27349. bottom: 179/1873
  27350. }
  27351. },
  27352. frontAlt: {
  27353. height: math.unit(17 + 6 / 12, "feet"),
  27354. weight: math.unit(150, "lb"),
  27355. name: "Front (Alt)",
  27356. image: {
  27357. source: "./media/characters/baadra/front-alt.svg",
  27358. extra: 3137 / 2890,
  27359. bottom: 168.4 / 3305
  27360. }
  27361. },
  27362. back: {
  27363. height: math.unit(17 + 6 / 12, "feet"),
  27364. weight: math.unit(150, "lb"),
  27365. name: "Back",
  27366. image: {
  27367. source: "./media/characters/baadra/back.svg",
  27368. extra: 3142 / 2890,
  27369. bottom: 220 / 3371
  27370. }
  27371. },
  27372. head: {
  27373. height: math.unit(5.45, "feet"),
  27374. name: "Head",
  27375. image: {
  27376. source: "./media/characters/baadra/head.svg"
  27377. }
  27378. },
  27379. headAngry: {
  27380. height: math.unit(4.95, "feet"),
  27381. name: "Head (Angry)",
  27382. image: {
  27383. source: "./media/characters/baadra/head-angry.svg"
  27384. }
  27385. },
  27386. headOpen: {
  27387. height: math.unit(6, "feet"),
  27388. name: "Head (Open)",
  27389. image: {
  27390. source: "./media/characters/baadra/head-open.svg"
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(17 + 6 / 12, "feet"),
  27398. default: true
  27399. },
  27400. ]
  27401. ))
  27402. characterMakers.push(() => makeCharacter(
  27403. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27404. {
  27405. front: {
  27406. height: math.unit(7 + 3 / 12, "feet"),
  27407. weight: math.unit(180, "lb"),
  27408. name: "Front",
  27409. image: {
  27410. source: "./media/characters/juri/front.svg",
  27411. extra: 1401 / 1237,
  27412. bottom: 18.5 / 1418
  27413. }
  27414. },
  27415. side: {
  27416. height: math.unit(7 + 3 / 12, "feet"),
  27417. weight: math.unit(180, "lb"),
  27418. name: "Side",
  27419. image: {
  27420. source: "./media/characters/juri/side.svg",
  27421. extra: 1424 / 1242,
  27422. bottom: 18.5 / 1447
  27423. }
  27424. },
  27425. sitting: {
  27426. height: math.unit(6, "feet"),
  27427. weight: math.unit(180, "lb"),
  27428. name: "Sitting",
  27429. image: {
  27430. source: "./media/characters/juri/sitting.svg",
  27431. extra: 1270 / 1143,
  27432. bottom: 100 / 1343
  27433. }
  27434. },
  27435. back: {
  27436. height: math.unit(7 + 3 / 12, "feet"),
  27437. weight: math.unit(180, "lb"),
  27438. name: "Back",
  27439. image: {
  27440. source: "./media/characters/juri/back.svg",
  27441. extra: 1377 / 1240,
  27442. bottom: 23.7 / 1405
  27443. }
  27444. },
  27445. maw: {
  27446. height: math.unit(2.8, "feet"),
  27447. name: "Maw",
  27448. image: {
  27449. source: "./media/characters/juri/maw.svg"
  27450. }
  27451. },
  27452. stomach: {
  27453. height: math.unit(0.89, "feet"),
  27454. preyCapacity: math.unit(4, "liters"),
  27455. name: "Stomach",
  27456. image: {
  27457. source: "./media/characters/juri/stomach.svg"
  27458. }
  27459. },
  27460. },
  27461. [
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(7 + 3 / 12, "feet"),
  27465. default: true
  27466. },
  27467. ]
  27468. ))
  27469. characterMakers.push(() => makeCharacter(
  27470. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27471. {
  27472. fox: {
  27473. height: math.unit(5 + 6 / 12, "feet"),
  27474. weight: math.unit(140, "lb"),
  27475. name: "Fox",
  27476. image: {
  27477. source: "./media/characters/maxene-sita/fox.svg",
  27478. extra: 146 / 138,
  27479. bottom: 2.1 / 148.19
  27480. }
  27481. },
  27482. foxLaying: {
  27483. height: math.unit(1.70, "feet"),
  27484. weight: math.unit(140, "lb"),
  27485. name: "Fox (Laying)",
  27486. image: {
  27487. source: "./media/characters/maxene-sita/fox-laying.svg",
  27488. extra: 910 / 572,
  27489. bottom: 71 / 981
  27490. }
  27491. },
  27492. kitsune: {
  27493. height: math.unit(10, "feet"),
  27494. weight: math.unit(800, "lb"),
  27495. name: "Kitsune",
  27496. image: {
  27497. source: "./media/characters/maxene-sita/kitsune.svg",
  27498. extra: 185 / 176,
  27499. bottom: 4.7 / 189.9
  27500. }
  27501. },
  27502. hellhound: {
  27503. height: math.unit(10, "feet"),
  27504. weight: math.unit(700, "lb"),
  27505. name: "Hellhound",
  27506. image: {
  27507. source: "./media/characters/maxene-sita/hellhound.svg",
  27508. extra: 1600 / 1545,
  27509. bottom: 81 / 1681
  27510. }
  27511. },
  27512. },
  27513. [
  27514. {
  27515. name: "Normal",
  27516. height: math.unit(5 + 6 / 12, "feet"),
  27517. default: true
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27523. {
  27524. front: {
  27525. height: math.unit(3 + 4 / 12, "feet"),
  27526. weight: math.unit(70, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/maia/front.svg",
  27530. extra: 227 / 219.5,
  27531. bottom: 40 / 267
  27532. }
  27533. },
  27534. back: {
  27535. height: math.unit(3 + 4 / 12, "feet"),
  27536. weight: math.unit(70, "lb"),
  27537. name: "Back",
  27538. image: {
  27539. source: "./media/characters/maia/back.svg",
  27540. extra: 237 / 225
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(3 + 4 / 12, "feet"),
  27548. default: true
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(5 + 10 / 12, "feet"),
  27557. weight: math.unit(197, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/jabaro/front.svg",
  27561. extra: 225 / 216,
  27562. bottom: 5.06 / 230
  27563. }
  27564. },
  27565. back: {
  27566. height: math.unit(5 + 10 / 12, "feet"),
  27567. weight: math.unit(197, "lb"),
  27568. name: "Back",
  27569. image: {
  27570. source: "./media/characters/jabaro/back.svg",
  27571. extra: 225 / 219,
  27572. bottom: 1.9 / 227
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Normal",
  27579. height: math.unit(5 + 10 / 12, "feet"),
  27580. default: true
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(5 + 8 / 12, "feet"),
  27589. weight: math.unit(139, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/risa/front.svg",
  27593. extra: 270 / 260,
  27594. bottom: 11.2 / 282
  27595. }
  27596. },
  27597. back: {
  27598. height: math.unit(5 + 8 / 12, "feet"),
  27599. weight: math.unit(139, "lb"),
  27600. name: "Back",
  27601. image: {
  27602. source: "./media/characters/risa/back.svg",
  27603. extra: 264 / 255,
  27604. bottom: 4 / 268
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(5 + 8 / 12, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(2 + 11 / 12, "feet"),
  27621. weight: math.unit(30, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/weatley/front.svg",
  27625. bottom: 10.7 / 414,
  27626. extra: 403.5 / 362
  27627. }
  27628. },
  27629. back: {
  27630. height: math.unit(2 + 11 / 12, "feet"),
  27631. weight: math.unit(30, "lb"),
  27632. name: "Back",
  27633. image: {
  27634. source: "./media/characters/weatley/back.svg",
  27635. bottom: 10.7 / 414,
  27636. extra: 403.5 / 362
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(2 + 11 / 12, "feet"),
  27644. default: true
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(5 + 2 / 12, "feet"),
  27653. weight: math.unit(50, "kg"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/mercury-crescent/front.svg",
  27657. extra: 1088 / 1033,
  27658. bottom: 18.9 / 1109
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(5 + 2 / 12, "feet"),
  27666. default: true
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(2, "feet"),
  27675. weight: math.unit(15, "kg"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/diamond-jones/front.svg",
  27679. extra: 727/723,
  27680. bottom: 46/773
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(2, "feet"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(3, "feet"),
  27697. weight: math.unit(30, "kg"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/sweet-bit/front.svg",
  27701. extra: 675 / 567,
  27702. bottom: 27.7 / 703
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(3, "feet"),
  27710. default: true
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27716. {
  27717. side: {
  27718. height: math.unit(9.178, "feet"),
  27719. weight: math.unit(500, "lb"),
  27720. name: "Side",
  27721. image: {
  27722. source: "./media/characters/umbrazen/side.svg",
  27723. extra: 1730 / 1473,
  27724. bottom: 34.6 / 1765
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(9.178, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(10, "feet"),
  27741. weight: math.unit(750, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/arlist/front.svg",
  27745. extra: 961 / 778,
  27746. bottom: 6.2 / 986
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(10, "feet"),
  27754. default: true
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(5 + 1 / 12, "feet"),
  27763. weight: math.unit(110, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/aradel/front.svg",
  27767. extra: 324 / 303,
  27768. bottom: 3.6 / 329.4
  27769. }
  27770. },
  27771. },
  27772. [
  27773. {
  27774. name: "Normal",
  27775. height: math.unit(5 + 1 / 12, "feet"),
  27776. default: true
  27777. },
  27778. ]
  27779. ))
  27780. characterMakers.push(() => makeCharacter(
  27781. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27782. {
  27783. dressed: {
  27784. height: math.unit(3 + 8 / 12, "feet"),
  27785. weight: math.unit(50, "lb"),
  27786. name: "Dressed",
  27787. image: {
  27788. source: "./media/characters/serryn/dressed.svg",
  27789. extra: 1792 / 1656,
  27790. bottom: 43.5 / 1840
  27791. }
  27792. },
  27793. nude: {
  27794. height: math.unit(3 + 8 / 12, "feet"),
  27795. weight: math.unit(50, "lb"),
  27796. name: "Nude",
  27797. image: {
  27798. source: "./media/characters/serryn/nude.svg",
  27799. extra: 1792 / 1656,
  27800. bottom: 43.5 / 1840
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(3 + 8 / 12, "feet"),
  27808. default: true
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(7 + 10 / 12, "feet"),
  27817. weight: math.unit(255, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/xavier-thyme/front.svg",
  27821. extra: 3733 / 3642,
  27822. bottom: 131 / 3869
  27823. }
  27824. },
  27825. frontRaven: {
  27826. height: math.unit(7 + 10 / 12, "feet"),
  27827. weight: math.unit(255, "lb"),
  27828. name: "Front (Raven)",
  27829. image: {
  27830. source: "./media/characters/xavier-thyme/front-raven.svg",
  27831. extra: 4385 / 3642,
  27832. bottom: 131 / 4517
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(7 + 10 / 12, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(1.6, "m"),
  27849. weight: math.unit(50, "kg"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/kiki/front.svg",
  27853. extra: 4682 / 3610,
  27854. bottom: 115 / 4777
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(1.6, "meters"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(50, "m"),
  27871. weight: math.unit(500, "tonnes"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/ryoko/front.svg",
  27875. extra: 4632 / 3926,
  27876. bottom: 193 / 4823
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(50, "meters"),
  27884. default: true
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(30, "m"),
  27893. weight: math.unit(22, "tonnes"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/elio/front.svg",
  27897. extra: 4582 / 3720,
  27898. bottom: 236 / 4828
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(30, "meters"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(6 + 3 / 12, "feet"),
  27915. weight: math.unit(120, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/azura/front.svg",
  27919. extra: 1149 / 1135,
  27920. bottom: 45 / 1194
  27921. }
  27922. },
  27923. frontClothed: {
  27924. height: math.unit(6 + 3 / 12, "feet"),
  27925. weight: math.unit(120, "lb"),
  27926. name: "Front (Clothed)",
  27927. image: {
  27928. source: "./media/characters/azura/front-clothed.svg",
  27929. extra: 1149 / 1135,
  27930. bottom: 45 / 1194
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(6 + 3 / 12, "feet"),
  27938. default: true
  27939. },
  27940. {
  27941. name: "Macro",
  27942. height: math.unit(20 + 6 / 12, "feet")
  27943. },
  27944. {
  27945. name: "Megamacro",
  27946. height: math.unit(12, "miles")
  27947. },
  27948. {
  27949. name: "Gigamacro",
  27950. height: math.unit(10000, "miles")
  27951. },
  27952. {
  27953. name: "Teramacro",
  27954. height: math.unit(900000, "miles")
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(12, "feet"),
  27963. weight: math.unit(1, "ton"),
  27964. capacity: math.unit(660000, "gallons"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/zeus/front.svg",
  27968. extra: 5005 / 4717,
  27969. bottom: 363 / 5388
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(12, "feet")
  27977. },
  27978. {
  27979. name: "Preferred Size",
  27980. height: math.unit(0.5, "miles"),
  27981. default: true
  27982. },
  27983. {
  27984. name: "Giga Horse",
  27985. height: math.unit(300, "miles")
  27986. },
  27987. {
  27988. name: "Riding Planets",
  27989. height: math.unit(30, "megameters")
  27990. },
  27991. {
  27992. name: "Cosmic Giant",
  27993. height: math.unit(3, "zettameters")
  27994. },
  27995. {
  27996. name: "Breeding God",
  27997. height: math.unit(9.92e22, "yottameters")
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28003. {
  28004. side: {
  28005. height: math.unit(9, "feet"),
  28006. weight: math.unit(1500, "kg"),
  28007. name: "Side",
  28008. image: {
  28009. source: "./media/characters/fang/side.svg",
  28010. extra: 924 / 866,
  28011. bottom: 47.5 / 972.3
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(9, "feet"),
  28019. default: true
  28020. },
  28021. {
  28022. name: "Macro",
  28023. height: math.unit(75 + 6 / 12, "feet")
  28024. },
  28025. {
  28026. name: "Teramacro",
  28027. height: math.unit(50000, "miles")
  28028. },
  28029. ]
  28030. ))
  28031. characterMakers.push(() => makeCharacter(
  28032. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28033. {
  28034. front: {
  28035. height: math.unit(10, "feet"),
  28036. weight: math.unit(2, "tons"),
  28037. name: "Front",
  28038. image: {
  28039. source: "./media/characters/rekhit/front.svg",
  28040. extra: 2796 / 2590,
  28041. bottom: 225 / 3022
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(10, "feet"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Macro",
  28053. height: math.unit(500, "feet")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(7 + 6.451 / 12, "feet"),
  28062. weight: math.unit(310, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/dahlia-verrick/front.svg",
  28066. extra: 1488 / 1365,
  28067. bottom: 6.2 / 1495
  28068. }
  28069. },
  28070. back: {
  28071. height: math.unit(7 + 6.451 / 12, "feet"),
  28072. weight: math.unit(310, "lb"),
  28073. name: "Back",
  28074. image: {
  28075. source: "./media/characters/dahlia-verrick/back.svg",
  28076. extra: 1472 / 1351,
  28077. bottom: 5.28 / 1477
  28078. }
  28079. },
  28080. frontBusiness: {
  28081. height: math.unit(7 + 6.451 / 12, "feet"),
  28082. weight: math.unit(200, "lb"),
  28083. name: "Front (Business)",
  28084. image: {
  28085. source: "./media/characters/dahlia-verrick/front-business.svg",
  28086. extra: 1478 / 1381,
  28087. bottom: 5.5 / 1484
  28088. }
  28089. },
  28090. frontCasual: {
  28091. height: math.unit(7 + 6.451 / 12, "feet"),
  28092. weight: math.unit(200, "lb"),
  28093. name: "Front (Casual)",
  28094. image: {
  28095. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28096. extra: 1478 / 1381,
  28097. bottom: 5.5 / 1484
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Travel-Sized",
  28104. height: math.unit(7.45, "inches")
  28105. },
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(7 + 6.451 / 12, "feet"),
  28109. default: true
  28110. },
  28111. {
  28112. name: "Hitting the Town",
  28113. height: math.unit(37 + 8 / 12, "feet")
  28114. },
  28115. {
  28116. name: "Stomp in the Suburbs",
  28117. height: math.unit(964 + 9.728 / 12, "feet")
  28118. },
  28119. {
  28120. name: "Sit on the City",
  28121. height: math.unit(61747 + 10.592 / 12, "feet")
  28122. },
  28123. {
  28124. name: "Glomp the Globe",
  28125. height: math.unit(252919327 + 4.832 / 12, "feet")
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(6 + 4 / 12, "feet"),
  28134. weight: math.unit(320, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/balina-mahigan/front.svg",
  28138. extra: 447 / 428,
  28139. bottom: 18 / 466
  28140. }
  28141. },
  28142. back: {
  28143. height: math.unit(6 + 4 / 12, "feet"),
  28144. weight: math.unit(320, "lb"),
  28145. name: "Back",
  28146. image: {
  28147. source: "./media/characters/balina-mahigan/back.svg",
  28148. extra: 445 / 428,
  28149. bottom: 4.07 / 448
  28150. }
  28151. },
  28152. arm: {
  28153. height: math.unit(1.88, "feet"),
  28154. name: "Arm",
  28155. image: {
  28156. source: "./media/characters/balina-mahigan/arm.svg"
  28157. }
  28158. },
  28159. backPort: {
  28160. height: math.unit(0.685, "feet"),
  28161. name: "Back Port",
  28162. image: {
  28163. source: "./media/characters/balina-mahigan/back-port.svg"
  28164. }
  28165. },
  28166. hoofpaw: {
  28167. height: math.unit(1.41, "feet"),
  28168. name: "Hoofpaw",
  28169. image: {
  28170. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28171. }
  28172. },
  28173. leftHandBack: {
  28174. height: math.unit(0.938, "feet"),
  28175. name: "Left Hand (Back)",
  28176. image: {
  28177. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28178. }
  28179. },
  28180. leftHandFront: {
  28181. height: math.unit(0.938, "feet"),
  28182. name: "Left Hand (Front)",
  28183. image: {
  28184. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28185. }
  28186. },
  28187. rightHandBack: {
  28188. height: math.unit(0.95, "feet"),
  28189. name: "Right Hand (Back)",
  28190. image: {
  28191. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28192. }
  28193. },
  28194. rightHandFront: {
  28195. height: math.unit(0.95, "feet"),
  28196. name: "Right Hand (Front)",
  28197. image: {
  28198. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(6 + 4 / 12, "feet"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(6, "feet"),
  28215. weight: math.unit(320, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/balina-mejeri/front.svg",
  28219. extra: 517 / 488,
  28220. bottom: 44.2 / 561
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(6 + 4 / 12, "feet")
  28228. },
  28229. {
  28230. name: "Business",
  28231. height: math.unit(155, "feet"),
  28232. default: true
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28238. {
  28239. kneeling: {
  28240. height: math.unit(6 + 4 / 12, "feet"),
  28241. weight: math.unit(300 * 20, "lb"),
  28242. name: "Kneeling",
  28243. image: {
  28244. source: "./media/characters/balbarian/kneeling.svg",
  28245. extra: 922 / 862,
  28246. bottom: 42.4 / 965
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Normal",
  28253. height: math.unit(6 + 4 / 12, "feet")
  28254. },
  28255. {
  28256. name: "Treasured",
  28257. height: math.unit(18 + 9 / 12, "feet"),
  28258. default: true
  28259. },
  28260. {
  28261. name: "Macro",
  28262. height: math.unit(900, "feet")
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(6 + 4 / 12, "feet"),
  28271. weight: math.unit(325, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/balina-amarini/front.svg",
  28275. extra: 415 / 403,
  28276. bottom: 19 / 433.4
  28277. }
  28278. },
  28279. back: {
  28280. height: math.unit(6 + 4 / 12, "feet"),
  28281. weight: math.unit(325, "lb"),
  28282. name: "Back",
  28283. image: {
  28284. source: "./media/characters/balina-amarini/back.svg",
  28285. extra: 415 / 403,
  28286. bottom: 13.5 / 432
  28287. }
  28288. },
  28289. overdrive: {
  28290. height: math.unit(6 + 4 / 12, "feet"),
  28291. weight: math.unit(400, "lb"),
  28292. name: "Overdrive",
  28293. image: {
  28294. source: "./media/characters/balina-amarini/overdrive.svg",
  28295. extra: 269 / 259,
  28296. bottom: 12 / 282
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Boom",
  28303. height: math.unit(9 + 10 / 12, "feet"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Macro",
  28308. height: math.unit(280, "feet")
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28314. {
  28315. goddess: {
  28316. height: math.unit(600, "feet"),
  28317. weight: math.unit(2000000, "tons"),
  28318. name: "Goddess",
  28319. image: {
  28320. source: "./media/characters/lady-kubwa/goddess.svg",
  28321. extra: 1240.5 / 1223,
  28322. bottom: 22 / 1263
  28323. }
  28324. },
  28325. goddesser: {
  28326. height: math.unit(900, "feet"),
  28327. weight: math.unit(20000000, "lb"),
  28328. name: "Goddess-er",
  28329. image: {
  28330. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28331. extra: 899 / 888,
  28332. bottom: 12.6 / 912
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(600, "feet"),
  28340. default: true
  28341. },
  28342. {
  28343. name: "Megamacro",
  28344. height: math.unit(250, "miles")
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(7 + 7 / 12, "feet"),
  28353. weight: math.unit(250, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/tala-grovehorn/front.svg",
  28357. extra: 2636 / 2525,
  28358. bottom: 147 / 2781
  28359. }
  28360. },
  28361. back: {
  28362. height: math.unit(7 + 7 / 12, "feet"),
  28363. weight: math.unit(250, "lb"),
  28364. name: "Back",
  28365. image: {
  28366. source: "./media/characters/tala-grovehorn/back.svg",
  28367. extra: 2635 / 2539,
  28368. bottom: 100 / 2732.8
  28369. }
  28370. },
  28371. mouth: {
  28372. height: math.unit(1.15, "feet"),
  28373. name: "Mouth",
  28374. image: {
  28375. source: "./media/characters/tala-grovehorn/mouth.svg"
  28376. }
  28377. },
  28378. dick: {
  28379. height: math.unit(2.36, "feet"),
  28380. name: "Dick",
  28381. image: {
  28382. source: "./media/characters/tala-grovehorn/dick.svg"
  28383. }
  28384. },
  28385. slit: {
  28386. height: math.unit(0.61, "feet"),
  28387. name: "Slit",
  28388. image: {
  28389. source: "./media/characters/tala-grovehorn/slit.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(7 + 7 / 12, "feet"),
  28401. weight: math.unit(225, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/epona/front.svg",
  28405. extra: 2445 / 2290,
  28406. bottom: 251 / 2696
  28407. }
  28408. },
  28409. back: {
  28410. height: math.unit(7 + 7 / 12, "feet"),
  28411. weight: math.unit(225, "lb"),
  28412. name: "Back",
  28413. image: {
  28414. source: "./media/characters/epona/back.svg",
  28415. extra: 2546 / 2408,
  28416. bottom: 44 / 2589
  28417. }
  28418. },
  28419. genitals: {
  28420. height: math.unit(1.5, "feet"),
  28421. name: "Genitals",
  28422. image: {
  28423. source: "./media/characters/epona/genitals.svg"
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(7 + 7 / 12, "feet"),
  28431. default: true
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(7, "feet"),
  28440. weight: math.unit(518, "lb"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/avia-bloodbourn/front.svg",
  28444. extra: 1466 / 1350,
  28445. bottom: 65 / 1527
  28446. }
  28447. },
  28448. },
  28449. [
  28450. ]
  28451. ))
  28452. characterMakers.push(() => makeCharacter(
  28453. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28454. {
  28455. front: {
  28456. height: math.unit(9.35, "feet"),
  28457. weight: math.unit(600, "lb"),
  28458. name: "Front",
  28459. image: {
  28460. source: "./media/characters/amera/front.svg",
  28461. extra: 891 / 818,
  28462. bottom: 30 / 922.7
  28463. }
  28464. },
  28465. back: {
  28466. height: math.unit(9.35, "feet"),
  28467. weight: math.unit(600, "lb"),
  28468. name: "Back",
  28469. image: {
  28470. source: "./media/characters/amera/back.svg",
  28471. extra: 876 / 824,
  28472. bottom: 6.8 / 884
  28473. }
  28474. },
  28475. dick: {
  28476. height: math.unit(2.14, "feet"),
  28477. name: "Dick",
  28478. image: {
  28479. source: "./media/characters/amera/dick.svg"
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(9.35, "feet"),
  28487. default: true
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28493. {
  28494. kneeling: {
  28495. height: math.unit(3 + 4 / 12, "feet"),
  28496. weight: math.unit(90, "lb"),
  28497. name: "Kneeling",
  28498. image: {
  28499. source: "./media/characters/rosewen/kneeling.svg",
  28500. extra: 1835 / 1571,
  28501. bottom: 27.7 / 1862
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(3 + 4 / 12, "feet"),
  28509. default: true
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(5 + 10 / 12, "feet"),
  28518. weight: math.unit(200, "lb"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/sabah/front.svg",
  28522. extra: 849 / 763,
  28523. bottom: 33.9 / 881
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(5 + 10 / 12, "feet"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28537. {
  28538. front: {
  28539. height: math.unit(3 + 5 / 12, "feet"),
  28540. weight: math.unit(40, "kg"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/purple-flame/front.svg",
  28544. extra: 1577 / 1412,
  28545. bottom: 97 / 1694
  28546. }
  28547. },
  28548. frontDressed: {
  28549. height: math.unit(3 + 5 / 12, "feet"),
  28550. weight: math.unit(40, "kg"),
  28551. name: "Front (Dressed)",
  28552. image: {
  28553. source: "./media/characters/purple-flame/front-dressed.svg",
  28554. extra: 1577 / 1412,
  28555. bottom: 97 / 1694
  28556. }
  28557. },
  28558. headphones: {
  28559. height: math.unit(0.85, "feet"),
  28560. name: "Headphones",
  28561. image: {
  28562. source: "./media/characters/purple-flame/headphones.svg"
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Really Small",
  28569. height: math.unit(5, "cm")
  28570. },
  28571. {
  28572. name: "Micro",
  28573. height: math.unit(1 + 5 / 12, "feet")
  28574. },
  28575. {
  28576. name: "Normal",
  28577. height: math.unit(3 + 5 / 12, "feet"),
  28578. default: true
  28579. },
  28580. {
  28581. name: "Minimacro",
  28582. height: math.unit(125, "feet")
  28583. },
  28584. {
  28585. name: "Macro",
  28586. height: math.unit(0.5, "miles")
  28587. },
  28588. {
  28589. name: "Megamacro",
  28590. height: math.unit(50, "miles")
  28591. },
  28592. {
  28593. name: "Gigantic",
  28594. height: math.unit(750, "miles")
  28595. },
  28596. {
  28597. name: "Planetary",
  28598. height: math.unit(15000, "miles")
  28599. },
  28600. ]
  28601. ))
  28602. characterMakers.push(() => makeCharacter(
  28603. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28604. {
  28605. front: {
  28606. height: math.unit(14, "feet"),
  28607. weight: math.unit(959, "lb"),
  28608. name: "Front",
  28609. image: {
  28610. source: "./media/characters/arsenal/front.svg",
  28611. extra: 2357 / 2157,
  28612. bottom: 93 / 2458
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Normal",
  28619. height: math.unit(14, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(6, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/adira/front.svg",
  28633. extra: 1078 / 1029,
  28634. bottom: 87 / 1166
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(4, "inches"),
  28642. default: true
  28643. },
  28644. {
  28645. name: "Macro",
  28646. height: math.unit(50, "feet")
  28647. },
  28648. ]
  28649. ))
  28650. characterMakers.push(() => makeCharacter(
  28651. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28652. {
  28653. front: {
  28654. height: math.unit(16, "feet"),
  28655. weight: math.unit(1000, "lb"),
  28656. name: "Front",
  28657. image: {
  28658. source: "./media/characters/grim/front.svg",
  28659. extra: 622 / 614,
  28660. bottom: 18.1 / 642
  28661. }
  28662. },
  28663. back: {
  28664. height: math.unit(16, "feet"),
  28665. weight: math.unit(1000, "lb"),
  28666. name: "Back",
  28667. image: {
  28668. source: "./media/characters/grim/back.svg",
  28669. extra: 610.6 / 602,
  28670. bottom: 40.8 / 652
  28671. }
  28672. },
  28673. hunched: {
  28674. height: math.unit(9.75, "feet"),
  28675. weight: math.unit(1000, "lb"),
  28676. name: "Hunched",
  28677. image: {
  28678. source: "./media/characters/grim/hunched.svg",
  28679. extra: 304 / 297,
  28680. bottom: 35.4 / 394
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(16, "feet"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(2.3, "meters"),
  28697. weight: math.unit(300, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/sinja/front-sfw.svg",
  28701. extra: 1393 / 1294,
  28702. bottom: 70 / 1463
  28703. }
  28704. },
  28705. frontNsfw: {
  28706. height: math.unit(2.3, "meters"),
  28707. weight: math.unit(300, "lb"),
  28708. name: "Front (NSFW)",
  28709. image: {
  28710. source: "./media/characters/sinja/front-nsfw.svg",
  28711. extra: 1393 / 1294,
  28712. bottom: 70 / 1463
  28713. }
  28714. },
  28715. back: {
  28716. height: math.unit(2.3, "meters"),
  28717. weight: math.unit(300, "lb"),
  28718. name: "Back",
  28719. image: {
  28720. source: "./media/characters/sinja/back.svg",
  28721. extra: 1393 / 1294,
  28722. bottom: 70 / 1463
  28723. }
  28724. },
  28725. head: {
  28726. height: math.unit(1.771, "feet"),
  28727. name: "Head",
  28728. image: {
  28729. source: "./media/characters/sinja/head.svg"
  28730. }
  28731. },
  28732. slit: {
  28733. height: math.unit(0.8, "feet"),
  28734. name: "Slit",
  28735. image: {
  28736. source: "./media/characters/sinja/slit.svg"
  28737. }
  28738. },
  28739. },
  28740. [
  28741. {
  28742. name: "Normal",
  28743. height: math.unit(2.3, "meters")
  28744. },
  28745. {
  28746. name: "Macro",
  28747. height: math.unit(91, "meters"),
  28748. default: true
  28749. },
  28750. {
  28751. name: "Megamacro",
  28752. height: math.unit(91440, "meters")
  28753. },
  28754. {
  28755. name: "Gigamacro",
  28756. height: math.unit(60960000, "meters")
  28757. },
  28758. {
  28759. name: "Teramacro",
  28760. height: math.unit(9144000000, "meters")
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(1.7, "meters"),
  28769. weight: math.unit(130, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/kyu/front.svg",
  28773. extra: 415 / 395,
  28774. bottom: 5 / 420
  28775. }
  28776. },
  28777. head: {
  28778. height: math.unit(1.75, "feet"),
  28779. name: "Head",
  28780. image: {
  28781. source: "./media/characters/kyu/head.svg"
  28782. }
  28783. },
  28784. foot: {
  28785. height: math.unit(0.81, "feet"),
  28786. name: "Foot",
  28787. image: {
  28788. source: "./media/characters/kyu/foot.svg"
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(1.7, "meters")
  28796. },
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(131, "feet"),
  28800. default: true
  28801. },
  28802. {
  28803. name: "Megamacro",
  28804. height: math.unit(91440, "meters")
  28805. },
  28806. {
  28807. name: "Gigamacro",
  28808. height: math.unit(60960000, "meters")
  28809. },
  28810. {
  28811. name: "Teramacro",
  28812. height: math.unit(9144000000, "meters")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(7 + 1 / 12, "feet"),
  28821. weight: math.unit(250, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/joey/front.svg",
  28825. extra: 1791 / 1537,
  28826. bottom: 28 / 1816
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Micro",
  28833. height: math.unit(3, "inches")
  28834. },
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(7 + 1 / 12, "feet"),
  28838. default: true
  28839. },
  28840. ]
  28841. ))
  28842. characterMakers.push(() => makeCharacter(
  28843. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28844. {
  28845. front: {
  28846. height: math.unit(165, "cm"),
  28847. weight: math.unit(140, "lb"),
  28848. name: "Front",
  28849. image: {
  28850. source: "./media/characters/sam-evans/front.svg",
  28851. extra: 3417 / 3230,
  28852. bottom: 41.3 / 3417
  28853. }
  28854. },
  28855. frontSixTails: {
  28856. height: math.unit(165, "cm"),
  28857. weight: math.unit(140, "lb"),
  28858. name: "Front-six-tails",
  28859. image: {
  28860. source: "./media/characters/sam-evans/front-six-tails.svg",
  28861. extra: 3417 / 3230,
  28862. bottom: 41.3 / 3417
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(165, "cm"),
  28867. weight: math.unit(140, "lb"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/sam-evans/back.svg",
  28871. extra: 3227 / 3032,
  28872. bottom: 6.8 / 3234
  28873. }
  28874. },
  28875. face: {
  28876. height: math.unit(0.68, "feet"),
  28877. name: "Face",
  28878. image: {
  28879. source: "./media/characters/sam-evans/face.svg"
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(165, "cm"),
  28887. default: true
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(100, "meters")
  28892. },
  28893. {
  28894. name: "Macro+",
  28895. height: math.unit(800, "meters")
  28896. },
  28897. {
  28898. name: "Macro++",
  28899. height: math.unit(3, "km")
  28900. },
  28901. {
  28902. name: "Macro+++",
  28903. height: math.unit(30, "km")
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28909. {
  28910. front: {
  28911. height: math.unit(10, "feet"),
  28912. weight: math.unit(750, "lb"),
  28913. name: "Front",
  28914. image: {
  28915. source: "./media/characters/juliet-a/front.svg",
  28916. extra: 1766 / 1720,
  28917. bottom: 43 / 1809
  28918. }
  28919. },
  28920. back: {
  28921. height: math.unit(10, "feet"),
  28922. weight: math.unit(750, "lb"),
  28923. name: "Back",
  28924. image: {
  28925. source: "./media/characters/juliet-a/back.svg",
  28926. extra: 1781 / 1734,
  28927. bottom: 35 / 1810,
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(10, "feet"),
  28935. default: true
  28936. },
  28937. {
  28938. name: "Dragon Form",
  28939. height: math.unit(250, "feet")
  28940. },
  28941. {
  28942. name: "Macro",
  28943. height: math.unit(1000, "feet")
  28944. },
  28945. {
  28946. name: "Megamacro",
  28947. height: math.unit(10000, "feet")
  28948. }
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28953. {
  28954. regular: {
  28955. height: math.unit(7 + 3 / 12, "feet"),
  28956. weight: math.unit(260, "lb"),
  28957. name: "Regular",
  28958. image: {
  28959. source: "./media/characters/wild/regular.svg",
  28960. extra: 97.45 / 92,
  28961. bottom: 6.8 / 104.3
  28962. }
  28963. },
  28964. biggums: {
  28965. height: math.unit(8 + 6 / 12, "feet"),
  28966. weight: math.unit(425, "lb"),
  28967. name: "Biggums",
  28968. image: {
  28969. source: "./media/characters/wild/biggums.svg",
  28970. extra: 97.45 / 92,
  28971. bottom: 7.5 / 132.34
  28972. }
  28973. },
  28974. mawRegular: {
  28975. height: math.unit(1.24, "feet"),
  28976. name: "Maw (Regular)",
  28977. image: {
  28978. source: "./media/characters/wild/maw.svg"
  28979. }
  28980. },
  28981. mawBiggums: {
  28982. height: math.unit(1.47, "feet"),
  28983. name: "Maw (Biggums)",
  28984. image: {
  28985. source: "./media/characters/wild/maw.svg"
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(7 + 3 / 12, "feet"),
  28993. default: true
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28999. {
  29000. front: {
  29001. height: math.unit(2.5, "meters"),
  29002. weight: math.unit(200, "kg"),
  29003. name: "Front",
  29004. image: {
  29005. source: "./media/characters/vidar/front.svg",
  29006. extra: 2994 / 2795,
  29007. bottom: 56 / 3061
  29008. }
  29009. },
  29010. back: {
  29011. height: math.unit(2.5, "meters"),
  29012. weight: math.unit(200, "kg"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/vidar/back.svg",
  29016. extra: 3131 / 2928,
  29017. bottom: 13.5 / 3141.5
  29018. }
  29019. },
  29020. feral: {
  29021. height: math.unit(2.5, "meters"),
  29022. weight: math.unit(2000, "kg"),
  29023. name: "Feral",
  29024. image: {
  29025. source: "./media/characters/vidar/feral.svg",
  29026. extra: 2790 / 1765,
  29027. bottom: 6 / 2796
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(2.5, "meters"),
  29035. default: true
  29036. },
  29037. {
  29038. name: "Macro",
  29039. height: math.unit(100, "meters")
  29040. },
  29041. ]
  29042. ))
  29043. characterMakers.push(() => makeCharacter(
  29044. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29045. {
  29046. front: {
  29047. height: math.unit(5 + 9 / 12, "feet"),
  29048. weight: math.unit(120, "lb"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/ash/front.svg",
  29052. extra: 2189 / 1961,
  29053. bottom: 5.2 / 2194
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(5 + 9 / 12, "feet"),
  29061. default: true
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29067. {
  29068. front: {
  29069. height: math.unit(9, "feet"),
  29070. weight: math.unit(10000, "lb"),
  29071. name: "Front",
  29072. image: {
  29073. source: "./media/characters/gygabite/front.svg",
  29074. bottom: 31.7 / 537.8,
  29075. extra: 505 / 370
  29076. }
  29077. },
  29078. },
  29079. [
  29080. {
  29081. name: "Normal",
  29082. height: math.unit(9, "feet"),
  29083. default: true
  29084. },
  29085. ]
  29086. ))
  29087. characterMakers.push(() => makeCharacter(
  29088. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29089. {
  29090. front: {
  29091. height: math.unit(12, "feet"),
  29092. weight: math.unit(4000, "lb"),
  29093. name: "Front",
  29094. image: {
  29095. source: "./media/characters/p0tat0/front.svg",
  29096. extra: 1065 / 921,
  29097. bottom: 55.7 / 1121.25
  29098. }
  29099. },
  29100. },
  29101. [
  29102. {
  29103. name: "Normal",
  29104. height: math.unit(12, "feet"),
  29105. default: true
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29111. {
  29112. side: {
  29113. height: math.unit(6.5, "feet"),
  29114. weight: math.unit(800, "lb"),
  29115. name: "Side",
  29116. image: {
  29117. source: "./media/characters/dusk/side.svg",
  29118. extra: 615 / 373,
  29119. bottom: 53 / 664
  29120. }
  29121. },
  29122. sitting: {
  29123. height: math.unit(7, "feet"),
  29124. weight: math.unit(800, "lb"),
  29125. name: "Sitting",
  29126. image: {
  29127. source: "./media/characters/dusk/sitting.svg",
  29128. extra: 753 / 425,
  29129. bottom: 33 / 774
  29130. }
  29131. },
  29132. head: {
  29133. height: math.unit(6.1, "feet"),
  29134. name: "Head",
  29135. image: {
  29136. source: "./media/characters/dusk/head.svg"
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(7, "feet"),
  29144. default: true
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29150. {
  29151. front: {
  29152. height: math.unit(15, "feet"),
  29153. weight: math.unit(7000, "lb"),
  29154. name: "Front",
  29155. image: {
  29156. source: "./media/characters/jay-direwolf/front.svg",
  29157. extra: 1810 / 1732,
  29158. bottom: 66 / 1892
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Normal",
  29165. height: math.unit(15, "feet"),
  29166. default: true
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(4 + 9 / 12, "feet"),
  29175. weight: math.unit(130, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/anchovie/front.svg",
  29179. extra: 382 / 350,
  29180. bottom: 25 / 409
  29181. }
  29182. },
  29183. back: {
  29184. height: math.unit(4 + 9 / 12, "feet"),
  29185. weight: math.unit(130, "lb"),
  29186. name: "Back",
  29187. image: {
  29188. source: "./media/characters/anchovie/back.svg",
  29189. extra: 385 / 352,
  29190. bottom: 16.6 / 402
  29191. }
  29192. },
  29193. frontDressed: {
  29194. height: math.unit(4 + 9 / 12, "feet"),
  29195. weight: math.unit(130, "lb"),
  29196. name: "Front (Dressed)",
  29197. image: {
  29198. source: "./media/characters/anchovie/front-dressed.svg",
  29199. extra: 382 / 350,
  29200. bottom: 25 / 409
  29201. }
  29202. },
  29203. backDressed: {
  29204. height: math.unit(4 + 9 / 12, "feet"),
  29205. weight: math.unit(130, "lb"),
  29206. name: "Back (Dressed)",
  29207. image: {
  29208. source: "./media/characters/anchovie/back-dressed.svg",
  29209. extra: 385 / 352,
  29210. bottom: 16.6 / 402
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Micro",
  29217. height: math.unit(6.4, "inches")
  29218. },
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(4 + 9 / 12, "feet"),
  29222. default: true
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(2, "meters"),
  29231. weight: math.unit(180, "lb"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/acidrenamon/front.svg",
  29235. extra: 987 / 890,
  29236. bottom: 22.8 / 1009
  29237. }
  29238. },
  29239. back: {
  29240. height: math.unit(2, "meters"),
  29241. weight: math.unit(180, "lb"),
  29242. name: "Back",
  29243. image: {
  29244. source: "./media/characters/acidrenamon/back.svg",
  29245. extra: 983 / 891,
  29246. bottom: 8.4 / 992
  29247. }
  29248. },
  29249. head: {
  29250. height: math.unit(1.92, "feet"),
  29251. name: "Head",
  29252. image: {
  29253. source: "./media/characters/acidrenamon/head.svg"
  29254. }
  29255. },
  29256. rump: {
  29257. height: math.unit(1.72, "feet"),
  29258. name: "Rump",
  29259. image: {
  29260. source: "./media/characters/acidrenamon/rump.svg"
  29261. }
  29262. },
  29263. tail: {
  29264. height: math.unit(4.2, "feet"),
  29265. name: "Tail",
  29266. image: {
  29267. source: "./media/characters/acidrenamon/tail.svg"
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(2, "meters"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "Minimacro",
  29279. height: math.unit(7, "meters")
  29280. },
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(200, "meters")
  29284. },
  29285. {
  29286. name: "Gigamacro",
  29287. height: math.unit(0.2, "earths")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(152, "feet"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/kenzie-lee/front.svg",
  29299. extra: 1869/1774,
  29300. bottom: 128/1997
  29301. }
  29302. },
  29303. side: {
  29304. height: math.unit(86, "feet"),
  29305. name: "Side",
  29306. image: {
  29307. source: "./media/characters/kenzie-lee/side.svg",
  29308. extra: 930/815,
  29309. bottom: 177/1107
  29310. }
  29311. },
  29312. paw: {
  29313. height: math.unit(15, "feet"),
  29314. name: "Paw",
  29315. image: {
  29316. source: "./media/characters/kenzie-lee/paw.svg"
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Kenzie Flea",
  29323. height: math.unit(2, "mm"),
  29324. default: true
  29325. },
  29326. {
  29327. name: "Micro",
  29328. height: math.unit(2, "inches")
  29329. },
  29330. {
  29331. name: "Normal",
  29332. height: math.unit(152, "feet")
  29333. },
  29334. {
  29335. name: "Megamacro",
  29336. height: math.unit(7, "miles")
  29337. },
  29338. {
  29339. name: "Gigamacro",
  29340. height: math.unit(8000, "miles")
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(6, "feet"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/withers/front.svg",
  29352. extra: 1935/1760,
  29353. bottom: 72/2007
  29354. }
  29355. },
  29356. back: {
  29357. height: math.unit(6, "feet"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/withers/back.svg",
  29361. extra: 1944/1792,
  29362. bottom: 12/1956
  29363. }
  29364. },
  29365. dressed: {
  29366. height: math.unit(6, "feet"),
  29367. name: "Dressed",
  29368. image: {
  29369. source: "./media/characters/withers/dressed.svg",
  29370. extra: 1937/1765,
  29371. bottom: 73/2010
  29372. }
  29373. },
  29374. phase1: {
  29375. height: math.unit(1.1, "feet"),
  29376. name: "Phase 1",
  29377. image: {
  29378. source: "./media/characters/withers/phase-1.svg",
  29379. extra: 1885/1232,
  29380. bottom: 0/1885
  29381. }
  29382. },
  29383. phase2: {
  29384. height: math.unit(1.05, "feet"),
  29385. name: "Phase 2",
  29386. image: {
  29387. source: "./media/characters/withers/phase-2.svg",
  29388. extra: 1792/1090,
  29389. bottom: 0/1792
  29390. }
  29391. },
  29392. partyWipe: {
  29393. height: math.unit(1.1, "feet"),
  29394. name: "Party Wipe",
  29395. image: {
  29396. source: "./media/characters/withers/party-wipe.svg",
  29397. extra: 1864/1207,
  29398. bottom: 0/1864
  29399. }
  29400. },
  29401. },
  29402. [
  29403. {
  29404. name: "Macro",
  29405. height: math.unit(167, "feet"),
  29406. default: true
  29407. },
  29408. {
  29409. name: "Megamacro",
  29410. height: math.unit(15, "miles")
  29411. }
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(6 + 7 / 12, "feet"),
  29419. weight: math.unit(250, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/nemoskii/front.svg",
  29423. extra: 2270 / 1734,
  29424. bottom: 86 / 2354
  29425. }
  29426. },
  29427. back: {
  29428. height: math.unit(6 + 7 / 12, "feet"),
  29429. weight: math.unit(250, "lb"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/nemoskii/back.svg",
  29433. extra: 1845 / 1788,
  29434. bottom: 10.5 / 1852
  29435. }
  29436. },
  29437. head: {
  29438. height: math.unit(1.31, "feet"),
  29439. name: "Head",
  29440. image: {
  29441. source: "./media/characters/nemoskii/head.svg"
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Micro",
  29448. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29449. },
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(6 + 7 / 12, "feet"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit((6 + 7 / 12) * 150, "feet")
  29458. },
  29459. {
  29460. name: "Macro+",
  29461. height: math.unit((6 + 7 / 12) * 500, "feet")
  29462. },
  29463. {
  29464. name: "Megamacro",
  29465. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(1, "mile"),
  29474. weight: math.unit(265261.9, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/shui/front.svg",
  29478. extra: 1633 / 1564,
  29479. bottom: 91.5 / 1726
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Macro",
  29486. height: math.unit(1, "mile"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(12 + 6 / 12, "feet"),
  29496. weight: math.unit(1342, "lb"),
  29497. name: "Front",
  29498. image: {
  29499. source: "./media/characters/arokh-takakura/front.svg",
  29500. extra: 1089 / 1043,
  29501. bottom: 77.4 / 1176.7
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(12 + 6 / 12, "feet"),
  29506. weight: math.unit(1342, "lb"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/arokh-takakura/back.svg",
  29510. extra: 1046 / 1019,
  29511. bottom: 102 / 1150
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Big",
  29518. height: math.unit(12 + 6 / 12, "feet"),
  29519. default: true
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(5 + 6 / 12, "feet"),
  29528. weight: math.unit(150, "lb"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/theo/front.svg",
  29532. extra: 1184 / 1131,
  29533. bottom: 7.4 / 1191
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Micro",
  29540. height: math.unit(5, "inches")
  29541. },
  29542. {
  29543. name: "Normal",
  29544. height: math.unit(5 + 6 / 12, "feet"),
  29545. default: true
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(5 + 9 / 12, "feet"),
  29554. weight: math.unit(130, "lb"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/cecelia-swift/front.svg",
  29558. extra: 502 / 484,
  29559. bottom: 23 / 523
  29560. }
  29561. },
  29562. back: {
  29563. height: math.unit(5 + 9 / 12, "feet"),
  29564. weight: math.unit(130, "lb"),
  29565. name: "Back",
  29566. image: {
  29567. source: "./media/characters/cecelia-swift/back.svg",
  29568. extra: 499 / 485,
  29569. bottom: 12 / 511
  29570. }
  29571. },
  29572. head: {
  29573. height: math.unit(0.90, "feet"),
  29574. name: "Head",
  29575. image: {
  29576. source: "./media/characters/cecelia-swift/head.svg"
  29577. }
  29578. },
  29579. rump: {
  29580. height: math.unit(1.75, "feet"),
  29581. name: "Rump",
  29582. image: {
  29583. source: "./media/characters/cecelia-swift/rump.svg"
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Normal",
  29590. height: math.unit(5 + 9 / 12, "feet"),
  29591. default: true
  29592. },
  29593. {
  29594. name: "Big",
  29595. height: math.unit(50, "feet")
  29596. },
  29597. {
  29598. name: "Macro",
  29599. height: math.unit(100, "feet")
  29600. },
  29601. {
  29602. name: "Macro+",
  29603. height: math.unit(500, "feet")
  29604. },
  29605. {
  29606. name: "Macro++",
  29607. height: math.unit(1000, "feet")
  29608. },
  29609. ]
  29610. ))
  29611. characterMakers.push(() => makeCharacter(
  29612. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29613. {
  29614. front: {
  29615. height: math.unit(6, "feet"),
  29616. weight: math.unit(150, "lb"),
  29617. name: "Front",
  29618. image: {
  29619. source: "./media/characters/kaunan/front.svg",
  29620. extra: 2890 / 2523,
  29621. bottom: 49 / 2939
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(150, "feet"),
  29629. default: true
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29635. {
  29636. dressed: {
  29637. height: math.unit(175, "cm"),
  29638. weight: math.unit(60, "kg"),
  29639. name: "Dressed",
  29640. image: {
  29641. source: "./media/characters/fei/dressed.svg",
  29642. extra: 1402/1278,
  29643. bottom: 27/1429
  29644. }
  29645. },
  29646. nude: {
  29647. height: math.unit(175, "cm"),
  29648. weight: math.unit(60, "kg"),
  29649. name: "Nude",
  29650. image: {
  29651. source: "./media/characters/fei/nude.svg",
  29652. extra: 1402/1278,
  29653. bottom: 27/1429
  29654. }
  29655. },
  29656. heels: {
  29657. height: math.unit(0.466, "feet"),
  29658. name: "Heels",
  29659. image: {
  29660. source: "./media/characters/fei/heels.svg",
  29661. extra: 156/152,
  29662. bottom: 28/184
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Mortal",
  29669. height: math.unit(175, "cm")
  29670. },
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(3500, "m")
  29674. },
  29675. {
  29676. name: "Stroll",
  29677. height: math.unit(18.4, "km"),
  29678. default: true
  29679. },
  29680. {
  29681. name: "Showoff",
  29682. height: math.unit(175, "km")
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(7, "feet"),
  29691. weight: math.unit(1000, "kg"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/edrax/front.svg",
  29695. extra: 2838 / 2550,
  29696. bottom: 130 / 2968
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Small",
  29703. height: math.unit(7, "feet")
  29704. },
  29705. {
  29706. name: "Normal",
  29707. height: math.unit(1500, "meters")
  29708. },
  29709. {
  29710. name: "Mega",
  29711. height: math.unit(12000000, "km"),
  29712. default: true
  29713. },
  29714. {
  29715. name: "Megamacro",
  29716. height: math.unit(10600000, "lightyears")
  29717. },
  29718. {
  29719. name: "Hypermacro",
  29720. height: math.unit(256, "yottameters")
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(10, "feet"),
  29729. weight: math.unit(750, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/clove/front.svg",
  29733. extra: 1918/1751,
  29734. bottom: 52/1970
  29735. }
  29736. },
  29737. back: {
  29738. height: math.unit(10, "feet"),
  29739. weight: math.unit(750, "lb"),
  29740. name: "Back",
  29741. image: {
  29742. source: "./media/characters/clove/back.svg",
  29743. extra: 1912/1747,
  29744. bottom: 50/1962
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Normal",
  29751. height: math.unit(10, "feet"),
  29752. default: true
  29753. },
  29754. ]
  29755. ))
  29756. characterMakers.push(() => makeCharacter(
  29757. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29758. {
  29759. front: {
  29760. height: math.unit(4, "feet"),
  29761. weight: math.unit(50, "lb"),
  29762. name: "Front",
  29763. image: {
  29764. source: "./media/characters/alex-rabbit/front.svg",
  29765. extra: 507 / 458,
  29766. bottom: 18.5 / 527
  29767. }
  29768. },
  29769. back: {
  29770. height: math.unit(4, "feet"),
  29771. weight: math.unit(50, "lb"),
  29772. name: "Back",
  29773. image: {
  29774. source: "./media/characters/alex-rabbit/back.svg",
  29775. extra: 502 / 460,
  29776. bottom: 18.9 / 521
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(4, "feet"),
  29784. default: true
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29790. {
  29791. front: {
  29792. height: math.unit(1 + 3 / 12, "feet"),
  29793. weight: math.unit(80, "lb"),
  29794. name: "Front",
  29795. image: {
  29796. source: "./media/characters/zander-rose/front.svg",
  29797. extra: 916 / 797,
  29798. bottom: 17 / 933
  29799. }
  29800. },
  29801. back: {
  29802. height: math.unit(1 + 3 / 12, "feet"),
  29803. weight: math.unit(80, "lb"),
  29804. name: "Back",
  29805. image: {
  29806. source: "./media/characters/zander-rose/back.svg",
  29807. extra: 903 / 779,
  29808. bottom: 31 / 934
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(1 + 3 / 12, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29822. {
  29823. anthro: {
  29824. height: math.unit(6, "feet"),
  29825. weight: math.unit(150, "lb"),
  29826. name: "Anthro",
  29827. image: {
  29828. source: "./media/characters/razz/anthro.svg",
  29829. extra: 1437 / 1343,
  29830. bottom: 48 / 1485
  29831. }
  29832. },
  29833. feral: {
  29834. height: math.unit(6, "feet"),
  29835. weight: math.unit(150, "lb"),
  29836. name: "Feral",
  29837. image: {
  29838. source: "./media/characters/razz/feral.svg",
  29839. extra: 2569 / 1385,
  29840. bottom: 95 / 2664
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(6, "feet"),
  29848. default: true
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(9 + 4 / 12, "feet"),
  29857. weight: math.unit(500, "lb"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/morrigan/front.svg",
  29861. extra: 2707 / 2579,
  29862. bottom: 156 / 2863
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(9 + 4 / 12, "feet"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(5, "stories"),
  29879. weight: math.unit(4000, "lb"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/jenene/front.svg",
  29883. extra: 1780 / 1710,
  29884. bottom: 57 / 1837
  29885. }
  29886. },
  29887. },
  29888. [
  29889. {
  29890. name: "Normal",
  29891. height: math.unit(5, "stories"),
  29892. default: true
  29893. },
  29894. ]
  29895. ))
  29896. characterMakers.push(() => makeCharacter(
  29897. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29898. {
  29899. taurSfw: {
  29900. height: math.unit(10, "meters"),
  29901. weight: math.unit(17500, "kg"),
  29902. name: "Taur",
  29903. image: {
  29904. source: "./media/characters/faey/taur-sfw.svg",
  29905. extra: 1200 / 968,
  29906. bottom: 41 / 1241
  29907. }
  29908. },
  29909. chestmaw: {
  29910. height: math.unit(2.01, "meters"),
  29911. name: "Chestmaw",
  29912. image: {
  29913. source: "./media/characters/faey/chestmaw.svg"
  29914. }
  29915. },
  29916. foot: {
  29917. height: math.unit(2.43, "meters"),
  29918. name: "Foot",
  29919. image: {
  29920. source: "./media/characters/faey/foot.svg"
  29921. }
  29922. },
  29923. jaws: {
  29924. height: math.unit(1.66, "meters"),
  29925. name: "Jaws",
  29926. image: {
  29927. source: "./media/characters/faey/jaws.svg"
  29928. }
  29929. },
  29930. tongues: {
  29931. height: math.unit(2.01, "meters"),
  29932. name: "Tongues",
  29933. image: {
  29934. source: "./media/characters/faey/tongues.svg"
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Small",
  29941. height: math.unit(10, "meters"),
  29942. default: true
  29943. },
  29944. {
  29945. name: "Big",
  29946. height: math.unit(500000, "km")
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(7, "feet"),
  29955. weight: math.unit(275, "lb"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/roku/front.svg",
  29959. extra: 903 / 878,
  29960. bottom: 37 / 940
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(7, "feet"),
  29968. default: true
  29969. },
  29970. {
  29971. name: "Macro",
  29972. height: math.unit(500, "feet")
  29973. },
  29974. {
  29975. name: "Megamacro",
  29976. height: math.unit(200, "miles")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(6 + 2 / 12, "feet"),
  29985. weight: math.unit(150, "lb"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/lira/front.svg",
  29989. extra: 1727 / 1605,
  29990. bottom: 26 / 1753
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(6 + 2 / 12, "feet"),
  29995. weight: math.unit(150, "lb"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/lira/back.svg",
  29999. extra: 1713/1621,
  30000. bottom: 20/1733
  30001. }
  30002. },
  30003. hand: {
  30004. height: math.unit(0.75, "feet"),
  30005. name: "Hand",
  30006. image: {
  30007. source: "./media/characters/lira/hand.svg"
  30008. }
  30009. },
  30010. maw: {
  30011. height: math.unit(0.65, "feet"),
  30012. name: "Maw",
  30013. image: {
  30014. source: "./media/characters/lira/maw.svg"
  30015. }
  30016. },
  30017. pawDigi: {
  30018. height: math.unit(1.6, "feet"),
  30019. name: "Paw Digi",
  30020. image: {
  30021. source: "./media/characters/lira/paw-digi.svg"
  30022. }
  30023. },
  30024. pawPlanti: {
  30025. height: math.unit(1.4, "feet"),
  30026. name: "Paw Planti",
  30027. image: {
  30028. source: "./media/characters/lira/paw-planti.svg"
  30029. }
  30030. },
  30031. },
  30032. [
  30033. {
  30034. name: "Normal",
  30035. height: math.unit(6 + 2 / 12, "feet"),
  30036. default: true
  30037. },
  30038. {
  30039. name: "Macro",
  30040. height: math.unit(100, "feet")
  30041. },
  30042. {
  30043. name: "Macro²",
  30044. height: math.unit(1600, "feet")
  30045. },
  30046. {
  30047. name: "Planetary",
  30048. height: math.unit(20, "earths")
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30054. {
  30055. front: {
  30056. height: math.unit(6, "feet"),
  30057. weight: math.unit(150, "lb"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/hadjet/front.svg",
  30061. extra: 1480 / 1346,
  30062. bottom: 26 / 1506
  30063. }
  30064. },
  30065. frontNsfw: {
  30066. height: math.unit(6, "feet"),
  30067. weight: math.unit(150, "lb"),
  30068. name: "Front (NSFW)",
  30069. image: {
  30070. source: "./media/characters/hadjet/front-nsfw.svg",
  30071. extra: 1440 / 1358,
  30072. bottom: 52 / 1492
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(10, "stories"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Megamacro",
  30084. height: math.unit(1.5, "miles")
  30085. },
  30086. {
  30087. name: "Megamacro+",
  30088. height: math.unit(5, "miles")
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30094. {
  30095. side: {
  30096. height: math.unit(106, "feet"),
  30097. weight: math.unit(500, "tonnes"),
  30098. name: "Side",
  30099. image: {
  30100. source: "./media/characters/kodran/side.svg",
  30101. extra: 553 / 480,
  30102. bottom: 33 / 586
  30103. }
  30104. },
  30105. front: {
  30106. height: math.unit(132, "feet"),
  30107. weight: math.unit(500, "tonnes"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/kodran/front.svg",
  30111. extra: 667 / 643,
  30112. bottom: 42 / 709
  30113. }
  30114. },
  30115. flying: {
  30116. height: math.unit(350, "feet"),
  30117. weight: math.unit(500, "tonnes"),
  30118. name: "Flying",
  30119. image: {
  30120. source: "./media/characters/kodran/flying.svg"
  30121. }
  30122. },
  30123. foot: {
  30124. height: math.unit(33, "feet"),
  30125. name: "Foot",
  30126. image: {
  30127. source: "./media/characters/kodran/foot.svg"
  30128. }
  30129. },
  30130. footFront: {
  30131. height: math.unit(19, "feet"),
  30132. name: "Foot (Front)",
  30133. image: {
  30134. source: "./media/characters/kodran/foot-front.svg",
  30135. extra: 261 / 261,
  30136. bottom: 91 / 352
  30137. }
  30138. },
  30139. headFront: {
  30140. height: math.unit(53, "feet"),
  30141. name: "Head (Front)",
  30142. image: {
  30143. source: "./media/characters/kodran/head-front.svg"
  30144. }
  30145. },
  30146. headSide: {
  30147. height: math.unit(65, "feet"),
  30148. name: "Head (Side)",
  30149. image: {
  30150. source: "./media/characters/kodran/head-side.svg"
  30151. }
  30152. },
  30153. throat: {
  30154. height: math.unit(79, "feet"),
  30155. name: "Throat",
  30156. image: {
  30157. source: "./media/characters/kodran/throat.svg"
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Large",
  30164. height: math.unit(106, "feet"),
  30165. default: true
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30171. {
  30172. side: {
  30173. height: math.unit(11, "feet"),
  30174. weight: math.unit(150, "lb"),
  30175. name: "Side",
  30176. image: {
  30177. source: "./media/characters/pyxaron/side.svg",
  30178. extra: 305 / 195,
  30179. bottom: 17 / 322
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(11, "feet"),
  30187. default: true
  30188. },
  30189. ]
  30190. ))
  30191. characterMakers.push(() => makeCharacter(
  30192. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30193. {
  30194. front: {
  30195. height: math.unit(6, "feet"),
  30196. weight: math.unit(150, "lb"),
  30197. name: "Front",
  30198. image: {
  30199. source: "./media/characters/meep/front.svg",
  30200. extra: 88 / 80,
  30201. bottom: 6 / 94
  30202. }
  30203. },
  30204. },
  30205. [
  30206. {
  30207. name: "Fun Sized",
  30208. height: math.unit(2, "inches"),
  30209. default: true
  30210. },
  30211. {
  30212. name: "Friend Sized",
  30213. height: math.unit(8, "inches")
  30214. },
  30215. ]
  30216. ))
  30217. characterMakers.push(() => makeCharacter(
  30218. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30219. {
  30220. front: {
  30221. height: math.unit(15, "feet"),
  30222. weight: math.unit(2500, "lb"),
  30223. name: "Front",
  30224. image: {
  30225. source: "./media/characters/holly-rabbit/front.svg",
  30226. extra: 1433 / 1233,
  30227. bottom: 125 / 1558
  30228. }
  30229. },
  30230. dick: {
  30231. height: math.unit(4.6, "feet"),
  30232. name: "Dick",
  30233. image: {
  30234. source: "./media/characters/holly-rabbit/dick.svg"
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(15, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(250, "feet")
  30247. },
  30248. {
  30249. name: "Macro+",
  30250. height: math.unit(2500, "feet")
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(3.02, "meters"),
  30259. weight: math.unit(500, "kg"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/drena/front.svg",
  30263. extra: 282 / 243,
  30264. bottom: 8 / 290
  30265. }
  30266. },
  30267. side: {
  30268. height: math.unit(3.02, "meters"),
  30269. weight: math.unit(500, "kg"),
  30270. name: "Side",
  30271. image: {
  30272. source: "./media/characters/drena/side.svg",
  30273. extra: 280 / 245,
  30274. bottom: 10 / 290
  30275. }
  30276. },
  30277. back: {
  30278. height: math.unit(3.02, "meters"),
  30279. weight: math.unit(500, "kg"),
  30280. name: "Back",
  30281. image: {
  30282. source: "./media/characters/drena/back.svg",
  30283. extra: 278 / 243,
  30284. bottom: 2 / 280
  30285. }
  30286. },
  30287. foot: {
  30288. height: math.unit(0.75, "meters"),
  30289. name: "Foot",
  30290. image: {
  30291. source: "./media/characters/drena/foot.svg"
  30292. }
  30293. },
  30294. maw: {
  30295. height: math.unit(0.82, "meters"),
  30296. name: "Maw",
  30297. image: {
  30298. source: "./media/characters/drena/maw.svg"
  30299. }
  30300. },
  30301. eating: {
  30302. height: math.unit(0.75, "meters"),
  30303. name: "Eating",
  30304. image: {
  30305. source: "./media/characters/drena/eating.svg"
  30306. }
  30307. },
  30308. rump: {
  30309. height: math.unit(0.93, "meters"),
  30310. name: "Rump",
  30311. image: {
  30312. source: "./media/characters/drena/rump.svg"
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(3.02, "meters"),
  30320. default: true
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30326. {
  30327. front: {
  30328. height: math.unit(6 + 4 / 12, "feet"),
  30329. weight: math.unit(250, "lb"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/remmyzilla/front.svg",
  30333. extra: 4033 / 3588,
  30334. bottom: 123 / 4156
  30335. }
  30336. },
  30337. back: {
  30338. height: math.unit(6 + 4 / 12, "feet"),
  30339. weight: math.unit(250, "lb"),
  30340. name: "Back",
  30341. image: {
  30342. source: "./media/characters/remmyzilla/back.svg",
  30343. extra: 2687 / 2555,
  30344. bottom: 48 / 2735
  30345. }
  30346. },
  30347. paw: {
  30348. height: math.unit(1.73, "feet"),
  30349. name: "Paw",
  30350. image: {
  30351. source: "./media/characters/remmyzilla/paw.svg"
  30352. },
  30353. extraAttributes: {
  30354. "toeSize": {
  30355. name: "Toe Size",
  30356. power: 2,
  30357. type: "area",
  30358. base: math.unit(0.0035, "m^2")
  30359. },
  30360. "padSize": {
  30361. name: "Pad Size",
  30362. power: 2,
  30363. type: "area",
  30364. base: math.unit(0.015, "m^2")
  30365. },
  30366. "pawsize": {
  30367. name: "Paw Size",
  30368. power: 2,
  30369. type: "area",
  30370. base: math.unit(0.072, "m^2")
  30371. },
  30372. }
  30373. },
  30374. maw: {
  30375. height: math.unit(1.73, "feet"),
  30376. name: "Maw",
  30377. image: {
  30378. source: "./media/characters/remmyzilla/maw.svg"
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Normal",
  30385. height: math.unit(6 + 4 / 12, "feet")
  30386. },
  30387. {
  30388. name: "Minimacro",
  30389. height: math.unit(12 + 8 / 12, "feet")
  30390. },
  30391. {
  30392. name: "Normal",
  30393. height: math.unit(640, "feet"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Megamacro",
  30398. height: math.unit(6400, "feet")
  30399. },
  30400. {
  30401. name: "Gigamacro",
  30402. height: math.unit(64000, "miles")
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(2.5, "meters"),
  30411. weight: math.unit(300, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/lawrence/front.svg",
  30415. extra: 357 / 335,
  30416. bottom: 30 / 387
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(2.5, "meters"),
  30421. weight: math.unit(300, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/lawrence/back.svg",
  30425. extra: 357 / 338,
  30426. bottom: 16 / 373
  30427. }
  30428. },
  30429. head: {
  30430. height: math.unit(0.9, "meter"),
  30431. name: "Head",
  30432. image: {
  30433. source: "./media/characters/lawrence/head.svg"
  30434. }
  30435. },
  30436. maw: {
  30437. height: math.unit(0.7, "meter"),
  30438. name: "Maw",
  30439. image: {
  30440. source: "./media/characters/lawrence/maw.svg"
  30441. }
  30442. },
  30443. footBottom: {
  30444. height: math.unit(0.5, "meter"),
  30445. name: "Foot (Bottom)",
  30446. image: {
  30447. source: "./media/characters/lawrence/foot-bottom.svg"
  30448. }
  30449. },
  30450. footTop: {
  30451. height: math.unit(0.5, "meter"),
  30452. name: "Foot (Top)",
  30453. image: {
  30454. source: "./media/characters/lawrence/foot-top.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(2.5, "meters"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Macro",
  30466. height: math.unit(95, "meters")
  30467. },
  30468. {
  30469. name: "Megamacro",
  30470. height: math.unit(150, "km")
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30476. {
  30477. front: {
  30478. height: math.unit(4.2, "meters"),
  30479. name: "Front",
  30480. image: {
  30481. source: "./media/characters/sydney/front.svg",
  30482. extra: 1323 / 1277,
  30483. bottom: 111 / 1434
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(4.2, "meters"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30497. {
  30498. back: {
  30499. height: math.unit(201, "feet"),
  30500. name: "Back",
  30501. image: {
  30502. source: "./media/characters/jessica/back.svg",
  30503. extra: 273 / 259,
  30504. bottom: 7 / 280
  30505. }
  30506. },
  30507. },
  30508. [
  30509. {
  30510. name: "Normal",
  30511. height: math.unit(201, "feet"),
  30512. default: true
  30513. },
  30514. {
  30515. name: "Megamacro",
  30516. height: math.unit(8, "miles")
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30522. {
  30523. side: {
  30524. height: math.unit(5.6, "m"),
  30525. weight: math.unit(8000, "kg"),
  30526. name: "Side",
  30527. image: {
  30528. source: "./media/characters/victoria/side.svg",
  30529. extra: 1542/1229,
  30530. bottom: 124/1666
  30531. }
  30532. },
  30533. maw: {
  30534. height: math.unit(7.14, "feet"),
  30535. name: "Maw",
  30536. image: {
  30537. source: "./media/characters/victoria/maw.svg"
  30538. }
  30539. },
  30540. },
  30541. [
  30542. {
  30543. name: "Normal",
  30544. height: math.unit(5.6, "m"),
  30545. default: true
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30551. {
  30552. front: {
  30553. height: math.unit(5 + 6 / 12, "feet"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/cat/front.svg",
  30557. extra: 1449/1295,
  30558. bottom: 34/1483
  30559. },
  30560. form: "cat",
  30561. default: true
  30562. },
  30563. back: {
  30564. height: math.unit(5 + 6 / 12, "feet"),
  30565. name: "Back",
  30566. image: {
  30567. source: "./media/characters/cat/back.svg",
  30568. extra: 1466/1301,
  30569. bottom: 19/1485
  30570. },
  30571. form: "cat"
  30572. },
  30573. taur: {
  30574. height: math.unit(7, "feet"),
  30575. name: "Taur",
  30576. image: {
  30577. source: "./media/characters/cat/taur.svg",
  30578. extra: 1389/1233,
  30579. bottom: 83/1472
  30580. },
  30581. form: "taur",
  30582. default: true
  30583. },
  30584. lucarioFront: {
  30585. height: math.unit(4, "feet"),
  30586. name: "Lucario (Front)",
  30587. image: {
  30588. source: "./media/characters/cat/lucario-front.svg",
  30589. extra: 1149/1019,
  30590. bottom: 84/1233
  30591. },
  30592. form: "lucario",
  30593. default: true
  30594. },
  30595. lucarioBack: {
  30596. height: math.unit(4, "feet"),
  30597. name: "Lucario (Back)",
  30598. image: {
  30599. source: "./media/characters/cat/lucario-back.svg",
  30600. extra: 1190/1059,
  30601. bottom: 33/1223
  30602. },
  30603. form: "lucario"
  30604. },
  30605. megaLucario: {
  30606. height: math.unit(4, "feet"),
  30607. name: "Mega Lucario",
  30608. image: {
  30609. source: "./media/characters/cat/mega-lucario.svg",
  30610. extra: 1515 / 1319,
  30611. bottom: 63 / 1578
  30612. },
  30613. form: "lucario"
  30614. },
  30615. nickit: {
  30616. height: math.unit(2, "feet"),
  30617. name: "Nickit",
  30618. image: {
  30619. source: "./media/characters/cat/nickit.svg",
  30620. extra: 1980 / 1585,
  30621. bottom: 102 / 2082
  30622. },
  30623. form: "nickit",
  30624. default: true
  30625. },
  30626. lopunnyFront: {
  30627. height: math.unit(5, "feet"),
  30628. name: "Lopunny (Front)",
  30629. image: {
  30630. source: "./media/characters/cat/lopunny-front.svg",
  30631. extra: 1782 / 1469,
  30632. bottom: 38 / 1820
  30633. },
  30634. form: "lopunny",
  30635. default: true
  30636. },
  30637. lopunnyBack: {
  30638. height: math.unit(5, "feet"),
  30639. name: "Lopunny (Back)",
  30640. image: {
  30641. source: "./media/characters/cat/lopunny-back.svg",
  30642. extra: 1660 / 1490,
  30643. bottom: 25 / 1685
  30644. },
  30645. form: "lopunny"
  30646. },
  30647. },
  30648. [
  30649. {
  30650. name: "Really small",
  30651. height: math.unit(1, "nm")
  30652. },
  30653. {
  30654. name: "Micro",
  30655. height: math.unit(5, "inches")
  30656. },
  30657. {
  30658. name: "Normal",
  30659. height: math.unit(5 + 6 / 12, "feet"),
  30660. default: true
  30661. },
  30662. {
  30663. name: "Macro",
  30664. height: math.unit(50, "feet")
  30665. },
  30666. {
  30667. name: "Macro+",
  30668. height: math.unit(150, "feet")
  30669. },
  30670. {
  30671. name: "Megamacro",
  30672. height: math.unit(100, "miles")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(63.4, "meters"),
  30681. weight: math.unit(3.28349e+6, "kilograms"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/kirina-violet/front.svg",
  30685. extra: 2812 / 2725,
  30686. bottom: 0 / 2812
  30687. }
  30688. },
  30689. back: {
  30690. height: math.unit(63.4, "meters"),
  30691. weight: math.unit(3.28349e+6, "kilograms"),
  30692. name: "Back",
  30693. image: {
  30694. source: "./media/characters/kirina-violet/back.svg",
  30695. extra: 2812 / 2725,
  30696. bottom: 0 / 2812
  30697. }
  30698. },
  30699. mouth: {
  30700. height: math.unit(4.35, "meters"),
  30701. name: "Mouth",
  30702. image: {
  30703. source: "./media/characters/kirina-violet/mouth.svg"
  30704. }
  30705. },
  30706. paw: {
  30707. height: math.unit(5.6, "meters"),
  30708. name: "Paw",
  30709. image: {
  30710. source: "./media/characters/kirina-violet/paw.svg"
  30711. }
  30712. },
  30713. tail: {
  30714. height: math.unit(18, "meters"),
  30715. name: "Tail",
  30716. image: {
  30717. source: "./media/characters/kirina-violet/tail.svg"
  30718. }
  30719. },
  30720. },
  30721. [
  30722. {
  30723. name: "Macro",
  30724. height: math.unit(63.4, "meters"),
  30725. default: true
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(75, "feet"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/cat-gigachu/front.svg",
  30737. extra: 1239/1027,
  30738. bottom: 32/1271
  30739. }
  30740. },
  30741. back: {
  30742. height: math.unit(75, "feet"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/cat-gigachu/back.svg",
  30746. extra: 1229/1030,
  30747. bottom: 9/1238
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Dynamax",
  30754. height: math.unit(75, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(6, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/sfaiyan/front.svg",
  30768. extra: 999 / 978,
  30769. bottom: 5 / 1004
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(1.82, "meters")
  30777. },
  30778. {
  30779. name: "Giant",
  30780. height: math.unit(2.27, "km"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30787. {
  30788. front: {
  30789. height: math.unit(179, "cm"),
  30790. weight: math.unit(100, "kg"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/raunehkeli/front.svg",
  30794. extra: 1934 / 1926,
  30795. bottom: 0 / 1934
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(179, "cm")
  30803. },
  30804. {
  30805. name: "Maximum",
  30806. height: math.unit(575, "meters"),
  30807. default: true
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(6, "feet"),
  30816. weight: math.unit(150, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30820. extra: 2625 / 2518,
  30821. bottom: 60 / 2685
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(6 + 2 / 12, "feet")
  30829. },
  30830. {
  30831. name: "Macro",
  30832. height: math.unit(1180, "feet"),
  30833. default: true
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(5 + 6 / 12, "feet"),
  30842. weight: math.unit(108, "lb"),
  30843. name: "Front",
  30844. image: {
  30845. source: "./media/characters/lilith-zott/front.svg",
  30846. extra: 2510 / 2238,
  30847. bottom: 100 / 2610
  30848. }
  30849. },
  30850. frontDressed: {
  30851. height: math.unit(5 + 6 / 12, "feet"),
  30852. weight: math.unit(108, "lb"),
  30853. name: "Front (Dressed)",
  30854. image: {
  30855. source: "./media/characters/lilith-zott/front-dressed.svg",
  30856. extra: 2510 / 2238,
  30857. bottom: 100 / 2610
  30858. }
  30859. },
  30860. },
  30861. [
  30862. {
  30863. name: "Normal",
  30864. height: math.unit(5 + 6 / 12, "feet")
  30865. },
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(1030, "feet"),
  30869. default: true
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30875. {
  30876. front: {
  30877. height: math.unit(6, "feet"),
  30878. weight: math.unit(150, "lb"),
  30879. name: "Front",
  30880. image: {
  30881. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30882. extra: 2567 / 2435,
  30883. bottom: 39 / 2606
  30884. }
  30885. },
  30886. frontSuper: {
  30887. height: math.unit(6, "feet"),
  30888. name: "Front (Super)",
  30889. image: {
  30890. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30891. extra: 2567 / 2435,
  30892. bottom: 39 / 2606
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(5 + 10 / 12, "feet")
  30900. },
  30901. {
  30902. name: "Macro",
  30903. height: math.unit(1100, "feet"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(100, "miles"),
  30913. name: "Front",
  30914. image: {
  30915. source: "./media/characters/sona/front.svg",
  30916. extra: 2433 / 2201,
  30917. bottom: 53 / 2486
  30918. }
  30919. },
  30920. foot: {
  30921. height: math.unit(16.1, "miles"),
  30922. name: "Foot",
  30923. image: {
  30924. source: "./media/characters/sona/foot.svg"
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Macro",
  30931. height: math.unit(100, "miles"),
  30932. default: true
  30933. },
  30934. ]
  30935. ))
  30936. characterMakers.push(() => makeCharacter(
  30937. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30938. {
  30939. front: {
  30940. height: math.unit(6, "feet"),
  30941. weight: math.unit(150, "lb"),
  30942. name: "Front",
  30943. image: {
  30944. source: "./media/characters/bailey/front.svg",
  30945. extra: 1778 / 1724,
  30946. bottom: 30 / 1808
  30947. }
  30948. },
  30949. },
  30950. [
  30951. {
  30952. name: "Micro",
  30953. height: math.unit(4, "inches")
  30954. },
  30955. {
  30956. name: "Normal",
  30957. height: math.unit(5 + 5 / 12, "feet"),
  30958. default: true
  30959. },
  30960. {
  30961. name: "Macro",
  30962. height: math.unit(250, "feet")
  30963. },
  30964. {
  30965. name: "Megamacro",
  30966. height: math.unit(100, "miles")
  30967. },
  30968. ]
  30969. ))
  30970. characterMakers.push(() => makeCharacter(
  30971. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30972. {
  30973. front: {
  30974. height: math.unit(5 + 2 / 12, "feet"),
  30975. weight: math.unit(120, "lb"),
  30976. name: "Front",
  30977. image: {
  30978. source: "./media/characters/snaps/front.svg",
  30979. extra: 2370 / 2177,
  30980. bottom: 48 / 2418
  30981. }
  30982. },
  30983. back: {
  30984. height: math.unit(5 + 2 / 12, "feet"),
  30985. weight: math.unit(120, "lb"),
  30986. name: "Back",
  30987. image: {
  30988. source: "./media/characters/snaps/back.svg",
  30989. extra: 2408 / 2258,
  30990. bottom: 15 / 2423
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Micro",
  30997. height: math.unit(9, "inches")
  30998. },
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(5 + 2 / 12, "feet"),
  31002. default: true
  31003. },
  31004. {
  31005. name: "Mini Macro",
  31006. height: math.unit(10, "feet")
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(1.8, "meters"),
  31015. weight: math.unit(85, "kg"),
  31016. name: "Front",
  31017. image: {
  31018. source: "./media/characters/azteck/front.svg",
  31019. extra: 2815 / 2625,
  31020. bottom: 89 / 2904
  31021. }
  31022. },
  31023. back: {
  31024. height: math.unit(1.8, "meters"),
  31025. weight: math.unit(85, "kg"),
  31026. name: "Back",
  31027. image: {
  31028. source: "./media/characters/azteck/back.svg",
  31029. extra: 2856 / 2648,
  31030. bottom: 85 / 2941
  31031. }
  31032. },
  31033. frontDressed: {
  31034. height: math.unit(1.8, "meters"),
  31035. weight: math.unit(85, "kg"),
  31036. name: "Front (Dressed)",
  31037. image: {
  31038. source: "./media/characters/azteck/front-dressed.svg",
  31039. extra: 2147 / 2003,
  31040. bottom: 68 / 2215
  31041. }
  31042. },
  31043. head: {
  31044. height: math.unit(0.47, "meters"),
  31045. weight: math.unit(85, "kg"),
  31046. name: "Head",
  31047. image: {
  31048. source: "./media/characters/azteck/head.svg"
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Bite sized",
  31055. height: math.unit(16, "cm")
  31056. },
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(1.8, "meters"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(6, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/pidge/front.svg",
  31073. extra: 1936/1820,
  31074. bottom: 0/1936
  31075. }
  31076. },
  31077. back: {
  31078. height: math.unit(6, "feet"),
  31079. weight: math.unit(150, "lb"),
  31080. name: "Back",
  31081. image: {
  31082. source: "./media/characters/pidge/back.svg",
  31083. extra: 1938/1843,
  31084. bottom: 0/1938
  31085. }
  31086. },
  31087. casual: {
  31088. height: math.unit(6, "feet"),
  31089. weight: math.unit(150, "lb"),
  31090. name: "Casual",
  31091. image: {
  31092. source: "./media/characters/pidge/casual.svg",
  31093. extra: 1936/1820,
  31094. bottom: 0/1936
  31095. }
  31096. },
  31097. tech: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Tech",
  31101. image: {
  31102. source: "./media/characters/pidge/tech.svg",
  31103. extra: 1802/1682,
  31104. bottom: 0/1802
  31105. }
  31106. },
  31107. head: {
  31108. height: math.unit(1.61, "feet"),
  31109. name: "Head",
  31110. image: {
  31111. source: "./media/characters/pidge/head.svg"
  31112. }
  31113. },
  31114. collar: {
  31115. height: math.unit(0.82, "feet"),
  31116. name: "Collar",
  31117. image: {
  31118. source: "./media/characters/pidge/collar.svg"
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Macro",
  31125. height: math.unit(2, "mile"),
  31126. default: true
  31127. },
  31128. {
  31129. name: "PUPPY",
  31130. height: math.unit(20, "miles")
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(6, "feet"),
  31139. weight: math.unit(150, "lb"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/en/front.svg",
  31143. extra: 1697 / 1563,
  31144. bottom: 103 / 1800
  31145. }
  31146. },
  31147. back: {
  31148. height: math.unit(6, "feet"),
  31149. weight: math.unit(150, "lb"),
  31150. name: "Back",
  31151. image: {
  31152. source: "./media/characters/en/back.svg",
  31153. extra: 1700 / 1570,
  31154. bottom: 51 / 1751
  31155. }
  31156. },
  31157. frontDressed: {
  31158. height: math.unit(6, "feet"),
  31159. weight: math.unit(150, "lb"),
  31160. name: "Front (Dressed)",
  31161. image: {
  31162. source: "./media/characters/en/front-dressed.svg",
  31163. extra: 1697 / 1563,
  31164. bottom: 103 / 1800
  31165. }
  31166. },
  31167. backDressed: {
  31168. height: math.unit(6, "feet"),
  31169. weight: math.unit(150, "lb"),
  31170. name: "Back (Dressed)",
  31171. image: {
  31172. source: "./media/characters/en/back-dressed.svg",
  31173. extra: 1700 / 1570,
  31174. bottom: 51 / 1751
  31175. }
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Macro",
  31181. height: math.unit(210, "feet"),
  31182. default: true
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(6, "feet"),
  31191. weight: math.unit(150, "lb"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/haze-orris/front.svg",
  31195. extra: 3975 / 3525,
  31196. bottom: 137 / 4112
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Micro",
  31203. height: math.unit(150, "mm"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(6, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/casselene-yaro/front.svg",
  31217. extra: 4721 / 4541,
  31218. bottom: 82 / 4803
  31219. }
  31220. },
  31221. back: {
  31222. height: math.unit(6, "feet"),
  31223. weight: math.unit(150, "lb"),
  31224. name: "Back",
  31225. image: {
  31226. source: "./media/characters/casselene-yaro/back.svg",
  31227. extra: 4569 / 4377,
  31228. bottom: 69 / 4638
  31229. }
  31230. },
  31231. dressed: {
  31232. height: math.unit(6, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Dressed",
  31235. image: {
  31236. source: "./media/characters/casselene-yaro/dressed.svg",
  31237. extra: 4721 / 4541,
  31238. bottom: 82 / 4803
  31239. }
  31240. },
  31241. maw: {
  31242. height: math.unit(1, "feet"),
  31243. name: "Maw",
  31244. image: {
  31245. source: "./media/characters/casselene-yaro/maw.svg"
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Macro",
  31252. height: math.unit(190, "feet"),
  31253. default: true
  31254. },
  31255. ]
  31256. ))
  31257. characterMakers.push(() => makeCharacter(
  31258. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31259. {
  31260. front: {
  31261. height: math.unit(10, "feet"),
  31262. weight: math.unit(15015, "lb"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/platine/front.svg",
  31266. extra: 1741/1650,
  31267. bottom: 84/1825
  31268. }
  31269. },
  31270. side: {
  31271. height: math.unit(10, "feet"),
  31272. weight: math.unit(15015, "lb"),
  31273. name: "Side",
  31274. image: {
  31275. source: "./media/characters/platine/side.svg",
  31276. extra: 1790/1705,
  31277. bottom: 29/1819
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Normal",
  31284. height: math.unit(10, "feet"),
  31285. default: true
  31286. },
  31287. {
  31288. name: "Macro",
  31289. height: math.unit(100, "feet")
  31290. },
  31291. {
  31292. name: "Megamacro",
  31293. height: math.unit(1000, "feet")
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31299. {
  31300. front: {
  31301. height: math.unit(15 + 5 / 12, "feet"),
  31302. weight: math.unit(4600, "lb"),
  31303. name: "Front",
  31304. image: {
  31305. source: "./media/characters/neapolitan-ananassa/front.svg",
  31306. extra: 2903 / 2736,
  31307. bottom: 0 / 2903
  31308. }
  31309. },
  31310. side: {
  31311. height: math.unit(15 + 5 / 12, "feet"),
  31312. weight: math.unit(4600, "lb"),
  31313. name: "Side",
  31314. image: {
  31315. source: "./media/characters/neapolitan-ananassa/side.svg",
  31316. extra: 2925 / 2719,
  31317. bottom: 0 / 2925
  31318. }
  31319. },
  31320. back: {
  31321. height: math.unit(15 + 5 / 12, "feet"),
  31322. weight: math.unit(4600, "lb"),
  31323. name: "Back",
  31324. image: {
  31325. source: "./media/characters/neapolitan-ananassa/back.svg",
  31326. extra: 2903 / 2736,
  31327. bottom: 0 / 2903
  31328. }
  31329. },
  31330. },
  31331. [
  31332. {
  31333. name: "Normal",
  31334. height: math.unit(15 + 5 / 12, "feet"),
  31335. default: true
  31336. },
  31337. {
  31338. name: "Post-Millenium",
  31339. height: math.unit(35 + 5 / 12, "feet")
  31340. },
  31341. {
  31342. name: "Post-Era",
  31343. height: math.unit(450 + 5 / 12, "feet")
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(300, "meters"),
  31352. weight: math.unit(125000, "tonnes"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/pazuzu/front.svg",
  31356. extra: 877 / 794,
  31357. bottom: 47 / 924
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Macro",
  31364. height: math.unit(300, "meters"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31371. {
  31372. side: {
  31373. height: math.unit(10 + 7 / 12, "feet"),
  31374. weight: math.unit(2.5, "tons"),
  31375. name: "Side",
  31376. image: {
  31377. source: "./media/characters/aasha/side.svg",
  31378. extra: 1345 / 1245,
  31379. bottom: 111 / 1456
  31380. }
  31381. },
  31382. back: {
  31383. height: math.unit(10 + 7 / 12, "feet"),
  31384. weight: math.unit(2.5, "tons"),
  31385. name: "Back",
  31386. image: {
  31387. source: "./media/characters/aasha/back.svg",
  31388. extra: 1133 / 1057,
  31389. bottom: 257 / 1390
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Normal",
  31396. height: math.unit(10 + 7 / 12, "feet"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(6 + 3 / 12, "feet"),
  31406. name: "Front",
  31407. image: {
  31408. source: "./media/characters/nevan/front.svg",
  31409. extra: 704 / 704,
  31410. bottom: 28 / 732
  31411. }
  31412. },
  31413. back: {
  31414. height: math.unit(6 + 3 / 12, "feet"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/nevan/back.svg",
  31418. extra: 714 / 714,
  31419. bottom: 21 / 735
  31420. }
  31421. },
  31422. frontFlaccid: {
  31423. height: math.unit(6 + 3 / 12, "feet"),
  31424. name: "Front (Flaccid)",
  31425. image: {
  31426. source: "./media/characters/nevan/front-flaccid.svg",
  31427. extra: 704 / 704,
  31428. bottom: 28 / 732
  31429. }
  31430. },
  31431. frontErect: {
  31432. height: math.unit(6 + 3 / 12, "feet"),
  31433. name: "Front (Erect)",
  31434. image: {
  31435. source: "./media/characters/nevan/front-erect.svg",
  31436. extra: 704 / 704,
  31437. bottom: 28 / 732
  31438. }
  31439. },
  31440. backFlaccid: {
  31441. height: math.unit(6 + 3 / 12, "feet"),
  31442. name: "Back (Flaccid)",
  31443. image: {
  31444. source: "./media/characters/nevan/back-flaccid.svg",
  31445. extra: 714 / 714,
  31446. bottom: 21 / 735
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Normal",
  31453. height: math.unit(6 + 3 / 12, "feet"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(4, "feet"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/arhan/front.svg",
  31466. extra: 3368 / 3133,
  31467. bottom: 0 / 3368
  31468. }
  31469. },
  31470. side: {
  31471. height: math.unit(4, "feet"),
  31472. name: "Side",
  31473. image: {
  31474. source: "./media/characters/arhan/side.svg",
  31475. extra: 3347 / 3105,
  31476. bottom: 0 / 3347
  31477. }
  31478. },
  31479. tongue: {
  31480. height: math.unit(1.42, "feet"),
  31481. name: "Tongue",
  31482. image: {
  31483. source: "./media/characters/arhan/tongue.svg"
  31484. }
  31485. },
  31486. head: {
  31487. height: math.unit(0.85, "feet"),
  31488. name: "Head",
  31489. image: {
  31490. source: "./media/characters/arhan/head.svg"
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(4, "feet"),
  31498. default: true
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(5 + 7.5 / 12, "feet"),
  31507. weight: math.unit(120, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/digi-duncan/front.svg",
  31511. extra: 330 / 326,
  31512. bottom: 16 / 346
  31513. }
  31514. },
  31515. side: {
  31516. height: math.unit(5 + 7.5 / 12, "feet"),
  31517. weight: math.unit(120, "lb"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/digi-duncan/side.svg",
  31521. extra: 341 / 337,
  31522. bottom: 1 / 342
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(5 + 7.5 / 12, "feet"),
  31527. weight: math.unit(120, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/digi-duncan/back.svg",
  31531. extra: 330 / 326,
  31532. bottom: 12 / 342
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Speck",
  31539. height: math.unit(0.25, "mm")
  31540. },
  31541. {
  31542. name: "Micro",
  31543. height: math.unit(5, "mm")
  31544. },
  31545. {
  31546. name: "Tiny",
  31547. height: math.unit(0.5, "inches"),
  31548. default: true
  31549. },
  31550. {
  31551. name: "Human",
  31552. height: math.unit(5 + 7.5 / 12, "feet")
  31553. },
  31554. {
  31555. name: "Minigiant",
  31556. height: math.unit(8 + 5.25, "feet")
  31557. },
  31558. {
  31559. name: "Giant",
  31560. height: math.unit(2000, "feet")
  31561. },
  31562. {
  31563. name: "Mega",
  31564. height: math.unit(371.1, "miles")
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(2, "meters"),
  31573. weight: math.unit(350, "kg"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31577. extra: 898 / 838,
  31578. bottom: 9 / 907
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Micro",
  31585. height: math.unit(8, "meters")
  31586. },
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(50, "meters"),
  31590. default: true
  31591. },
  31592. {
  31593. name: "Macro",
  31594. height: math.unit(500, "meters")
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(6 + 6 / 12, "feet"),
  31603. name: "Front",
  31604. image: {
  31605. source: "./media/characters/khardesh/front.svg",
  31606. extra: 1788/1596,
  31607. bottom: 66/1854
  31608. }
  31609. },
  31610. back: {
  31611. height: math.unit(6 + 6 / 12, "feet"),
  31612. name: "Back",
  31613. image: {
  31614. source: "./media/characters/khardesh/back.svg",
  31615. extra: 1781/1584,
  31616. bottom: 68/1849
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(6 + 6 / 12, "feet"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Normal+",
  31628. height: math.unit(4, "meters")
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(50, "meters")
  31633. },
  31634. {
  31635. name: "Macro+",
  31636. height: math.unit(100, "meters")
  31637. },
  31638. {
  31639. name: "Megamacro",
  31640. height: math.unit(20, "km")
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(6, "feet"),
  31649. weight: math.unit(150, "lb"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/kosho/front.svg",
  31653. extra: 1847 / 1847,
  31654. bottom: 86 / 1933
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Second-stage micro",
  31661. height: math.unit(0.5, "inches")
  31662. },
  31663. {
  31664. name: "First-stage micro",
  31665. height: math.unit(6, "inches")
  31666. },
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(6, "feet"),
  31670. default: true
  31671. },
  31672. {
  31673. name: "First-stage macro",
  31674. height: math.unit(72, "feet")
  31675. },
  31676. {
  31677. name: "Second-stage macro",
  31678. height: math.unit(864, "feet")
  31679. },
  31680. ]
  31681. ))
  31682. characterMakers.push(() => makeCharacter(
  31683. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31684. {
  31685. normal: {
  31686. height: math.unit(4 + 6 / 12, "feet"),
  31687. name: "Normal",
  31688. image: {
  31689. source: "./media/characters/hydra/normal.svg",
  31690. extra: 2833 / 2634,
  31691. bottom: 68 / 2901
  31692. }
  31693. },
  31694. smol: {
  31695. height: math.unit(0.705, "inches"),
  31696. name: "Smol",
  31697. image: {
  31698. source: "./media/characters/hydra/smol.svg",
  31699. extra: 2715 / 2540,
  31700. bottom: 0 / 2715
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Normal",
  31707. height: math.unit(4 + 6 / 12, "feet"),
  31708. default: true
  31709. }
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(0.6, "cm"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/daz/front.svg",
  31720. extra: 1682 / 1164,
  31721. bottom: 42 / 1724
  31722. }
  31723. },
  31724. },
  31725. [
  31726. {
  31727. name: "Normal",
  31728. height: math.unit(0.6, "cm"),
  31729. default: true
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(6, "feet"),
  31738. weight: math.unit(235, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/theo-pangolin/front.svg",
  31742. extra: 1996 / 1969,
  31743. bottom: 115 / 2111
  31744. }
  31745. },
  31746. back: {
  31747. height: math.unit(6, "feet"),
  31748. weight: math.unit(235, "lb"),
  31749. name: "Back",
  31750. image: {
  31751. source: "./media/characters/theo-pangolin/back.svg",
  31752. extra: 1979 / 1979,
  31753. bottom: 40 / 2019
  31754. }
  31755. },
  31756. feral: {
  31757. height: math.unit(2, "feet"),
  31758. weight: math.unit(30, "lb"),
  31759. name: "Feral",
  31760. image: {
  31761. source: "./media/characters/theo-pangolin/feral.svg",
  31762. extra: 803 / 791,
  31763. bottom: 181 / 984
  31764. }
  31765. },
  31766. footFive: {
  31767. height: math.unit(1.43, "feet"),
  31768. name: "Foot (Five Toes)",
  31769. image: {
  31770. source: "./media/characters/theo-pangolin/foot-five.svg"
  31771. }
  31772. },
  31773. footFour: {
  31774. height: math.unit(1.43, "feet"),
  31775. name: "Foot (Four Toes)",
  31776. image: {
  31777. source: "./media/characters/theo-pangolin/foot-four.svg"
  31778. }
  31779. },
  31780. handFour: {
  31781. height: math.unit(0.81, "feet"),
  31782. name: "Hand (Four Fingers)",
  31783. image: {
  31784. source: "./media/characters/theo-pangolin/hand-four.svg"
  31785. }
  31786. },
  31787. handThree: {
  31788. height: math.unit(0.81, "feet"),
  31789. name: "Hand (Three Fingers)",
  31790. image: {
  31791. source: "./media/characters/theo-pangolin/hand-three.svg"
  31792. }
  31793. },
  31794. headFront: {
  31795. height: math.unit(1.37, "feet"),
  31796. name: "Head (Front)",
  31797. image: {
  31798. source: "./media/characters/theo-pangolin/head-front.svg"
  31799. }
  31800. },
  31801. headSide: {
  31802. height: math.unit(1.43, "feet"),
  31803. name: "Head (Side)",
  31804. image: {
  31805. source: "./media/characters/theo-pangolin/head-side.svg"
  31806. }
  31807. },
  31808. tongue: {
  31809. height: math.unit(2.29, "feet"),
  31810. name: "Tongue",
  31811. image: {
  31812. source: "./media/characters/theo-pangolin/tongue.svg"
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(6, "feet")
  31820. },
  31821. {
  31822. name: "Macro",
  31823. height: math.unit(400, "feet"),
  31824. default: true
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(6, "inches"),
  31833. weight: math.unit(0.036, "kg"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/renée/front.svg",
  31837. extra: 900 / 886,
  31838. bottom: 8 / 908
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Nano",
  31845. height: math.unit(1, "nm")
  31846. },
  31847. {
  31848. name: "Micro",
  31849. height: math.unit(1, "mm")
  31850. },
  31851. {
  31852. name: "Normal",
  31853. height: math.unit(6, "inches")
  31854. },
  31855. {
  31856. name: "Macro",
  31857. height: math.unit(2000, "feet"),
  31858. default: true
  31859. },
  31860. {
  31861. name: "Megamacro",
  31862. height: math.unit(2, "km")
  31863. },
  31864. {
  31865. name: "Gigamacro",
  31866. height: math.unit(2000, "km")
  31867. },
  31868. {
  31869. name: "Teramacro",
  31870. height: math.unit(250000, "km")
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31876. {
  31877. front: {
  31878. height: math.unit(4, "meters"),
  31879. weight: math.unit(150, "kg"),
  31880. name: "Front",
  31881. image: {
  31882. source: "./media/characters/caledvwlch/front.svg",
  31883. extra: 1760 / 1551,
  31884. bottom: 28 / 1788
  31885. }
  31886. },
  31887. side: {
  31888. height: math.unit(4, "meters"),
  31889. weight: math.unit(150, "kg"),
  31890. name: "Side",
  31891. image: {
  31892. source: "./media/characters/caledvwlch/side.svg",
  31893. extra: 1605 / 1536,
  31894. bottom: 31 / 1636
  31895. }
  31896. },
  31897. back: {
  31898. height: math.unit(4, "meters"),
  31899. weight: math.unit(150, "kg"),
  31900. name: "Back",
  31901. image: {
  31902. source: "./media/characters/caledvwlch/back.svg",
  31903. extra: 1635 / 1565,
  31904. bottom: 27 / 1662
  31905. }
  31906. },
  31907. },
  31908. [
  31909. {
  31910. name: "\"Incognito\"",
  31911. height: math.unit(4, "meters")
  31912. },
  31913. {
  31914. name: "Small rampage",
  31915. height: math.unit(600, "meters")
  31916. },
  31917. {
  31918. name: "Mega",
  31919. height: math.unit(30, "km")
  31920. },
  31921. {
  31922. name: "Home-size",
  31923. height: math.unit(50, "km"),
  31924. default: true
  31925. },
  31926. {
  31927. name: "Giga",
  31928. height: math.unit(300, "km")
  31929. },
  31930. {
  31931. name: "Lounging",
  31932. height: math.unit(11000, "km")
  31933. },
  31934. {
  31935. name: "Planet snacking",
  31936. height: math.unit(2000000, "km")
  31937. },
  31938. ]
  31939. ))
  31940. characterMakers.push(() => makeCharacter(
  31941. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31942. {
  31943. front: {
  31944. height: math.unit(6, "feet"),
  31945. weight: math.unit(215, "lb"),
  31946. name: "Front",
  31947. image: {
  31948. source: "./media/characters/sapphire-svell/front.svg",
  31949. extra: 495 / 455,
  31950. bottom: 20 / 515
  31951. }
  31952. },
  31953. back: {
  31954. height: math.unit(6, "feet"),
  31955. weight: math.unit(216, "lb"),
  31956. name: "Back",
  31957. image: {
  31958. source: "./media/characters/sapphire-svell/back.svg",
  31959. extra: 497 / 477,
  31960. bottom: 7 / 504
  31961. }
  31962. },
  31963. maw: {
  31964. height: math.unit(1.57, "feet"),
  31965. name: "Maw",
  31966. image: {
  31967. source: "./media/characters/sapphire-svell/maw.svg"
  31968. }
  31969. },
  31970. foot: {
  31971. height: math.unit(1.07, "feet"),
  31972. name: "Foot",
  31973. image: {
  31974. source: "./media/characters/sapphire-svell/foot.svg"
  31975. }
  31976. },
  31977. toering: {
  31978. height: math.unit(1.7, "inch"),
  31979. name: "Toering",
  31980. image: {
  31981. source: "./media/characters/sapphire-svell/toering.svg"
  31982. }
  31983. },
  31984. },
  31985. [
  31986. {
  31987. name: "Normal",
  31988. height: math.unit(300, "feet"),
  31989. default: true
  31990. },
  31991. {
  31992. name: "Augmented",
  31993. height: math.unit(1250, "feet")
  31994. },
  31995. {
  31996. name: "Unleashed",
  31997. height: math.unit(3000, "feet")
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32003. {
  32004. side: {
  32005. height: math.unit(2 + 3 / 12, "feet"),
  32006. weight: math.unit(110, "lb"),
  32007. name: "Side",
  32008. image: {
  32009. source: "./media/characters/glitch-flux/side.svg",
  32010. extra: 997 / 805,
  32011. bottom: 20 / 1017
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Normal",
  32018. height: math.unit(2 + 3 / 12, "feet"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32025. {
  32026. front: {
  32027. height: math.unit(4, "meters"),
  32028. name: "Front",
  32029. image: {
  32030. source: "./media/characters/mid/front.svg",
  32031. extra: 507 / 476,
  32032. bottom: 17 / 524
  32033. }
  32034. },
  32035. back: {
  32036. height: math.unit(4, "meters"),
  32037. name: "Back",
  32038. image: {
  32039. source: "./media/characters/mid/back.svg",
  32040. extra: 519 / 487,
  32041. bottom: 7 / 526
  32042. }
  32043. },
  32044. stuck: {
  32045. height: math.unit(2.2, "meters"),
  32046. name: "Stuck",
  32047. image: {
  32048. source: "./media/characters/mid/stuck.svg",
  32049. extra: 1951 / 1869,
  32050. bottom: 88 / 2039
  32051. }
  32052. }
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(4, "meters"),
  32058. default: true
  32059. },
  32060. {
  32061. name: "Big",
  32062. height: math.unit(10, "meters")
  32063. },
  32064. {
  32065. name: "Macro",
  32066. height: math.unit(800, "meters")
  32067. },
  32068. {
  32069. name: "Megamacro",
  32070. height: math.unit(100, "km")
  32071. },
  32072. {
  32073. name: "Overgrown",
  32074. height: math.unit(1, "parsec")
  32075. },
  32076. ]
  32077. ))
  32078. characterMakers.push(() => makeCharacter(
  32079. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32080. {
  32081. front: {
  32082. height: math.unit(2.5, "meters"),
  32083. weight: math.unit(225, "kg"),
  32084. name: "Front",
  32085. image: {
  32086. source: "./media/characters/iris/front.svg",
  32087. extra: 3348 / 3251,
  32088. bottom: 205 / 3553
  32089. }
  32090. },
  32091. maw: {
  32092. height: math.unit(0.56, "meter"),
  32093. name: "Maw",
  32094. image: {
  32095. source: "./media/characters/iris/maw.svg"
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Mewter cat",
  32102. height: math.unit(1.2, "meters")
  32103. },
  32104. {
  32105. name: "Normal",
  32106. height: math.unit(2.5, "meters"),
  32107. default: true
  32108. },
  32109. {
  32110. name: "Minimacro",
  32111. height: math.unit(18, "feet")
  32112. },
  32113. {
  32114. name: "Macro",
  32115. height: math.unit(140, "feet")
  32116. },
  32117. {
  32118. name: "Macro+",
  32119. height: math.unit(180, "meters")
  32120. },
  32121. {
  32122. name: "Megamacro",
  32123. height: math.unit(2746, "meters")
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6, "feet"),
  32132. weight: math.unit(135, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/axel/front.svg",
  32136. extra: 908 / 908,
  32137. bottom: 58 / 966
  32138. }
  32139. },
  32140. side: {
  32141. height: math.unit(6, "feet"),
  32142. weight: math.unit(135, "lb"),
  32143. name: "Side",
  32144. image: {
  32145. source: "./media/characters/axel/side.svg",
  32146. extra: 958 / 958,
  32147. bottom: 11 / 969
  32148. }
  32149. },
  32150. back: {
  32151. height: math.unit(6, "feet"),
  32152. weight: math.unit(135, "lb"),
  32153. name: "Back",
  32154. image: {
  32155. source: "./media/characters/axel/back.svg",
  32156. extra: 887 / 887,
  32157. bottom: 34 / 921
  32158. }
  32159. },
  32160. head: {
  32161. height: math.unit(1.07, "feet"),
  32162. name: "Head",
  32163. image: {
  32164. source: "./media/characters/axel/head.svg"
  32165. }
  32166. },
  32167. beak: {
  32168. height: math.unit(1.4, "feet"),
  32169. name: "Beak",
  32170. image: {
  32171. source: "./media/characters/axel/beak.svg"
  32172. }
  32173. },
  32174. beakSide: {
  32175. height: math.unit(1.4, "feet"),
  32176. name: "Beak Side",
  32177. image: {
  32178. source: "./media/characters/axel/beak-side.svg"
  32179. }
  32180. },
  32181. sheath: {
  32182. height: math.unit(0.5, "feet"),
  32183. name: "Sheath",
  32184. image: {
  32185. source: "./media/characters/axel/sheath.svg"
  32186. }
  32187. },
  32188. dick: {
  32189. height: math.unit(0.98, "feet"),
  32190. name: "Dick",
  32191. image: {
  32192. source: "./media/characters/axel/dick.svg"
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Macro",
  32199. height: math.unit(68, "meters"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32206. {
  32207. front: {
  32208. height: math.unit(3.5, "meters"),
  32209. weight: math.unit(1200, "kg"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/joanna/front.svg",
  32213. extra: 1596 / 1488,
  32214. bottom: 29 / 1625
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(3.5, "meters"),
  32219. weight: math.unit(1200, "kg"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/joanna/back.svg",
  32223. extra: 1594 / 1495,
  32224. bottom: 26 / 1620
  32225. }
  32226. },
  32227. frontShorts: {
  32228. height: math.unit(3.5, "meters"),
  32229. weight: math.unit(1200, "kg"),
  32230. name: "Front (Shorts)",
  32231. image: {
  32232. source: "./media/characters/joanna/front-shorts.svg",
  32233. extra: 1596 / 1488,
  32234. bottom: 29 / 1625
  32235. }
  32236. },
  32237. frontBiker: {
  32238. height: math.unit(3.5, "meters"),
  32239. weight: math.unit(1200, "kg"),
  32240. name: "Front (Biker)",
  32241. image: {
  32242. source: "./media/characters/joanna/front-biker.svg",
  32243. extra: 1596 / 1488,
  32244. bottom: 29 / 1625
  32245. }
  32246. },
  32247. backBiker: {
  32248. height: math.unit(3.5, "meters"),
  32249. weight: math.unit(1200, "kg"),
  32250. name: "Back (Biker)",
  32251. image: {
  32252. source: "./media/characters/joanna/back-biker.svg",
  32253. extra: 1594 / 1495,
  32254. bottom: 88 / 1682
  32255. }
  32256. },
  32257. bikeLeft: {
  32258. height: math.unit(2.4, "meters"),
  32259. weight: math.unit(1600, "kg"),
  32260. name: "Bike (Left)",
  32261. image: {
  32262. source: "./media/characters/joanna/bike-left.svg",
  32263. extra: 720 / 720,
  32264. bottom: 8 / 728
  32265. }
  32266. },
  32267. bikeRight: {
  32268. height: math.unit(2.4, "meters"),
  32269. weight: math.unit(1600, "kg"),
  32270. name: "Bike (Right)",
  32271. image: {
  32272. source: "./media/characters/joanna/bike-right.svg",
  32273. extra: 720 / 720,
  32274. bottom: 8 / 728
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Incognito",
  32281. height: math.unit(3.5, "meters")
  32282. },
  32283. {
  32284. name: "Casual Big",
  32285. height: math.unit(200, "meters")
  32286. },
  32287. {
  32288. name: "Macro",
  32289. height: math.unit(600, "meters")
  32290. },
  32291. {
  32292. name: "Original",
  32293. height: math.unit(20, "km"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Giga",
  32298. height: math.unit(400, "km")
  32299. },
  32300. {
  32301. name: "Lounging",
  32302. height: math.unit(1500, "km")
  32303. },
  32304. {
  32305. name: "Planetary",
  32306. height: math.unit(200000, "km")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(6, "feet"),
  32315. weight: math.unit(150, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/hugo-sigil/front.svg",
  32319. extra: 522 / 500,
  32320. bottom: 2 / 524
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(6, "feet"),
  32325. weight: math.unit(150, "lb"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/hugo-sigil/back.svg",
  32329. extra: 519 / 495,
  32330. bottom: 5 / 524
  32331. }
  32332. },
  32333. maw: {
  32334. height: math.unit(1.4, "feet"),
  32335. weight: math.unit(150, "lb"),
  32336. name: "Maw",
  32337. image: {
  32338. source: "./media/characters/hugo-sigil/maw.svg"
  32339. }
  32340. },
  32341. feet: {
  32342. height: math.unit(1.56, "feet"),
  32343. weight: math.unit(150, "lb"),
  32344. name: "Feet",
  32345. image: {
  32346. source: "./media/characters/hugo-sigil/feet.svg",
  32347. extra: 177 / 177,
  32348. bottom: 12 / 189
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(6, "feet")
  32356. },
  32357. {
  32358. name: "Macro",
  32359. height: math.unit(200, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(6, "feet"),
  32369. weight: math.unit(150, "lb"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/peri/front.svg",
  32373. extra: 2354 / 2233,
  32374. bottom: 49 / 2403
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Really Small",
  32381. height: math.unit(1, "nm")
  32382. },
  32383. {
  32384. name: "Micro",
  32385. height: math.unit(4, "inches")
  32386. },
  32387. {
  32388. name: "Normal",
  32389. height: math.unit(7, "inches"),
  32390. default: true
  32391. },
  32392. {
  32393. name: "Macro",
  32394. height: math.unit(400, "feet")
  32395. },
  32396. {
  32397. name: "Megamacro",
  32398. height: math.unit(100, "miles")
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32404. {
  32405. frontSlim: {
  32406. height: math.unit(7, "feet"),
  32407. name: "Front (Slim)",
  32408. image: {
  32409. source: "./media/characters/issilora/front-slim.svg",
  32410. extra: 529 / 449,
  32411. bottom: 53 / 582
  32412. }
  32413. },
  32414. sideSlim: {
  32415. height: math.unit(7, "feet"),
  32416. name: "Side (Slim)",
  32417. image: {
  32418. source: "./media/characters/issilora/side-slim.svg",
  32419. extra: 570 / 480,
  32420. bottom: 30 / 600
  32421. }
  32422. },
  32423. backSlim: {
  32424. height: math.unit(7, "feet"),
  32425. name: "Back (Slim)",
  32426. image: {
  32427. source: "./media/characters/issilora/back-slim.svg",
  32428. extra: 537 / 455,
  32429. bottom: 46 / 583
  32430. }
  32431. },
  32432. frontBuff: {
  32433. height: math.unit(7, "feet"),
  32434. name: "Front (Buff)",
  32435. image: {
  32436. source: "./media/characters/issilora/front-buff.svg",
  32437. extra: 2310 / 2035,
  32438. bottom: 335 / 2645
  32439. }
  32440. },
  32441. head: {
  32442. height: math.unit(1.94, "feet"),
  32443. name: "Head",
  32444. image: {
  32445. source: "./media/characters/issilora/head.svg"
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Minimum",
  32452. height: math.unit(7, "feet")
  32453. },
  32454. {
  32455. name: "Comfortable",
  32456. height: math.unit(17, "feet")
  32457. },
  32458. {
  32459. name: "Fun Size",
  32460. height: math.unit(47, "feet")
  32461. },
  32462. {
  32463. name: "Natural Macro",
  32464. height: math.unit(137, "feet"),
  32465. default: true
  32466. },
  32467. {
  32468. name: "Maximum Kaiju",
  32469. height: math.unit(397, "feet")
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32475. {
  32476. front: {
  32477. height: math.unit(50 + 9/12, "feet"),
  32478. weight: math.unit(32.8, "tons"),
  32479. name: "Front",
  32480. image: {
  32481. source: "./media/characters/irb'iiritaahn/front.svg",
  32482. extra: 1878/1826,
  32483. bottom: 326/2204
  32484. }
  32485. },
  32486. back: {
  32487. height: math.unit(50 + 9/12, "feet"),
  32488. weight: math.unit(32.8, "tons"),
  32489. name: "Back",
  32490. image: {
  32491. source: "./media/characters/irb'iiritaahn/back.svg",
  32492. extra: 2052/2018,
  32493. bottom: 152/2204
  32494. }
  32495. },
  32496. head: {
  32497. height: math.unit(12.86, "feet"),
  32498. name: "Head",
  32499. image: {
  32500. source: "./media/characters/irb'iiritaahn/head.svg"
  32501. }
  32502. },
  32503. maw: {
  32504. height: math.unit(9.66, "feet"),
  32505. name: "Maw",
  32506. image: {
  32507. source: "./media/characters/irb'iiritaahn/maw.svg"
  32508. }
  32509. },
  32510. frontDick: {
  32511. height: math.unit(8.78461, "feet"),
  32512. name: "Front Dick",
  32513. image: {
  32514. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32515. }
  32516. },
  32517. rearDick: {
  32518. height: math.unit(8.78461, "feet"),
  32519. name: "Rear Dick",
  32520. image: {
  32521. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32522. }
  32523. },
  32524. rearDickUnfolded: {
  32525. height: math.unit(8.78, "feet"),
  32526. name: "Rear Dick (Unfolded)",
  32527. image: {
  32528. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32529. }
  32530. },
  32531. wings: {
  32532. height: math.unit(43, "feet"),
  32533. name: "Wings",
  32534. image: {
  32535. source: "./media/characters/irb'iiritaahn/wings.svg"
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Macro",
  32542. height: math.unit(50 + 9/12, "feet"),
  32543. default: true
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(205, "cm"),
  32552. weight: math.unit(102, "kg"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/irbisgreif/front.svg",
  32556. extra: 785/706,
  32557. bottom: 13/798
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(205, "cm"),
  32562. weight: math.unit(102, "kg"),
  32563. name: "Back",
  32564. image: {
  32565. source: "./media/characters/irbisgreif/back.svg",
  32566. extra: 713/701,
  32567. bottom: 26/739
  32568. }
  32569. },
  32570. frontDressed: {
  32571. height: math.unit(216, "cm"),
  32572. weight: math.unit(102, "kg"),
  32573. name: "Front-dressed",
  32574. image: {
  32575. source: "./media/characters/irbisgreif/front-dressed.svg",
  32576. extra: 902/776,
  32577. bottom: 14/916
  32578. }
  32579. },
  32580. sideDressed: {
  32581. height: math.unit(195, "cm"),
  32582. weight: math.unit(102, "kg"),
  32583. name: "Side-dressed",
  32584. image: {
  32585. source: "./media/characters/irbisgreif/side-dressed.svg",
  32586. extra: 788/688,
  32587. bottom: 21/809
  32588. }
  32589. },
  32590. backDressed: {
  32591. height: math.unit(216, "cm"),
  32592. weight: math.unit(102, "kg"),
  32593. name: "Back-dressed",
  32594. image: {
  32595. source: "./media/characters/irbisgreif/back-dressed.svg",
  32596. extra: 901/783,
  32597. bottom: 10/911
  32598. }
  32599. },
  32600. dick: {
  32601. height: math.unit(0.49, "feet"),
  32602. name: "Dick",
  32603. image: {
  32604. source: "./media/characters/irbisgreif/dick.svg"
  32605. }
  32606. },
  32607. wingTop: {
  32608. height: math.unit(1.93 , "feet"),
  32609. name: "Wing-top",
  32610. image: {
  32611. source: "./media/characters/irbisgreif/wing-top.svg"
  32612. }
  32613. },
  32614. wingBottom: {
  32615. height: math.unit(1.93 , "feet"),
  32616. name: "Wing-bottom",
  32617. image: {
  32618. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32619. }
  32620. },
  32621. },
  32622. [
  32623. {
  32624. name: "Normal",
  32625. height: math.unit(216, "cm"),
  32626. default: true
  32627. },
  32628. ]
  32629. ))
  32630. characterMakers.push(() => makeCharacter(
  32631. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32632. {
  32633. front: {
  32634. height: math.unit(6, "feet"),
  32635. weight: math.unit(150, "lb"),
  32636. name: "Front",
  32637. image: {
  32638. source: "./media/characters/pride/front.svg",
  32639. extra: 1299/1230,
  32640. bottom: 18/1317
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(7, "feet")
  32648. },
  32649. {
  32650. name: "Mini-macro",
  32651. height: math.unit(11, "feet")
  32652. },
  32653. {
  32654. name: "Macro",
  32655. height: math.unit(15, "meters"),
  32656. default: true
  32657. },
  32658. {
  32659. name: "Macro+",
  32660. height: math.unit(40, "meters")
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32666. {
  32667. front: {
  32668. height: math.unit(4 + 2 / 12, "feet"),
  32669. weight: math.unit(95, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/vaelophis-nyx/front.svg",
  32673. extra: 2532/2330,
  32674. bottom: 0/2532
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(4 + 2 / 12, "feet"),
  32679. weight: math.unit(95, "lb"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/vaelophis-nyx/back.svg",
  32683. extra: 2484/2361,
  32684. bottom: 0/2484
  32685. }
  32686. },
  32687. feralSide: {
  32688. height: math.unit(2 + 1/12, "feet"),
  32689. weight: math.unit(20, "lb"),
  32690. name: "Feral (Side)",
  32691. image: {
  32692. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32693. extra: 1721/1581,
  32694. bottom: 70/1791
  32695. }
  32696. },
  32697. feralLazing: {
  32698. height: math.unit(1.08, "feet"),
  32699. weight: math.unit(20, "lb"),
  32700. name: "Feral (Lazing)",
  32701. image: {
  32702. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32703. extra: 822/822,
  32704. bottom: 248/1070
  32705. }
  32706. },
  32707. ear: {
  32708. height: math.unit(0.416, "feet"),
  32709. name: "Ear",
  32710. image: {
  32711. source: "./media/characters/vaelophis-nyx/ear.svg"
  32712. }
  32713. },
  32714. eye: {
  32715. height: math.unit(0.0748, "feet"),
  32716. name: "Eye",
  32717. image: {
  32718. source: "./media/characters/vaelophis-nyx/eye.svg"
  32719. }
  32720. },
  32721. mouth: {
  32722. height: math.unit(0.378, "feet"),
  32723. name: "Mouth",
  32724. image: {
  32725. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32726. }
  32727. },
  32728. spade: {
  32729. height: math.unit(0.55, "feet"),
  32730. name: "Spade",
  32731. image: {
  32732. source: "./media/characters/vaelophis-nyx/spade.svg"
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Normal",
  32739. height: math.unit(4 + 2/12, "feet"),
  32740. default: true
  32741. },
  32742. ]
  32743. ))
  32744. characterMakers.push(() => makeCharacter(
  32745. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32746. {
  32747. front: {
  32748. height: math.unit(7, "feet"),
  32749. weight: math.unit(231, "lb"),
  32750. name: "Front",
  32751. image: {
  32752. source: "./media/characters/flux/front.svg",
  32753. extra: 919/871,
  32754. bottom: 0/919
  32755. }
  32756. },
  32757. back: {
  32758. height: math.unit(7, "feet"),
  32759. weight: math.unit(231, "lb"),
  32760. name: "Back",
  32761. image: {
  32762. source: "./media/characters/flux/back.svg",
  32763. extra: 1040/992,
  32764. bottom: 0/1040
  32765. }
  32766. },
  32767. frontDressed: {
  32768. height: math.unit(7, "feet"),
  32769. weight: math.unit(231, "lb"),
  32770. name: "Front (Dressed)",
  32771. image: {
  32772. source: "./media/characters/flux/front-dressed.svg",
  32773. extra: 919/871,
  32774. bottom: 0/919
  32775. }
  32776. },
  32777. feralSide: {
  32778. height: math.unit(5, "feet"),
  32779. weight: math.unit(150, "lb"),
  32780. name: "Feral (Side)",
  32781. image: {
  32782. source: "./media/characters/flux/feral-side.svg",
  32783. extra: 598/528,
  32784. bottom: 28/626
  32785. }
  32786. },
  32787. head: {
  32788. height: math.unit(1.585, "feet"),
  32789. name: "Head",
  32790. image: {
  32791. source: "./media/characters/flux/head.svg"
  32792. }
  32793. },
  32794. headSide: {
  32795. height: math.unit(1.74, "feet"),
  32796. name: "Head (Side)",
  32797. image: {
  32798. source: "./media/characters/flux/head-side.svg"
  32799. }
  32800. },
  32801. headSideFire: {
  32802. height: math.unit(1.76, "feet"),
  32803. name: "Head (Side, Fire)",
  32804. image: {
  32805. source: "./media/characters/flux/head-side-fire.svg"
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(7, "feet"),
  32813. default: true
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(9, "feet"),
  32822. weight: math.unit(1012, "lb"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/ulfra-lupae/front.svg",
  32826. extra: 1083/1011,
  32827. bottom: 67/1150
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Micro",
  32834. height: math.unit(6, "inches")
  32835. },
  32836. {
  32837. name: "Socializing",
  32838. height: math.unit(6 + 5/12, "feet")
  32839. },
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(9, "feet"),
  32843. default: true
  32844. },
  32845. {
  32846. name: "Macro",
  32847. height: math.unit(150, "feet")
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(5 + 2/12, "feet"),
  32856. weight: math.unit(120, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/timber/front.svg",
  32860. extra: 2814/2705,
  32861. bottom: 181/2995
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(5 + 2/12, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32875. {
  32876. front: {
  32877. height: math.unit(9, "feet"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/nicki/front.svg",
  32881. extra: 1240/990,
  32882. bottom: 45/1285
  32883. },
  32884. form: "anthro",
  32885. default: true
  32886. },
  32887. side: {
  32888. height: math.unit(9, "feet"),
  32889. name: "Side",
  32890. image: {
  32891. source: "./media/characters/nicki/side.svg",
  32892. extra: 1047/973,
  32893. bottom: 61/1108
  32894. },
  32895. form: "anthro"
  32896. },
  32897. back: {
  32898. height: math.unit(9, "feet"),
  32899. name: "Back",
  32900. image: {
  32901. source: "./media/characters/nicki/back.svg",
  32902. extra: 1006/965,
  32903. bottom: 39/1045
  32904. },
  32905. form: "anthro"
  32906. },
  32907. taur: {
  32908. height: math.unit(15, "feet"),
  32909. name: "Taur",
  32910. image: {
  32911. source: "./media/characters/nicki/taur.svg",
  32912. extra: 1592/1347,
  32913. bottom: 0/1592
  32914. },
  32915. form: "taur",
  32916. default: true
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(9, "feet"),
  32923. form: "anthro",
  32924. default: true
  32925. },
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(15, "feet"),
  32929. form: "taur",
  32930. default: true
  32931. }
  32932. ],
  32933. {
  32934. "anthro": {
  32935. name: "Anthro",
  32936. default: true
  32937. },
  32938. "taur": {
  32939. name: "Taur"
  32940. }
  32941. }
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(7 + 10/12, "feet"),
  32948. weight: math.unit(3.5, "tons"),
  32949. name: "Front",
  32950. image: {
  32951. source: "./media/characters/lee/front.svg",
  32952. extra: 1773/1615,
  32953. bottom: 86/1859
  32954. }
  32955. },
  32956. hand: {
  32957. height: math.unit(1.78, "feet"),
  32958. name: "Hand",
  32959. image: {
  32960. source: "./media/characters/lee/hand.svg"
  32961. }
  32962. },
  32963. maw: {
  32964. height: math.unit(1.18, "feet"),
  32965. name: "Maw",
  32966. image: {
  32967. source: "./media/characters/lee/maw.svg"
  32968. }
  32969. },
  32970. },
  32971. [
  32972. {
  32973. name: "Normal",
  32974. height: math.unit(7 + 10/12, "feet"),
  32975. default: true
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32981. {
  32982. front: {
  32983. height: math.unit(9, "feet"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/guti/front.svg",
  32987. extra: 4551/4355,
  32988. bottom: 123/4674
  32989. }
  32990. },
  32991. tongue: {
  32992. height: math.unit(1, "feet"),
  32993. name: "Tongue",
  32994. image: {
  32995. source: "./media/characters/guti/tongue.svg"
  32996. }
  32997. },
  32998. paw: {
  32999. height: math.unit(1.18, "feet"),
  33000. name: "Paw",
  33001. image: {
  33002. source: "./media/characters/guti/paw.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(9, "feet"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33016. {
  33017. side: {
  33018. height: math.unit(5, "meters"),
  33019. name: "Side",
  33020. image: {
  33021. source: "./media/characters/vesper/side.svg",
  33022. extra: 1605/1518,
  33023. bottom: 0/1605
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Small",
  33030. height: math.unit(5, "meters")
  33031. },
  33032. {
  33033. name: "Sage",
  33034. height: math.unit(100, "meters"),
  33035. default: true
  33036. },
  33037. {
  33038. name: "Fun Size",
  33039. height: math.unit(600, "meters")
  33040. },
  33041. {
  33042. name: "Goddess",
  33043. height: math.unit(20000, "km")
  33044. },
  33045. {
  33046. name: "Maximum",
  33047. height: math.unit(5, "galaxies")
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(6 + 3/12, "feet"),
  33056. weight: math.unit(190, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/gawain/front.svg",
  33060. extra: 2222/2139,
  33061. bottom: 90/2312
  33062. }
  33063. },
  33064. back: {
  33065. height: math.unit(6 + 3/12, "feet"),
  33066. weight: math.unit(190, "lb"),
  33067. name: "Back",
  33068. image: {
  33069. source: "./media/characters/gawain/back.svg",
  33070. extra: 2199/2111,
  33071. bottom: 73/2272
  33072. }
  33073. },
  33074. },
  33075. [
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(6 + 3/12, "feet"),
  33079. default: true
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33085. {
  33086. side: {
  33087. height: math.unit(3.5, "meters"),
  33088. weight: math.unit(16000, "lb"),
  33089. name: "Side",
  33090. image: {
  33091. source: "./media/characters/dascalti/side.svg",
  33092. extra: 392/273,
  33093. bottom: 47/439
  33094. }
  33095. },
  33096. breath: {
  33097. height: math.unit(7.4, "feet"),
  33098. name: "Breath",
  33099. image: {
  33100. source: "./media/characters/dascalti/breath.svg"
  33101. }
  33102. },
  33103. fed: {
  33104. height: math.unit(3.6, "meters"),
  33105. weight: math.unit(16000, "lb"),
  33106. name: "Fed",
  33107. image: {
  33108. source: "./media/characters/dascalti/fed.svg",
  33109. extra: 1419/820,
  33110. bottom: 95/1514
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Normal",
  33117. height: math.unit(3.5, "meters"),
  33118. default: true
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33124. {
  33125. front: {
  33126. height: math.unit(3 + 5/12, "feet"),
  33127. name: "Front",
  33128. image: {
  33129. source: "./media/characters/mauve/front.svg",
  33130. extra: 1126/1033,
  33131. bottom: 65/1191
  33132. }
  33133. },
  33134. side: {
  33135. height: math.unit(3 + 5/12, "feet"),
  33136. name: "Side",
  33137. image: {
  33138. source: "./media/characters/mauve/side.svg",
  33139. extra: 1089/1001,
  33140. bottom: 29/1118
  33141. }
  33142. },
  33143. back: {
  33144. height: math.unit(3 + 5/12, "feet"),
  33145. name: "Back",
  33146. image: {
  33147. source: "./media/characters/mauve/back.svg",
  33148. extra: 1173/1053,
  33149. bottom: 109/1282
  33150. }
  33151. },
  33152. },
  33153. [
  33154. {
  33155. name: "Normal",
  33156. height: math.unit(3 + 5/12, "feet"),
  33157. default: true
  33158. },
  33159. ]
  33160. ))
  33161. characterMakers.push(() => makeCharacter(
  33162. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33163. {
  33164. front: {
  33165. height: math.unit(6 + 3/12, "feet"),
  33166. weight: math.unit(430, "lb"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/carlos/front.svg",
  33170. extra: 1964/1913,
  33171. bottom: 70/2034
  33172. }
  33173. },
  33174. },
  33175. [
  33176. {
  33177. name: "Normal",
  33178. height: math.unit(6 + 3/12, "feet"),
  33179. default: true
  33180. },
  33181. ]
  33182. ))
  33183. characterMakers.push(() => makeCharacter(
  33184. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33185. {
  33186. back: {
  33187. height: math.unit(5 + 10/12, "feet"),
  33188. weight: math.unit(200, "lb"),
  33189. name: "Back",
  33190. image: {
  33191. source: "./media/characters/jax/back.svg",
  33192. extra: 764/739,
  33193. bottom: 25/789
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Normal",
  33200. height: math.unit(5 + 10/12, "feet"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33207. {
  33208. front: {
  33209. height: math.unit(8, "feet"),
  33210. weight: math.unit(250, "lb"),
  33211. name: "Front",
  33212. image: {
  33213. source: "./media/characters/eikthynir/front.svg",
  33214. extra: 1332/1166,
  33215. bottom: 82/1414
  33216. }
  33217. },
  33218. back: {
  33219. height: math.unit(8, "feet"),
  33220. weight: math.unit(250, "lb"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/eikthynir/back.svg",
  33224. extra: 1342/1190,
  33225. bottom: 19/1361
  33226. }
  33227. },
  33228. dick: {
  33229. height: math.unit(2.35, "feet"),
  33230. name: "Dick",
  33231. image: {
  33232. source: "./media/characters/eikthynir/dick.svg"
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Normal",
  33239. height: math.unit(8, "feet"),
  33240. default: true
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33246. {
  33247. front: {
  33248. height: math.unit(99, "meters"),
  33249. weight: math.unit(13000, "tons"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/zlmos/front.svg",
  33253. extra: 2202/1992,
  33254. bottom: 315/2517
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Macro",
  33261. height: math.unit(99, "meters"),
  33262. default: true
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(6 + 5/12, "feet"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/purri/front.svg",
  33274. extra: 1698/1610,
  33275. bottom: 32/1730
  33276. }
  33277. },
  33278. frontAlt: {
  33279. height: math.unit(6 + 5/12, "feet"),
  33280. name: "Front (Alt)",
  33281. image: {
  33282. source: "./media/characters/purri/front-alt.svg",
  33283. extra: 450/420,
  33284. bottom: 26/476
  33285. }
  33286. },
  33287. boots: {
  33288. height: math.unit(5.5, "feet"),
  33289. name: "Boots",
  33290. image: {
  33291. source: "./media/characters/purri/boots.svg",
  33292. extra: 905/853,
  33293. bottom: 18/923
  33294. }
  33295. },
  33296. lying: {
  33297. height: math.unit(2, "feet"),
  33298. name: "Lying",
  33299. image: {
  33300. source: "./media/characters/purri/lying.svg",
  33301. extra: 940/843,
  33302. bottom: 146/1086
  33303. }
  33304. },
  33305. devious: {
  33306. height: math.unit(1.77, "feet"),
  33307. name: "Devious",
  33308. image: {
  33309. source: "./media/characters/purri/devious.svg",
  33310. extra: 1440/1155,
  33311. bottom: 147/1587
  33312. }
  33313. },
  33314. bean: {
  33315. height: math.unit(1.94, "feet"),
  33316. name: "Bean",
  33317. image: {
  33318. source: "./media/characters/purri/bean.svg"
  33319. }
  33320. },
  33321. },
  33322. [
  33323. {
  33324. name: "Micro",
  33325. height: math.unit(1, "mm")
  33326. },
  33327. {
  33328. name: "Normal",
  33329. height: math.unit(6 + 5/12, "feet"),
  33330. default: true
  33331. },
  33332. {
  33333. name: "Macro :3c",
  33334. height: math.unit(2, "miles")
  33335. },
  33336. ]
  33337. ))
  33338. characterMakers.push(() => makeCharacter(
  33339. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33340. {
  33341. front: {
  33342. height: math.unit(6 + 2/12, "feet"),
  33343. weight: math.unit(250, "lb"),
  33344. name: "Front",
  33345. image: {
  33346. source: "./media/characters/moonlight/front.svg",
  33347. extra: 1044/908,
  33348. bottom: 56/1100
  33349. }
  33350. },
  33351. feral: {
  33352. height: math.unit(3 + 1/12, "feet"),
  33353. weight: math.unit(50, "kg"),
  33354. name: "Feral",
  33355. image: {
  33356. source: "./media/characters/moonlight/feral.svg",
  33357. extra: 3705/2791,
  33358. bottom: 145/3850
  33359. }
  33360. },
  33361. paw: {
  33362. height: math.unit(1, "feet"),
  33363. name: "Paw",
  33364. image: {
  33365. source: "./media/characters/moonlight/paw.svg"
  33366. }
  33367. },
  33368. paws: {
  33369. height: math.unit(0.98, "feet"),
  33370. name: "Paws",
  33371. image: {
  33372. source: "./media/characters/moonlight/paws.svg",
  33373. extra: 939/939,
  33374. bottom: 50/989
  33375. }
  33376. },
  33377. mouth: {
  33378. height: math.unit(0.48, "feet"),
  33379. name: "Mouth",
  33380. image: {
  33381. source: "./media/characters/moonlight/mouth.svg"
  33382. }
  33383. },
  33384. dick: {
  33385. height: math.unit(1.46, "feet"),
  33386. name: "Dick",
  33387. image: {
  33388. source: "./media/characters/moonlight/dick.svg"
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(6 + 2/12, "feet"),
  33396. default: true
  33397. },
  33398. {
  33399. name: "Macro",
  33400. height: math.unit(300, "feet")
  33401. },
  33402. {
  33403. name: "Macro+",
  33404. height: math.unit(1, "mile")
  33405. },
  33406. {
  33407. name: "Mt. Moon",
  33408. height: math.unit(5, "miles")
  33409. },
  33410. {
  33411. name: "Megamacro",
  33412. height: math.unit(15, "miles")
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33418. {
  33419. back: {
  33420. height: math.unit(6, "feet"),
  33421. weight: math.unit(150, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/sylen/back.svg",
  33425. extra: 1335/1273,
  33426. bottom: 107/1442
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(5 + 5/12, "feet")
  33434. },
  33435. {
  33436. name: "Megamacro",
  33437. height: math.unit(3, "miles"),
  33438. default: true
  33439. },
  33440. ]
  33441. ))
  33442. characterMakers.push(() => makeCharacter(
  33443. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33444. {
  33445. front: {
  33446. height: math.unit(6, "feet"),
  33447. weight: math.unit(190, "lb"),
  33448. name: "Front",
  33449. image: {
  33450. source: "./media/characters/huttser/front.svg",
  33451. extra: 1152/1058,
  33452. bottom: 23/1175
  33453. }
  33454. },
  33455. side: {
  33456. height: math.unit(6, "feet"),
  33457. weight: math.unit(190, "lb"),
  33458. name: "Side",
  33459. image: {
  33460. source: "./media/characters/huttser/side.svg",
  33461. extra: 1174/1065,
  33462. bottom: 18/1192
  33463. }
  33464. },
  33465. back: {
  33466. height: math.unit(6, "feet"),
  33467. weight: math.unit(190, "lb"),
  33468. name: "Back",
  33469. image: {
  33470. source: "./media/characters/huttser/back.svg",
  33471. extra: 1158/1056,
  33472. bottom: 12/1170
  33473. }
  33474. },
  33475. },
  33476. [
  33477. ]
  33478. ))
  33479. characterMakers.push(() => makeCharacter(
  33480. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33481. {
  33482. side: {
  33483. height: math.unit(12 + 9/12, "feet"),
  33484. weight: math.unit(15000, "lb"),
  33485. name: "Side",
  33486. image: {
  33487. source: "./media/characters/faan/side.svg",
  33488. extra: 2747/2697,
  33489. bottom: 0/2747
  33490. }
  33491. },
  33492. front: {
  33493. height: math.unit(12 + 9/12, "feet"),
  33494. weight: math.unit(15000, "lb"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/faan/front.svg",
  33498. extra: 607/571,
  33499. bottom: 24/631
  33500. }
  33501. },
  33502. head: {
  33503. height: math.unit(2.85, "feet"),
  33504. name: "Head",
  33505. image: {
  33506. source: "./media/characters/faan/head.svg"
  33507. }
  33508. },
  33509. headAlt: {
  33510. height: math.unit(3.13, "feet"),
  33511. name: "Head-alt",
  33512. image: {
  33513. source: "./media/characters/faan/head-alt.svg"
  33514. }
  33515. },
  33516. },
  33517. [
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(12 + 9/12, "feet"),
  33521. default: true
  33522. },
  33523. ]
  33524. ))
  33525. characterMakers.push(() => makeCharacter(
  33526. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33527. {
  33528. front: {
  33529. height: math.unit(6, "feet"),
  33530. weight: math.unit(300, "lb"),
  33531. name: "Front",
  33532. image: {
  33533. source: "./media/characters/tanio/front.svg",
  33534. extra: 711/673,
  33535. bottom: 25/736
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(6, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(3, "inches"),
  33552. name: "Front",
  33553. image: {
  33554. source: "./media/characters/noboru/front.svg",
  33555. extra: 1039/932,
  33556. bottom: 18/1057
  33557. }
  33558. },
  33559. },
  33560. [
  33561. {
  33562. name: "Micro",
  33563. height: math.unit(3, "inches"),
  33564. default: true
  33565. },
  33566. ]
  33567. ))
  33568. characterMakers.push(() => makeCharacter(
  33569. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33570. {
  33571. front: {
  33572. height: math.unit(1.85, "meters"),
  33573. weight: math.unit(80, "kg"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/daniel-barrett/front.svg",
  33577. extra: 355/337,
  33578. bottom: 9/364
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Pico",
  33585. height: math.unit(0.0433, "mm")
  33586. },
  33587. {
  33588. name: "Nano",
  33589. height: math.unit(1.5, "mm")
  33590. },
  33591. {
  33592. name: "Micro",
  33593. height: math.unit(5.3, "cm"),
  33594. default: true
  33595. },
  33596. {
  33597. name: "Normal",
  33598. height: math.unit(1.85, "meters")
  33599. },
  33600. {
  33601. name: "Macro",
  33602. height: math.unit(64.7, "meters")
  33603. },
  33604. {
  33605. name: "Megamacro",
  33606. height: math.unit(2.26, "km")
  33607. },
  33608. {
  33609. name: "Gigamacro",
  33610. height: math.unit(79, "km")
  33611. },
  33612. {
  33613. name: "Teramacro",
  33614. height: math.unit(2765, "km")
  33615. },
  33616. {
  33617. name: "Petamacro",
  33618. height: math.unit(96678, "km")
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33624. {
  33625. front: {
  33626. height: math.unit(30, "meters"),
  33627. weight: math.unit(400, "tons"),
  33628. name: "Front",
  33629. image: {
  33630. source: "./media/characters/zeel/front.svg",
  33631. extra: 2599/2599,
  33632. bottom: 226/2825
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Macro",
  33639. height: math.unit(30, "meters"),
  33640. default: true
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33646. {
  33647. front: {
  33648. height: math.unit(6 + 7/12, "feet"),
  33649. weight: math.unit(210, "lb"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/tarn/front.svg",
  33653. extra: 3517/3220,
  33654. bottom: 91/3608
  33655. }
  33656. },
  33657. back: {
  33658. height: math.unit(6 + 7/12, "feet"),
  33659. weight: math.unit(210, "lb"),
  33660. name: "Back",
  33661. image: {
  33662. source: "./media/characters/tarn/back.svg",
  33663. extra: 3566/3241,
  33664. bottom: 34/3600
  33665. }
  33666. },
  33667. dick: {
  33668. height: math.unit(1.65, "feet"),
  33669. name: "Dick",
  33670. image: {
  33671. source: "./media/characters/tarn/dick.svg"
  33672. }
  33673. },
  33674. paw: {
  33675. height: math.unit(1.80, "feet"),
  33676. name: "Paw",
  33677. image: {
  33678. source: "./media/characters/tarn/paw.svg"
  33679. }
  33680. },
  33681. tongue: {
  33682. height: math.unit(0.97, "feet"),
  33683. name: "Tongue",
  33684. image: {
  33685. source: "./media/characters/tarn/tongue.svg"
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Micro",
  33692. height: math.unit(4, "inches")
  33693. },
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(6 + 7/12, "feet"),
  33697. default: true
  33698. },
  33699. {
  33700. name: "Macro",
  33701. height: math.unit(300, "feet")
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(5 + 7/12, "feet"),
  33710. weight: math.unit(80, "kg"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33714. extra: 3023/2865,
  33715. bottom: 33/3056
  33716. }
  33717. },
  33718. back: {
  33719. height: math.unit(5 + 7/12, "feet"),
  33720. weight: math.unit(80, "kg"),
  33721. name: "Back",
  33722. image: {
  33723. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33724. extra: 3020/2886,
  33725. bottom: 30/3050
  33726. }
  33727. },
  33728. dick: {
  33729. height: math.unit(0.98, "feet"),
  33730. name: "Dick",
  33731. image: {
  33732. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33733. }
  33734. },
  33735. anatomy: {
  33736. height: math.unit(2.86, "feet"),
  33737. name: "Anatomy",
  33738. image: {
  33739. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Really Small",
  33746. height: math.unit(2, "inches")
  33747. },
  33748. {
  33749. name: "Micro",
  33750. height: math.unit(5.583, "inches")
  33751. },
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(5 + 7/12, "feet"),
  33755. default: true
  33756. },
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(67, "feet")
  33760. },
  33761. {
  33762. name: "Megamacro",
  33763. height: math.unit(134, "feet")
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(9, "feet"),
  33772. weight: math.unit(120, "lb"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/sally/front.svg",
  33776. extra: 1506/1349,
  33777. bottom: 66/1572
  33778. }
  33779. },
  33780. },
  33781. [
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(9, "feet"),
  33785. default: true
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(8, "feet"),
  33794. weight: math.unit(900, "lb"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/owen/front.svg",
  33798. extra: 1761/1657,
  33799. bottom: 74/1835
  33800. }
  33801. },
  33802. side: {
  33803. height: math.unit(8, "feet"),
  33804. weight: math.unit(900, "lb"),
  33805. name: "Side",
  33806. image: {
  33807. source: "./media/characters/owen/side.svg",
  33808. extra: 1797/1734,
  33809. bottom: 30/1827
  33810. }
  33811. },
  33812. back: {
  33813. height: math.unit(8, "feet"),
  33814. weight: math.unit(900, "lb"),
  33815. name: "Back",
  33816. image: {
  33817. source: "./media/characters/owen/back.svg",
  33818. extra: 1796/1706,
  33819. bottom: 59/1855
  33820. }
  33821. },
  33822. maw: {
  33823. height: math.unit(1.76, "feet"),
  33824. name: "Maw",
  33825. image: {
  33826. source: "./media/characters/owen/maw.svg"
  33827. }
  33828. },
  33829. },
  33830. [
  33831. {
  33832. name: "Normal",
  33833. height: math.unit(8, "feet"),
  33834. default: true
  33835. },
  33836. ]
  33837. ))
  33838. characterMakers.push(() => makeCharacter(
  33839. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33840. {
  33841. front: {
  33842. height: math.unit(4, "feet"),
  33843. weight: math.unit(400, "lb"),
  33844. name: "Front",
  33845. image: {
  33846. source: "./media/characters/ryth/front.svg",
  33847. extra: 1920/1748,
  33848. bottom: 42/1962
  33849. }
  33850. },
  33851. back: {
  33852. height: math.unit(4, "feet"),
  33853. weight: math.unit(400, "lb"),
  33854. name: "Back",
  33855. image: {
  33856. source: "./media/characters/ryth/back.svg",
  33857. extra: 1897/1690,
  33858. bottom: 89/1986
  33859. }
  33860. },
  33861. mouth: {
  33862. height: math.unit(1.39, "feet"),
  33863. name: "Mouth",
  33864. image: {
  33865. source: "./media/characters/ryth/mouth.svg"
  33866. }
  33867. },
  33868. tailmaw: {
  33869. height: math.unit(1.23, "feet"),
  33870. name: "Tailmaw",
  33871. image: {
  33872. source: "./media/characters/ryth/tailmaw.svg"
  33873. }
  33874. },
  33875. goia: {
  33876. height: math.unit(4, "meters"),
  33877. weight: math.unit(10800, "lb"),
  33878. name: "Goia",
  33879. image: {
  33880. source: "./media/characters/ryth/goia.svg",
  33881. extra: 745/640,
  33882. bottom: 107/852
  33883. }
  33884. },
  33885. goiaFront: {
  33886. height: math.unit(4, "meters"),
  33887. weight: math.unit(10800, "lb"),
  33888. name: "Goia (Front)",
  33889. image: {
  33890. source: "./media/characters/ryth/goia-front.svg",
  33891. extra: 750/586,
  33892. bottom: 114/864
  33893. }
  33894. },
  33895. goiaMaw: {
  33896. height: math.unit(5.55, "feet"),
  33897. name: "Goia Maw",
  33898. image: {
  33899. source: "./media/characters/ryth/goia-maw.svg"
  33900. }
  33901. },
  33902. goiaForepaw: {
  33903. height: math.unit(3.5, "feet"),
  33904. name: "Goia Forepaw",
  33905. image: {
  33906. source: "./media/characters/ryth/goia-forepaw.svg"
  33907. }
  33908. },
  33909. goiaHindpaw: {
  33910. height: math.unit(5.55, "feet"),
  33911. name: "Goia Hindpaw",
  33912. image: {
  33913. source: "./media/characters/ryth/goia-hindpaw.svg"
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(4, "feet"),
  33921. default: true
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(7, "feet"),
  33930. weight: math.unit(180, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/necrolance/front.svg",
  33934. extra: 1062/947,
  33935. bottom: 41/1103
  33936. }
  33937. },
  33938. back: {
  33939. height: math.unit(7, "feet"),
  33940. weight: math.unit(180, "lb"),
  33941. name: "Back",
  33942. image: {
  33943. source: "./media/characters/necrolance/back.svg",
  33944. extra: 1045/984,
  33945. bottom: 14/1059
  33946. }
  33947. },
  33948. wing: {
  33949. height: math.unit(2.67, "feet"),
  33950. name: "Wing",
  33951. image: {
  33952. source: "./media/characters/necrolance/wing.svg"
  33953. }
  33954. },
  33955. },
  33956. [
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(7, "feet"),
  33960. default: true
  33961. },
  33962. ]
  33963. ))
  33964. characterMakers.push(() => makeCharacter(
  33965. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33966. {
  33967. front: {
  33968. height: math.unit(76, "meters"),
  33969. weight: math.unit(30000, "tons"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/tyler/front.svg",
  33973. extra: 1640/1640,
  33974. bottom: 114/1754
  33975. }
  33976. },
  33977. },
  33978. [
  33979. {
  33980. name: "Macro",
  33981. height: math.unit(76, "meters"),
  33982. default: true
  33983. },
  33984. ]
  33985. ))
  33986. characterMakers.push(() => makeCharacter(
  33987. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33988. {
  33989. front: {
  33990. height: math.unit(4 + 11/12, "feet"),
  33991. weight: math.unit(132, "lb"),
  33992. name: "Front",
  33993. image: {
  33994. source: "./media/characters/icey/front.svg",
  33995. extra: 2750/2550,
  33996. bottom: 33/2783
  33997. }
  33998. },
  33999. back: {
  34000. height: math.unit(4 + 11/12, "feet"),
  34001. weight: math.unit(132, "lb"),
  34002. name: "Back",
  34003. image: {
  34004. source: "./media/characters/icey/back.svg",
  34005. extra: 2624/2481,
  34006. bottom: 35/2659
  34007. }
  34008. },
  34009. },
  34010. [
  34011. {
  34012. name: "Normal",
  34013. height: math.unit(4 + 11/12, "feet"),
  34014. default: true
  34015. },
  34016. ]
  34017. ))
  34018. characterMakers.push(() => makeCharacter(
  34019. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34020. {
  34021. front: {
  34022. height: math.unit(100, "feet"),
  34023. weight: math.unit(0, "lb"),
  34024. name: "Front",
  34025. image: {
  34026. source: "./media/characters/smile/front.svg",
  34027. extra: 2983/2912,
  34028. bottom: 162/3145
  34029. }
  34030. },
  34031. back: {
  34032. height: math.unit(100, "feet"),
  34033. weight: math.unit(0, "lb"),
  34034. name: "Back",
  34035. image: {
  34036. source: "./media/characters/smile/back.svg",
  34037. extra: 3143/3031,
  34038. bottom: 91/3234
  34039. }
  34040. },
  34041. head: {
  34042. height: math.unit(26.3, "feet"),
  34043. weight: math.unit(0, "lb"),
  34044. name: "Head",
  34045. image: {
  34046. source: "./media/characters/smile/head.svg"
  34047. }
  34048. },
  34049. collar: {
  34050. height: math.unit(5.3, "feet"),
  34051. weight: math.unit(0, "lb"),
  34052. name: "Collar",
  34053. image: {
  34054. source: "./media/characters/smile/collar.svg"
  34055. }
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Macro",
  34061. height: math.unit(100, "feet"),
  34062. default: true
  34063. },
  34064. ]
  34065. ))
  34066. characterMakers.push(() => makeCharacter(
  34067. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34068. {
  34069. dragon: {
  34070. height: math.unit(26, "feet"),
  34071. weight: math.unit(36, "tons"),
  34072. name: "Dragon",
  34073. image: {
  34074. source: "./media/characters/arimphae/dragon.svg",
  34075. extra: 1574/983,
  34076. bottom: 357/1931
  34077. }
  34078. },
  34079. drake: {
  34080. height: math.unit(9, "feet"),
  34081. weight: math.unit(1.5, "tons"),
  34082. name: "Drake",
  34083. image: {
  34084. source: "./media/characters/arimphae/drake.svg",
  34085. extra: 1120/925,
  34086. bottom: 435/1555
  34087. }
  34088. },
  34089. },
  34090. [
  34091. {
  34092. name: "Small",
  34093. height: math.unit(26*5/9, "feet")
  34094. },
  34095. {
  34096. name: "Normal",
  34097. height: math.unit(26, "feet"),
  34098. default: true
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34104. {
  34105. front: {
  34106. height: math.unit(8 + 9/12, "feet"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/xander/front.svg",
  34110. extra: 1237/974,
  34111. bottom: 94/1331
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(8 + 9/12, "feet"),
  34119. default: true
  34120. },
  34121. {
  34122. name: "Gaze Grabber",
  34123. height: math.unit(13 + 8/12, "feet")
  34124. },
  34125. {
  34126. name: "Jaw Dropper",
  34127. height: math.unit(27, "feet")
  34128. },
  34129. {
  34130. name: "Show Stopper",
  34131. height: math.unit(136, "feet")
  34132. },
  34133. {
  34134. name: "Superstar",
  34135. height: math.unit(1.9e6, "miles")
  34136. },
  34137. ]
  34138. ))
  34139. characterMakers.push(() => makeCharacter(
  34140. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34141. {
  34142. side: {
  34143. height: math.unit(2100, "feet"),
  34144. name: "Side",
  34145. image: {
  34146. source: "./media/characters/osiris/side.svg",
  34147. extra: 1105/939,
  34148. bottom: 167/1272
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Macro",
  34155. height: math.unit(2100, "feet"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34162. {
  34163. front: {
  34164. height: math.unit(6 + 8/12, "feet"),
  34165. weight: math.unit(225, "lb"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/rhys-londe/front.svg",
  34169. extra: 2258/2141,
  34170. bottom: 188/2446
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(6 + 8/12, "feet"),
  34175. weight: math.unit(225, "lb"),
  34176. name: "Back",
  34177. image: {
  34178. source: "./media/characters/rhys-londe/back.svg",
  34179. extra: 2237/2137,
  34180. bottom: 63/2300
  34181. }
  34182. },
  34183. frontNsfw: {
  34184. height: math.unit(6 + 8/12, "feet"),
  34185. weight: math.unit(225, "lb"),
  34186. name: "Front (NSFW)",
  34187. image: {
  34188. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34189. extra: 2258/2141,
  34190. bottom: 188/2446
  34191. }
  34192. },
  34193. backNsfw: {
  34194. height: math.unit(6 + 8/12, "feet"),
  34195. weight: math.unit(225, "lb"),
  34196. name: "Back (NSFW)",
  34197. image: {
  34198. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34199. extra: 2237/2137,
  34200. bottom: 63/2300
  34201. }
  34202. },
  34203. dick: {
  34204. height: math.unit(30, "inches"),
  34205. name: "Dick",
  34206. image: {
  34207. source: "./media/characters/rhys-londe/dick.svg"
  34208. }
  34209. },
  34210. maw: {
  34211. height: math.unit(1.6, "feet"),
  34212. name: "Maw",
  34213. image: {
  34214. source: "./media/characters/rhys-londe/maw.svg"
  34215. }
  34216. },
  34217. },
  34218. [
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(6 + 8/12, "feet"),
  34222. default: true
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34228. {
  34229. front: {
  34230. height: math.unit(3 + 10/12, "feet"),
  34231. weight: math.unit(90, "lb"),
  34232. name: "Front",
  34233. image: {
  34234. source: "./media/characters/taivas-ensim/front.svg",
  34235. extra: 1327/1216,
  34236. bottom: 96/1423
  34237. }
  34238. },
  34239. back: {
  34240. height: math.unit(3 + 10/12, "feet"),
  34241. weight: math.unit(90, "lb"),
  34242. name: "Back",
  34243. image: {
  34244. source: "./media/characters/taivas-ensim/back.svg",
  34245. extra: 1355/1247,
  34246. bottom: 11/1366
  34247. }
  34248. },
  34249. frontNsfw: {
  34250. height: math.unit(3 + 10/12, "feet"),
  34251. weight: math.unit(90, "lb"),
  34252. name: "Front (NSFW)",
  34253. image: {
  34254. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34255. extra: 1327/1216,
  34256. bottom: 96/1423
  34257. }
  34258. },
  34259. backNsfw: {
  34260. height: math.unit(3 + 10/12, "feet"),
  34261. weight: math.unit(90, "lb"),
  34262. name: "Back (NSFW)",
  34263. image: {
  34264. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34265. extra: 1355/1247,
  34266. bottom: 11/1366
  34267. }
  34268. },
  34269. },
  34270. [
  34271. {
  34272. name: "Normal",
  34273. height: math.unit(3 + 10/12, "feet"),
  34274. default: true
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34280. {
  34281. front: {
  34282. height: math.unit(9 + 6/12, "feet"),
  34283. weight: math.unit(940, "lb"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/byliss/front.svg",
  34287. extra: 1327/1290,
  34288. bottom: 82/1409
  34289. }
  34290. },
  34291. back: {
  34292. height: math.unit(9 + 6/12, "feet"),
  34293. weight: math.unit(940, "lb"),
  34294. name: "Back",
  34295. image: {
  34296. source: "./media/characters/byliss/back.svg",
  34297. extra: 1376/1349,
  34298. bottom: 9/1385
  34299. }
  34300. },
  34301. frontNsfw: {
  34302. height: math.unit(9 + 6/12, "feet"),
  34303. weight: math.unit(940, "lb"),
  34304. name: "Front (NSFW)",
  34305. image: {
  34306. source: "./media/characters/byliss/front-nsfw.svg",
  34307. extra: 1327/1290,
  34308. bottom: 82/1409
  34309. }
  34310. },
  34311. backNsfw: {
  34312. height: math.unit(9 + 6/12, "feet"),
  34313. weight: math.unit(940, "lb"),
  34314. name: "Back (NSFW)",
  34315. image: {
  34316. source: "./media/characters/byliss/back-nsfw.svg",
  34317. extra: 1376/1349,
  34318. bottom: 9/1385
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(9 + 6/12, "feet"),
  34326. default: true
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34332. {
  34333. front: {
  34334. height: math.unit(5 + 2/12, "feet"),
  34335. weight: math.unit(200, "lb"),
  34336. name: "Front",
  34337. image: {
  34338. source: "./media/characters/noraly/front.svg",
  34339. extra: 4985/4773,
  34340. bottom: 150/5135
  34341. }
  34342. },
  34343. full: {
  34344. height: math.unit(5 + 2/12, "feet"),
  34345. weight: math.unit(164, "lb"),
  34346. name: "Full",
  34347. image: {
  34348. source: "./media/characters/noraly/full.svg",
  34349. extra: 1114/1059,
  34350. bottom: 35/1149
  34351. }
  34352. },
  34353. fuller: {
  34354. height: math.unit(5 + 2/12, "feet"),
  34355. weight: math.unit(230, "lb"),
  34356. name: "Fuller",
  34357. image: {
  34358. source: "./media/characters/noraly/fuller.svg",
  34359. extra: 1114/1059,
  34360. bottom: 35/1149
  34361. }
  34362. },
  34363. fullest: {
  34364. height: math.unit(5 + 2/12, "feet"),
  34365. weight: math.unit(300, "lb"),
  34366. name: "Fullest",
  34367. image: {
  34368. source: "./media/characters/noraly/fullest.svg",
  34369. extra: 1114/1059,
  34370. bottom: 35/1149
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(5 + 2/12, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34384. {
  34385. front: {
  34386. height: math.unit(5 + 2/12, "feet"),
  34387. weight: math.unit(210, "lb"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/pera/front.svg",
  34391. extra: 1560/1531,
  34392. bottom: 165/1725
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(5 + 2/12, "feet"),
  34397. weight: math.unit(210, "lb"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/pera/back.svg",
  34401. extra: 1523/1493,
  34402. bottom: 152/1675
  34403. }
  34404. },
  34405. dick: {
  34406. height: math.unit(2.4, "feet"),
  34407. name: "Dick",
  34408. image: {
  34409. source: "./media/characters/pera/dick.svg"
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Normal",
  34416. height: math.unit(5 + 2/12, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(12, "feet"),
  34426. weight: math.unit(3200, "lb"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/julian/front.svg",
  34430. extra: 2962/2701,
  34431. bottom: 184/3146
  34432. }
  34433. },
  34434. maw: {
  34435. height: math.unit(5.35, "feet"),
  34436. name: "Maw",
  34437. image: {
  34438. source: "./media/characters/julian/maw.svg"
  34439. }
  34440. },
  34441. paw: {
  34442. height: math.unit(3.07, "feet"),
  34443. name: "Paw",
  34444. image: {
  34445. source: "./media/characters/julian/paw.svg"
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Default",
  34452. height: math.unit(12, "feet"),
  34453. default: true
  34454. },
  34455. {
  34456. name: "Big",
  34457. height: math.unit(50, "feet")
  34458. },
  34459. {
  34460. name: "Really Big",
  34461. height: math.unit(1, "mile")
  34462. },
  34463. {
  34464. name: "Extremely Big",
  34465. height: math.unit(100, "miles")
  34466. },
  34467. {
  34468. name: "Planet Hugger",
  34469. height: math.unit(200, "megameters")
  34470. },
  34471. {
  34472. name: "Unreasonably Big",
  34473. height: math.unit(1e300, "meters")
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34479. {
  34480. solgooleo: {
  34481. height: math.unit(4, "meters"),
  34482. weight: math.unit(6000*1.5, "kg"),
  34483. volume: math.unit(6000, "liters"),
  34484. name: "Solgooleo",
  34485. image: {
  34486. source: "./media/characters/pi/solgooleo.svg",
  34487. extra: 388/331,
  34488. bottom: 29/417
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Normal",
  34495. height: math.unit(4, "meters"),
  34496. default: true
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(8, "feet"),
  34505. weight: math.unit(4, "tons"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/shaun/front.svg",
  34509. extra: 503/495,
  34510. bottom: 20/523
  34511. }
  34512. },
  34513. back: {
  34514. height: math.unit(8, "feet"),
  34515. weight: math.unit(4, "tons"),
  34516. name: "Back",
  34517. image: {
  34518. source: "./media/characters/shaun/back.svg",
  34519. extra: 487/480,
  34520. bottom: 20/507
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Lorg",
  34527. height: math.unit(8, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34534. {
  34535. frontAnthro: {
  34536. height: math.unit(7, "feet"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/sini/front-anthro.svg",
  34540. extra: 726/678,
  34541. bottom: 35/761
  34542. },
  34543. form: "anthro",
  34544. default: true
  34545. },
  34546. backAnthro: {
  34547. height: math.unit(7, "feet"),
  34548. name: "Back",
  34549. image: {
  34550. source: "./media/characters/sini/back-anthro.svg",
  34551. extra: 743/701,
  34552. bottom: 12/755
  34553. },
  34554. form: "anthro",
  34555. },
  34556. frontAnthroNsfw: {
  34557. height: math.unit(7, "feet"),
  34558. name: "Front (NSFW)",
  34559. image: {
  34560. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34561. extra: 726/678,
  34562. bottom: 35/761
  34563. },
  34564. form: "anthro"
  34565. },
  34566. backAnthroNsfw: {
  34567. height: math.unit(7, "feet"),
  34568. name: "Back (NSFW)",
  34569. image: {
  34570. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34571. extra: 743/701,
  34572. bottom: 12/755
  34573. },
  34574. form: "anthro",
  34575. },
  34576. mawAnthro: {
  34577. height: math.unit(2.14, "feet"),
  34578. name: "Maw",
  34579. image: {
  34580. source: "./media/characters/sini/maw-anthro.svg"
  34581. },
  34582. form: "anthro"
  34583. },
  34584. dick: {
  34585. height: math.unit(1.45, "feet"),
  34586. name: "Dick",
  34587. image: {
  34588. source: "./media/characters/sini/dick-anthro.svg"
  34589. },
  34590. form: "anthro"
  34591. },
  34592. feral: {
  34593. height: math.unit(16, "feet"),
  34594. name: "Feral",
  34595. image: {
  34596. source: "./media/characters/sini/feral.svg",
  34597. extra: 814/605,
  34598. bottom: 11/825
  34599. },
  34600. form: "feral",
  34601. default: true
  34602. },
  34603. feralNsfw: {
  34604. height: math.unit(16, "feet"),
  34605. name: "Feral (NSFW)",
  34606. image: {
  34607. source: "./media/characters/sini/feral-nsfw.svg",
  34608. extra: 814/605,
  34609. bottom: 11/825
  34610. },
  34611. form: "feral"
  34612. },
  34613. mawFeral: {
  34614. height: math.unit(5.66, "feet"),
  34615. name: "Maw",
  34616. image: {
  34617. source: "./media/characters/sini/maw-feral.svg"
  34618. },
  34619. form: "feral",
  34620. },
  34621. pawFeral: {
  34622. height: math.unit(5.17, "feet"),
  34623. name: "Paw",
  34624. image: {
  34625. source: "./media/characters/sini/paw-feral.svg"
  34626. },
  34627. form: "feral",
  34628. },
  34629. rumpFeral: {
  34630. height: math.unit(13.11, "feet"),
  34631. name: "Rump",
  34632. image: {
  34633. source: "./media/characters/sini/rump-feral.svg"
  34634. },
  34635. form: "feral",
  34636. },
  34637. dickFeral: {
  34638. height: math.unit(1, "feet"),
  34639. name: "Dick",
  34640. image: {
  34641. source: "./media/characters/sini/dick-feral.svg"
  34642. },
  34643. form: "feral",
  34644. },
  34645. eyeFeral: {
  34646. height: math.unit(1.23, "feet"),
  34647. name: "Eye",
  34648. image: {
  34649. source: "./media/characters/sini/eye-feral.svg"
  34650. },
  34651. form: "feral",
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(7, "feet"),
  34658. default: true,
  34659. form: "anthro"
  34660. },
  34661. {
  34662. name: "Normal",
  34663. height: math.unit(16, "feet"),
  34664. default: true,
  34665. form: "feral"
  34666. },
  34667. ],
  34668. {
  34669. "anthro": {
  34670. name: "Anthro",
  34671. default: true
  34672. },
  34673. "feral": {
  34674. name: "Feral",
  34675. }
  34676. }
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34680. {
  34681. side: {
  34682. height: math.unit(47.2, "meters"),
  34683. weight: math.unit(10000, "tons"),
  34684. name: "Side",
  34685. image: {
  34686. source: "./media/characters/raylldo/side.svg",
  34687. extra: 2363/642,
  34688. bottom: 221/2584
  34689. }
  34690. },
  34691. top: {
  34692. height: math.unit(240, "meters"),
  34693. weight: math.unit(10000, "tons"),
  34694. name: "Top",
  34695. image: {
  34696. source: "./media/characters/raylldo/top.svg"
  34697. }
  34698. },
  34699. bottom: {
  34700. height: math.unit(240, "meters"),
  34701. weight: math.unit(10000, "tons"),
  34702. name: "Bottom",
  34703. image: {
  34704. source: "./media/characters/raylldo/bottom.svg"
  34705. }
  34706. },
  34707. head: {
  34708. height: math.unit(38.6, "meters"),
  34709. name: "Head",
  34710. image: {
  34711. source: "./media/characters/raylldo/head.svg",
  34712. extra: 1335/1112,
  34713. bottom: 0/1335
  34714. }
  34715. },
  34716. maw: {
  34717. height: math.unit(16.37, "meters"),
  34718. name: "Maw",
  34719. image: {
  34720. source: "./media/characters/raylldo/maw.svg",
  34721. extra: 883/660,
  34722. bottom: 0/883
  34723. },
  34724. extraAttributes: {
  34725. preyCapacity: {
  34726. name: "Capacity",
  34727. power: 3,
  34728. type: "volume",
  34729. base: math.unit(1000, "people")
  34730. },
  34731. tongueSize: {
  34732. name: "Tongue Size",
  34733. power: 2,
  34734. type: "area",
  34735. base: math.unit(21, "m^2")
  34736. }
  34737. }
  34738. },
  34739. forepaw: {
  34740. height: math.unit(18, "meters"),
  34741. name: "Forepaw",
  34742. image: {
  34743. source: "./media/characters/raylldo/forepaw.svg"
  34744. }
  34745. },
  34746. hindpaw: {
  34747. height: math.unit(23, "meters"),
  34748. name: "Hindpaw",
  34749. image: {
  34750. source: "./media/characters/raylldo/hindpaw.svg"
  34751. }
  34752. },
  34753. genitals: {
  34754. height: math.unit(42, "meters"),
  34755. name: "Genitals",
  34756. image: {
  34757. source: "./media/characters/raylldo/genitals.svg"
  34758. }
  34759. },
  34760. },
  34761. [
  34762. {
  34763. name: "Normal",
  34764. height: math.unit(47.2, "meters"),
  34765. default: true
  34766. },
  34767. ]
  34768. ))
  34769. characterMakers.push(() => makeCharacter(
  34770. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34771. {
  34772. anthroFront: {
  34773. height: math.unit(9, "feet"),
  34774. weight: math.unit(600, "lb"),
  34775. name: "Anthro (Front)",
  34776. image: {
  34777. source: "./media/characters/glint/anthro-front.svg",
  34778. extra: 1097/1018,
  34779. bottom: 28/1125
  34780. }
  34781. },
  34782. anthroBack: {
  34783. height: math.unit(9, "feet"),
  34784. weight: math.unit(600, "lb"),
  34785. name: "Anthro (Back)",
  34786. image: {
  34787. source: "./media/characters/glint/anthro-back.svg",
  34788. extra: 1154/997,
  34789. bottom: 36/1190
  34790. }
  34791. },
  34792. feral: {
  34793. height: math.unit(11, "feet"),
  34794. weight: math.unit(50000, "lb"),
  34795. name: "Feral",
  34796. image: {
  34797. source: "./media/characters/glint/feral.svg",
  34798. extra: 3035/1585,
  34799. bottom: 1169/4204
  34800. }
  34801. },
  34802. dickAnthro: {
  34803. height: math.unit(0.7, "meters"),
  34804. name: "Dick (Anthro)",
  34805. image: {
  34806. source: "./media/characters/glint/dick-anthro.svg"
  34807. }
  34808. },
  34809. dickFeral: {
  34810. height: math.unit(2.65, "meters"),
  34811. name: "Dick (Feral)",
  34812. image: {
  34813. source: "./media/characters/glint/dick-feral.svg"
  34814. }
  34815. },
  34816. slitHidden: {
  34817. height: math.unit(5.85, "meters"),
  34818. name: "Slit (Hidden)",
  34819. image: {
  34820. source: "./media/characters/glint/slit-hidden.svg"
  34821. }
  34822. },
  34823. slitErect: {
  34824. height: math.unit(5.85, "meters"),
  34825. name: "Slit (Erect)",
  34826. image: {
  34827. source: "./media/characters/glint/slit-erect.svg"
  34828. }
  34829. },
  34830. mawAnthro: {
  34831. height: math.unit(0.63, "meters"),
  34832. name: "Maw (Anthro)",
  34833. image: {
  34834. source: "./media/characters/glint/maw.svg"
  34835. }
  34836. },
  34837. mawFeral: {
  34838. height: math.unit(2.89, "meters"),
  34839. name: "Maw (Feral)",
  34840. image: {
  34841. source: "./media/characters/glint/maw.svg"
  34842. }
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(9, "feet"),
  34849. default: true
  34850. },
  34851. ]
  34852. ))
  34853. characterMakers.push(() => makeCharacter(
  34854. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34855. {
  34856. side: {
  34857. height: math.unit(15, "feet"),
  34858. weight: math.unit(5000, "kg"),
  34859. name: "Side",
  34860. image: {
  34861. source: "./media/characters/kairne/side.svg",
  34862. extra: 979/811,
  34863. bottom: 13/992
  34864. }
  34865. },
  34866. front: {
  34867. height: math.unit(15, "feet"),
  34868. weight: math.unit(5000, "kg"),
  34869. name: "Front",
  34870. image: {
  34871. source: "./media/characters/kairne/front.svg",
  34872. extra: 908/814,
  34873. bottom: 26/934
  34874. }
  34875. },
  34876. sideNsfw: {
  34877. height: math.unit(15, "feet"),
  34878. weight: math.unit(5000, "kg"),
  34879. name: "Side (NSFW)",
  34880. image: {
  34881. source: "./media/characters/kairne/side-nsfw.svg",
  34882. extra: 979/811,
  34883. bottom: 13/992
  34884. }
  34885. },
  34886. frontNsfw: {
  34887. height: math.unit(15, "feet"),
  34888. weight: math.unit(5000, "kg"),
  34889. name: "Front (NSFW)",
  34890. image: {
  34891. source: "./media/characters/kairne/front-nsfw.svg",
  34892. extra: 908/814,
  34893. bottom: 26/934
  34894. }
  34895. },
  34896. dickCaged: {
  34897. height: math.unit(0.65, "meters"),
  34898. name: "Dick-caged",
  34899. image: {
  34900. source: "./media/characters/kairne/dick-caged.svg"
  34901. }
  34902. },
  34903. dick: {
  34904. height: math.unit(0.79, "meters"),
  34905. name: "Dick",
  34906. image: {
  34907. source: "./media/characters/kairne/dick.svg"
  34908. }
  34909. },
  34910. genitals: {
  34911. height: math.unit(1.29, "meters"),
  34912. name: "Genitals",
  34913. image: {
  34914. source: "./media/characters/kairne/genitals.svg"
  34915. }
  34916. },
  34917. maw: {
  34918. height: math.unit(1.73, "meters"),
  34919. name: "Maw",
  34920. image: {
  34921. source: "./media/characters/kairne/maw.svg"
  34922. }
  34923. },
  34924. },
  34925. [
  34926. {
  34927. name: "Normal",
  34928. height: math.unit(15, "feet"),
  34929. default: true
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(5 + 8/12, "feet"),
  34938. weight: math.unit(139, "lb"),
  34939. name: "Front",
  34940. image: {
  34941. source: "./media/characters/biscuit-jackal/front.svg",
  34942. extra: 2106/1961,
  34943. bottom: 58/2164
  34944. }
  34945. },
  34946. back: {
  34947. height: math.unit(5 + 8/12, "feet"),
  34948. weight: math.unit(139, "lb"),
  34949. name: "Back",
  34950. image: {
  34951. source: "./media/characters/biscuit-jackal/back.svg",
  34952. extra: 2132/1976,
  34953. bottom: 57/2189
  34954. }
  34955. },
  34956. werejackal: {
  34957. height: math.unit(6 + 3/12, "feet"),
  34958. weight: math.unit(188, "lb"),
  34959. name: "Werejackal",
  34960. image: {
  34961. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34962. extra: 2373/2178,
  34963. bottom: 53/2426
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(5 + 8/12, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34977. {
  34978. front: {
  34979. height: math.unit(140, "cm"),
  34980. weight: math.unit(45, "kg"),
  34981. name: "Front",
  34982. image: {
  34983. source: "./media/characters/tayra-white/front.svg",
  34984. extra: 2229/2192,
  34985. bottom: 75/2304
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Normal",
  34992. height: math.unit(140, "cm"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34999. {
  35000. front: {
  35001. height: math.unit(4 + 5/12, "feet"),
  35002. name: "Front",
  35003. image: {
  35004. source: "./media/characters/scoop/front.svg",
  35005. extra: 1257/1136,
  35006. bottom: 69/1326
  35007. }
  35008. },
  35009. back: {
  35010. height: math.unit(4 + 5/12, "feet"),
  35011. name: "Back",
  35012. image: {
  35013. source: "./media/characters/scoop/back.svg",
  35014. extra: 1321/1152,
  35015. bottom: 32/1353
  35016. }
  35017. },
  35018. maw: {
  35019. height: math.unit(0.68, "feet"),
  35020. name: "Maw",
  35021. image: {
  35022. source: "./media/characters/scoop/maw.svg"
  35023. }
  35024. },
  35025. },
  35026. [
  35027. {
  35028. name: "Really Small",
  35029. height: math.unit(1, "mm")
  35030. },
  35031. {
  35032. name: "Micro",
  35033. height: math.unit(1, "inch")
  35034. },
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(4 + 5/12, "feet"),
  35038. default: true
  35039. },
  35040. {
  35041. name: "Macro",
  35042. height: math.unit(200, "feet")
  35043. },
  35044. {
  35045. name: "Megamacro",
  35046. height: math.unit(3240, "feet")
  35047. },
  35048. {
  35049. name: "Teramacro",
  35050. height: math.unit(2500, "miles")
  35051. },
  35052. ]
  35053. ))
  35054. characterMakers.push(() => makeCharacter(
  35055. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35056. {
  35057. front: {
  35058. height: math.unit(15 + 7/12, "feet"),
  35059. weight: math.unit(1150, "tons"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/saphinara/front.svg",
  35063. extra: 1837/1643,
  35064. bottom: 84/1921
  35065. },
  35066. form: "normal",
  35067. default: true
  35068. },
  35069. side: {
  35070. height: math.unit(15 + 7/12, "feet"),
  35071. weight: math.unit(1150, "tons"),
  35072. name: "Side",
  35073. image: {
  35074. source: "./media/characters/saphinara/side.svg",
  35075. extra: 605/547,
  35076. bottom: 6/611
  35077. },
  35078. form: "normal"
  35079. },
  35080. back: {
  35081. height: math.unit(15 + 7/12, "feet"),
  35082. weight: math.unit(1150, "tons"),
  35083. name: "Back",
  35084. image: {
  35085. source: "./media/characters/saphinara/back.svg",
  35086. extra: 591/531,
  35087. bottom: 13/604
  35088. },
  35089. form: "normal"
  35090. },
  35091. frontTail: {
  35092. height: math.unit(15 + 7/12, "feet"),
  35093. weight: math.unit(1150, "tons"),
  35094. name: "Front (Full Tail)",
  35095. image: {
  35096. source: "./media/characters/saphinara/front-tail.svg",
  35097. extra: 2256/1630,
  35098. bottom: 261/2517
  35099. },
  35100. form: "normal"
  35101. },
  35102. insides: {
  35103. height: math.unit(11.92, "feet"),
  35104. name: "Insides",
  35105. image: {
  35106. source: "./media/characters/saphinara/insides.svg"
  35107. },
  35108. form: "normal"
  35109. },
  35110. head: {
  35111. height: math.unit(4.17, "feet"),
  35112. name: "Head",
  35113. image: {
  35114. source: "./media/characters/saphinara/head.svg"
  35115. },
  35116. form: "normal"
  35117. },
  35118. tongue: {
  35119. height: math.unit(4.60, "feet"),
  35120. name: "Tongue",
  35121. image: {
  35122. source: "./media/characters/saphinara/tongue.svg"
  35123. },
  35124. form: "normal"
  35125. },
  35126. headEnraged: {
  35127. height: math.unit(5.55, "feet"),
  35128. name: "Head (Enraged)",
  35129. image: {
  35130. source: "./media/characters/saphinara/head-enraged.svg"
  35131. },
  35132. form: "normal"
  35133. },
  35134. wings: {
  35135. height: math.unit(11.95, "feet"),
  35136. name: "Wings",
  35137. image: {
  35138. source: "./media/characters/saphinara/wings.svg"
  35139. },
  35140. form: "normal"
  35141. },
  35142. feathers: {
  35143. height: math.unit(8.92, "feet"),
  35144. name: "Feathers",
  35145. image: {
  35146. source: "./media/characters/saphinara/feathers.svg"
  35147. },
  35148. form: "normal"
  35149. },
  35150. shackles: {
  35151. height: math.unit(2, "feet"),
  35152. name: "Shackles",
  35153. image: {
  35154. source: "./media/characters/saphinara/shackles.svg"
  35155. },
  35156. form: "normal"
  35157. },
  35158. eyes: {
  35159. height: math.unit(1.331, "feet"),
  35160. name: "Eyes",
  35161. image: {
  35162. source: "./media/characters/saphinara/eyes.svg"
  35163. },
  35164. form: "normal"
  35165. },
  35166. eyesEnraged: {
  35167. height: math.unit(1.331, "feet"),
  35168. name: "Eyes (Enraged)",
  35169. image: {
  35170. source: "./media/characters/saphinara/eyes-enraged.svg"
  35171. },
  35172. form: "normal"
  35173. },
  35174. trueFormSide: {
  35175. height: math.unit(200, "feet"),
  35176. weight: math.unit(1e7, "tons"),
  35177. name: "Side",
  35178. image: {
  35179. source: "./media/characters/saphinara/true-form-side.svg",
  35180. extra: 1399/770,
  35181. bottom: 97/1496
  35182. },
  35183. form: "true-form",
  35184. default: true
  35185. },
  35186. trueFormMaw: {
  35187. height: math.unit(71.5, "feet"),
  35188. name: "Maw",
  35189. image: {
  35190. source: "./media/characters/saphinara/true-form-maw.svg",
  35191. extra: 2302/1453,
  35192. bottom: 0/2302
  35193. },
  35194. form: "true-form"
  35195. },
  35196. meowberusSide: {
  35197. height: math.unit(75, "feet"),
  35198. weight: math.unit(180000, "kg"),
  35199. preyCapacity: math.unit(50000, "people"),
  35200. name: "Side",
  35201. image: {
  35202. source: "./media/characters/saphinara/meowberus-side.svg",
  35203. extra: 1400/711,
  35204. bottom: 126/1526
  35205. },
  35206. form: "meowberus",
  35207. extraAttributes: {
  35208. "pawArea": {
  35209. name: "Paw Size",
  35210. power: 2,
  35211. type: "area",
  35212. base: math.unit(35, "m^2")
  35213. }
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(15 + 7/12, "feet"),
  35221. default: true,
  35222. form: "normal"
  35223. },
  35224. {
  35225. name: "Angry",
  35226. height: math.unit(30 + 6/12, "feet"),
  35227. form: "normal"
  35228. },
  35229. {
  35230. name: "Enraged",
  35231. height: math.unit(102 + 1/12, "feet"),
  35232. form: "normal"
  35233. },
  35234. {
  35235. name: "True",
  35236. height: math.unit(200, "feet"),
  35237. default: true,
  35238. form: "true-form"
  35239. },
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(75, "feet"),
  35243. default: true,
  35244. form: "meowberus"
  35245. },
  35246. ],
  35247. {
  35248. "normal": {
  35249. name: "Normal",
  35250. default: true
  35251. },
  35252. "true-form": {
  35253. name: "True Form"
  35254. },
  35255. "meowberus": {
  35256. name: "Meowberus",
  35257. },
  35258. }
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(6 + 8/12, "feet"),
  35265. weight: math.unit(300, "lb"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/jrain/front.svg",
  35269. extra: 3039/2865,
  35270. bottom: 399/3438
  35271. }
  35272. },
  35273. back: {
  35274. height: math.unit(6 + 8/12, "feet"),
  35275. weight: math.unit(300, "lb"),
  35276. name: "Back",
  35277. image: {
  35278. source: "./media/characters/jrain/back.svg",
  35279. extra: 3089/2938,
  35280. bottom: 172/3261
  35281. }
  35282. },
  35283. head: {
  35284. height: math.unit(2.14, "feet"),
  35285. name: "Head",
  35286. image: {
  35287. source: "./media/characters/jrain/head.svg"
  35288. }
  35289. },
  35290. maw: {
  35291. height: math.unit(1.77, "feet"),
  35292. name: "Maw",
  35293. image: {
  35294. source: "./media/characters/jrain/maw.svg"
  35295. }
  35296. },
  35297. leftHand: {
  35298. height: math.unit(1.1, "feet"),
  35299. name: "Left Hand",
  35300. image: {
  35301. source: "./media/characters/jrain/left-hand.svg"
  35302. }
  35303. },
  35304. rightHand: {
  35305. height: math.unit(1.1, "feet"),
  35306. name: "Right Hand",
  35307. image: {
  35308. source: "./media/characters/jrain/right-hand.svg"
  35309. }
  35310. },
  35311. eye: {
  35312. height: math.unit(0.35, "feet"),
  35313. name: "Eye",
  35314. image: {
  35315. source: "./media/characters/jrain/eye.svg"
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(6 + 8/12, "feet"),
  35323. default: true
  35324. },
  35325. {
  35326. name: "Casually Large",
  35327. height: math.unit(25, "feet")
  35328. },
  35329. {
  35330. name: "Giant",
  35331. height: math.unit(100, "feet")
  35332. },
  35333. {
  35334. name: "Kaiju",
  35335. height: math.unit(300, "feet")
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35341. {
  35342. dragon: {
  35343. height: math.unit(5, "meters"),
  35344. name: "Dragon",
  35345. image: {
  35346. source: "./media/characters/sabrina/dragon.svg",
  35347. extra: 3670 / 2365,
  35348. bottom: 333 / 4003
  35349. }
  35350. },
  35351. gryphon: {
  35352. height: math.unit(3, "meters"),
  35353. name: "Gryphon",
  35354. image: {
  35355. source: "./media/characters/sabrina/gryphon.svg",
  35356. extra: 1576 / 945,
  35357. bottom: 71 / 1647
  35358. }
  35359. },
  35360. snake: {
  35361. height: math.unit(12, "meters"),
  35362. name: "Snake",
  35363. image: {
  35364. source: "./media/characters/sabrina/snake.svg",
  35365. extra: 1758 / 1320,
  35366. bottom: 186 / 1944
  35367. }
  35368. },
  35369. collar: {
  35370. height: math.unit(1.86, "meters"),
  35371. name: "Collar",
  35372. image: {
  35373. source: "./media/characters/sabrina/collar.svg"
  35374. }
  35375. },
  35376. eye: {
  35377. height: math.unit(0.53, "meters"),
  35378. name: "Eye",
  35379. image: {
  35380. source: "./media/characters/sabrina/eye.svg"
  35381. }
  35382. },
  35383. foot: {
  35384. height: math.unit(1.86, "meters"),
  35385. name: "Foot",
  35386. image: {
  35387. source: "./media/characters/sabrina/foot.svg"
  35388. }
  35389. },
  35390. hand: {
  35391. height: math.unit(1.32, "meters"),
  35392. name: "Hand",
  35393. image: {
  35394. source: "./media/characters/sabrina/hand.svg"
  35395. }
  35396. },
  35397. head: {
  35398. height: math.unit(2.44, "meters"),
  35399. name: "Head",
  35400. image: {
  35401. source: "./media/characters/sabrina/head.svg"
  35402. }
  35403. },
  35404. headAngry: {
  35405. height: math.unit(2.44, "meters"),
  35406. name: "Head (Angry))",
  35407. image: {
  35408. source: "./media/characters/sabrina/head-angry.svg"
  35409. }
  35410. },
  35411. maw: {
  35412. height: math.unit(1.65, "meters"),
  35413. name: "Maw",
  35414. image: {
  35415. source: "./media/characters/sabrina/maw.svg"
  35416. }
  35417. },
  35418. spikes: {
  35419. height: math.unit(1.69, "meters"),
  35420. name: "Spikes",
  35421. image: {
  35422. source: "./media/characters/sabrina/spikes.svg"
  35423. }
  35424. },
  35425. stomach: {
  35426. height: math.unit(1.15, "meters"),
  35427. name: "Stomach",
  35428. image: {
  35429. source: "./media/characters/sabrina/stomach.svg"
  35430. }
  35431. },
  35432. tongue: {
  35433. height: math.unit(1.27, "meters"),
  35434. name: "Tongue",
  35435. image: {
  35436. source: "./media/characters/sabrina/tongue.svg"
  35437. }
  35438. },
  35439. wingDorsal: {
  35440. height: math.unit(4.85, "meters"),
  35441. name: "Wing (Dorsal)",
  35442. image: {
  35443. source: "./media/characters/sabrina/wing-dorsal.svg"
  35444. }
  35445. },
  35446. wingVentral: {
  35447. height: math.unit(4.85, "meters"),
  35448. name: "Wing (Ventral)",
  35449. image: {
  35450. source: "./media/characters/sabrina/wing-ventral.svg"
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(5, "meters"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35464. {
  35465. frontMaid: {
  35466. height: math.unit(5 + 5/12, "feet"),
  35467. weight: math.unit(130, "lb"),
  35468. name: "Front (Maid)",
  35469. image: {
  35470. source: "./media/characters/midnight-tales/front-maid.svg",
  35471. extra: 489/454,
  35472. bottom: 61/550
  35473. }
  35474. },
  35475. frontFormal: {
  35476. height: math.unit(5 + 5/12, "feet"),
  35477. weight: math.unit(130, "lb"),
  35478. name: "Front (Formal)",
  35479. image: {
  35480. source: "./media/characters/midnight-tales/front-formal.svg",
  35481. extra: 489/454,
  35482. bottom: 61/550
  35483. }
  35484. },
  35485. back: {
  35486. height: math.unit(5 + 5/12, "feet"),
  35487. weight: math.unit(130, "lb"),
  35488. name: "Back",
  35489. image: {
  35490. source: "./media/characters/midnight-tales/back.svg",
  35491. extra: 498/456,
  35492. bottom: 33/531
  35493. }
  35494. },
  35495. frontBeast: {
  35496. height: math.unit(40, "feet"),
  35497. weight: math.unit(64000, "lb"),
  35498. name: "Front (Beast)",
  35499. image: {
  35500. source: "./media/characters/midnight-tales/front-beast.svg",
  35501. extra: 927/860,
  35502. bottom: 53/980
  35503. }
  35504. },
  35505. backBeast: {
  35506. height: math.unit(40, "feet"),
  35507. weight: math.unit(64000, "lb"),
  35508. name: "Back (Beast)",
  35509. image: {
  35510. source: "./media/characters/midnight-tales/back-beast.svg",
  35511. extra: 929/855,
  35512. bottom: 16/945
  35513. }
  35514. },
  35515. footBeast: {
  35516. height: math.unit(6.7, "feet"),
  35517. name: "Foot (Beast)",
  35518. image: {
  35519. source: "./media/characters/midnight-tales/foot-beast.svg"
  35520. }
  35521. },
  35522. headBeast: {
  35523. height: math.unit(8, "feet"),
  35524. name: "Head (Beast)",
  35525. image: {
  35526. source: "./media/characters/midnight-tales/head-beast.svg"
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(5 + 5 / 12, "feet"),
  35534. default: true
  35535. },
  35536. {
  35537. name: "Macro",
  35538. height: math.unit(25, "feet")
  35539. },
  35540. ]
  35541. ))
  35542. characterMakers.push(() => makeCharacter(
  35543. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35544. {
  35545. front: {
  35546. height: math.unit(5 + 10/12, "feet"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/argon/front.svg",
  35550. extra: 2009/1935,
  35551. bottom: 118/2127
  35552. }
  35553. },
  35554. back: {
  35555. height: math.unit(5 + 10/12, "feet"),
  35556. name: "Back",
  35557. image: {
  35558. source: "./media/characters/argon/back.svg",
  35559. extra: 2047/1992,
  35560. bottom: 20/2067
  35561. }
  35562. },
  35563. frontDressed: {
  35564. height: math.unit(5 + 10/12, "feet"),
  35565. name: "Front (Dressed)",
  35566. image: {
  35567. source: "./media/characters/argon/front-dressed.svg",
  35568. extra: 2009/1935,
  35569. bottom: 118/2127
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(5 + 10/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(8 + 6/12, "feet"),
  35586. weight: math.unit(1150, "lb"),
  35587. name: "Front",
  35588. image: {
  35589. source: "./media/characters/kichi/front.svg",
  35590. extra: 1267/1164,
  35591. bottom: 61/1328
  35592. }
  35593. },
  35594. back: {
  35595. height: math.unit(8 + 6/12, "feet"),
  35596. weight: math.unit(1150, "lb"),
  35597. name: "Back",
  35598. image: {
  35599. source: "./media/characters/kichi/back.svg",
  35600. extra: 1273/1166,
  35601. bottom: 33/1306
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(8 + 6/12, "feet"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35615. {
  35616. front: {
  35617. height: math.unit(6, "feet"),
  35618. weight: math.unit(210, "lb"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/manetel-greyscale/front.svg",
  35622. extra: 350/312,
  35623. bottom: 8/358
  35624. }
  35625. },
  35626. },
  35627. [
  35628. {
  35629. name: "Micro",
  35630. height: math.unit(2, "inches")
  35631. },
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(6, "feet"),
  35635. default: true
  35636. },
  35637. {
  35638. name: "Minimacro",
  35639. height: math.unit(17, "feet")
  35640. },
  35641. {
  35642. name: "Macro",
  35643. height: math.unit(117, "feet")
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35649. {
  35650. side: {
  35651. height: math.unit(5 + 1/12, "feet"),
  35652. weight: math.unit(418, "lb"),
  35653. name: "Side",
  35654. image: {
  35655. source: "./media/characters/softpurr/side.svg",
  35656. extra: 1993/1945,
  35657. bottom: 134/2127
  35658. }
  35659. },
  35660. front: {
  35661. height: math.unit(5 + 1/12, "feet"),
  35662. weight: math.unit(418, "lb"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/softpurr/front.svg",
  35666. extra: 1950/1856,
  35667. bottom: 174/2124
  35668. }
  35669. },
  35670. paw: {
  35671. height: math.unit(1, "feet"),
  35672. name: "Paw",
  35673. image: {
  35674. source: "./media/characters/softpurr/paw.svg"
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(5 + 1/12, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(260, "meters"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/anahita/front.svg",
  35694. extra: 665/635,
  35695. bottom: 89/754
  35696. }
  35697. },
  35698. },
  35699. [
  35700. {
  35701. name: "Macro",
  35702. height: math.unit(260, "meters"),
  35703. default: true
  35704. },
  35705. ]
  35706. ))
  35707. characterMakers.push(() => makeCharacter(
  35708. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35709. {
  35710. front: {
  35711. height: math.unit(4 + 10/12, "feet"),
  35712. weight: math.unit(160, "lb"),
  35713. name: "Front",
  35714. image: {
  35715. source: "./media/characters/chip-mouse/front.svg",
  35716. extra: 3528/3408,
  35717. bottom: 0/3528
  35718. }
  35719. },
  35720. frontNsfw: {
  35721. height: math.unit(4 + 10/12, "feet"),
  35722. weight: math.unit(160, "lb"),
  35723. name: "Front (NSFW)",
  35724. image: {
  35725. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35726. extra: 3528/3408,
  35727. bottom: 0/3528
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(4 + 10/12, "feet"),
  35735. default: true
  35736. },
  35737. ]
  35738. ))
  35739. characterMakers.push(() => makeCharacter(
  35740. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35741. {
  35742. side: {
  35743. height: math.unit(10, "feet"),
  35744. weight: math.unit(14000, "lb"),
  35745. name: "Side",
  35746. image: {
  35747. source: "./media/characters/kremm/side.svg",
  35748. extra: 1390/1053,
  35749. bottom: 90/1480
  35750. }
  35751. },
  35752. gut: {
  35753. height: math.unit(5.8, "feet"),
  35754. name: "Gut",
  35755. image: {
  35756. source: "./media/characters/kremm/gut.svg"
  35757. }
  35758. },
  35759. ass: {
  35760. height: math.unit(6.1, "feet"),
  35761. name: "Ass",
  35762. image: {
  35763. source: "./media/characters/kremm/ass.svg"
  35764. }
  35765. },
  35766. jaws: {
  35767. height: math.unit(2.2, "feet"),
  35768. name: "Jaws",
  35769. image: {
  35770. source: "./media/characters/kremm/jaws.svg"
  35771. }
  35772. },
  35773. dick: {
  35774. height: math.unit(4.26, "feet"),
  35775. name: "Dick",
  35776. image: {
  35777. source: "./media/characters/kremm/dick.svg"
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(10, "feet"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(30, "stories"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/kai/front.svg",
  35797. extra: 1892/1718,
  35798. bottom: 162/2054
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Macro",
  35805. height: math.unit(30, "stories"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(6 + 4/12, "feet"),
  35815. weight: math.unit(145, "lb"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/sykes/front.svg",
  35819. extra: 1321 / 1187,
  35820. bottom: 66 / 1387
  35821. }
  35822. },
  35823. back: {
  35824. height: math.unit(6 + 4/12, "feet"),
  35825. weight: math.unit(145, "lb"),
  35826. name: "Back",
  35827. image: {
  35828. source: "./media/characters/sykes/back.svg",
  35829. extra: 1326/1181,
  35830. bottom: 31/1357
  35831. }
  35832. },
  35833. traditionalOutfit: {
  35834. height: math.unit(6 + 4/12, "feet"),
  35835. weight: math.unit(145, "lb"),
  35836. name: "Traditional Outfit",
  35837. image: {
  35838. source: "./media/characters/sykes/traditional-outfit.svg",
  35839. extra: 1321 / 1187,
  35840. bottom: 66 / 1387
  35841. }
  35842. },
  35843. adventureOutfit: {
  35844. height: math.unit(6 + 4/12, "feet"),
  35845. weight: math.unit(145, "lb"),
  35846. name: "Adventure Outfit",
  35847. image: {
  35848. source: "./media/characters/sykes/adventure-outfit.svg",
  35849. extra: 1321 / 1187,
  35850. bottom: 66 / 1387
  35851. }
  35852. },
  35853. handLeft: {
  35854. height: math.unit(0.9, "feet"),
  35855. name: "Hand (Left)",
  35856. image: {
  35857. source: "./media/characters/sykes/hand-left.svg"
  35858. }
  35859. },
  35860. handRight: {
  35861. height: math.unit(0.839, "feet"),
  35862. name: "Hand (Right)",
  35863. image: {
  35864. source: "./media/characters/sykes/hand-right.svg"
  35865. }
  35866. },
  35867. leftFoot: {
  35868. height: math.unit(1.2, "feet"),
  35869. name: "Foot (Left)",
  35870. image: {
  35871. source: "./media/characters/sykes/foot-left.svg"
  35872. }
  35873. },
  35874. rightFoot: {
  35875. height: math.unit(1.2, "feet"),
  35876. name: "Foot (Right)",
  35877. image: {
  35878. source: "./media/characters/sykes/foot-right.svg"
  35879. }
  35880. },
  35881. maw: {
  35882. height: math.unit(1.93, "feet"),
  35883. name: "Maw",
  35884. image: {
  35885. source: "./media/characters/sykes/maw.svg"
  35886. }
  35887. },
  35888. teeth: {
  35889. height: math.unit(0.51, "feet"),
  35890. name: "Teeth",
  35891. image: {
  35892. source: "./media/characters/sykes/teeth.svg"
  35893. }
  35894. },
  35895. tongue: {
  35896. height: math.unit(2.13, "feet"),
  35897. name: "Tongue",
  35898. image: {
  35899. source: "./media/characters/sykes/tongue.svg"
  35900. }
  35901. },
  35902. uvula: {
  35903. height: math.unit(0.16, "feet"),
  35904. name: "Uvula",
  35905. image: {
  35906. source: "./media/characters/sykes/uvula.svg"
  35907. }
  35908. },
  35909. collar: {
  35910. height: math.unit(0.287, "feet"),
  35911. name: "Collar",
  35912. image: {
  35913. source: "./media/characters/sykes/collar.svg"
  35914. }
  35915. },
  35916. tail: {
  35917. height: math.unit(3.8, "feet"),
  35918. name: "Tail",
  35919. image: {
  35920. source: "./media/characters/sykes/tail.svg"
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Shrunken",
  35927. height: math.unit(5, "inches")
  35928. },
  35929. {
  35930. name: "Normal",
  35931. height: math.unit(6 + 4 / 12, "feet"),
  35932. default: true
  35933. },
  35934. {
  35935. name: "Big",
  35936. height: math.unit(15, "feet")
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(5 + 8/12, "feet"),
  35945. weight: math.unit(190, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/oven-otter/front.svg",
  35949. extra: 1809/1740,
  35950. bottom: 181/1990
  35951. }
  35952. },
  35953. back: {
  35954. height: math.unit(5 + 8/12, "feet"),
  35955. weight: math.unit(190, "lb"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/oven-otter/back.svg",
  35959. extra: 1709/1635,
  35960. bottom: 118/1827
  35961. }
  35962. },
  35963. hand: {
  35964. height: math.unit(1.07, "feet"),
  35965. name: "Hand",
  35966. image: {
  35967. source: "./media/characters/oven-otter/hand.svg"
  35968. }
  35969. },
  35970. beans: {
  35971. height: math.unit(1.74, "feet"),
  35972. name: "Beans",
  35973. image: {
  35974. source: "./media/characters/oven-otter/beans.svg"
  35975. }
  35976. },
  35977. },
  35978. [
  35979. {
  35980. name: "Micro",
  35981. height: math.unit(0.5, "inches")
  35982. },
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(5 + 8/12, "feet"),
  35986. default: true
  35987. },
  35988. {
  35989. name: "Macro",
  35990. height: math.unit(250, "feet")
  35991. },
  35992. {
  35993. name: "Really High",
  35994. height: math.unit(420, "feet")
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36000. {
  36001. front: {
  36002. height: math.unit(5, "meters"),
  36003. weight: math.unit(292000000000000, "kg"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/devourer/front.svg",
  36007. extra: 1800/1733,
  36008. bottom: 211/2011
  36009. }
  36010. },
  36011. maw: {
  36012. height: math.unit(1.1, "meter"),
  36013. name: "Maw",
  36014. image: {
  36015. source: "./media/characters/devourer/maw.svg"
  36016. }
  36017. },
  36018. },
  36019. [
  36020. {
  36021. name: "Small",
  36022. height: math.unit(3, "meters")
  36023. },
  36024. {
  36025. name: "Large",
  36026. height: math.unit(5, "meters"),
  36027. default: true
  36028. },
  36029. ]
  36030. ))
  36031. characterMakers.push(() => makeCharacter(
  36032. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36033. {
  36034. front: {
  36035. height: math.unit(6, "feet"),
  36036. weight: math.unit(400, "lb"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/ellarby/front.svg",
  36040. extra: 1909/1763,
  36041. bottom: 80/1989
  36042. }
  36043. },
  36044. back: {
  36045. height: math.unit(6, "feet"),
  36046. weight: math.unit(400, "lb"),
  36047. name: "Back",
  36048. image: {
  36049. source: "./media/characters/ellarby/back.svg",
  36050. extra: 1914/1784,
  36051. bottom: 172/2086
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Mischief",
  36058. height: math.unit(18, "inches")
  36059. },
  36060. {
  36061. name: "Trouble",
  36062. height: math.unit(12, "feet")
  36063. },
  36064. {
  36065. name: "Havoc",
  36066. height: math.unit(200, "feet"),
  36067. default: true
  36068. },
  36069. {
  36070. name: "Pandemonium",
  36071. height: math.unit(1, "mile")
  36072. },
  36073. {
  36074. name: "Catastrophe",
  36075. height: math.unit(100, "miles")
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36081. {
  36082. front: {
  36083. height: math.unit(4.7, "meters"),
  36084. weight: math.unit(6500, "kg"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/vex/front.svg",
  36088. extra: 1288/1140,
  36089. bottom: 100/1388
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(4.7, "meters"),
  36097. default: true
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36103. {
  36104. normal: {
  36105. height: math.unit(6, "feet"),
  36106. weight: math.unit(350, "lb"),
  36107. name: "Normal",
  36108. image: {
  36109. source: "./media/characters/teshy/normal.svg",
  36110. extra: 1795/1735,
  36111. bottom: 16/1811
  36112. }
  36113. },
  36114. monsterFront: {
  36115. height: math.unit(12, "feet"),
  36116. weight: math.unit(4700, "lb"),
  36117. name: "Monster (Front)",
  36118. image: {
  36119. source: "./media/characters/teshy/monster-front.svg",
  36120. extra: 2042/2034,
  36121. bottom: 128/2170
  36122. }
  36123. },
  36124. monsterSide: {
  36125. height: math.unit(12, "feet"),
  36126. weight: math.unit(4700, "lb"),
  36127. name: "Monster (Side)",
  36128. image: {
  36129. source: "./media/characters/teshy/monster-side.svg",
  36130. extra: 2067/2056,
  36131. bottom: 70/2137
  36132. }
  36133. },
  36134. monsterBack: {
  36135. height: math.unit(12, "feet"),
  36136. weight: math.unit(4700, "lb"),
  36137. name: "Monster (Back)",
  36138. image: {
  36139. source: "./media/characters/teshy/monster-back.svg",
  36140. extra: 1921/1914,
  36141. bottom: 171/2092
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(6, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(6, "feet"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/ramey/front.svg",
  36161. extra: 790/787,
  36162. bottom: 27/817
  36163. }
  36164. },
  36165. },
  36166. [
  36167. {
  36168. name: "Normal",
  36169. height: math.unit(6, "feet"),
  36170. default: true
  36171. },
  36172. ]
  36173. ))
  36174. characterMakers.push(() => makeCharacter(
  36175. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36176. {
  36177. front: {
  36178. height: math.unit(5 + 5/12, "feet"),
  36179. weight: math.unit(120, "lb"),
  36180. name: "Front",
  36181. image: {
  36182. source: "./media/characters/phirae/front.svg",
  36183. extra: 2491/2436,
  36184. bottom: 38/2529
  36185. }
  36186. },
  36187. },
  36188. [
  36189. {
  36190. name: "Normal",
  36191. height: math.unit(5 + 5/12, "feet"),
  36192. default: true
  36193. },
  36194. ]
  36195. ))
  36196. characterMakers.push(() => makeCharacter(
  36197. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36198. {
  36199. front: {
  36200. height: math.unit(5 + 3/12, "feet"),
  36201. name: "Front",
  36202. image: {
  36203. source: "./media/characters/stagglas/front.svg",
  36204. extra: 962/882,
  36205. bottom: 53/1015
  36206. }
  36207. },
  36208. feral: {
  36209. height: math.unit(335, "cm"),
  36210. name: "Feral",
  36211. image: {
  36212. source: "./media/characters/stagglas/feral.svg",
  36213. extra: 1732/1090,
  36214. bottom: 48/1780
  36215. }
  36216. },
  36217. },
  36218. [
  36219. {
  36220. name: "Normal",
  36221. height: math.unit(5 + 3/12, "feet"),
  36222. default: true
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(5 + 4/12, "feet"),
  36231. weight: math.unit(145, "lb"),
  36232. name: "Front",
  36233. image: {
  36234. source: "./media/characters/starra/front.svg",
  36235. extra: 1790/1691,
  36236. bottom: 91/1881
  36237. }
  36238. },
  36239. },
  36240. [
  36241. {
  36242. name: "Normal",
  36243. height: math.unit(5 + 4/12, "feet"),
  36244. default: true
  36245. },
  36246. ]
  36247. ))
  36248. characterMakers.push(() => makeCharacter(
  36249. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36250. {
  36251. front: {
  36252. height: math.unit(2.2, "meters"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36256. extra: 1248/972,
  36257. bottom: 38/1286
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(2.2, "meters"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36271. {
  36272. side: {
  36273. height: math.unit(8 + 2/12, "feet"),
  36274. weight: math.unit(1240, "lb"),
  36275. name: "Side",
  36276. image: {
  36277. source: "./media/characters/mika-valentine/side.svg",
  36278. extra: 2670/2501,
  36279. bottom: 250/2920
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Normal",
  36286. height: math.unit(8 + 2/12, "feet"),
  36287. default: true
  36288. },
  36289. ]
  36290. ))
  36291. characterMakers.push(() => makeCharacter(
  36292. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36293. {
  36294. front: {
  36295. height: math.unit(7 + 2/12, "feet"),
  36296. name: "Front",
  36297. image: {
  36298. source: "./media/characters/xoltol/front.svg",
  36299. extra: 2212/2124,
  36300. bottom: 84/2296
  36301. }
  36302. },
  36303. side: {
  36304. height: math.unit(7 + 2/12, "feet"),
  36305. name: "Side",
  36306. image: {
  36307. source: "./media/characters/xoltol/side.svg",
  36308. extra: 2273/2197,
  36309. bottom: 26/2299
  36310. }
  36311. },
  36312. hand: {
  36313. height: math.unit(2.5, "feet"),
  36314. name: "Hand",
  36315. image: {
  36316. source: "./media/characters/xoltol/hand.svg"
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "Small-ish",
  36323. height: math.unit(5 + 11/12, "feet")
  36324. },
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(7 + 2/12, "feet")
  36328. },
  36329. {
  36330. name: "\"Macro\"",
  36331. height: math.unit(14 + 9/12, "feet"),
  36332. default: true
  36333. },
  36334. {
  36335. name: "Alternate Height",
  36336. height: math.unit(20, "feet")
  36337. },
  36338. {
  36339. name: "Actually Macro",
  36340. height: math.unit(100, "feet")
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(5 + 2/12, "feet"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/kotetsu-redwood/front.svg",
  36352. extra: 1053/942,
  36353. bottom: 60/1113
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(5 + 2/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(2.4, "meters"),
  36370. weight: math.unit(125, "kg"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/lilith/front.svg",
  36374. extra: 1590/1513,
  36375. bottom: 203/1793
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Humanoid",
  36382. height: math.unit(2.4, "meters")
  36383. },
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(6, "meters"),
  36387. default: true
  36388. },
  36389. {
  36390. name: "Largest",
  36391. height: math.unit(55, "meters")
  36392. },
  36393. ]
  36394. ))
  36395. characterMakers.push(() => makeCharacter(
  36396. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36397. {
  36398. front: {
  36399. height: math.unit(8 + 4/12, "feet"),
  36400. weight: math.unit(535, "lb"),
  36401. name: "Front",
  36402. image: {
  36403. source: "./media/characters/beh'kah-bolger/front.svg",
  36404. extra: 1660/1603,
  36405. bottom: 37/1697
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(8 + 4/12, "feet"),
  36413. default: true
  36414. },
  36415. {
  36416. name: "Kaiju",
  36417. height: math.unit(250, "feet")
  36418. },
  36419. {
  36420. name: "Still Growing",
  36421. height: math.unit(10, "miles")
  36422. },
  36423. {
  36424. name: "Continental",
  36425. height: math.unit(5000, "miles")
  36426. },
  36427. {
  36428. name: "Final Form",
  36429. height: math.unit(2500000, "miles")
  36430. },
  36431. ]
  36432. ))
  36433. characterMakers.push(() => makeCharacter(
  36434. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36435. {
  36436. front: {
  36437. height: math.unit(7 + 2/12, "feet"),
  36438. weight: math.unit(230, "kg"),
  36439. name: "Front",
  36440. image: {
  36441. source: "./media/characters/tatyana-milewska/front.svg",
  36442. extra: 1199/1150,
  36443. bottom: 86/1285
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(7 + 2/12, "feet"),
  36451. default: true
  36452. },
  36453. {
  36454. name: "Big",
  36455. height: math.unit(12, "feet")
  36456. },
  36457. {
  36458. name: "Minimacro",
  36459. height: math.unit(20, "feet")
  36460. },
  36461. {
  36462. name: "Macro",
  36463. height: math.unit(120, "feet")
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36469. {
  36470. front: {
  36471. height: math.unit(7 + 8/12, "feet"),
  36472. weight: math.unit(152, "kg"),
  36473. name: "Front",
  36474. image: {
  36475. source: "./media/characters/helen-arri/front.svg",
  36476. extra: 440/423,
  36477. bottom: 14/454
  36478. }
  36479. },
  36480. back: {
  36481. height: math.unit(7 + 8/12, "feet"),
  36482. weight: math.unit(152, "kg"),
  36483. name: "Back",
  36484. image: {
  36485. source: "./media/characters/helen-arri/back.svg",
  36486. extra: 443/426,
  36487. bottom: 8/451
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(7 + 8/12, "feet"),
  36495. default: true
  36496. },
  36497. {
  36498. name: "Big",
  36499. height: math.unit(14, "feet")
  36500. },
  36501. {
  36502. name: "Minimacro",
  36503. height: math.unit(24, "feet")
  36504. },
  36505. {
  36506. name: "Macro",
  36507. height: math.unit(140, "feet")
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(6, "meters"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/ehanu-rehu/front.svg",
  36519. extra: 1800/1800,
  36520. bottom: 59/1859
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(6, "meters"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36534. {
  36535. front: {
  36536. height: math.unit(7 + 3/12, "feet"),
  36537. name: "Front",
  36538. image: {
  36539. source: "./media/characters/renholder/front.svg",
  36540. extra: 3096/2960,
  36541. bottom: 250/3346
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal Bat",
  36548. height: math.unit(7 + 3/12, "feet"),
  36549. default: true
  36550. },
  36551. {
  36552. name: "Slightly Tall Bat",
  36553. height: math.unit(100, "feet")
  36554. },
  36555. {
  36556. name: "Big Bat",
  36557. height: math.unit(1000, "feet")
  36558. },
  36559. {
  36560. name: "City-Sized Bat",
  36561. height: math.unit(200000, "feet")
  36562. },
  36563. {
  36564. name: "Bigger Bat",
  36565. height: math.unit(10000, "miles")
  36566. },
  36567. {
  36568. name: "Solar Sized Bat",
  36569. height: math.unit(100, "AU")
  36570. },
  36571. {
  36572. name: "Galactic Bat",
  36573. height: math.unit(200000, "lightyears")
  36574. },
  36575. {
  36576. name: "Universally Known Bat",
  36577. height: math.unit(1, "universe")
  36578. },
  36579. ]
  36580. ))
  36581. characterMakers.push(() => makeCharacter(
  36582. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36583. {
  36584. front: {
  36585. height: math.unit(6 + 11/12, "feet"),
  36586. weight: math.unit(250, "lb"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/cookiecat/front.svg",
  36590. extra: 893/827,
  36591. bottom: 14/907
  36592. }
  36593. },
  36594. },
  36595. [
  36596. {
  36597. name: "Micro",
  36598. height: math.unit(3, "inches")
  36599. },
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(6 + 11/12, "feet"),
  36603. default: true
  36604. },
  36605. {
  36606. name: "Macro",
  36607. height: math.unit(100, "feet")
  36608. },
  36609. {
  36610. name: "Macro+",
  36611. height: math.unit(404, "feet")
  36612. },
  36613. {
  36614. name: "Megamacro",
  36615. height: math.unit(165, "miles")
  36616. },
  36617. {
  36618. name: "Planetary",
  36619. height: math.unit(4600, "miles")
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(10 + 3/12, "feet"),
  36628. weight: math.unit(1500, "lb"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/tux-kusanagi/front.svg",
  36632. extra: 944/840,
  36633. bottom: 39/983
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(10 + 3/12, "feet"),
  36638. weight: math.unit(1500, "lb"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/tux-kusanagi/back.svg",
  36642. extra: 941/842,
  36643. bottom: 28/969
  36644. }
  36645. },
  36646. rump: {
  36647. height: math.unit(5.25, "feet"),
  36648. name: "Rump",
  36649. image: {
  36650. source: "./media/characters/tux-kusanagi/rump.svg"
  36651. }
  36652. },
  36653. beak: {
  36654. height: math.unit(1.54, "feet"),
  36655. name: "Beak",
  36656. image: {
  36657. source: "./media/characters/tux-kusanagi/beak.svg"
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(10 + 3/12, "feet"),
  36665. default: true
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(58, "feet"),
  36674. weight: math.unit(200, "tons"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/uzarmazari/front.svg",
  36678. extra: 1575/1455,
  36679. bottom: 152/1727
  36680. }
  36681. },
  36682. back: {
  36683. height: math.unit(58, "feet"),
  36684. weight: math.unit(200, "tons"),
  36685. name: "Back",
  36686. image: {
  36687. source: "./media/characters/uzarmazari/back.svg",
  36688. extra: 1585/1510,
  36689. bottom: 157/1742
  36690. }
  36691. },
  36692. head: {
  36693. height: math.unit(26, "feet"),
  36694. name: "Head",
  36695. image: {
  36696. source: "./media/characters/uzarmazari/head.svg"
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(58, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36710. {
  36711. side: {
  36712. height: math.unit(15, "feet"),
  36713. name: "Side",
  36714. image: {
  36715. source: "./media/characters/akitu/side.svg",
  36716. extra: 1421/1321,
  36717. bottom: 157/1578
  36718. }
  36719. },
  36720. front: {
  36721. height: math.unit(15, "feet"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/akitu/front.svg",
  36725. extra: 1435/1326,
  36726. bottom: 232/1667
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(15, "feet"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(10 + 8/12, "feet"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/azalie-croixland/front.svg",
  36746. extra: 1972/1856,
  36747. bottom: 31/2003
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Original Height",
  36754. height: math.unit(5 + 4/12, "feet")
  36755. },
  36756. {
  36757. name: "Normal Height",
  36758. height: math.unit(10 + 8/12, "feet"),
  36759. default: true
  36760. },
  36761. ]
  36762. ))
  36763. characterMakers.push(() => makeCharacter(
  36764. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36765. {
  36766. side: {
  36767. height: math.unit(7 + 1/12, "feet"),
  36768. weight: math.unit(245, "lb"),
  36769. name: "Side",
  36770. image: {
  36771. source: "./media/characters/kavus-kazian/side.svg",
  36772. extra: 349/342,
  36773. bottom: 15/364
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(7 + 1/12, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36787. {
  36788. normalFront: {
  36789. height: math.unit(5 + 11/12, "feet"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/moonlight-rose/normal-front.svg",
  36793. extra: 1980/1825,
  36794. bottom: 18/1998
  36795. },
  36796. form: "normal",
  36797. default: true
  36798. },
  36799. normalBack: {
  36800. height: math.unit(5 + 11/12, "feet"),
  36801. name: "Back",
  36802. image: {
  36803. source: "./media/characters/moonlight-rose/normal-back.svg",
  36804. extra: 2010/1839,
  36805. bottom: 10/2020
  36806. },
  36807. form: "normal"
  36808. },
  36809. demonFront: {
  36810. height: math.unit(1.5, "earths"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/moonlight-rose/demon.svg",
  36814. extra: 1400/1294,
  36815. bottom: 45/1445
  36816. },
  36817. form: "demon",
  36818. default: true
  36819. },
  36820. terraFront: {
  36821. height: math.unit(1.5, "earths"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/moonlight-rose/terra.svg"
  36825. },
  36826. form: "terra",
  36827. default: true
  36828. },
  36829. jupiterFront: {
  36830. height: math.unit(69911*2, "km"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36834. extra: 1367/1286,
  36835. bottom: 55/1422
  36836. },
  36837. form: "jupiter",
  36838. default: true
  36839. },
  36840. neptuneFront: {
  36841. height: math.unit(24622*2, "feet"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36845. extra: 1851/1712,
  36846. bottom: 0/1851
  36847. },
  36848. form: "neptune",
  36849. default: true
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "\"Natural\" Height",
  36855. height: math.unit(5 + 11/12, "feet"),
  36856. form: "normal"
  36857. },
  36858. {
  36859. name: "Smallest comfortable size",
  36860. height: math.unit(40, "meters"),
  36861. form: "normal"
  36862. },
  36863. {
  36864. name: "Common size",
  36865. height: math.unit(50, "km"),
  36866. form: "normal",
  36867. default: true
  36868. },
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(1.5, "earths"),
  36872. form: "demon",
  36873. default: true
  36874. },
  36875. {
  36876. name: "Universal",
  36877. height: math.unit(15, "universes"),
  36878. form: "demon"
  36879. },
  36880. {
  36881. name: "Earth",
  36882. height: math.unit(1.5, "earths"),
  36883. form: "terra",
  36884. default: true
  36885. },
  36886. {
  36887. name: "Super Earth",
  36888. height: math.unit(67.5, "earths"),
  36889. form: "terra"
  36890. },
  36891. {
  36892. name: "Doesn't fit in a solar system...",
  36893. height: math.unit(1, "galaxy"),
  36894. form: "terra"
  36895. },
  36896. {
  36897. name: "Saturn",
  36898. height: math.unit(58232*2, "km"),
  36899. form: "jupiter"
  36900. },
  36901. {
  36902. name: "Jupiter",
  36903. height: math.unit(69911*2, "km"),
  36904. form: "jupiter",
  36905. default: true
  36906. },
  36907. {
  36908. name: "HD 100546 b",
  36909. height: math.unit(482938, "km"),
  36910. form: "jupiter"
  36911. },
  36912. {
  36913. name: "Enceladus",
  36914. height: math.unit(513*2, "km"),
  36915. form: "neptune"
  36916. },
  36917. {
  36918. name: "Europe",
  36919. height: math.unit(1560*2, "km"),
  36920. form: "neptune"
  36921. },
  36922. {
  36923. name: "Neptune",
  36924. height: math.unit(24622*2, "km"),
  36925. form: "neptune",
  36926. default: true
  36927. },
  36928. {
  36929. name: "CoRoT-9b",
  36930. height: math.unit(75067*2, "km"),
  36931. form: "neptune"
  36932. },
  36933. ],
  36934. {
  36935. "normal": {
  36936. name: "Normal",
  36937. default: true
  36938. },
  36939. "demon": {
  36940. name: "Demon"
  36941. },
  36942. "terra": {
  36943. name: "Terra"
  36944. },
  36945. "jupiter": {
  36946. name: "Jupiter"
  36947. },
  36948. "neptune": {
  36949. name: "Neptune"
  36950. }
  36951. }
  36952. ))
  36953. characterMakers.push(() => makeCharacter(
  36954. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36955. {
  36956. front: {
  36957. height: math.unit(16, "feet"),
  36958. weight: math.unit(610, "kg"),
  36959. name: "Front",
  36960. image: {
  36961. source: "./media/characters/huckle/front.svg",
  36962. extra: 1731/1625,
  36963. bottom: 33/1764
  36964. }
  36965. },
  36966. back: {
  36967. height: math.unit(16, "feet"),
  36968. weight: math.unit(610, "kg"),
  36969. name: "Back",
  36970. image: {
  36971. source: "./media/characters/huckle/back.svg",
  36972. extra: 1738/1651,
  36973. bottom: 37/1775
  36974. }
  36975. },
  36976. laughing: {
  36977. height: math.unit(3.75, "feet"),
  36978. name: "Laughing",
  36979. image: {
  36980. source: "./media/characters/huckle/laughing.svg"
  36981. }
  36982. },
  36983. angry: {
  36984. height: math.unit(4.15, "feet"),
  36985. name: "Angry",
  36986. image: {
  36987. source: "./media/characters/huckle/angry.svg"
  36988. }
  36989. },
  36990. },
  36991. [
  36992. {
  36993. name: "Normal",
  36994. height: math.unit(16, "feet"),
  36995. default: true
  36996. },
  36997. {
  36998. name: "Mini Macro",
  36999. height: math.unit(463, "feet")
  37000. },
  37001. {
  37002. name: "Macro",
  37003. height: math.unit(1680, "meters")
  37004. },
  37005. {
  37006. name: "Mega Macro",
  37007. height: math.unit(175, "km")
  37008. },
  37009. {
  37010. name: "Terra Macro",
  37011. height: math.unit(32, "gigameters")
  37012. },
  37013. {
  37014. name: "Multiverse+",
  37015. height: math.unit(2.56e23, "yottameters")
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(6 + 9/12, "feet"),
  37024. weight: math.unit(280, "lb"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/candy/front.svg",
  37028. extra: 234/217,
  37029. bottom: 11/245
  37030. }
  37031. },
  37032. },
  37033. [
  37034. {
  37035. name: "Really Small",
  37036. height: math.unit(0.1, "nm")
  37037. },
  37038. {
  37039. name: "Micro",
  37040. height: math.unit(2, "inches")
  37041. },
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(6 + 9/12, "feet"),
  37045. default: true
  37046. },
  37047. {
  37048. name: "Small Macro",
  37049. height: math.unit(69, "feet")
  37050. },
  37051. {
  37052. name: "Macro",
  37053. height: math.unit(160, "feet")
  37054. },
  37055. {
  37056. name: "Megamacro",
  37057. height: math.unit(22000, "miles")
  37058. },
  37059. {
  37060. name: "Gigamacro",
  37061. height: math.unit(50000, "miles")
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(4, "feet"),
  37070. weight: math.unit(90, "lb"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/joey-mcdonald/front.svg",
  37074. extra: 1059/852,
  37075. bottom: 33/1092
  37076. }
  37077. },
  37078. back: {
  37079. height: math.unit(4, "feet"),
  37080. weight: math.unit(90, "lb"),
  37081. name: "Back",
  37082. image: {
  37083. source: "./media/characters/joey-mcdonald/back.svg",
  37084. extra: 1077/879,
  37085. bottom: 5/1082
  37086. }
  37087. },
  37088. frontKobold: {
  37089. height: math.unit(4, "feet"),
  37090. weight: math.unit(100, "lb"),
  37091. name: "Front-kobold",
  37092. image: {
  37093. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37094. extra: 1480/1367,
  37095. bottom: 0/1480
  37096. }
  37097. },
  37098. backKobold: {
  37099. height: math.unit(4, "feet"),
  37100. weight: math.unit(100, "lb"),
  37101. name: "Back-kobold",
  37102. image: {
  37103. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37104. extra: 1449/1361,
  37105. bottom: 0/1449
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(4, "feet"),
  37113. default: true
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(12 + 6/12, "feet"),
  37122. name: "Front",
  37123. image: {
  37124. source: "./media/characters/kass-lockheed/front.svg",
  37125. extra: 354/343,
  37126. bottom: 9/363
  37127. }
  37128. },
  37129. back: {
  37130. height: math.unit(12 + 6/12, "feet"),
  37131. name: "Back",
  37132. image: {
  37133. source: "./media/characters/kass-lockheed/back.svg",
  37134. extra: 364/352,
  37135. bottom: 3/367
  37136. }
  37137. },
  37138. dick: {
  37139. height: math.unit(3.12, "feet"),
  37140. name: "Dick",
  37141. image: {
  37142. source: "./media/characters/kass-lockheed/dick.svg"
  37143. }
  37144. },
  37145. head: {
  37146. height: math.unit(2.6, "feet"),
  37147. name: "Head",
  37148. image: {
  37149. source: "./media/characters/kass-lockheed/head.svg"
  37150. }
  37151. },
  37152. bleh: {
  37153. height: math.unit(2.85, "feet"),
  37154. name: "Bleh",
  37155. image: {
  37156. source: "./media/characters/kass-lockheed/bleh.svg"
  37157. }
  37158. },
  37159. smug: {
  37160. height: math.unit(2.85, "feet"),
  37161. name: "Smug",
  37162. image: {
  37163. source: "./media/characters/kass-lockheed/smug.svg"
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(12 + 6/12, "feet"),
  37171. default: true
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(6 + 2/12, "feet"),
  37180. name: "Front",
  37181. image: {
  37182. source: "./media/characters/taylor/front.svg",
  37183. extra: 639/495,
  37184. bottom: 12/651
  37185. }
  37186. },
  37187. },
  37188. [
  37189. {
  37190. name: "Normal",
  37191. height: math.unit(6 + 2/12, "feet"),
  37192. default: true
  37193. },
  37194. {
  37195. name: "Big",
  37196. height: math.unit(15, "feet")
  37197. },
  37198. {
  37199. name: "Lorg",
  37200. height: math.unit(80, "feet")
  37201. },
  37202. {
  37203. name: "Too Lorg",
  37204. height: math.unit(120, "feet")
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(15, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/kaizer/front.svg",
  37216. extra: 1612/1436,
  37217. bottom: 43/1655
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(15, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(2, "feet"),
  37234. weight: math.unit(30, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/sandy/front.svg",
  37238. extra: 1439/1307,
  37239. bottom: 194/1633
  37240. }
  37241. },
  37242. },
  37243. [
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(2, "feet"),
  37247. default: true
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37253. {
  37254. front: {
  37255. height: math.unit(3, "feet"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/mellvi/front.svg",
  37259. extra: 1831/1630,
  37260. bottom: 58/1889
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(3, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(5 + 11/12, "feet"),
  37277. weight: math.unit(200, "lb"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/shirou/front.svg",
  37281. extra: 2491/2383,
  37282. bottom: 189/2680
  37283. }
  37284. },
  37285. back: {
  37286. height: math.unit(5 + 11/12, "feet"),
  37287. weight: math.unit(200, "lb"),
  37288. name: "Back",
  37289. image: {
  37290. source: "./media/characters/shirou/back.svg",
  37291. extra: 2554/2450,
  37292. bottom: 76/2630
  37293. }
  37294. },
  37295. },
  37296. [
  37297. {
  37298. name: "Normal",
  37299. height: math.unit(5 + 11/12, "feet"),
  37300. default: true
  37301. },
  37302. ]
  37303. ))
  37304. characterMakers.push(() => makeCharacter(
  37305. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37306. {
  37307. front: {
  37308. height: math.unit(6 + 3/12, "feet"),
  37309. weight: math.unit(177, "lb"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/noryu/front.svg",
  37313. extra: 973/885,
  37314. bottom: 10/983
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(6 + 3/12, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(5 + 6/12, "feet"),
  37331. weight: math.unit(170, "lb"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/mevolas-rubenido/front.svg",
  37335. extra: 2109/1901,
  37336. bottom: 96/2205
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(5 + 6/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37350. {
  37351. front: {
  37352. height: math.unit(100, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/dee/front.svg",
  37356. extra: 2153/2036,
  37357. bottom: 59/2212
  37358. }
  37359. },
  37360. back: {
  37361. height: math.unit(100, "feet"),
  37362. name: "Back",
  37363. image: {
  37364. source: "./media/characters/dee/back.svg",
  37365. extra: 2183/2058,
  37366. bottom: 75/2258
  37367. }
  37368. },
  37369. foot: {
  37370. height: math.unit(19.43, "feet"),
  37371. name: "Foot",
  37372. image: {
  37373. source: "./media/characters/dee/foot.svg"
  37374. }
  37375. },
  37376. hoof: {
  37377. height: math.unit(20.6, "feet"),
  37378. name: "Hoof",
  37379. image: {
  37380. source: "./media/characters/dee/hoof.svg"
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Macro",
  37387. height: math.unit(100, "feet"),
  37388. default: true
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(5 + 6/12, "feet"),
  37397. name: "Front",
  37398. image: {
  37399. source: "./media/characters/teh/front.svg",
  37400. extra: 1002/847,
  37401. bottom: 62/1064
  37402. }
  37403. },
  37404. },
  37405. [
  37406. {
  37407. name: "Normal",
  37408. height: math.unit(5 + 6/12, "feet"),
  37409. default: true
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37415. {
  37416. side: {
  37417. height: math.unit(6 + 1/12, "feet"),
  37418. weight: math.unit(204, "lb"),
  37419. name: "Side",
  37420. image: {
  37421. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37422. extra: 974/775,
  37423. bottom: 169/1143
  37424. }
  37425. },
  37426. sitting: {
  37427. height: math.unit(6 + 2/12, "feet"),
  37428. weight: math.unit(204, "lb"),
  37429. name: "Sitting",
  37430. image: {
  37431. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37432. extra: 1175/964,
  37433. bottom: 378/1553
  37434. }
  37435. },
  37436. },
  37437. [
  37438. {
  37439. name: "Normal",
  37440. height: math.unit(6 + 1/12, "feet"),
  37441. default: true
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37447. {
  37448. front: {
  37449. height: math.unit(6, "inches"),
  37450. name: "Front",
  37451. image: {
  37452. source: "./media/characters/tululi/front.svg",
  37453. extra: 1997/1876,
  37454. bottom: 20/2017
  37455. }
  37456. },
  37457. },
  37458. [
  37459. {
  37460. name: "Normal",
  37461. height: math.unit(6, "inches"),
  37462. default: true
  37463. },
  37464. ]
  37465. ))
  37466. characterMakers.push(() => makeCharacter(
  37467. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37468. {
  37469. front: {
  37470. height: math.unit(4 + 1/12, "feet"),
  37471. name: "Front",
  37472. image: {
  37473. source: "./media/characters/star/front.svg",
  37474. extra: 1493/1189,
  37475. bottom: 48/1541
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(4 + 1/12, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(6 + 3/12, "feet"),
  37492. name: "Front",
  37493. image: {
  37494. source: "./media/characters/comet/front.svg",
  37495. extra: 1681/1462,
  37496. bottom: 26/1707
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(6 + 3/12, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(950, "feet"),
  37513. name: "Front",
  37514. image: {
  37515. source: "./media/characters/vortex/front.svg",
  37516. extra: 1497/1434,
  37517. bottom: 56/1553
  37518. }
  37519. },
  37520. maw: {
  37521. height: math.unit(285, "feet"),
  37522. name: "Maw",
  37523. image: {
  37524. source: "./media/characters/vortex/maw.svg"
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Macro",
  37531. height: math.unit(950, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(600, "feet"),
  37541. weight: math.unit(0.02, "grams"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/doodle/front.svg",
  37545. extra: 1578/1413,
  37546. bottom: 37/1615
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(600, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(6 + 6/12, "feet"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/jai/front.svg",
  37566. extra: 1645/1534,
  37567. bottom: 115/1760
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(6 + 6/12, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(6 + 8/12, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/pixel/front.svg",
  37587. extra: 1900/1735,
  37588. bottom: 63/1963
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(6 + 8/12, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37602. {
  37603. back: {
  37604. height: math.unit(4 + 1/12, "feet"),
  37605. weight: math.unit(75, "lb"),
  37606. name: "Back",
  37607. image: {
  37608. source: "./media/characters/rhett/back.svg",
  37609. extra: 930/878,
  37610. bottom: 25/955
  37611. }
  37612. },
  37613. front: {
  37614. height: math.unit(4 + 1/12, "feet"),
  37615. weight: math.unit(75, "lb"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/rhett/front.svg",
  37619. extra: 1682/1586,
  37620. bottom: 92/1774
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Micro",
  37627. height: math.unit(8, "inches")
  37628. },
  37629. {
  37630. name: "Tiny",
  37631. height: math.unit(2, "feet")
  37632. },
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(4 + 1/12, "feet"),
  37636. default: true
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(3 + 3/12, "feet"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/penny/front.svg",
  37648. extra: 1406/1311,
  37649. bottom: 26/1432
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(3 + 3/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(4 + 11/12, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/monty/front.svg",
  37669. extra: 1479/1209,
  37670. bottom: 0/1479
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(4 + 11/12, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(8 + 4/12, "feet"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/sterling/front.svg",
  37690. extra: 1420/1236,
  37691. bottom: 27/1447
  37692. }
  37693. },
  37694. },
  37695. [
  37696. {
  37697. name: "Normal",
  37698. height: math.unit(8 + 4/12, "feet"),
  37699. default: true
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37705. {
  37706. front: {
  37707. height: math.unit(15, "feet"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/marble/front.svg",
  37711. extra: 973/937,
  37712. bottom: 32/1005
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Normal",
  37719. height: math.unit(15, "feet"),
  37720. default: true
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37726. {
  37727. front: {
  37728. height: math.unit(3, "inches"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/powder/front.svg",
  37732. extra: 1504/1334,
  37733. bottom: 518/2022
  37734. }
  37735. },
  37736. },
  37737. [
  37738. {
  37739. name: "Normal",
  37740. height: math.unit(3, "inches"),
  37741. default: true
  37742. },
  37743. ]
  37744. ))
  37745. characterMakers.push(() => makeCharacter(
  37746. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37747. {
  37748. front: {
  37749. height: math.unit(4 + 5/12, "feet"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/joey-raccoon/front.svg",
  37753. extra: 1273/1197,
  37754. bottom: 0/1273
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(4 + 5/12, "feet"),
  37762. default: true
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37768. {
  37769. front: {
  37770. height: math.unit(8 + 4/12, "feet"),
  37771. name: "Front",
  37772. image: {
  37773. source: "./media/characters/vick/front.svg",
  37774. extra: 2187/2118,
  37775. bottom: 47/2234
  37776. }
  37777. },
  37778. },
  37779. [
  37780. {
  37781. name: "Normal",
  37782. height: math.unit(8 + 4/12, "feet"),
  37783. default: true
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(5 + 5/12, "feet"),
  37792. name: "Front",
  37793. image: {
  37794. source: "./media/characters/mitsy/front.svg",
  37795. extra: 1842/1695,
  37796. bottom: 0/1842
  37797. }
  37798. },
  37799. },
  37800. [
  37801. {
  37802. name: "Normal",
  37803. height: math.unit(5 + 5/12, "feet"),
  37804. default: true
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37810. {
  37811. front: {
  37812. height: math.unit(6 + 3/12, "feet"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/silvy/front.svg",
  37816. extra: 1995/1836,
  37817. bottom: 225/2220
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(6 + 3/12, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37831. {
  37832. front: {
  37833. height: math.unit(3 + 8/12, "feet"),
  37834. name: "Front",
  37835. image: {
  37836. source: "./media/characters/rodney/front.svg",
  37837. extra: 1956/1747,
  37838. bottom: 31/1987
  37839. }
  37840. },
  37841. frontDressed: {
  37842. height: math.unit(2.9, "feet"),
  37843. name: "Front (Dressed)",
  37844. image: {
  37845. source: "./media/characters/rodney/front-dressed.svg",
  37846. extra: 1382/1241,
  37847. bottom: 385/1767
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(3 + 8/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(5 + 9/12, "feet"),
  37864. weight: math.unit(194, "lbs"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/zakail-sudekai/front.svg",
  37868. extra: 2696/2533,
  37869. bottom: 248/2944
  37870. }
  37871. },
  37872. maw: {
  37873. height: math.unit(1.35, "feet"),
  37874. name: "Maw",
  37875. image: {
  37876. source: "./media/characters/zakail-sudekai/maw.svg"
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(5 + 9/12, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(8 + 4/12, "feet"),
  37893. weight: math.unit(1200, "lb"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/eleanor/front.svg",
  37897. extra: 1226/1192,
  37898. bottom: 52/1278
  37899. }
  37900. },
  37901. back: {
  37902. height: math.unit(8 + 4/12, "feet"),
  37903. weight: math.unit(1200, "lb"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/eleanor/back.svg",
  37907. extra: 1242/1184,
  37908. bottom: 60/1302
  37909. }
  37910. },
  37911. head: {
  37912. height: math.unit(2.62, "feet"),
  37913. name: "Head",
  37914. image: {
  37915. source: "./media/characters/eleanor/head.svg"
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(8 + 4/12, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(8 + 4/12, "feet"),
  37932. weight: math.unit(750, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/tanya/front.svg",
  37936. extra: 1749/1615,
  37937. bottom: 33/1782
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(8 + 4/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(5, "feet"),
  37954. weight: math.unit(225, "lb"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/cindy/front.svg",
  37958. extra: 1320/1250,
  37959. bottom: 42/1362
  37960. }
  37961. },
  37962. frontDressed: {
  37963. height: math.unit(5, "feet"),
  37964. weight: math.unit(225, "lb"),
  37965. name: "Front (Dressed)",
  37966. image: {
  37967. source: "./media/characters/cindy/front-dressed.svg",
  37968. extra: 1320/1250,
  37969. bottom: 42/1362
  37970. }
  37971. },
  37972. back: {
  37973. height: math.unit(5, "feet"),
  37974. weight: math.unit(225, "lb"),
  37975. name: "Back",
  37976. image: {
  37977. source: "./media/characters/cindy/back.svg",
  37978. extra: 1384/1346,
  37979. bottom: 14/1398
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(5, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(6 + 9/12, "feet"),
  37996. weight: math.unit(440, "lb"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/wilbur-owen/front.svg",
  38000. extra: 1575/1448,
  38001. bottom: 72/1647
  38002. }
  38003. },
  38004. back: {
  38005. height: math.unit(6 + 9/12, "feet"),
  38006. weight: math.unit(440, "lb"),
  38007. name: "Back",
  38008. image: {
  38009. source: "./media/characters/wilbur-owen/back.svg",
  38010. extra: 1578/1445,
  38011. bottom: 36/1614
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(6 + 9/12, "feet"),
  38019. default: true
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(6 + 5/12, "feet"),
  38028. weight: math.unit(650, "lb"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/keegan/front.svg",
  38032. extra: 2387/2198,
  38033. bottom: 33/2420
  38034. }
  38035. },
  38036. side: {
  38037. height: math.unit(6 + 5/12, "feet"),
  38038. weight: math.unit(650, "lb"),
  38039. name: "Side",
  38040. image: {
  38041. source: "./media/characters/keegan/side.svg",
  38042. extra: 2390/2202,
  38043. bottom: 47/2437
  38044. }
  38045. },
  38046. back: {
  38047. height: math.unit(6 + 5/12, "feet"),
  38048. weight: math.unit(650, "lb"),
  38049. name: "Back",
  38050. image: {
  38051. source: "./media/characters/keegan/back.svg",
  38052. extra: 2418/2268,
  38053. bottom: 15/2433
  38054. }
  38055. },
  38056. frontSfw: {
  38057. height: math.unit(6 + 5/12, "feet"),
  38058. weight: math.unit(650, "lb"),
  38059. name: "Front (SFW)",
  38060. image: {
  38061. source: "./media/characters/keegan/front-sfw.svg",
  38062. extra: 2387/2198,
  38063. bottom: 33/2420
  38064. }
  38065. },
  38066. beans: {
  38067. height: math.unit(1.85, "feet"),
  38068. name: "Beans",
  38069. image: {
  38070. source: "./media/characters/keegan/beans.svg"
  38071. }
  38072. },
  38073. },
  38074. [
  38075. {
  38076. name: "Normal",
  38077. height: math.unit(6 + 5/12, "feet"),
  38078. default: true
  38079. },
  38080. ]
  38081. ))
  38082. characterMakers.push(() => makeCharacter(
  38083. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38084. {
  38085. front: {
  38086. height: math.unit(9, "feet"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/colton/front.svg",
  38090. extra: 1589/1326,
  38091. bottom: 139/1728
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(9, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(2 + 9/12, "feet"),
  38108. name: "Front",
  38109. image: {
  38110. source: "./media/characters/bora/front.svg",
  38111. extra: 1265/1250,
  38112. bottom: 24/1289
  38113. }
  38114. },
  38115. },
  38116. [
  38117. {
  38118. name: "Normal",
  38119. height: math.unit(2 + 9/12, "feet"),
  38120. default: true
  38121. },
  38122. ]
  38123. ))
  38124. characterMakers.push(() => makeCharacter(
  38125. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38126. {
  38127. front: {
  38128. height: math.unit(8, "feet"),
  38129. name: "Front",
  38130. image: {
  38131. source: "./media/characters/myu-myu/front.svg",
  38132. extra: 1949/1857,
  38133. bottom: 90/2039
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(8, "feet"),
  38141. default: true
  38142. },
  38143. {
  38144. name: "Big",
  38145. height: math.unit(15, "feet")
  38146. },
  38147. {
  38148. name: "BIG",
  38149. height: math.unit(25, "feet")
  38150. },
  38151. ]
  38152. ))
  38153. characterMakers.push(() => makeCharacter(
  38154. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38155. {
  38156. side: {
  38157. height: math.unit(7 + 5/12, "feet"),
  38158. weight: math.unit(2800, "lb"),
  38159. name: "Side",
  38160. image: {
  38161. source: "./media/characters/haloren/side.svg",
  38162. extra: 1793/409,
  38163. bottom: 59/1852
  38164. }
  38165. },
  38166. frontPaw: {
  38167. height: math.unit(2.36, "feet"),
  38168. name: "Front paw",
  38169. image: {
  38170. source: "./media/characters/haloren/front-paw.svg"
  38171. }
  38172. },
  38173. hindPaw: {
  38174. height: math.unit(3.18, "feet"),
  38175. name: "Hind paw",
  38176. image: {
  38177. source: "./media/characters/haloren/hind-paw.svg"
  38178. }
  38179. },
  38180. maw: {
  38181. height: math.unit(5.05, "feet"),
  38182. name: "Maw",
  38183. image: {
  38184. source: "./media/characters/haloren/maw.svg"
  38185. }
  38186. },
  38187. dick: {
  38188. height: math.unit(2.90, "feet"),
  38189. name: "Dick",
  38190. image: {
  38191. source: "./media/characters/haloren/dick.svg"
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(7 + 5/12, "feet"),
  38199. default: true
  38200. },
  38201. {
  38202. name: "Enhanced",
  38203. height: math.unit(14 + 3/12, "feet")
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(171, "cm"),
  38212. name: "Front",
  38213. image: {
  38214. source: "./media/characters/kimmy/front.svg",
  38215. extra: 1491/1435,
  38216. bottom: 53/1544
  38217. }
  38218. },
  38219. },
  38220. [
  38221. {
  38222. name: "Small",
  38223. height: math.unit(9, "cm")
  38224. },
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(171, "cm"),
  38228. default: true
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(8, "feet"),
  38237. weight: math.unit(300, "lb"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/galeboomer/front.svg",
  38241. extra: 4651/4415,
  38242. bottom: 162/4813
  38243. }
  38244. },
  38245. back: {
  38246. height: math.unit(8, "feet"),
  38247. weight: math.unit(300, "lb"),
  38248. name: "Back",
  38249. image: {
  38250. source: "./media/characters/galeboomer/back.svg",
  38251. extra: 4544/4314,
  38252. bottom: 16/4560
  38253. }
  38254. },
  38255. frontAlt: {
  38256. height: math.unit(8, "feet"),
  38257. weight: math.unit(300, "lb"),
  38258. name: "Front (Alt)",
  38259. image: {
  38260. source: "./media/characters/galeboomer/front-alt.svg",
  38261. extra: 4458/4228,
  38262. bottom: 68/4526
  38263. }
  38264. },
  38265. maw: {
  38266. height: math.unit(1.2, "feet"),
  38267. name: "Maw",
  38268. image: {
  38269. source: "./media/characters/galeboomer/maw.svg"
  38270. }
  38271. },
  38272. },
  38273. [
  38274. {
  38275. name: "Normal",
  38276. height: math.unit(8, "feet"),
  38277. default: true
  38278. },
  38279. ]
  38280. ))
  38281. characterMakers.push(() => makeCharacter(
  38282. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38283. {
  38284. front: {
  38285. height: math.unit(5 + 9/12, "feet"),
  38286. weight: math.unit(120, "lb"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/chyr/front.svg",
  38290. extra: 1323/1254,
  38291. bottom: 63/1386
  38292. }
  38293. },
  38294. back: {
  38295. height: math.unit(5 + 9/12, "feet"),
  38296. weight: math.unit(120, "lb"),
  38297. name: "Back",
  38298. image: {
  38299. source: "./media/characters/chyr/back.svg",
  38300. extra: 1323/1252,
  38301. bottom: 48/1371
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(5 + 9/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(7, "feet"),
  38318. weight: math.unit(310, "lb"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/solarus/front.svg",
  38322. extra: 2415/2021,
  38323. bottom: 103/2518
  38324. }
  38325. },
  38326. back: {
  38327. height: math.unit(7, "feet"),
  38328. weight: math.unit(310, "lb"),
  38329. name: "Back",
  38330. image: {
  38331. source: "./media/characters/solarus/back.svg",
  38332. extra: 2463/2089,
  38333. bottom: 79/2542
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(7, "feet"),
  38341. default: true
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(16, "feet"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38353. extra: 1844/1780,
  38354. bottom: 58/1902
  38355. }
  38356. },
  38357. winterCoat: {
  38358. height: math.unit(16, "feet"),
  38359. name: "Winter Coat",
  38360. image: {
  38361. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38362. extra: 1807/1775,
  38363. bottom: 69/1876
  38364. }
  38365. },
  38366. },
  38367. [
  38368. {
  38369. name: "Normal",
  38370. height: math.unit(16, "feet"),
  38371. default: true
  38372. },
  38373. {
  38374. name: "Chicago Size",
  38375. height: math.unit(560, "feet")
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38381. {
  38382. front: {
  38383. height: math.unit(11 + 6/12, "feet"),
  38384. weight: math.unit(1366, "lb"),
  38385. name: "Front",
  38386. image: {
  38387. source: "./media/characters/lexor/front.svg",
  38388. extra: 1560/1481,
  38389. bottom: 211/1771
  38390. }
  38391. },
  38392. back: {
  38393. height: math.unit(11 + 6/12, "feet"),
  38394. weight: math.unit(1366, "lb"),
  38395. name: "Back",
  38396. image: {
  38397. source: "./media/characters/lexor/back.svg",
  38398. extra: 1614/1533,
  38399. bottom: 76/1690
  38400. }
  38401. },
  38402. maw: {
  38403. height: math.unit(3, "feet"),
  38404. name: "Maw",
  38405. image: {
  38406. source: "./media/characters/lexor/maw.svg"
  38407. }
  38408. },
  38409. dick: {
  38410. height: math.unit(2.59, "feet"),
  38411. name: "Dick",
  38412. image: {
  38413. source: "./media/characters/lexor/dick.svg"
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(11 + 6/12, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(5 + 8/12, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/magnum/front.svg",
  38433. extra: 942/855,
  38434. bottom: 26/968
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(5 + 8/12, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(18 + 4/12, "feet"),
  38451. weight: math.unit(1500, "kg"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/solas-sharpsman/front.svg",
  38455. extra: 1698/1589,
  38456. bottom: 0/1698
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(18 + 4/12, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(5 + 5/12, "feet"),
  38473. weight: math.unit(180, "lb"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/october/front.svg",
  38477. extra: 1800/1650,
  38478. bottom: 0/1800
  38479. }
  38480. },
  38481. frontNsfw: {
  38482. height: math.unit(5 + 5/12, "feet"),
  38483. weight: math.unit(180, "lb"),
  38484. name: "Front (NSFW)",
  38485. image: {
  38486. source: "./media/characters/october/front-nsfw.svg",
  38487. extra: 1392/1307,
  38488. bottom: 42/1434
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(5 + 5/12, "feet"),
  38496. default: true
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(8 + 6/12, "feet"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/essynkardi/front.svg",
  38508. extra: 1914/1846,
  38509. bottom: 22/1936
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(8 + 6/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(6 + 6/12, "feet"),
  38526. weight: math.unit(7, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/icky/front.svg",
  38530. extra: 813/782,
  38531. bottom: 66/879
  38532. }
  38533. },
  38534. back: {
  38535. height: math.unit(6 + 6/12, "feet"),
  38536. weight: math.unit(7, "lb"),
  38537. name: "Back",
  38538. image: {
  38539. source: "./media/characters/icky/back.svg",
  38540. extra: 754/735,
  38541. bottom: 56/810
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(6 + 6/12, "feet"),
  38549. default: true
  38550. },
  38551. ]
  38552. ))
  38553. characterMakers.push(() => makeCharacter(
  38554. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38555. {
  38556. front: {
  38557. height: math.unit(15, "feet"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/rojas/front.svg",
  38561. extra: 1462/1408,
  38562. bottom: 95/1557
  38563. }
  38564. },
  38565. back: {
  38566. height: math.unit(15, "feet"),
  38567. name: "Back",
  38568. image: {
  38569. source: "./media/characters/rojas/back.svg",
  38570. extra: 1023/954,
  38571. bottom: 28/1051
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(15, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38585. {
  38586. frontHuman: {
  38587. height: math.unit(5 + 7/12, "feet"),
  38588. name: "Front (Human)",
  38589. image: {
  38590. source: "./media/characters/alek-dryagan/front-human.svg",
  38591. extra: 1687/1667,
  38592. bottom: 69/1756
  38593. }
  38594. },
  38595. backHuman: {
  38596. height: math.unit(5 + 7/12, "feet"),
  38597. name: "Back (Human)",
  38598. image: {
  38599. source: "./media/characters/alek-dryagan/back-human.svg",
  38600. extra: 1670/1649,
  38601. bottom: 65/1735
  38602. }
  38603. },
  38604. frontDemi: {
  38605. height: math.unit(65, "feet"),
  38606. name: "Front (Demi)",
  38607. image: {
  38608. source: "./media/characters/alek-dryagan/front-demi.svg",
  38609. extra: 1669/1642,
  38610. bottom: 49/1718
  38611. }
  38612. },
  38613. backDemi: {
  38614. height: math.unit(65, "feet"),
  38615. name: "Back (Demi)",
  38616. image: {
  38617. source: "./media/characters/alek-dryagan/back-demi.svg",
  38618. extra: 1658/1637,
  38619. bottom: 40/1698
  38620. }
  38621. },
  38622. mawHuman: {
  38623. height: math.unit(0.3, "feet"),
  38624. name: "Maw (Human)",
  38625. image: {
  38626. source: "./media/characters/alek-dryagan/maw-human.svg"
  38627. }
  38628. },
  38629. mawDemi: {
  38630. height: math.unit(3.8, "feet"),
  38631. name: "Maw (Demi)",
  38632. image: {
  38633. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(5 + 7/12, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38647. {
  38648. frontHuman: {
  38649. height: math.unit(5 + 2/12, "feet"),
  38650. name: "Front (Human)",
  38651. image: {
  38652. source: "./media/characters/gen/front-human.svg",
  38653. extra: 1627/1538,
  38654. bottom: 71/1698
  38655. }
  38656. },
  38657. backHuman: {
  38658. height: math.unit(5 + 2/12, "feet"),
  38659. name: "Back (Human)",
  38660. image: {
  38661. source: "./media/characters/gen/back-human.svg",
  38662. extra: 1638/1548,
  38663. bottom: 69/1707
  38664. }
  38665. },
  38666. frontDemi: {
  38667. height: math.unit(5 + 2/12, "feet"),
  38668. name: "Front (Demi)",
  38669. image: {
  38670. source: "./media/characters/gen/front-demi.svg",
  38671. extra: 1627/1538,
  38672. bottom: 71/1698
  38673. }
  38674. },
  38675. backDemi: {
  38676. height: math.unit(5 + 2/12, "feet"),
  38677. name: "Back (Demi)",
  38678. image: {
  38679. source: "./media/characters/gen/back-demi.svg",
  38680. extra: 1638/1548,
  38681. bottom: 69/1707
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Normal",
  38688. height: math.unit(5 + 2/12, "feet"),
  38689. default: true
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38695. {
  38696. frontImp: {
  38697. height: math.unit(1 + 11/12, "feet"),
  38698. name: "Front (Imp)",
  38699. image: {
  38700. source: "./media/characters/max-kobold/front-imp.svg",
  38701. extra: 1238/1134,
  38702. bottom: 81/1319
  38703. }
  38704. },
  38705. backImp: {
  38706. height: math.unit(1 + 11/12, "feet"),
  38707. name: "Back (Imp)",
  38708. image: {
  38709. source: "./media/characters/max-kobold/back-imp.svg",
  38710. extra: 1334/1175,
  38711. bottom: 34/1368
  38712. }
  38713. },
  38714. frontDemi: {
  38715. height: math.unit(5 + 9/12, "feet"),
  38716. name: "Front (Demi)",
  38717. image: {
  38718. source: "./media/characters/max-kobold/front-demi.svg",
  38719. extra: 1715/1685,
  38720. bottom: 54/1769
  38721. }
  38722. },
  38723. backDemi: {
  38724. height: math.unit(5 + 9/12, "feet"),
  38725. name: "Back (Demi)",
  38726. image: {
  38727. source: "./media/characters/max-kobold/back-demi.svg",
  38728. extra: 1752/1729,
  38729. bottom: 41/1793
  38730. }
  38731. },
  38732. handImp: {
  38733. height: math.unit(0.45, "feet"),
  38734. name: "Hand (Imp)",
  38735. image: {
  38736. source: "./media/characters/max-kobold/hand.svg"
  38737. }
  38738. },
  38739. pawImp: {
  38740. height: math.unit(0.46, "feet"),
  38741. name: "Paw (Imp)",
  38742. image: {
  38743. source: "./media/characters/max-kobold/paw.svg"
  38744. }
  38745. },
  38746. handDemi: {
  38747. height: math.unit(0.80, "feet"),
  38748. name: "Hand (Demi)",
  38749. image: {
  38750. source: "./media/characters/max-kobold/hand.svg"
  38751. }
  38752. },
  38753. pawDemi: {
  38754. height: math.unit(1.1, "feet"),
  38755. name: "Paw (Demi)",
  38756. image: {
  38757. source: "./media/characters/max-kobold/paw.svg"
  38758. }
  38759. },
  38760. headImp: {
  38761. height: math.unit(1.33, "feet"),
  38762. name: "Head (Imp)",
  38763. image: {
  38764. source: "./media/characters/max-kobold/head-imp.svg"
  38765. }
  38766. },
  38767. mawImp: {
  38768. height: math.unit(0.75, "feet"),
  38769. name: "Maw (Imp)",
  38770. image: {
  38771. source: "./media/characters/max-kobold/maw-imp.svg"
  38772. }
  38773. },
  38774. mawDemi: {
  38775. height: math.unit(0.42, "feet"),
  38776. name: "Maw (Demi)",
  38777. image: {
  38778. source: "./media/characters/max-kobold/maw-demi.svg"
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "Normal",
  38785. height: math.unit(1 + 11/12, "feet"),
  38786. default: true
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(7 + 5/12, "feet"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/carbon/front.svg",
  38798. extra: 1754/1689,
  38799. bottom: 65/1819
  38800. }
  38801. },
  38802. back: {
  38803. height: math.unit(7 + 5/12, "feet"),
  38804. name: "Back",
  38805. image: {
  38806. source: "./media/characters/carbon/back.svg",
  38807. extra: 1762/1695,
  38808. bottom: 24/1786
  38809. }
  38810. },
  38811. frontGigantamax: {
  38812. height: math.unit(150, "feet"),
  38813. name: "Front (Gigantamax)",
  38814. image: {
  38815. source: "./media/characters/carbon/front-gigantamax.svg",
  38816. extra: 1826/1669,
  38817. bottom: 59/1885
  38818. }
  38819. },
  38820. backGigantamax: {
  38821. height: math.unit(150, "feet"),
  38822. name: "Back (Gigantamax)",
  38823. image: {
  38824. source: "./media/characters/carbon/back-gigantamax.svg",
  38825. extra: 1796/1653,
  38826. bottom: 53/1849
  38827. }
  38828. },
  38829. maw: {
  38830. height: math.unit(0.48, "feet"),
  38831. name: "Maw",
  38832. image: {
  38833. source: "./media/characters/carbon/maw.svg"
  38834. }
  38835. },
  38836. mawGigantamax: {
  38837. height: math.unit(7.5, "feet"),
  38838. name: "Maw (Gigantamax)",
  38839. image: {
  38840. source: "./media/characters/carbon/maw-gigantamax.svg"
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(7 + 5/12, "feet"),
  38848. default: true
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(6, "feet"),
  38857. name: "Front",
  38858. image: {
  38859. source: "./media/characters/maverick/front.svg",
  38860. extra: 1672/1661,
  38861. bottom: 85/1757
  38862. }
  38863. },
  38864. back: {
  38865. height: math.unit(6, "feet"),
  38866. name: "Back",
  38867. image: {
  38868. source: "./media/characters/maverick/back.svg",
  38869. extra: 1642/1631,
  38870. bottom: 38/1680
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(6, "feet"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(15, "feet"),
  38887. weight: math.unit(615, "lb"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/grockle/front.svg",
  38891. extra: 1535/1427,
  38892. bottom: 56/1591
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(15, "feet"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Large",
  38904. height: math.unit(150, "feet")
  38905. },
  38906. {
  38907. name: "Macro",
  38908. height: math.unit(1876, "feet")
  38909. },
  38910. {
  38911. name: "Mega Macro",
  38912. height: math.unit(121940, "feet")
  38913. },
  38914. {
  38915. name: "Giga Macro",
  38916. height: math.unit(750, "km")
  38917. },
  38918. {
  38919. name: "Tera Macro",
  38920. height: math.unit(750000, "km")
  38921. },
  38922. {
  38923. name: "Galactic",
  38924. height: math.unit(1.4e5, "km")
  38925. },
  38926. {
  38927. name: "Godlike",
  38928. height: math.unit(9.8e280, "galaxies")
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(11, "meters"),
  38937. weight: math.unit(20, "tonnes"),
  38938. name: "Front",
  38939. image: {
  38940. source: "./media/characters/alistair/front.svg",
  38941. extra: 1265/1009,
  38942. bottom: 93/1358
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(11, "meters"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(5 + 8/12, "feet"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/haruka/front.svg",
  38962. extra: 2012/1952,
  38963. bottom: 0/2012
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(5 + 8/12, "feet"),
  38971. default: true
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38977. {
  38978. back: {
  38979. height: math.unit(9, "feet"),
  38980. name: "Back",
  38981. image: {
  38982. source: "./media/characters/vivian-sylveon/back.svg",
  38983. extra: 1853/1714,
  38984. bottom: 0/1853
  38985. }
  38986. },
  38987. },
  38988. [
  38989. {
  38990. name: "Normal",
  38991. height: math.unit(9, "feet"),
  38992. default: true
  38993. },
  38994. {
  38995. name: "Macro",
  38996. height: math.unit(500, "feet")
  38997. },
  38998. {
  38999. name: "Megamacro",
  39000. height: math.unit(600, "miles")
  39001. },
  39002. {
  39003. name: "Gigamacro",
  39004. height: math.unit(30000, "miles")
  39005. },
  39006. ]
  39007. ))
  39008. characterMakers.push(() => makeCharacter(
  39009. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39010. {
  39011. anthro: {
  39012. height: math.unit(5 + 10/12, "feet"),
  39013. weight: math.unit(100, "lb"),
  39014. name: "Anthro",
  39015. image: {
  39016. source: "./media/characters/daiki/anthro.svg",
  39017. extra: 1115/1027,
  39018. bottom: 69/1184
  39019. }
  39020. },
  39021. feral: {
  39022. height: math.unit(200, "feet"),
  39023. name: "Feral",
  39024. image: {
  39025. source: "./media/characters/daiki/feral.svg",
  39026. extra: 1256/313,
  39027. bottom: 39/1295
  39028. }
  39029. },
  39030. feralHead: {
  39031. height: math.unit(171, "feet"),
  39032. name: "Feral Head",
  39033. image: {
  39034. source: "./media/characters/daiki/feral-head.svg"
  39035. }
  39036. },
  39037. manaDragon: {
  39038. height: math.unit(170, "meters"),
  39039. name: "Mana-dragon",
  39040. image: {
  39041. source: "./media/characters/daiki/mana-dragon.svg",
  39042. extra: 763/420,
  39043. bottom: 97/860
  39044. }
  39045. },
  39046. },
  39047. [
  39048. {
  39049. name: "Normal",
  39050. height: math.unit(5 + 10/12, "feet"),
  39051. default: true
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39057. {
  39058. fullyEquippedFront: {
  39059. height: math.unit(3 + 1/12, "feet"),
  39060. weight: math.unit(24, "lb"),
  39061. name: "Fully Equipped (Front)",
  39062. image: {
  39063. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39064. extra: 687/605,
  39065. bottom: 18/705
  39066. }
  39067. },
  39068. fullyEquippedBack: {
  39069. height: math.unit(3 + 1/12, "feet"),
  39070. weight: math.unit(24, "lb"),
  39071. name: "Fully Equipped (Back)",
  39072. image: {
  39073. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39074. extra: 689/590,
  39075. bottom: 18/707
  39076. }
  39077. },
  39078. dailyWear: {
  39079. height: math.unit(3 + 1/12, "feet"),
  39080. weight: math.unit(24, "lb"),
  39081. name: "Daily Wear",
  39082. image: {
  39083. source: "./media/characters/tea-spot/daily-wear.svg",
  39084. extra: 701/620,
  39085. bottom: 21/722
  39086. }
  39087. },
  39088. maidWork: {
  39089. height: math.unit(3 + 1/12, "feet"),
  39090. weight: math.unit(24, "lb"),
  39091. name: "Maid Work",
  39092. image: {
  39093. source: "./media/characters/tea-spot/maid-work.svg",
  39094. extra: 693/609,
  39095. bottom: 15/708
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(3 + 1/12, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(175, "cm"),
  39112. weight: math.unit(75, "kg"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/chee/front.svg",
  39116. extra: 1796/1740,
  39117. bottom: 40/1836
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Micro-Micro",
  39124. height: math.unit(1, "nm")
  39125. },
  39126. {
  39127. name: "Micro-erst",
  39128. height: math.unit(1, "micrometer")
  39129. },
  39130. {
  39131. name: "Micro-er",
  39132. height: math.unit(1, "cm")
  39133. },
  39134. {
  39135. name: "Normal",
  39136. height: math.unit(175, "cm"),
  39137. default: true
  39138. },
  39139. {
  39140. name: "Macro",
  39141. height: math.unit(100, "m")
  39142. },
  39143. {
  39144. name: "Macro-er",
  39145. height: math.unit(1, "km")
  39146. },
  39147. {
  39148. name: "Macro-erst",
  39149. height: math.unit(10, "km")
  39150. },
  39151. {
  39152. name: "Macro-Macro",
  39153. height: math.unit(100, "km")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(11 + 9/12, "feet"),
  39162. weight: math.unit(935, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/kingsley/front.svg",
  39166. extra: 1803/1674,
  39167. bottom: 127/1930
  39168. }
  39169. },
  39170. frontNude: {
  39171. height: math.unit(11 + 9/12, "feet"),
  39172. weight: math.unit(935, "lb"),
  39173. name: "Front (Nude)",
  39174. image: {
  39175. source: "./media/characters/kingsley/front-nude.svg",
  39176. extra: 1803/1674,
  39177. bottom: 127/1930
  39178. }
  39179. },
  39180. },
  39181. [
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(11 + 9/12, "feet"),
  39185. default: true
  39186. },
  39187. ]
  39188. ))
  39189. characterMakers.push(() => makeCharacter(
  39190. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39191. {
  39192. side: {
  39193. height: math.unit(9, "feet"),
  39194. name: "Side",
  39195. image: {
  39196. source: "./media/characters/rymel/side.svg",
  39197. extra: 792/469,
  39198. bottom: 121/913
  39199. }
  39200. },
  39201. maw: {
  39202. height: math.unit(2.4, "meters"),
  39203. name: "Maw",
  39204. image: {
  39205. source: "./media/characters/rymel/maw.svg"
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "House Drake",
  39212. height: math.unit(2, "feet")
  39213. },
  39214. {
  39215. name: "Reduced",
  39216. height: math.unit(4.5, "feet")
  39217. },
  39218. {
  39219. name: "Normal",
  39220. height: math.unit(9, "feet"),
  39221. default: true
  39222. },
  39223. ]
  39224. ))
  39225. characterMakers.push(() => makeCharacter(
  39226. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39227. {
  39228. front: {
  39229. height: math.unit(1.74, "meters"),
  39230. weight: math.unit(55, "kg"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/rubus/front.svg",
  39234. extra: 1894/1742,
  39235. bottom: 44/1938
  39236. }
  39237. },
  39238. },
  39239. [
  39240. {
  39241. name: "Normal",
  39242. height: math.unit(1.74, "meters"),
  39243. default: true
  39244. },
  39245. ]
  39246. ))
  39247. characterMakers.push(() => makeCharacter(
  39248. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39249. {
  39250. front: {
  39251. height: math.unit(5 + 2/12, "feet"),
  39252. weight: math.unit(112, "lb"),
  39253. name: "Front",
  39254. image: {
  39255. source: "./media/characters/cassie-kingston/front.svg",
  39256. extra: 1438/1390,
  39257. bottom: 47/1485
  39258. }
  39259. },
  39260. },
  39261. [
  39262. {
  39263. name: "Normal",
  39264. height: math.unit(5 + 2/12, "feet"),
  39265. default: true
  39266. },
  39267. {
  39268. name: "Macro",
  39269. height: math.unit(128, "feet")
  39270. },
  39271. {
  39272. name: "Megamacro",
  39273. height: math.unit(2.56, "miles")
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(7, "feet"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/fox/front.svg",
  39285. extra: 1798/1703,
  39286. bottom: 55/1853
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(7, "feet"),
  39291. name: "Back",
  39292. image: {
  39293. source: "./media/characters/fox/back.svg",
  39294. extra: 1748/1649,
  39295. bottom: 32/1780
  39296. }
  39297. },
  39298. head: {
  39299. height: math.unit(1.95, "feet"),
  39300. name: "Head",
  39301. image: {
  39302. source: "./media/characters/fox/head.svg"
  39303. }
  39304. },
  39305. dick: {
  39306. height: math.unit(1.33, "feet"),
  39307. name: "Dick",
  39308. image: {
  39309. source: "./media/characters/fox/dick.svg"
  39310. }
  39311. },
  39312. foot: {
  39313. height: math.unit(1, "feet"),
  39314. name: "Foot",
  39315. image: {
  39316. source: "./media/characters/fox/foot.svg"
  39317. }
  39318. },
  39319. paw: {
  39320. height: math.unit(0.92, "feet"),
  39321. name: "Paw",
  39322. image: {
  39323. source: "./media/characters/fox/paw.svg"
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Small",
  39330. height: math.unit(3, "inches")
  39331. },
  39332. {
  39333. name: "\"Realistic\"",
  39334. height: math.unit(7, "feet")
  39335. },
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(150, "feet"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "BIG",
  39343. height: math.unit(1200, "feet")
  39344. },
  39345. {
  39346. name: "👀",
  39347. height: math.unit(5, "miles")
  39348. },
  39349. {
  39350. name: "👀👀👀",
  39351. height: math.unit(64, "miles")
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39357. {
  39358. front: {
  39359. height: math.unit(625, "feet"),
  39360. name: "Front",
  39361. image: {
  39362. source: "./media/characters/asonja-rossa/front.svg",
  39363. extra: 1833/1686,
  39364. bottom: 24/1857
  39365. }
  39366. },
  39367. back: {
  39368. height: math.unit(625, "feet"),
  39369. name: "Back",
  39370. image: {
  39371. source: "./media/characters/asonja-rossa/back.svg",
  39372. extra: 1852/1753,
  39373. bottom: 26/1878
  39374. }
  39375. },
  39376. },
  39377. [
  39378. {
  39379. name: "Macro",
  39380. height: math.unit(625, "feet"),
  39381. default: true
  39382. },
  39383. ]
  39384. ))
  39385. characterMakers.push(() => makeCharacter(
  39386. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39387. {
  39388. side: {
  39389. height: math.unit(8, "feet"),
  39390. name: "Side",
  39391. image: {
  39392. source: "./media/characters/rezukii/side.svg",
  39393. extra: 979/542,
  39394. bottom: 87/1066
  39395. }
  39396. },
  39397. sitting: {
  39398. height: math.unit(14.6, "feet"),
  39399. name: "Sitting",
  39400. image: {
  39401. source: "./media/characters/rezukii/sitting.svg",
  39402. extra: 1023/813,
  39403. bottom: 45/1068
  39404. }
  39405. },
  39406. },
  39407. [
  39408. {
  39409. name: "Tiny",
  39410. height: math.unit(2, "feet")
  39411. },
  39412. {
  39413. name: "Smol",
  39414. height: math.unit(4, "feet")
  39415. },
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(8, "feet"),
  39419. default: true
  39420. },
  39421. {
  39422. name: "Big",
  39423. height: math.unit(12, "feet")
  39424. },
  39425. {
  39426. name: "Macro",
  39427. height: math.unit(30, "feet")
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(14, "feet"),
  39436. weight: math.unit(9.5, "tonnes"),
  39437. name: "Front",
  39438. image: {
  39439. source: "./media/characters/dawnheart/front.svg",
  39440. extra: 2792/2675,
  39441. bottom: 64/2856
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Normal",
  39448. height: math.unit(14, "feet"),
  39449. default: true
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39455. {
  39456. front: {
  39457. height: math.unit(1.7, "m"),
  39458. name: "Front",
  39459. image: {
  39460. source: "./media/characters/gladi/front.svg",
  39461. extra: 1460/1362,
  39462. bottom: 19/1479
  39463. }
  39464. },
  39465. back: {
  39466. height: math.unit(1.7, "m"),
  39467. name: "Back",
  39468. image: {
  39469. source: "./media/characters/gladi/back.svg",
  39470. extra: 1459/1357,
  39471. bottom: 12/1471
  39472. }
  39473. },
  39474. feral: {
  39475. height: math.unit(2.05, "m"),
  39476. name: "Feral",
  39477. image: {
  39478. source: "./media/characters/gladi/feral.svg",
  39479. extra: 821/557,
  39480. bottom: 91/912
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Shortest",
  39487. height: math.unit(70, "cm")
  39488. },
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(1.7, "m")
  39492. },
  39493. {
  39494. name: "Macro",
  39495. height: math.unit(10, "m"),
  39496. default: true
  39497. },
  39498. {
  39499. name: "Tallest",
  39500. height: math.unit(200, "m")
  39501. },
  39502. ]
  39503. ))
  39504. characterMakers.push(() => makeCharacter(
  39505. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39506. {
  39507. front: {
  39508. height: math.unit(5 + 7/12, "feet"),
  39509. weight: math.unit(2, "tons"),
  39510. name: "Front",
  39511. image: {
  39512. source: "./media/characters/erdno/front.svg",
  39513. extra: 1234/1129,
  39514. bottom: 35/1269
  39515. }
  39516. },
  39517. angled: {
  39518. height: math.unit(5 + 7/12, "feet"),
  39519. weight: math.unit(2, "tons"),
  39520. name: "Angled",
  39521. image: {
  39522. source: "./media/characters/erdno/angled.svg",
  39523. extra: 1185/1139,
  39524. bottom: 36/1221
  39525. }
  39526. },
  39527. side: {
  39528. height: math.unit(5 + 7/12, "feet"),
  39529. weight: math.unit(2, "tons"),
  39530. name: "Side",
  39531. image: {
  39532. source: "./media/characters/erdno/side.svg",
  39533. extra: 1191/1144,
  39534. bottom: 40/1231
  39535. }
  39536. },
  39537. back: {
  39538. height: math.unit(5 + 7/12, "feet"),
  39539. weight: math.unit(2, "tons"),
  39540. name: "Back",
  39541. image: {
  39542. source: "./media/characters/erdno/back.svg",
  39543. extra: 1202/1146,
  39544. bottom: 17/1219
  39545. }
  39546. },
  39547. frontNsfw: {
  39548. height: math.unit(5 + 7/12, "feet"),
  39549. weight: math.unit(2, "tons"),
  39550. name: "Front (NSFW)",
  39551. image: {
  39552. source: "./media/characters/erdno/front-nsfw.svg",
  39553. extra: 1234/1129,
  39554. bottom: 35/1269
  39555. }
  39556. },
  39557. angledNsfw: {
  39558. height: math.unit(5 + 7/12, "feet"),
  39559. weight: math.unit(2, "tons"),
  39560. name: "Angled (NSFW)",
  39561. image: {
  39562. source: "./media/characters/erdno/angled-nsfw.svg",
  39563. extra: 1185/1139,
  39564. bottom: 36/1221
  39565. }
  39566. },
  39567. sideNsfw: {
  39568. height: math.unit(5 + 7/12, "feet"),
  39569. weight: math.unit(2, "tons"),
  39570. name: "Side (NSFW)",
  39571. image: {
  39572. source: "./media/characters/erdno/side-nsfw.svg",
  39573. extra: 1191/1144,
  39574. bottom: 40/1231
  39575. }
  39576. },
  39577. backNsfw: {
  39578. height: math.unit(5 + 7/12, "feet"),
  39579. weight: math.unit(2, "tons"),
  39580. name: "Back (NSFW)",
  39581. image: {
  39582. source: "./media/characters/erdno/back-nsfw.svg",
  39583. extra: 1202/1146,
  39584. bottom: 17/1219
  39585. }
  39586. },
  39587. frontHyper: {
  39588. height: math.unit(5 + 7/12, "feet"),
  39589. weight: math.unit(2, "tons"),
  39590. name: "Front (Hyper)",
  39591. image: {
  39592. source: "./media/characters/erdno/front-hyper.svg",
  39593. extra: 1298/1136,
  39594. bottom: 35/1333
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(5 + 7/12, "feet"),
  39602. default: true
  39603. },
  39604. {
  39605. name: "Big",
  39606. height: math.unit(5.7, "meters")
  39607. },
  39608. {
  39609. name: "Macro",
  39610. height: math.unit(5.7, "kilometers")
  39611. },
  39612. {
  39613. name: "Megamacro",
  39614. height: math.unit(5.7, "earths")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(5 + 10/12, "feet"),
  39623. weight: math.unit(150, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/jamie/front.svg",
  39627. extra: 1908/1768,
  39628. bottom: 19/1927
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Minimum",
  39635. height: math.unit(2, "cm")
  39636. },
  39637. {
  39638. name: "Micro",
  39639. height: math.unit(3, "inches")
  39640. },
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(5 + 10/12, "feet"),
  39644. default: true
  39645. },
  39646. {
  39647. name: "Macro",
  39648. height: math.unit(150, "feet")
  39649. },
  39650. {
  39651. name: "Megamacro",
  39652. height: math.unit(10000, "m")
  39653. },
  39654. ]
  39655. ))
  39656. characterMakers.push(() => makeCharacter(
  39657. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39658. {
  39659. front: {
  39660. height: math.unit(2, "meters"),
  39661. weight: math.unit(100, "kg"),
  39662. name: "Front",
  39663. image: {
  39664. source: "./media/characters/shiron/front.svg",
  39665. extra: 2103/1985,
  39666. bottom: 98/2201
  39667. }
  39668. },
  39669. back: {
  39670. height: math.unit(2, "meters"),
  39671. weight: math.unit(100, "kg"),
  39672. name: "Back",
  39673. image: {
  39674. source: "./media/characters/shiron/back.svg",
  39675. extra: 2110/2015,
  39676. bottom: 89/2199
  39677. }
  39678. },
  39679. hand: {
  39680. height: math.unit(0.96, "feet"),
  39681. name: "Hand",
  39682. image: {
  39683. source: "./media/characters/shiron/hand.svg"
  39684. }
  39685. },
  39686. foot: {
  39687. height: math.unit(1.464, "feet"),
  39688. name: "Foot",
  39689. image: {
  39690. source: "./media/characters/shiron/foot.svg"
  39691. }
  39692. },
  39693. },
  39694. [
  39695. {
  39696. name: "Normal",
  39697. height: math.unit(2, "meters")
  39698. },
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(500, "meters"),
  39702. default: true
  39703. },
  39704. {
  39705. name: "Megamacro",
  39706. height: math.unit(20, "km")
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(6, "feet"),
  39715. name: "Front",
  39716. image: {
  39717. source: "./media/characters/sam/front.svg",
  39718. extra: 849/826,
  39719. bottom: 19/868
  39720. }
  39721. },
  39722. },
  39723. [
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(6, "feet"),
  39727. default: true
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39733. {
  39734. front: {
  39735. height: math.unit(8 + 4/12, "feet"),
  39736. weight: math.unit(122, "kg"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/namori-kurogawa/front.svg",
  39740. extra: 1894/1576,
  39741. bottom: 34/1928
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Normal",
  39748. height: math.unit(8 + 4/12, "feet"),
  39749. default: true
  39750. },
  39751. ]
  39752. ))
  39753. characterMakers.push(() => makeCharacter(
  39754. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39755. {
  39756. front: {
  39757. height: math.unit(9, "feet"),
  39758. weight: math.unit(621, "lb"),
  39759. name: "Front",
  39760. image: {
  39761. source: "./media/characters/unmru/front.svg",
  39762. extra: 1853/1747,
  39763. bottom: 73/1926
  39764. }
  39765. },
  39766. side: {
  39767. height: math.unit(9, "feet"),
  39768. weight: math.unit(621, "lb"),
  39769. name: "Side",
  39770. image: {
  39771. source: "./media/characters/unmru/side.svg",
  39772. extra: 1781/1671,
  39773. bottom: 127/1908
  39774. }
  39775. },
  39776. back: {
  39777. height: math.unit(9, "feet"),
  39778. weight: math.unit(621, "lb"),
  39779. name: "Back",
  39780. image: {
  39781. source: "./media/characters/unmru/back.svg",
  39782. extra: 1894/1765,
  39783. bottom: 75/1969
  39784. }
  39785. },
  39786. dick: {
  39787. height: math.unit(3, "feet"),
  39788. weight: math.unit(35, "lb"),
  39789. name: "Dick",
  39790. image: {
  39791. source: "./media/characters/unmru/dick.svg"
  39792. }
  39793. },
  39794. },
  39795. [
  39796. {
  39797. name: "Normal",
  39798. height: math.unit(9, "feet")
  39799. },
  39800. {
  39801. name: "Natural",
  39802. height: math.unit(27, "feet"),
  39803. default: true
  39804. },
  39805. {
  39806. name: "Giant",
  39807. height: math.unit(90, "feet")
  39808. },
  39809. {
  39810. name: "Kaiju",
  39811. height: math.unit(270, "feet")
  39812. },
  39813. {
  39814. name: "Macro",
  39815. height: math.unit(900, "feet")
  39816. },
  39817. {
  39818. name: "Macro+",
  39819. height: math.unit(2700, "feet")
  39820. },
  39821. {
  39822. name: "Megamacro",
  39823. height: math.unit(9000, "feet")
  39824. },
  39825. {
  39826. name: "City-Crushing",
  39827. height: math.unit(27000, "feet")
  39828. },
  39829. {
  39830. name: "Mountain-Mashing",
  39831. height: math.unit(90000, "feet")
  39832. },
  39833. {
  39834. name: "Earth-Eclipsing",
  39835. height: math.unit(2.7e8, "feet")
  39836. },
  39837. {
  39838. name: "Sol-Swallowing",
  39839. height: math.unit(9e10, "feet")
  39840. },
  39841. {
  39842. name: "Majoris-Munching",
  39843. height: math.unit(2.7e13, "feet")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39849. {
  39850. front: {
  39851. height: math.unit(1, "inch"),
  39852. name: "Front",
  39853. image: {
  39854. source: "./media/characters/squeaks-mouse/front.svg",
  39855. extra: 352/308,
  39856. bottom: 25/377
  39857. }
  39858. },
  39859. },
  39860. [
  39861. {
  39862. name: "Micro",
  39863. height: math.unit(1, "inch"),
  39864. default: true
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39870. {
  39871. side: {
  39872. height: math.unit(35, "feet"),
  39873. name: "Side",
  39874. image: {
  39875. source: "./media/characters/sayko/side.svg",
  39876. extra: 1697/1021,
  39877. bottom: 82/1779
  39878. }
  39879. },
  39880. head: {
  39881. height: math.unit(16, "feet"),
  39882. name: "Head",
  39883. image: {
  39884. source: "./media/characters/sayko/head.svg"
  39885. }
  39886. },
  39887. forepaw: {
  39888. height: math.unit(7.85, "feet"),
  39889. name: "Forepaw",
  39890. image: {
  39891. source: "./media/characters/sayko/forepaw.svg"
  39892. }
  39893. },
  39894. hindpaw: {
  39895. height: math.unit(8.8, "feet"),
  39896. name: "Hindpaw",
  39897. image: {
  39898. source: "./media/characters/sayko/hindpaw.svg"
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(35, "feet"),
  39906. default: true
  39907. },
  39908. {
  39909. name: "Colossus",
  39910. height: math.unit(100, "meters")
  39911. },
  39912. {
  39913. name: "\"Small\" Deity",
  39914. height: math.unit(1, "km")
  39915. },
  39916. {
  39917. name: "\"Large\" Deity",
  39918. height: math.unit(15, "km")
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39924. {
  39925. front: {
  39926. height: math.unit(6, "feet"),
  39927. weight: math.unit(250, "lb"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/mukiro/front.svg",
  39931. extra: 1368/1310,
  39932. bottom: 34/1402
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(6, "feet"),
  39940. default: true
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(12 + 4/12, "feet"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39952. extra: 1346/1311,
  39953. bottom: 65/1411
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Base",
  39960. height: math.unit(12 + 4/12, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Macro",
  39965. height: math.unit(150, "feet")
  39966. },
  39967. {
  39968. name: "Mega",
  39969. height: math.unit(2, "miles")
  39970. },
  39971. {
  39972. name: "Demi God",
  39973. height: math.unit(4, "AU")
  39974. },
  39975. {
  39976. name: "God Size",
  39977. height: math.unit(1, "universe")
  39978. },
  39979. ]
  39980. ))
  39981. characterMakers.push(() => makeCharacter(
  39982. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39983. {
  39984. front: {
  39985. height: math.unit(3 + 3/12, "feet"),
  39986. weight: math.unit(88, "lb"),
  39987. name: "Front",
  39988. image: {
  39989. source: "./media/characters/trey/front.svg",
  39990. extra: 1815/1509,
  39991. bottom: 60/1875
  39992. }
  39993. },
  39994. },
  39995. [
  39996. {
  39997. name: "Normal",
  39998. height: math.unit(3 + 3/12, "feet"),
  39999. default: true
  40000. },
  40001. ]
  40002. ))
  40003. characterMakers.push(() => makeCharacter(
  40004. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40005. {
  40006. front: {
  40007. height: math.unit(4, "meters"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/adelonda/front.svg",
  40011. extra: 1077/982,
  40012. bottom: 39/1116
  40013. }
  40014. },
  40015. back: {
  40016. height: math.unit(4, "meters"),
  40017. name: "Back",
  40018. image: {
  40019. source: "./media/characters/adelonda/back.svg",
  40020. extra: 1105/1003,
  40021. bottom: 25/1130
  40022. }
  40023. },
  40024. feral: {
  40025. height: math.unit(40/1.5, "meters"),
  40026. name: "Feral",
  40027. image: {
  40028. source: "./media/characters/adelonda/feral.svg",
  40029. extra: 597/271,
  40030. bottom: 387/984
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(4, "meters"),
  40038. default: true
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40044. {
  40045. front: {
  40046. height: math.unit(8 + 4/12, "feet"),
  40047. weight: math.unit(670, "lb"),
  40048. name: "Front",
  40049. image: {
  40050. source: "./media/characters/acadiel/front.svg",
  40051. extra: 1901/1595,
  40052. bottom: 142/2043
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(8 + 4/12, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(200, "feet")
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(6 + 2/12, "feet"),
  40073. weight: math.unit(185, "lb"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/kayne-ein/front.svg",
  40077. extra: 1780/1560,
  40078. bottom: 81/1861
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(6 + 2/12, "feet"),
  40086. default: true
  40087. },
  40088. {
  40089. name: "Transformation Stage",
  40090. height: math.unit(15, "feet")
  40091. },
  40092. {
  40093. name: "Macro",
  40094. height: math.unit(150, "feet")
  40095. },
  40096. {
  40097. name: "Earth's Shadow",
  40098. height: math.unit(6200, "miles")
  40099. },
  40100. {
  40101. name: "Universal Demon",
  40102. height: math.unit(28e9, "parsecs")
  40103. },
  40104. {
  40105. name: "Multiverse God",
  40106. height: math.unit(3, "multiverses")
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40112. {
  40113. front: {
  40114. height: math.unit(5 + 5/12, "feet"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/fawn/front.svg",
  40118. extra: 1873/1731,
  40119. bottom: 95/1968
  40120. }
  40121. },
  40122. back: {
  40123. height: math.unit(5 + 5/12, "feet"),
  40124. name: "Back",
  40125. image: {
  40126. source: "./media/characters/fawn/back.svg",
  40127. extra: 1813/1700,
  40128. bottom: 14/1827
  40129. }
  40130. },
  40131. hoof: {
  40132. height: math.unit(1.45, "feet"),
  40133. name: "Hoof",
  40134. image: {
  40135. source: "./media/characters/fawn/hoof.svg"
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(5 + 5/12, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(2 + 5/12, "feet"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/orion/front.svg",
  40155. extra: 1366/1304,
  40156. bottom: 43/1409
  40157. }
  40158. },
  40159. paw: {
  40160. height: math.unit(0.52, "feet"),
  40161. name: "Paw",
  40162. image: {
  40163. source: "./media/characters/orion/paw.svg"
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Normal",
  40170. height: math.unit(2 + 5/12, "feet"),
  40171. default: true
  40172. },
  40173. ]
  40174. ))
  40175. characterMakers.push(() => makeCharacter(
  40176. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40177. {
  40178. front: {
  40179. height: math.unit(5 + 10/12, "feet"),
  40180. name: "Front",
  40181. image: {
  40182. source: "./media/characters/vera/front.svg",
  40183. extra: 1680/1575,
  40184. bottom: 49/1729
  40185. }
  40186. },
  40187. back: {
  40188. height: math.unit(5 + 10/12, "feet"),
  40189. name: "Back",
  40190. image: {
  40191. source: "./media/characters/vera/back.svg",
  40192. extra: 1700/1588,
  40193. bottom: 18/1718
  40194. }
  40195. },
  40196. arcanine: {
  40197. height: math.unit(6 + 8/12, "feet"),
  40198. name: "Arcanine",
  40199. image: {
  40200. source: "./media/characters/vera/arcanine.svg",
  40201. extra: 1590/1511,
  40202. bottom: 71/1661
  40203. }
  40204. },
  40205. maw: {
  40206. height: math.unit(0.82, "feet"),
  40207. name: "Maw",
  40208. image: {
  40209. source: "./media/characters/vera/maw.svg"
  40210. }
  40211. },
  40212. mawArcanine: {
  40213. height: math.unit(0.97, "feet"),
  40214. name: "Maw (Arcanine)",
  40215. image: {
  40216. source: "./media/characters/vera/maw-arcanine.svg"
  40217. }
  40218. },
  40219. paw: {
  40220. height: math.unit(0.75, "feet"),
  40221. name: "Paw",
  40222. image: {
  40223. source: "./media/characters/vera/paw.svg"
  40224. }
  40225. },
  40226. pawprint: {
  40227. height: math.unit(0.52, "feet"),
  40228. name: "Pawprint",
  40229. image: {
  40230. source: "./media/characters/vera/pawprint.svg"
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(5 + 10/12, "feet"),
  40238. default: true
  40239. },
  40240. {
  40241. name: "Macro",
  40242. height: math.unit(75, "feet")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(4, "feet"),
  40251. weight: math.unit(40, "lb"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/orvan-rabbit/front.svg",
  40255. extra: 1896/1642,
  40256. bottom: 29/1925
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(4, "feet"),
  40264. default: true
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(6, "feet"),
  40273. weight: math.unit(168, "lb"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/lisa/front.svg",
  40277. extra: 2065/1867,
  40278. bottom: 46/2111
  40279. }
  40280. },
  40281. back: {
  40282. height: math.unit(6, "feet"),
  40283. weight: math.unit(168, "lb"),
  40284. name: "Back",
  40285. image: {
  40286. source: "./media/characters/lisa/back.svg",
  40287. extra: 1982/1838,
  40288. bottom: 29/2011
  40289. }
  40290. },
  40291. maw: {
  40292. height: math.unit(0.81, "feet"),
  40293. name: "Maw",
  40294. image: {
  40295. source: "./media/characters/lisa/maw.svg"
  40296. }
  40297. },
  40298. paw: {
  40299. height: math.unit(0.9, "feet"),
  40300. name: "Paw",
  40301. image: {
  40302. source: "./media/characters/lisa/paw.svg"
  40303. }
  40304. },
  40305. caribousune: {
  40306. height: math.unit(7 + 2/12, "feet"),
  40307. weight: math.unit(268, "lb"),
  40308. name: "Caribousune",
  40309. image: {
  40310. source: "./media/characters/lisa/caribousune.svg",
  40311. extra: 1843/1633,
  40312. bottom: 29/1872
  40313. }
  40314. },
  40315. frontCaribousune: {
  40316. height: math.unit(7 + 2/12, "feet"),
  40317. weight: math.unit(268, "lb"),
  40318. name: "Front (Caribousune)",
  40319. image: {
  40320. source: "./media/characters/lisa/front-caribousune.svg",
  40321. extra: 1818/1638,
  40322. bottom: 52/1870
  40323. }
  40324. },
  40325. sideCaribousune: {
  40326. height: math.unit(7 + 2/12, "feet"),
  40327. weight: math.unit(268, "lb"),
  40328. name: "Side (Caribousune)",
  40329. image: {
  40330. source: "./media/characters/lisa/side-caribousune.svg",
  40331. extra: 1851/1635,
  40332. bottom: 16/1867
  40333. }
  40334. },
  40335. backCaribousune: {
  40336. height: math.unit(7 + 2/12, "feet"),
  40337. weight: math.unit(268, "lb"),
  40338. name: "Back (Caribousune)",
  40339. image: {
  40340. source: "./media/characters/lisa/back-caribousune.svg",
  40341. extra: 1801/1604,
  40342. bottom: 44/1845
  40343. }
  40344. },
  40345. caribou: {
  40346. height: math.unit(7 + 2/12, "feet"),
  40347. weight: math.unit(268, "lb"),
  40348. name: "Caribou",
  40349. image: {
  40350. source: "./media/characters/lisa/caribou.svg",
  40351. extra: 1843/1633,
  40352. bottom: 29/1872
  40353. }
  40354. },
  40355. frontCaribou: {
  40356. height: math.unit(7 + 2/12, "feet"),
  40357. weight: math.unit(268, "lb"),
  40358. name: "Front (Caribou)",
  40359. image: {
  40360. source: "./media/characters/lisa/front-caribou.svg",
  40361. extra: 1818/1638,
  40362. bottom: 52/1870
  40363. }
  40364. },
  40365. sideCaribou: {
  40366. height: math.unit(7 + 2/12, "feet"),
  40367. weight: math.unit(268, "lb"),
  40368. name: "Side (Caribou)",
  40369. image: {
  40370. source: "./media/characters/lisa/side-caribou.svg",
  40371. extra: 1851/1635,
  40372. bottom: 16/1867
  40373. }
  40374. },
  40375. backCaribou: {
  40376. height: math.unit(7 + 2/12, "feet"),
  40377. weight: math.unit(268, "lb"),
  40378. name: "Back (Caribou)",
  40379. image: {
  40380. source: "./media/characters/lisa/back-caribou.svg",
  40381. extra: 1801/1604,
  40382. bottom: 44/1845
  40383. }
  40384. },
  40385. mawCaribou: {
  40386. height: math.unit(1.45, "feet"),
  40387. name: "Maw (Caribou)",
  40388. image: {
  40389. source: "./media/characters/lisa/maw-caribou.svg"
  40390. }
  40391. },
  40392. mawCaribousune: {
  40393. height: math.unit(1.45, "feet"),
  40394. name: "Maw (Caribousune)",
  40395. image: {
  40396. source: "./media/characters/lisa/maw-caribousune.svg"
  40397. }
  40398. },
  40399. pawCaribousune: {
  40400. height: math.unit(1.61, "feet"),
  40401. name: "Paw (Caribou)",
  40402. image: {
  40403. source: "./media/characters/lisa/paw-caribousune.svg"
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(6, "feet")
  40411. },
  40412. {
  40413. name: "God Size",
  40414. height: math.unit(72, "feet"),
  40415. default: true
  40416. },
  40417. {
  40418. name: "Towering",
  40419. height: math.unit(288, "feet")
  40420. },
  40421. {
  40422. name: "City Size",
  40423. height: math.unit(48384, "feet")
  40424. },
  40425. {
  40426. name: "Continental",
  40427. height: math.unit(4200, "miles")
  40428. },
  40429. {
  40430. name: "Planet Eater",
  40431. height: math.unit(42, "earths")
  40432. },
  40433. {
  40434. name: "Star Swallower",
  40435. height: math.unit(42, "solarradii")
  40436. },
  40437. {
  40438. name: "System Swallower",
  40439. height: math.unit(84000, "AU")
  40440. },
  40441. {
  40442. name: "Galaxy Gobbler",
  40443. height: math.unit(42, "galaxies")
  40444. },
  40445. {
  40446. name: "Universe Devourer",
  40447. height: math.unit(42, "universes")
  40448. },
  40449. {
  40450. name: "Multiverse Muncher",
  40451. height: math.unit(42, "multiverses")
  40452. },
  40453. ]
  40454. ))
  40455. characterMakers.push(() => makeCharacter(
  40456. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40457. {
  40458. front: {
  40459. height: math.unit(36, "feet"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/shadow-rat/front.svg",
  40463. extra: 1845/1758,
  40464. bottom: 83/1928
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Macro",
  40471. height: math.unit(36, "feet"),
  40472. default: true
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40478. {
  40479. side: {
  40480. height: math.unit(8, "feet"),
  40481. weight: math.unit(2630, "lb"),
  40482. name: "Side",
  40483. image: {
  40484. source: "./media/characters/torallia/side.svg",
  40485. extra: 2164/2021,
  40486. bottom: 371/2535
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Mortal Interaction",
  40493. height: math.unit(8, "feet")
  40494. },
  40495. {
  40496. name: "Natural",
  40497. height: math.unit(24, "feet"),
  40498. default: true
  40499. },
  40500. {
  40501. name: "Giant",
  40502. height: math.unit(80, "feet")
  40503. },
  40504. {
  40505. name: "Kaiju",
  40506. height: math.unit(240, "feet")
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(800, "feet")
  40511. },
  40512. {
  40513. name: "Macro+",
  40514. height: math.unit(2400, "feet")
  40515. },
  40516. {
  40517. name: "Macro++",
  40518. height: math.unit(8000, "feet")
  40519. },
  40520. {
  40521. name: "City-Crushing",
  40522. height: math.unit(24000, "feet")
  40523. },
  40524. {
  40525. name: "Mountain-Mashing",
  40526. height: math.unit(80000, "feet")
  40527. },
  40528. {
  40529. name: "District Demolisher",
  40530. height: math.unit(240000, "feet")
  40531. },
  40532. {
  40533. name: "Tri-County Terror",
  40534. height: math.unit(800000, "feet")
  40535. },
  40536. {
  40537. name: "State Smasher",
  40538. height: math.unit(2.4e6, "feet")
  40539. },
  40540. {
  40541. name: "Nation Nemesis",
  40542. height: math.unit(8e6, "feet")
  40543. },
  40544. {
  40545. name: "Continent Cracker",
  40546. height: math.unit(2.4e7, "feet")
  40547. },
  40548. {
  40549. name: "Planet-Pillaging",
  40550. height: math.unit(8e7, "feet")
  40551. },
  40552. {
  40553. name: "Earth-Eclipsing",
  40554. height: math.unit(2.4e8, "feet")
  40555. },
  40556. {
  40557. name: "Jovian-Jostling",
  40558. height: math.unit(8e8, "feet")
  40559. },
  40560. {
  40561. name: "Gas Giant Gulper",
  40562. height: math.unit(2.4e9, "feet")
  40563. },
  40564. {
  40565. name: "Astral Annihilator",
  40566. height: math.unit(8e9, "feet")
  40567. },
  40568. {
  40569. name: "Celestial Conqueror",
  40570. height: math.unit(2.4e10, "feet")
  40571. },
  40572. {
  40573. name: "Sol-Swallowing",
  40574. height: math.unit(8e10, "feet")
  40575. },
  40576. {
  40577. name: "Hunter of the Heavens",
  40578. height: math.unit(2.4e13, "feet")
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(6 + 8/12, "feet"),
  40587. weight: math.unit(250, "kilograms"),
  40588. volume: math.unit(28, "liters"),
  40589. name: "Front",
  40590. image: {
  40591. source: "./media/characters/rebecca-pawlson/front.svg",
  40592. extra: 1737/1596,
  40593. bottom: 107/1844
  40594. }
  40595. },
  40596. back: {
  40597. height: math.unit(6 + 8/12, "feet"),
  40598. weight: math.unit(250, "kilograms"),
  40599. volume: math.unit(28, "liters"),
  40600. name: "Back",
  40601. image: {
  40602. source: "./media/characters/rebecca-pawlson/back.svg",
  40603. extra: 1702/1523,
  40604. bottom: 86/1788
  40605. }
  40606. },
  40607. },
  40608. [
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(6 + 8/12, "feet")
  40612. },
  40613. {
  40614. name: "Mini Macro",
  40615. height: math.unit(10, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Macro",
  40620. height: math.unit(100, "feet")
  40621. },
  40622. {
  40623. name: "Mega Macro",
  40624. height: math.unit(2500, "feet")
  40625. },
  40626. {
  40627. name: "Giga Macro",
  40628. height: math.unit(50, "miles")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(7 + 6/12, "feet"),
  40637. weight: math.unit(600, "lb"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/moxie-nova/front.svg",
  40641. extra: 1734/1652,
  40642. bottom: 41/1775
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Normal",
  40649. height: math.unit(7 + 6/12, "feet"),
  40650. default: true
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40656. {
  40657. goat: {
  40658. height: math.unit(4, "feet"),
  40659. weight: math.unit(180, "lb"),
  40660. name: "Goat",
  40661. image: {
  40662. source: "./media/characters/tiffany/goat.svg",
  40663. extra: 1845/1595,
  40664. bottom: 106/1951
  40665. }
  40666. },
  40667. front: {
  40668. height: math.unit(5, "feet"),
  40669. weight: math.unit(150, "lb"),
  40670. name: "Foxcoon",
  40671. image: {
  40672. source: "./media/characters/tiffany/foxcoon.svg",
  40673. extra: 1941/1845,
  40674. bottom: 58/1999
  40675. }
  40676. },
  40677. },
  40678. [
  40679. {
  40680. name: "Normal",
  40681. height: math.unit(5, "feet"),
  40682. default: true
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(8, "feet"),
  40691. weight: math.unit(300, "lb"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/raxinath/front.svg",
  40695. extra: 1407/1309,
  40696. bottom: 39/1446
  40697. }
  40698. },
  40699. back: {
  40700. height: math.unit(8, "feet"),
  40701. weight: math.unit(300, "lb"),
  40702. name: "Back",
  40703. image: {
  40704. source: "./media/characters/raxinath/back.svg",
  40705. extra: 1405/1315,
  40706. bottom: 9/1414
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Speck",
  40713. height: math.unit(0.5, "nm")
  40714. },
  40715. {
  40716. name: "Micro",
  40717. height: math.unit(3, "inches")
  40718. },
  40719. {
  40720. name: "Kobold",
  40721. height: math.unit(3, "feet")
  40722. },
  40723. {
  40724. name: "Normal",
  40725. height: math.unit(8, "feet"),
  40726. default: true
  40727. },
  40728. {
  40729. name: "Giant",
  40730. height: math.unit(50, "feet")
  40731. },
  40732. {
  40733. name: "Macro",
  40734. height: math.unit(1000, "feet")
  40735. },
  40736. {
  40737. name: "Megamacro",
  40738. height: math.unit(1, "mile")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(10, "feet"),
  40747. weight: math.unit(1442, "lb"),
  40748. name: "Front",
  40749. image: {
  40750. source: "./media/characters/mal-dragon/front.svg",
  40751. extra: 1515/1444,
  40752. bottom: 113/1628
  40753. }
  40754. },
  40755. back: {
  40756. height: math.unit(10, "feet"),
  40757. weight: math.unit(1442, "lb"),
  40758. name: "Back",
  40759. image: {
  40760. source: "./media/characters/mal-dragon/back.svg",
  40761. extra: 1527/1434,
  40762. bottom: 25/1552
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Mortal Interaction",
  40769. height: math.unit(10, "feet"),
  40770. default: true
  40771. },
  40772. {
  40773. name: "Large",
  40774. height: math.unit(30, "feet")
  40775. },
  40776. {
  40777. name: "Kaiju",
  40778. height: math.unit(300, "feet")
  40779. },
  40780. {
  40781. name: "Megamacro",
  40782. height: math.unit(10000, "feet")
  40783. },
  40784. {
  40785. name: "Continent Cracker",
  40786. height: math.unit(30000000, "feet")
  40787. },
  40788. {
  40789. name: "Sol-Swallowing",
  40790. height: math.unit(1e11, "feet")
  40791. },
  40792. {
  40793. name: "Light Universal",
  40794. height: math.unit(5, "universes")
  40795. },
  40796. {
  40797. name: "Universe Atoms",
  40798. height: math.unit(1.829e9, "universes")
  40799. },
  40800. {
  40801. name: "Light Multiversal",
  40802. height: math.unit(5, "multiverses")
  40803. },
  40804. {
  40805. name: "Multiverse Atoms",
  40806. height: math.unit(1.829e9, "multiverses")
  40807. },
  40808. {
  40809. name: "Fabric of Time",
  40810. height: math.unit(1e262, "multiverses")
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(9, "feet"),
  40819. weight: math.unit(1050, "lb"),
  40820. name: "Front",
  40821. image: {
  40822. source: "./media/characters/tabitha/front.svg",
  40823. extra: 2083/1994,
  40824. bottom: 68/2151
  40825. }
  40826. },
  40827. },
  40828. [
  40829. {
  40830. name: "Baseline",
  40831. height: math.unit(9, "feet"),
  40832. default: true
  40833. },
  40834. {
  40835. name: "Giant",
  40836. height: math.unit(90, "feet")
  40837. },
  40838. {
  40839. name: "Macro",
  40840. height: math.unit(900, "feet")
  40841. },
  40842. {
  40843. name: "Megamacro",
  40844. height: math.unit(9000, "feet")
  40845. },
  40846. {
  40847. name: "City-Crushing",
  40848. height: math.unit(27000, "feet")
  40849. },
  40850. {
  40851. name: "Mountain-Mashing",
  40852. height: math.unit(90000, "feet")
  40853. },
  40854. {
  40855. name: "Nation Nemesis",
  40856. height: math.unit(9e6, "feet")
  40857. },
  40858. {
  40859. name: "Continent Cracker",
  40860. height: math.unit(27e6, "feet")
  40861. },
  40862. {
  40863. name: "Earth-Eclipsing",
  40864. height: math.unit(2.7e8, "feet")
  40865. },
  40866. {
  40867. name: "Gas Giant Gulper",
  40868. height: math.unit(2.7e9, "feet")
  40869. },
  40870. {
  40871. name: "Sol-Swallowing",
  40872. height: math.unit(9e10, "feet")
  40873. },
  40874. {
  40875. name: "Galaxy Gulper",
  40876. height: math.unit(9, "galaxies")
  40877. },
  40878. {
  40879. name: "Cosmos Churner",
  40880. height: math.unit(9, "universes")
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40886. {
  40887. front: {
  40888. height: math.unit(160, "cm"),
  40889. weight: math.unit(55, "kg"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/tow/front.svg",
  40893. extra: 1751/1722,
  40894. bottom: 74/1825
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Norm",
  40901. height: math.unit(160, "cm")
  40902. },
  40903. {
  40904. name: "Casual",
  40905. height: math.unit(3200, "m"),
  40906. default: true
  40907. },
  40908. {
  40909. name: "Show-Off",
  40910. height: math.unit(160, "km")
  40911. },
  40912. ]
  40913. ))
  40914. characterMakers.push(() => makeCharacter(
  40915. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40916. {
  40917. front: {
  40918. height: math.unit(7 + 11/12, "feet"),
  40919. weight: math.unit(342.8, "lb"),
  40920. name: "Front",
  40921. image: {
  40922. source: "./media/characters/vivian-orca-dragon/front.svg",
  40923. extra: 1890/1865,
  40924. bottom: 28/1918
  40925. }
  40926. },
  40927. },
  40928. [
  40929. {
  40930. name: "Micro",
  40931. height: math.unit(5, "inches")
  40932. },
  40933. {
  40934. name: "Normal",
  40935. height: math.unit(7 + 11/12, "feet"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Macro",
  40940. height: math.unit(395 + 7/12, "feet")
  40941. },
  40942. ]
  40943. ))
  40944. characterMakers.push(() => makeCharacter(
  40945. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40946. {
  40947. side: {
  40948. height: math.unit(10, "feet"),
  40949. weight: math.unit(1442, "lb"),
  40950. name: "Side",
  40951. image: {
  40952. source: "./media/characters/lotherakon/side.svg",
  40953. extra: 1604/1497,
  40954. bottom: 89/1693
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Mortal Interaction",
  40961. height: math.unit(10, "feet")
  40962. },
  40963. {
  40964. name: "Large",
  40965. height: math.unit(30, "feet"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "Giant",
  40970. height: math.unit(100, "feet")
  40971. },
  40972. {
  40973. name: "Kaiju",
  40974. height: math.unit(300, "feet")
  40975. },
  40976. {
  40977. name: "Macro",
  40978. height: math.unit(1000, "feet")
  40979. },
  40980. {
  40981. name: "Macro+",
  40982. height: math.unit(3000, "feet")
  40983. },
  40984. {
  40985. name: "Megamacro",
  40986. height: math.unit(10000, "feet")
  40987. },
  40988. {
  40989. name: "City-Crushing",
  40990. height: math.unit(30000, "feet")
  40991. },
  40992. {
  40993. name: "Continent Cracker",
  40994. height: math.unit(30e6, "feet")
  40995. },
  40996. {
  40997. name: "Earth Eclipsing",
  40998. height: math.unit(3e8, "feet")
  40999. },
  41000. {
  41001. name: "Gas Giant Gulper",
  41002. height: math.unit(3e9, "feet")
  41003. },
  41004. {
  41005. name: "Sol-Swallowing",
  41006. height: math.unit(1e11, "feet")
  41007. },
  41008. {
  41009. name: "System Swallower",
  41010. height: math.unit(3e14, "feet")
  41011. },
  41012. {
  41013. name: "Galaxy Gulper",
  41014. height: math.unit(10, "galaxies")
  41015. },
  41016. {
  41017. name: "Light Universal",
  41018. height: math.unit(5, "universes")
  41019. },
  41020. {
  41021. name: "Universe Palm",
  41022. height: math.unit(20, "universes")
  41023. },
  41024. {
  41025. name: "Light Multiversal",
  41026. height: math.unit(5, "multiverses")
  41027. },
  41028. {
  41029. name: "Multiverse Palm",
  41030. height: math.unit(20, "multiverses")
  41031. },
  41032. {
  41033. name: "Inferno Incarnate",
  41034. height: math.unit(1e7, "multiverses")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(8, "feet"),
  41043. weight: math.unit(1200, "lb"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/malithee/front.svg",
  41047. extra: 1675/1640,
  41048. bottom: 162/1837
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Mortal Interaction",
  41055. height: math.unit(8, "feet"),
  41056. default: true
  41057. },
  41058. {
  41059. name: "Large",
  41060. height: math.unit(24, "feet")
  41061. },
  41062. {
  41063. name: "Kaiju",
  41064. height: math.unit(240, "feet")
  41065. },
  41066. {
  41067. name: "Megamacro",
  41068. height: math.unit(8000, "feet")
  41069. },
  41070. {
  41071. name: "Continent Cracker",
  41072. height: math.unit(24e6, "feet")
  41073. },
  41074. {
  41075. name: "Earth-Eclipsing",
  41076. height: math.unit(2.4e8, "feet")
  41077. },
  41078. {
  41079. name: "Sol-Swallowing",
  41080. height: math.unit(8e10, "feet")
  41081. },
  41082. {
  41083. name: "Galaxy Gulper",
  41084. height: math.unit(8, "galaxies")
  41085. },
  41086. {
  41087. name: "Light Universal",
  41088. height: math.unit(4, "universes")
  41089. },
  41090. {
  41091. name: "Universe Atoms",
  41092. height: math.unit(1.829e9, "universes")
  41093. },
  41094. {
  41095. name: "Light Multiversal",
  41096. height: math.unit(4, "multiverses")
  41097. },
  41098. {
  41099. name: "Multiverse Atoms",
  41100. height: math.unit(1.829e9, "multiverses")
  41101. },
  41102. {
  41103. name: "Nigh-Omnipresence",
  41104. height: math.unit(8e261, "multiverses")
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(10, "feet"),
  41113. weight: math.unit(1500, "lb"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/miles-thestia/front.svg",
  41117. extra: 1812/1727,
  41118. bottom: 86/1898
  41119. }
  41120. },
  41121. back: {
  41122. height: math.unit(10, "feet"),
  41123. weight: math.unit(1500, "lb"),
  41124. name: "Back",
  41125. image: {
  41126. source: "./media/characters/miles-thestia/back.svg",
  41127. extra: 1799/1690,
  41128. bottom: 47/1846
  41129. }
  41130. },
  41131. frontNsfw: {
  41132. height: math.unit(10, "feet"),
  41133. weight: math.unit(1500, "lb"),
  41134. name: "Front (NSFW)",
  41135. image: {
  41136. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41137. extra: 1812/1727,
  41138. bottom: 86/1898
  41139. }
  41140. },
  41141. },
  41142. [
  41143. {
  41144. name: "Mini-Macro",
  41145. height: math.unit(10, "feet"),
  41146. default: true
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(25, "feet"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/titan-s-wulf/front.svg",
  41158. extra: 1560/1484,
  41159. bottom: 76/1636
  41160. }
  41161. },
  41162. },
  41163. [
  41164. {
  41165. name: "Smallest",
  41166. height: math.unit(25, "feet"),
  41167. default: true
  41168. },
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(200, "feet")
  41172. },
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(200000, "feet")
  41176. },
  41177. {
  41178. name: "Multiversal Original",
  41179. height: math.unit(10000, "multiverses")
  41180. },
  41181. ]
  41182. ))
  41183. characterMakers.push(() => makeCharacter(
  41184. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41185. {
  41186. front: {
  41187. height: math.unit(8, "feet"),
  41188. weight: math.unit(553, "lb"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/tawendeh/front.svg",
  41192. extra: 2365/2268,
  41193. bottom: 83/2448
  41194. }
  41195. },
  41196. frontClothed: {
  41197. height: math.unit(8, "feet"),
  41198. weight: math.unit(553, "lb"),
  41199. name: "Front (Clothed)",
  41200. image: {
  41201. source: "./media/characters/tawendeh/front-clothed.svg",
  41202. extra: 2365/2268,
  41203. bottom: 83/2448
  41204. }
  41205. },
  41206. back: {
  41207. height: math.unit(8, "feet"),
  41208. weight: math.unit(553, "lb"),
  41209. name: "Back",
  41210. image: {
  41211. source: "./media/characters/tawendeh/back.svg",
  41212. extra: 2397/2294,
  41213. bottom: 42/2439
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Mortal Interaction",
  41220. height: math.unit(8, "feet"),
  41221. default: true
  41222. },
  41223. {
  41224. name: "Giant",
  41225. height: math.unit(80, "feet")
  41226. },
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(800, "feet")
  41230. },
  41231. {
  41232. name: "Megamacro",
  41233. height: math.unit(8000, "feet")
  41234. },
  41235. {
  41236. name: "City-Crushing",
  41237. height: math.unit(24000, "feet")
  41238. },
  41239. {
  41240. name: "Mountain-Mashing",
  41241. height: math.unit(80000, "feet")
  41242. },
  41243. {
  41244. name: "Nation Nemesis",
  41245. height: math.unit(8e6, "feet")
  41246. },
  41247. {
  41248. name: "Continent Cracker",
  41249. height: math.unit(24e6, "feet")
  41250. },
  41251. {
  41252. name: "Earth-Eclipsing",
  41253. height: math.unit(2.4e8, "feet")
  41254. },
  41255. {
  41256. name: "Gas Giant Gulper",
  41257. height: math.unit(2.4e9, "feet")
  41258. },
  41259. {
  41260. name: "Sol-Swallowing",
  41261. height: math.unit(8e10, "feet")
  41262. },
  41263. {
  41264. name: "Galaxy Gulper",
  41265. height: math.unit(8, "galaxies")
  41266. },
  41267. {
  41268. name: "Cosmos Churner",
  41269. height: math.unit(8, "universes")
  41270. },
  41271. {
  41272. name: "Omnipotent Otter",
  41273. height: math.unit(80, "universes")
  41274. },
  41275. ]
  41276. ))
  41277. characterMakers.push(() => makeCharacter(
  41278. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41279. {
  41280. front: {
  41281. height: math.unit(2.6, "meters"),
  41282. weight: math.unit(900, "kg"),
  41283. name: "Front",
  41284. image: {
  41285. source: "./media/characters/neesha/front.svg",
  41286. extra: 1803/1653,
  41287. bottom: 128/1931
  41288. }
  41289. },
  41290. },
  41291. [
  41292. {
  41293. name: "Normal",
  41294. height: math.unit(2.6, "meters"),
  41295. default: true
  41296. },
  41297. {
  41298. name: "Macro",
  41299. height: math.unit(50, "meters")
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41305. {
  41306. front: {
  41307. height: math.unit(5, "feet"),
  41308. weight: math.unit(185, "lb"),
  41309. name: "Front",
  41310. image: {
  41311. source: "./media/characters/kyera/front.svg",
  41312. extra: 1875/1790,
  41313. bottom: 96/1971
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Normal",
  41320. height: math.unit(5, "feet"),
  41321. default: true
  41322. },
  41323. ]
  41324. ))
  41325. characterMakers.push(() => makeCharacter(
  41326. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41327. {
  41328. front: {
  41329. height: math.unit(7 + 6/12, "feet"),
  41330. weight: math.unit(540, "lb"),
  41331. name: "Front",
  41332. image: {
  41333. source: "./media/characters/yuko/front.svg",
  41334. extra: 1282/1222,
  41335. bottom: 101/1383
  41336. }
  41337. },
  41338. frontClothed: {
  41339. height: math.unit(7 + 6/12, "feet"),
  41340. weight: math.unit(540, "lb"),
  41341. name: "Front (Clothed)",
  41342. image: {
  41343. source: "./media/characters/yuko/front-clothed.svg",
  41344. extra: 1282/1222,
  41345. bottom: 101/1383
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(7 + 6/12, "feet"),
  41353. default: true
  41354. },
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(26 + 9/12, "feet")
  41358. },
  41359. {
  41360. name: "Megamacro",
  41361. height: math.unit(300, "feet")
  41362. },
  41363. {
  41364. name: "Gigamacro",
  41365. height: math.unit(5000, "feet")
  41366. },
  41367. {
  41368. name: "Planetary",
  41369. height: math.unit(10000, "miles")
  41370. },
  41371. ]
  41372. ))
  41373. characterMakers.push(() => makeCharacter(
  41374. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41375. {
  41376. front: {
  41377. height: math.unit(8 + 2/12, "feet"),
  41378. weight: math.unit(600, "lb"),
  41379. name: "Front",
  41380. image: {
  41381. source: "./media/characters/deam-nitrel/front.svg",
  41382. extra: 1308/1234,
  41383. bottom: 125/1433
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Normal",
  41390. height: math.unit(8 + 2/12, "feet"),
  41391. default: true
  41392. },
  41393. ]
  41394. ))
  41395. characterMakers.push(() => makeCharacter(
  41396. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41397. {
  41398. front: {
  41399. height: math.unit(6.1, "feet"),
  41400. weight: math.unit(180, "lb"),
  41401. name: "Front",
  41402. image: {
  41403. source: "./media/characters/skyress/front.svg",
  41404. extra: 1045/915,
  41405. bottom: 28/1073
  41406. }
  41407. },
  41408. maw: {
  41409. height: math.unit(1, "feet"),
  41410. name: "Maw",
  41411. image: {
  41412. source: "./media/characters/skyress/maw.svg"
  41413. }
  41414. },
  41415. },
  41416. [
  41417. {
  41418. name: "Normal",
  41419. height: math.unit(6.1, "feet"),
  41420. default: true
  41421. },
  41422. {
  41423. name: "Macro",
  41424. height: math.unit(200, "feet")
  41425. },
  41426. ]
  41427. ))
  41428. characterMakers.push(() => makeCharacter(
  41429. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41430. {
  41431. front: {
  41432. height: math.unit(4 + 2/12, "feet"),
  41433. weight: math.unit(40, "kg"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/amethyst-jones/front.svg",
  41437. extra: 1220/1150,
  41438. bottom: 101/1321
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Normal",
  41445. height: math.unit(4 + 2/12, "feet"),
  41446. default: true
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41452. {
  41453. front: {
  41454. height: math.unit(1.7, "m"),
  41455. weight: math.unit(135, "lb"),
  41456. name: "Front",
  41457. image: {
  41458. source: "./media/characters/jade/front.svg",
  41459. extra: 1818/1767,
  41460. bottom: 32/1850
  41461. }
  41462. },
  41463. back: {
  41464. height: math.unit(1.7, "m"),
  41465. weight: math.unit(135, "lb"),
  41466. name: "Back",
  41467. image: {
  41468. source: "./media/characters/jade/back.svg",
  41469. extra: 1869/1809,
  41470. bottom: 35/1904
  41471. }
  41472. },
  41473. hand: {
  41474. height: math.unit(0.24, "m"),
  41475. name: "Hand",
  41476. image: {
  41477. source: "./media/characters/jade/hand.svg"
  41478. }
  41479. },
  41480. foot: {
  41481. height: math.unit(0.263, "m"),
  41482. name: "Foot",
  41483. image: {
  41484. source: "./media/characters/jade/foot.svg"
  41485. }
  41486. },
  41487. dick: {
  41488. height: math.unit(0.47, "m"),
  41489. name: "Dick",
  41490. image: {
  41491. source: "./media/characters/jade/dick.svg"
  41492. }
  41493. },
  41494. },
  41495. [
  41496. {
  41497. name: "Micro",
  41498. height: math.unit(22, "cm")
  41499. },
  41500. {
  41501. name: "Normal",
  41502. height: math.unit(1.7, "m"),
  41503. default: true
  41504. },
  41505. {
  41506. name: "Macro",
  41507. height: math.unit(152, "m")
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(100, "miles"),
  41516. weight: math.unit(20000, "tons"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/cookie/front.svg",
  41520. extra: 1125/1070,
  41521. bottom: 30/1155
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Big",
  41528. height: math.unit(50, "feet")
  41529. },
  41530. {
  41531. name: "Macro",
  41532. height: math.unit(100, "miles"),
  41533. default: true
  41534. },
  41535. {
  41536. name: "Megamacro",
  41537. height: math.unit(90000, "miles")
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(6, "feet"),
  41546. weight: math.unit(145, "lb"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/farzian/front.svg",
  41550. extra: 1902/1693,
  41551. bottom: 108/2010
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Macro",
  41558. height: math.unit(500, "feet"),
  41559. default: true
  41560. },
  41561. ]
  41562. ))
  41563. characterMakers.push(() => makeCharacter(
  41564. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41565. {
  41566. front: {
  41567. height: math.unit(3 + 6/12, "feet"),
  41568. weight: math.unit(50, "lb"),
  41569. name: "Front",
  41570. image: {
  41571. source: "./media/characters/kimberly-tilson/front.svg",
  41572. extra: 1400/1322,
  41573. bottom: 36/1436
  41574. }
  41575. },
  41576. back: {
  41577. height: math.unit(3 + 6/12, "feet"),
  41578. weight: math.unit(50, "lb"),
  41579. name: "Back",
  41580. image: {
  41581. source: "./media/characters/kimberly-tilson/back.svg",
  41582. extra: 1370/1307,
  41583. bottom: 20/1390
  41584. }
  41585. },
  41586. },
  41587. [
  41588. {
  41589. name: "Normal",
  41590. height: math.unit(3 + 6/12, "feet"),
  41591. default: true
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41597. {
  41598. front: {
  41599. height: math.unit(1148, "feet"),
  41600. weight: math.unit(34057, "lb"),
  41601. name: "Front",
  41602. image: {
  41603. source: "./media/characters/harthos/front.svg",
  41604. extra: 1391/1339,
  41605. bottom: 13/1404
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Macro",
  41612. height: math.unit(1148, "feet"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(15, "feet"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/hypatia/front.svg",
  41625. extra: 1653/1591,
  41626. bottom: 79/1732
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(15, "feet")
  41634. },
  41635. {
  41636. name: "Small",
  41637. height: math.unit(300, "feet")
  41638. },
  41639. {
  41640. name: "Macro",
  41641. height: math.unit(2500, "feet"),
  41642. default: true
  41643. },
  41644. {
  41645. name: "Mega Macro",
  41646. height: math.unit(1500, "miles")
  41647. },
  41648. {
  41649. name: "Giga Macro",
  41650. height: math.unit(1.5e6, "miles")
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(6, "feet"),
  41659. weight: math.unit(200, "lb"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/wulver/front.svg",
  41663. extra: 1724/1632,
  41664. bottom: 130/1854
  41665. }
  41666. },
  41667. frontNsfw: {
  41668. height: math.unit(6, "feet"),
  41669. weight: math.unit(200, "lb"),
  41670. name: "Front (NSFW)",
  41671. image: {
  41672. source: "./media/characters/wulver/front-nsfw.svg",
  41673. extra: 1724/1632,
  41674. bottom: 130/1854
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Human-Sized",
  41681. height: math.unit(6, "feet")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(4, "meters"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Large",
  41690. height: math.unit(6, "m")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(7, "feet"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/maru/front.svg",
  41702. extra: 1595/1570,
  41703. bottom: 0/1595
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(7, "feet"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Macro",
  41715. height: math.unit(700, "feet")
  41716. },
  41717. {
  41718. name: "Mega Macro",
  41719. height: math.unit(25, "miles")
  41720. },
  41721. ]
  41722. ))
  41723. characterMakers.push(() => makeCharacter(
  41724. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41725. {
  41726. front: {
  41727. height: math.unit(6, "feet"),
  41728. weight: math.unit(170, "lb"),
  41729. name: "Front",
  41730. image: {
  41731. source: "./media/characters/xenon/front.svg",
  41732. extra: 1376/1305,
  41733. bottom: 56/1432
  41734. }
  41735. },
  41736. back: {
  41737. height: math.unit(6, "feet"),
  41738. weight: math.unit(170, "lb"),
  41739. name: "Back",
  41740. image: {
  41741. source: "./media/characters/xenon/back.svg",
  41742. extra: 1328/1259,
  41743. bottom: 95/1423
  41744. }
  41745. },
  41746. maw: {
  41747. height: math.unit(0.52, "feet"),
  41748. name: "Maw",
  41749. image: {
  41750. source: "./media/characters/xenon/maw.svg"
  41751. }
  41752. },
  41753. handLeft: {
  41754. height: math.unit(0.82 * 169 / 153, "feet"),
  41755. name: "Hand (Left)",
  41756. image: {
  41757. source: "./media/characters/xenon/hand-left.svg"
  41758. }
  41759. },
  41760. handRight: {
  41761. height: math.unit(0.82, "feet"),
  41762. name: "Hand (Right)",
  41763. image: {
  41764. source: "./media/characters/xenon/hand-right.svg"
  41765. }
  41766. },
  41767. footLeft: {
  41768. height: math.unit(1.13, "feet"),
  41769. name: "Foot (Left)",
  41770. image: {
  41771. source: "./media/characters/xenon/foot-left.svg"
  41772. }
  41773. },
  41774. footRight: {
  41775. height: math.unit(1.13 * 194 / 196, "feet"),
  41776. name: "Foot (Right)",
  41777. image: {
  41778. source: "./media/characters/xenon/foot-right.svg"
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Micro",
  41785. height: math.unit(0.8, "inches")
  41786. },
  41787. {
  41788. name: "Normal",
  41789. height: math.unit(6, "feet")
  41790. },
  41791. {
  41792. name: "Macro",
  41793. height: math.unit(50, "feet"),
  41794. default: true
  41795. },
  41796. {
  41797. name: "Macro+",
  41798. height: math.unit(250, "feet")
  41799. },
  41800. {
  41801. name: "Megamacro",
  41802. height: math.unit(1500, "feet")
  41803. },
  41804. ]
  41805. ))
  41806. characterMakers.push(() => makeCharacter(
  41807. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41808. {
  41809. front: {
  41810. height: math.unit(7 + 5/12, "feet"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/zane/front.svg",
  41814. extra: 1260/1203,
  41815. bottom: 94/1354
  41816. }
  41817. },
  41818. back: {
  41819. height: math.unit(5.05, "feet"),
  41820. name: "Back",
  41821. image: {
  41822. source: "./media/characters/zane/back.svg",
  41823. extra: 893/829,
  41824. bottom: 30/923
  41825. }
  41826. },
  41827. werewolf: {
  41828. height: math.unit(11, "feet"),
  41829. name: "Werewolf",
  41830. image: {
  41831. source: "./media/characters/zane/werewolf.svg",
  41832. extra: 1383/1323,
  41833. bottom: 89/1472
  41834. }
  41835. },
  41836. foot: {
  41837. height: math.unit(1.46, "feet"),
  41838. name: "Foot",
  41839. image: {
  41840. source: "./media/characters/zane/foot.svg"
  41841. }
  41842. },
  41843. footFront: {
  41844. height: math.unit(0.784, "feet"),
  41845. name: "Foot (Front)",
  41846. image: {
  41847. source: "./media/characters/zane/foot-front.svg"
  41848. }
  41849. },
  41850. dick: {
  41851. height: math.unit(1.95, "feet"),
  41852. name: "Dick",
  41853. image: {
  41854. source: "./media/characters/zane/dick.svg"
  41855. }
  41856. },
  41857. dickWerewolf: {
  41858. height: math.unit(3.77, "feet"),
  41859. name: "Dick (Werewolf)",
  41860. image: {
  41861. source: "./media/characters/zane/dick.svg"
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(7 + 5/12, "feet"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(6 + 2/12, "feet"),
  41878. weight: math.unit(284, "lb"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/benni-desparque/front.svg",
  41882. extra: 1353/1126,
  41883. bottom: 69/1422
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Civilian",
  41890. height: math.unit(6 + 2/12, "feet")
  41891. },
  41892. {
  41893. name: "Normal",
  41894. height: math.unit(98, "feet"),
  41895. default: true
  41896. },
  41897. {
  41898. name: "Kaiju Fighter",
  41899. height: math.unit(268, "feet")
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(5, "feet"),
  41908. weight: math.unit(105, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/maxine/front.svg",
  41912. extra: 1386/1250,
  41913. bottom: 71/1457
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(5, "feet"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(11 + 7/12, "feet"),
  41930. weight: math.unit(9576, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/scaly/front.svg",
  41934. extra: 888/867,
  41935. bottom: 36/924
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Normal",
  41942. height: math.unit(11 + 7/12, "feet"),
  41943. default: true
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41949. {
  41950. front: {
  41951. height: math.unit(6 + 3/12, "feet"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/saelria/front.svg",
  41955. extra: 1243/1138,
  41956. bottom: 46/1289
  41957. }
  41958. },
  41959. },
  41960. [
  41961. {
  41962. name: "Micro",
  41963. height: math.unit(6, "inches"),
  41964. },
  41965. {
  41966. name: "Normal",
  41967. height: math.unit(6 + 3/12, "feet"),
  41968. default: true
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(25, "feet")
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(80, "meters"),
  41981. weight: math.unit(7000, "tonnes"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/tef/front.svg",
  41985. extra: 2036/1991,
  41986. bottom: 54/2090
  41987. }
  41988. },
  41989. back: {
  41990. height: math.unit(80, "meters"),
  41991. weight: math.unit(7000, "tonnes"),
  41992. name: "Back",
  41993. image: {
  41994. source: "./media/characters/tef/back.svg",
  41995. extra: 2036/1991,
  41996. bottom: 54/2090
  41997. }
  41998. },
  41999. },
  42000. [
  42001. {
  42002. name: "Macro",
  42003. height: math.unit(80, "meters"),
  42004. default: true
  42005. },
  42006. ]
  42007. ))
  42008. characterMakers.push(() => makeCharacter(
  42009. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42010. {
  42011. front: {
  42012. height: math.unit(13, "feet"),
  42013. weight: math.unit(6, "tons"),
  42014. name: "Front",
  42015. image: {
  42016. source: "./media/characters/rover/front.svg",
  42017. extra: 1233/1156,
  42018. bottom: 50/1283
  42019. }
  42020. },
  42021. back: {
  42022. height: math.unit(13, "feet"),
  42023. weight: math.unit(6, "tons"),
  42024. name: "Back",
  42025. image: {
  42026. source: "./media/characters/rover/back.svg",
  42027. extra: 1327/1258,
  42028. bottom: 39/1366
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Normal",
  42035. height: math.unit(13, "feet"),
  42036. default: true
  42037. },
  42038. {
  42039. name: "Macro",
  42040. height: math.unit(1300, "feet")
  42041. },
  42042. {
  42043. name: "Megamacro",
  42044. height: math.unit(1300, "miles")
  42045. },
  42046. {
  42047. name: "Gigamacro",
  42048. height: math.unit(1300000, "miles")
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42054. {
  42055. front: {
  42056. height: math.unit(6, "feet"),
  42057. weight: math.unit(150, "lb"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/ariz/front.svg",
  42061. extra: 1401/1346,
  42062. bottom: 5/1406
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(10, "feet"),
  42070. default: true
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42076. {
  42077. front: {
  42078. height: math.unit(6, "feet"),
  42079. weight: math.unit(140, "lb"),
  42080. name: "Front",
  42081. image: {
  42082. source: "./media/characters/sigrun/front.svg",
  42083. extra: 1418/1359,
  42084. bottom: 27/1445
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Macro",
  42091. height: math.unit(35, "feet"),
  42092. default: true
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42098. {
  42099. front: {
  42100. height: math.unit(6, "feet"),
  42101. weight: math.unit(150, "lb"),
  42102. name: "Front",
  42103. image: {
  42104. source: "./media/characters/numin/front.svg",
  42105. extra: 1433/1388,
  42106. bottom: 12/1445
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Macro",
  42113. height: math.unit(21.5, "km"),
  42114. default: true
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42120. {
  42121. front: {
  42122. height: math.unit(6, "feet"),
  42123. weight: math.unit(463, "lb"),
  42124. name: "Front",
  42125. image: {
  42126. source: "./media/characters/melwa/front.svg",
  42127. extra: 1307/1248,
  42128. bottom: 93/1400
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Macro",
  42135. height: math.unit(50, "meters"),
  42136. default: true
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(325, "feet"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/zorkaiju/front.svg",
  42148. extra: 1955/1814,
  42149. bottom: 40/1995
  42150. }
  42151. },
  42152. frontExtended: {
  42153. height: math.unit(325, "feet"),
  42154. name: "Front (Extended)",
  42155. image: {
  42156. source: "./media/characters/zorkaiju/front-extended.svg",
  42157. extra: 1955/1814,
  42158. bottom: 40/1995
  42159. }
  42160. },
  42161. side: {
  42162. height: math.unit(325, "feet"),
  42163. name: "Side",
  42164. image: {
  42165. source: "./media/characters/zorkaiju/side.svg",
  42166. extra: 1495/1396,
  42167. bottom: 17/1512
  42168. }
  42169. },
  42170. sideExtended: {
  42171. height: math.unit(325, "feet"),
  42172. name: "Side (Extended)",
  42173. image: {
  42174. source: "./media/characters/zorkaiju/side-extended.svg",
  42175. extra: 1495/1396,
  42176. bottom: 17/1512
  42177. }
  42178. },
  42179. back: {
  42180. height: math.unit(325, "feet"),
  42181. name: "Back",
  42182. image: {
  42183. source: "./media/characters/zorkaiju/back.svg",
  42184. extra: 1959/1821,
  42185. bottom: 31/1990
  42186. }
  42187. },
  42188. backExtended: {
  42189. height: math.unit(325, "feet"),
  42190. name: "Back (Extended)",
  42191. image: {
  42192. source: "./media/characters/zorkaiju/back-extended.svg",
  42193. extra: 1959/1821,
  42194. bottom: 31/1990
  42195. }
  42196. },
  42197. hand: {
  42198. height: math.unit(58.4, "feet"),
  42199. name: "Hand",
  42200. image: {
  42201. source: "./media/characters/zorkaiju/hand.svg"
  42202. }
  42203. },
  42204. handExtended: {
  42205. height: math.unit(61.4, "feet"),
  42206. name: "Hand (Extended)",
  42207. image: {
  42208. source: "./media/characters/zorkaiju/hand-extended.svg"
  42209. }
  42210. },
  42211. foot: {
  42212. height: math.unit(95, "feet"),
  42213. name: "Foot",
  42214. image: {
  42215. source: "./media/characters/zorkaiju/foot.svg"
  42216. }
  42217. },
  42218. leftArm: {
  42219. height: math.unit(59, "feet"),
  42220. name: "Left Arm",
  42221. image: {
  42222. source: "./media/characters/zorkaiju/left-arm.svg"
  42223. }
  42224. },
  42225. rightArm: {
  42226. height: math.unit(59, "feet"),
  42227. name: "Right Arm",
  42228. image: {
  42229. source: "./media/characters/zorkaiju/right-arm.svg"
  42230. }
  42231. },
  42232. leftArmExtended: {
  42233. height: math.unit(59 * 1.033546, "feet"),
  42234. name: "Left Arm (Extended)",
  42235. image: {
  42236. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42237. }
  42238. },
  42239. rightArmExtended: {
  42240. height: math.unit(59 * 1.0496, "feet"),
  42241. name: "Right Arm (Extended)",
  42242. image: {
  42243. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42244. }
  42245. },
  42246. tail: {
  42247. height: math.unit(104, "feet"),
  42248. name: "Tail",
  42249. image: {
  42250. source: "./media/characters/zorkaiju/tail.svg"
  42251. }
  42252. },
  42253. tailExtended: {
  42254. height: math.unit(104, "feet"),
  42255. name: "Tail (Extended)",
  42256. image: {
  42257. source: "./media/characters/zorkaiju/tail-extended.svg"
  42258. }
  42259. },
  42260. tailBottom: {
  42261. height: math.unit(104, "feet"),
  42262. name: "Tail Bottom",
  42263. image: {
  42264. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42265. }
  42266. },
  42267. crystal: {
  42268. height: math.unit(27.54, "feet"),
  42269. name: "Crystal",
  42270. image: {
  42271. source: "./media/characters/zorkaiju/crystal.svg"
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Kaiju",
  42278. height: math.unit(325, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(6 + 1/12, "feet"),
  42288. weight: math.unit(115, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/bailey-belfry/front.svg",
  42292. extra: 1240/1121,
  42293. bottom: 101/1341
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Normal",
  42300. height: math.unit(6 + 1/12, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42307. {
  42308. side: {
  42309. height: math.unit(4, "meters"),
  42310. weight: math.unit(250, "kg"),
  42311. name: "Side",
  42312. image: {
  42313. source: "./media/characters/blacky/side.svg",
  42314. extra: 1027/919,
  42315. bottom: 43/1070
  42316. }
  42317. },
  42318. maw: {
  42319. height: math.unit(1, "meters"),
  42320. name: "Maw",
  42321. image: {
  42322. source: "./media/characters/blacky/maw.svg"
  42323. }
  42324. },
  42325. paw: {
  42326. height: math.unit(1, "meters"),
  42327. name: "Paw",
  42328. image: {
  42329. source: "./media/characters/blacky/paw.svg"
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(4, "meters"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(170, "cm"),
  42346. weight: math.unit(66, "kg"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/thux-ei/front.svg",
  42350. extra: 1109/1011,
  42351. bottom: 8/1117
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(170, "cm"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(5, "feet"),
  42368. weight: math.unit(120, "lb"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/roxanne-voltaire/front.svg",
  42372. extra: 1901/1779,
  42373. bottom: 53/1954
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(5, "feet"),
  42381. default: true
  42382. },
  42383. {
  42384. name: "Giant",
  42385. height: math.unit(50, "feet")
  42386. },
  42387. {
  42388. name: "Titan",
  42389. height: math.unit(500, "feet")
  42390. },
  42391. {
  42392. name: "Macro",
  42393. height: math.unit(5000, "feet")
  42394. },
  42395. {
  42396. name: "Megamacro",
  42397. height: math.unit(50000, "feet")
  42398. },
  42399. {
  42400. name: "Gigamacro",
  42401. height: math.unit(500000, "feet")
  42402. },
  42403. {
  42404. name: "Teramacro",
  42405. height: math.unit(5e6, "feet")
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42411. {
  42412. front: {
  42413. height: math.unit(6 + 2/12, "feet"),
  42414. name: "Front",
  42415. image: {
  42416. source: "./media/characters/squeaks/front.svg",
  42417. extra: 1823/1768,
  42418. bottom: 138/1961
  42419. }
  42420. },
  42421. },
  42422. [
  42423. {
  42424. name: "Micro",
  42425. height: math.unit(0.5, "inches")
  42426. },
  42427. {
  42428. name: "Normal",
  42429. height: math.unit(6 + 2/12, "feet"),
  42430. default: true
  42431. },
  42432. {
  42433. name: "Macro",
  42434. height: math.unit(600, "feet")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42440. {
  42441. front: {
  42442. height: math.unit(1.72, "meters"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/archinger/front.svg",
  42446. extra: 1861/1675,
  42447. bottom: 125/1986
  42448. }
  42449. },
  42450. back: {
  42451. height: math.unit(1.72, "meters"),
  42452. name: "Back",
  42453. image: {
  42454. source: "./media/characters/archinger/back.svg",
  42455. extra: 1844/1701,
  42456. bottom: 104/1948
  42457. }
  42458. },
  42459. cock: {
  42460. height: math.unit(0.59, "feet"),
  42461. name: "Cock",
  42462. image: {
  42463. source: "./media/characters/archinger/cock.svg"
  42464. }
  42465. },
  42466. },
  42467. [
  42468. {
  42469. name: "Normal",
  42470. height: math.unit(1.72, "meters"),
  42471. default: true
  42472. },
  42473. {
  42474. name: "Macro",
  42475. height: math.unit(84, "meters")
  42476. },
  42477. {
  42478. name: "Macro+",
  42479. height: math.unit(112, "meters")
  42480. },
  42481. {
  42482. name: "Macro++",
  42483. height: math.unit(960, "meters")
  42484. },
  42485. {
  42486. name: "Macro+++",
  42487. height: math.unit(4, "km")
  42488. },
  42489. {
  42490. name: "Macro++++",
  42491. height: math.unit(48, "km")
  42492. },
  42493. {
  42494. name: "Macro+++++",
  42495. height: math.unit(4500, "km")
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(5 + 5/12, "feet"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/alsnapz/front.svg",
  42507. extra: 1157/1065,
  42508. bottom: 42/1199
  42509. }
  42510. },
  42511. },
  42512. [
  42513. {
  42514. name: "Normal",
  42515. height: math.unit(5 + 5/12, "feet"),
  42516. default: true
  42517. },
  42518. ]
  42519. ))
  42520. characterMakers.push(() => makeCharacter(
  42521. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42522. {
  42523. side: {
  42524. height: math.unit(3.2, "earths"),
  42525. name: "Side",
  42526. image: {
  42527. source: "./media/characters/mag/side.svg",
  42528. extra: 1331/1008,
  42529. bottom: 52/1383
  42530. }
  42531. },
  42532. wing: {
  42533. height: math.unit(1.94, "earths"),
  42534. name: "Wing",
  42535. image: {
  42536. source: "./media/characters/mag/wing.svg"
  42537. }
  42538. },
  42539. dick: {
  42540. height: math.unit(1.8, "earths"),
  42541. name: "Dick",
  42542. image: {
  42543. source: "./media/characters/mag/dick.svg"
  42544. }
  42545. },
  42546. ass: {
  42547. height: math.unit(1.33, "earths"),
  42548. name: "Ass",
  42549. image: {
  42550. source: "./media/characters/mag/ass.svg"
  42551. }
  42552. },
  42553. head: {
  42554. height: math.unit(1.1, "earths"),
  42555. name: "Head",
  42556. image: {
  42557. source: "./media/characters/mag/head.svg"
  42558. }
  42559. },
  42560. maw: {
  42561. height: math.unit(1.62, "earths"),
  42562. name: "Maw",
  42563. image: {
  42564. source: "./media/characters/mag/maw.svg"
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Small",
  42571. height: math.unit(162, "feet")
  42572. },
  42573. {
  42574. name: "Normal",
  42575. height: math.unit(3.2, "earths"),
  42576. default: true
  42577. },
  42578. ]
  42579. ))
  42580. characterMakers.push(() => makeCharacter(
  42581. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42582. {
  42583. front: {
  42584. height: math.unit(512, "feet"),
  42585. weight: math.unit(63509, "tonnes"),
  42586. name: "Front",
  42587. image: {
  42588. source: "./media/characters/vorrel-harroc/front.svg",
  42589. extra: 1075/1063,
  42590. bottom: 62/1137
  42591. }
  42592. },
  42593. },
  42594. [
  42595. {
  42596. name: "Normal",
  42597. height: math.unit(10, "feet")
  42598. },
  42599. {
  42600. name: "Macro",
  42601. height: math.unit(512, "feet"),
  42602. default: true
  42603. },
  42604. {
  42605. name: "Megamacro",
  42606. height: math.unit(256, "miles")
  42607. },
  42608. {
  42609. name: "Gigamacro",
  42610. height: math.unit(4096, "miles")
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42616. {
  42617. side: {
  42618. height: math.unit(50, "feet"),
  42619. name: "Side",
  42620. image: {
  42621. source: "./media/characters/froimar/side.svg",
  42622. extra: 855/638,
  42623. bottom: 99/954
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Macro",
  42630. height: math.unit(50, "feet"),
  42631. default: true
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(210, "miles"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/timothy/front.svg",
  42643. extra: 1007/943,
  42644. bottom: 62/1069
  42645. }
  42646. },
  42647. frontSkirt: {
  42648. height: math.unit(210, "miles"),
  42649. name: "Front (Skirt)",
  42650. image: {
  42651. source: "./media/characters/timothy/front-skirt.svg",
  42652. extra: 1007/943,
  42653. bottom: 62/1069
  42654. }
  42655. },
  42656. frontCoat: {
  42657. height: math.unit(210, "miles"),
  42658. name: "Front (Coat)",
  42659. image: {
  42660. source: "./media/characters/timothy/front-coat.svg",
  42661. extra: 1007/943,
  42662. bottom: 62/1069
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Macro",
  42669. height: math.unit(210, "miles"),
  42670. default: true
  42671. },
  42672. {
  42673. name: "Megamacro",
  42674. height: math.unit(210000, "miles")
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42680. {
  42681. front: {
  42682. height: math.unit(188, "feet"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/pyotr/front.svg",
  42686. extra: 1912/1826,
  42687. bottom: 18/1930
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Macro",
  42694. height: math.unit(188, "feet"),
  42695. default: true
  42696. },
  42697. {
  42698. name: "Megamacro",
  42699. height: math.unit(8, "miles")
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42705. {
  42706. side: {
  42707. height: math.unit(10, "feet"),
  42708. weight: math.unit(4500, "lb"),
  42709. name: "Side",
  42710. image: {
  42711. source: "./media/characters/ackart/side.svg",
  42712. extra: 1776/1668,
  42713. bottom: 116/1892
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Normal",
  42720. height: math.unit(10, "feet"),
  42721. default: true
  42722. },
  42723. ]
  42724. ))
  42725. characterMakers.push(() => makeCharacter(
  42726. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42727. {
  42728. side: {
  42729. height: math.unit(21, "feet"),
  42730. name: "Side",
  42731. image: {
  42732. source: "./media/characters/nolow/side.svg",
  42733. extra: 1484/1434,
  42734. bottom: 85/1569
  42735. }
  42736. },
  42737. sideErect: {
  42738. height: math.unit(21, "feet"),
  42739. name: "Side-erect",
  42740. image: {
  42741. source: "./media/characters/nolow/side-erect.svg",
  42742. extra: 1484/1434,
  42743. bottom: 85/1569
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Regular",
  42750. height: math.unit(12, "feet")
  42751. },
  42752. {
  42753. name: "Big Chee",
  42754. height: math.unit(21, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(7, "feet"),
  42764. weight: math.unit(250, "lb"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/nines/front.svg",
  42768. extra: 1741/1607,
  42769. bottom: 41/1782
  42770. }
  42771. },
  42772. side: {
  42773. height: math.unit(7, "feet"),
  42774. weight: math.unit(250, "lb"),
  42775. name: "Side",
  42776. image: {
  42777. source: "./media/characters/nines/side.svg",
  42778. extra: 1854/1735,
  42779. bottom: 93/1947
  42780. }
  42781. },
  42782. back: {
  42783. height: math.unit(7, "feet"),
  42784. weight: math.unit(250, "lb"),
  42785. name: "Back",
  42786. image: {
  42787. source: "./media/characters/nines/back.svg",
  42788. extra: 1748/1615,
  42789. bottom: 20/1768
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Megamacro",
  42796. height: math.unit(99, "km"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(5 + 10/12, "feet"),
  42806. weight: math.unit(210, "lb"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/zenith/front.svg",
  42810. extra: 1531/1452,
  42811. bottom: 198/1729
  42812. }
  42813. },
  42814. back: {
  42815. height: math.unit(5 + 10/12, "feet"),
  42816. weight: math.unit(210, "lb"),
  42817. name: "Back",
  42818. image: {
  42819. source: "./media/characters/zenith/back.svg",
  42820. extra: 1571/1487,
  42821. bottom: 75/1646
  42822. }
  42823. },
  42824. },
  42825. [
  42826. {
  42827. name: "Normal",
  42828. height: math.unit(5 + 10/12, "feet"),
  42829. default: true
  42830. }
  42831. ]
  42832. ))
  42833. characterMakers.push(() => makeCharacter(
  42834. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42835. {
  42836. front: {
  42837. height: math.unit(4, "feet"),
  42838. weight: math.unit(60, "lb"),
  42839. name: "Front",
  42840. image: {
  42841. source: "./media/characters/jasper/front.svg",
  42842. extra: 1450/1379,
  42843. bottom: 19/1469
  42844. }
  42845. },
  42846. },
  42847. [
  42848. {
  42849. name: "Normal",
  42850. height: math.unit(4, "feet"),
  42851. default: true
  42852. },
  42853. ]
  42854. ))
  42855. characterMakers.push(() => makeCharacter(
  42856. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42857. {
  42858. front: {
  42859. height: math.unit(6 + 5/12, "feet"),
  42860. weight: math.unit(290, "lb"),
  42861. name: "Front",
  42862. image: {
  42863. source: "./media/characters/tiberius-thyben/front.svg",
  42864. extra: 757/739,
  42865. bottom: 39/796
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Micro",
  42872. height: math.unit(1.5, "inches")
  42873. },
  42874. {
  42875. name: "Normal",
  42876. height: math.unit(6 + 5/12, "feet"),
  42877. default: true
  42878. },
  42879. {
  42880. name: "Macro",
  42881. height: math.unit(300, "feet")
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42887. {
  42888. front: {
  42889. height: math.unit(5 + 6/12, "feet"),
  42890. weight: math.unit(60, "kg"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/sabre/front.svg",
  42894. extra: 738/671,
  42895. bottom: 27/765
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Teeny",
  42902. height: math.unit(2, "inches")
  42903. },
  42904. {
  42905. name: "Smol",
  42906. height: math.unit(8, "inches")
  42907. },
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(5 + 6/12, "feet"),
  42911. default: true
  42912. },
  42913. {
  42914. name: "Mini-Macro",
  42915. height: math.unit(15, "feet")
  42916. },
  42917. {
  42918. name: "Macro",
  42919. height: math.unit(50, "feet")
  42920. },
  42921. ]
  42922. ))
  42923. characterMakers.push(() => makeCharacter(
  42924. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42925. {
  42926. front: {
  42927. height: math.unit(6 + 4/12, "feet"),
  42928. weight: math.unit(170, "lb"),
  42929. name: "Front",
  42930. image: {
  42931. source: "./media/characters/charlie/front.svg",
  42932. extra: 1348/1228,
  42933. bottom: 15/1363
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Macro",
  42940. height: math.unit(1700, "meters"),
  42941. default: true
  42942. },
  42943. {
  42944. name: "MegaMacro",
  42945. height: math.unit(20400, "meters")
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42951. {
  42952. front: {
  42953. height: math.unit(6 + 3/12, "feet"),
  42954. weight: math.unit(185, "lb"),
  42955. name: "Front",
  42956. image: {
  42957. source: "./media/characters/susan-grant/front.svg",
  42958. extra: 1351/1327,
  42959. bottom: 26/1377
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Normal",
  42966. height: math.unit(6 + 3/12, "feet"),
  42967. default: true
  42968. },
  42969. {
  42970. name: "Macro",
  42971. height: math.unit(225, "feet")
  42972. },
  42973. {
  42974. name: "Macro+",
  42975. height: math.unit(900, "feet")
  42976. },
  42977. {
  42978. name: "MegaMacro",
  42979. height: math.unit(14400, "feet")
  42980. },
  42981. ]
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42985. {
  42986. front: {
  42987. height: math.unit(5 + 4/12, "feet"),
  42988. weight: math.unit(110, "lb"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/axel-isanov/front.svg",
  42992. extra: 1096/1065,
  42993. bottom: 13/1109
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(5 + 4/12, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(9, "feet"),
  43010. weight: math.unit(467, "lb"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/necahual/front.svg",
  43014. extra: 920/873,
  43015. bottom: 26/946
  43016. }
  43017. },
  43018. back: {
  43019. height: math.unit(9, "feet"),
  43020. weight: math.unit(467, "lb"),
  43021. name: "Back",
  43022. image: {
  43023. source: "./media/characters/necahual/back.svg",
  43024. extra: 930/884,
  43025. bottom: 16/946
  43026. }
  43027. },
  43028. frontUnderwear: {
  43029. height: math.unit(9, "feet"),
  43030. weight: math.unit(467, "lb"),
  43031. name: "Front (Underwear)",
  43032. image: {
  43033. source: "./media/characters/necahual/front-underwear.svg",
  43034. extra: 920/873,
  43035. bottom: 26/946
  43036. }
  43037. },
  43038. frontDressed: {
  43039. height: math.unit(9, "feet"),
  43040. weight: math.unit(467, "lb"),
  43041. name: "Front (Dressed)",
  43042. image: {
  43043. source: "./media/characters/necahual/front-dressed.svg",
  43044. extra: 920/873,
  43045. bottom: 26/946
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Comprsesed",
  43052. height: math.unit(9, "feet")
  43053. },
  43054. {
  43055. name: "Natural",
  43056. height: math.unit(15, "feet"),
  43057. default: true
  43058. },
  43059. {
  43060. name: "Boosted",
  43061. height: math.unit(50, "feet")
  43062. },
  43063. {
  43064. name: "Boosted+",
  43065. height: math.unit(150, "feet")
  43066. },
  43067. {
  43068. name: "Max",
  43069. height: math.unit(500, "feet")
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43075. {
  43076. front: {
  43077. height: math.unit(22 + 1/12, "feet"),
  43078. weight: math.unit(3200, "lb"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/theo-acacia/front.svg",
  43082. extra: 1796/1741,
  43083. bottom: 83/1879
  43084. }
  43085. },
  43086. frontUnderwear: {
  43087. height: math.unit(22 + 1/12, "feet"),
  43088. weight: math.unit(3200, "lb"),
  43089. name: "Front (Underwear)",
  43090. image: {
  43091. source: "./media/characters/theo-acacia/front-underwear.svg",
  43092. extra: 1796/1741,
  43093. bottom: 83/1879
  43094. }
  43095. },
  43096. frontNude: {
  43097. height: math.unit(22 + 1/12, "feet"),
  43098. weight: math.unit(3200, "lb"),
  43099. name: "Front (Nude)",
  43100. image: {
  43101. source: "./media/characters/theo-acacia/front-nude.svg",
  43102. extra: 1796/1741,
  43103. bottom: 83/1879
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(22 + 1/12, "feet"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(20, "feet"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/astra/front.svg",
  43123. extra: 1850/1714,
  43124. bottom: 106/1956
  43125. }
  43126. },
  43127. frontUndressed: {
  43128. height: math.unit(20, "feet"),
  43129. name: "Front (Undressed)",
  43130. image: {
  43131. source: "./media/characters/astra/front-undressed.svg",
  43132. extra: 1926/1749,
  43133. bottom: 0/1926
  43134. }
  43135. },
  43136. hand: {
  43137. height: math.unit(1.53, "feet"),
  43138. name: "Hand",
  43139. image: {
  43140. source: "./media/characters/astra/hand.svg"
  43141. }
  43142. },
  43143. paw: {
  43144. height: math.unit(1.53, "feet"),
  43145. name: "Paw",
  43146. image: {
  43147. source: "./media/characters/astra/paw.svg"
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Smallest",
  43154. height: math.unit(20, "feet")
  43155. },
  43156. {
  43157. name: "Normal",
  43158. height: math.unit(1e9, "miles"),
  43159. default: true
  43160. },
  43161. {
  43162. name: "Larger",
  43163. height: math.unit(5, "multiverses")
  43164. },
  43165. {
  43166. name: "Largest",
  43167. height: math.unit(1e9, "multiverses")
  43168. },
  43169. ]
  43170. ))
  43171. characterMakers.push(() => makeCharacter(
  43172. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43173. {
  43174. front: {
  43175. height: math.unit(8, "feet"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/breanna/front.svg",
  43179. extra: 1912/1632,
  43180. bottom: 33/1945
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Smallest",
  43187. height: math.unit(8, "feet")
  43188. },
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(1, "mile"),
  43192. default: true
  43193. },
  43194. {
  43195. name: "Maximum",
  43196. height: math.unit(1500000000000, "lightyears")
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43202. {
  43203. front: {
  43204. height: math.unit(5 + 11/12, "feet"),
  43205. weight: math.unit(155, "lb"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/cai/front.svg",
  43209. extra: 1823/1702,
  43210. bottom: 32/1855
  43211. }
  43212. },
  43213. back: {
  43214. height: math.unit(5 + 11/12, "feet"),
  43215. weight: math.unit(155, "lb"),
  43216. name: "Back",
  43217. image: {
  43218. source: "./media/characters/cai/back.svg",
  43219. extra: 1809/1708,
  43220. bottom: 31/1840
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(5 + 11/12, "feet"),
  43228. default: true
  43229. },
  43230. {
  43231. name: "Big",
  43232. height: math.unit(15, "feet")
  43233. },
  43234. {
  43235. name: "Macro",
  43236. height: math.unit(200, "feet")
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43242. {
  43243. front: {
  43244. height: math.unit(5 + 6/12, "feet"),
  43245. weight: math.unit(160, "lb"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43249. extra: 1227/1174,
  43250. bottom: 37/1264
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Macro",
  43257. height: math.unit(444, "meters"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(18 + 7/12, "feet"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/rex/front.svg",
  43270. extra: 1941/1807,
  43271. bottom: 66/2007
  43272. }
  43273. },
  43274. back: {
  43275. height: math.unit(18 + 7/12, "feet"),
  43276. name: "Back",
  43277. image: {
  43278. source: "./media/characters/rex/back.svg",
  43279. extra: 1937/1822,
  43280. bottom: 42/1979
  43281. }
  43282. },
  43283. boot: {
  43284. height: math.unit(3.45, "feet"),
  43285. name: "Boot",
  43286. image: {
  43287. source: "./media/characters/rex/boot.svg"
  43288. }
  43289. },
  43290. paw: {
  43291. height: math.unit(4.17, "feet"),
  43292. name: "Paw",
  43293. image: {
  43294. source: "./media/characters/rex/paw.svg"
  43295. }
  43296. },
  43297. head: {
  43298. height: math.unit(6.728, "feet"),
  43299. name: "Head",
  43300. image: {
  43301. source: "./media/characters/rex/head.svg"
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Nano",
  43308. height: math.unit(18 + 7/12, "feet")
  43309. },
  43310. {
  43311. name: "Micro",
  43312. height: math.unit(1.5, "megameters")
  43313. },
  43314. {
  43315. name: "Normal",
  43316. height: math.unit(440, "megameters"),
  43317. default: true
  43318. },
  43319. {
  43320. name: "Macro",
  43321. height: math.unit(2.5, "gigameters")
  43322. },
  43323. {
  43324. name: "Gigamacro",
  43325. height: math.unit(2, "galaxies")
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43331. {
  43332. side: {
  43333. height: math.unit(32, "feet"),
  43334. weight: math.unit(250000, "lb"),
  43335. name: "Side",
  43336. image: {
  43337. source: "./media/characters/silverwing/side.svg",
  43338. extra: 1100/1019,
  43339. bottom: 204/1304
  43340. }
  43341. },
  43342. },
  43343. [
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(32, "feet"),
  43347. default: true
  43348. },
  43349. ]
  43350. ))
  43351. characterMakers.push(() => makeCharacter(
  43352. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43353. {
  43354. front: {
  43355. height: math.unit(6 + 6/12, "feet"),
  43356. weight: math.unit(350, "lb"),
  43357. name: "Front",
  43358. image: {
  43359. source: "./media/characters/tristan-hawthorne/front.svg",
  43360. extra: 1159/1124,
  43361. bottom: 37/1196
  43362. },
  43363. form: "labrador",
  43364. default: true
  43365. },
  43366. skunkFront: {
  43367. height: math.unit(4 + 6/12, "feet"),
  43368. weight: math.unit(120, "lb"),
  43369. name: "Front",
  43370. image: {
  43371. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43372. extra: 1609/1551,
  43373. bottom: 169/1778
  43374. },
  43375. form: "skunk",
  43376. default: true
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(6 + 6/12, "feet"),
  43383. form: "labrador",
  43384. default: true
  43385. },
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(4 + 6/12, "feet"),
  43389. form: "skunk",
  43390. default: true
  43391. },
  43392. ],
  43393. {
  43394. "labrador": {
  43395. name: "Labrador",
  43396. default: true
  43397. },
  43398. "skunk": {
  43399. name: "Skunk"
  43400. }
  43401. }
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43405. {
  43406. front: {
  43407. height: math.unit(5 + 11/12, "feet"),
  43408. weight: math.unit(190, "lb"),
  43409. name: "Front",
  43410. image: {
  43411. source: "./media/characters/mizu/front.svg",
  43412. extra: 1988/1788,
  43413. bottom: 14/2002
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(5 + 11/12, "feet"),
  43421. default: true
  43422. },
  43423. ]
  43424. ))
  43425. characterMakers.push(() => makeCharacter(
  43426. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43427. {
  43428. front: {
  43429. height: math.unit(1.7, "feet"),
  43430. weight: math.unit(50, "lb"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/dechroma/front.svg",
  43434. extra: 1095/859,
  43435. bottom: 64/1159
  43436. }
  43437. },
  43438. },
  43439. [
  43440. {
  43441. name: "Normal",
  43442. height: math.unit(1.7, "feet"),
  43443. default: true
  43444. },
  43445. ]
  43446. ))
  43447. characterMakers.push(() => makeCharacter(
  43448. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43449. {
  43450. side: {
  43451. height: math.unit(30, "feet"),
  43452. name: "Side",
  43453. image: {
  43454. source: "./media/characters/veluren-thanazel/side.svg",
  43455. extra: 1611/633,
  43456. bottom: 118/1729
  43457. }
  43458. },
  43459. front: {
  43460. height: math.unit(30, "feet"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/veluren-thanazel/front.svg",
  43464. extra: 1486/636,
  43465. bottom: 238/1724
  43466. }
  43467. },
  43468. head: {
  43469. height: math.unit(21.4, "feet"),
  43470. name: "Head",
  43471. image: {
  43472. source: "./media/characters/veluren-thanazel/head.svg"
  43473. }
  43474. },
  43475. genitals: {
  43476. height: math.unit(19.4, "feet"),
  43477. name: "Genitals",
  43478. image: {
  43479. source: "./media/characters/veluren-thanazel/genitals.svg"
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Social",
  43486. height: math.unit(6, "feet")
  43487. },
  43488. {
  43489. name: "Play",
  43490. height: math.unit(12, "feet")
  43491. },
  43492. {
  43493. name: "True",
  43494. height: math.unit(30, "feet"),
  43495. default: true
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43501. {
  43502. front: {
  43503. height: math.unit(7 + 6/12, "feet"),
  43504. weight: math.unit(500, "kg"),
  43505. name: "Front",
  43506. image: {
  43507. source: "./media/characters/arcturas/front.svg",
  43508. extra: 1700/1500,
  43509. bottom: 145/1845
  43510. }
  43511. },
  43512. },
  43513. [
  43514. {
  43515. name: "Normal",
  43516. height: math.unit(7 + 6/12, "feet"),
  43517. default: true
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43523. {
  43524. side: {
  43525. height: math.unit(6, "feet"),
  43526. weight: math.unit(2, "tons"),
  43527. name: "Side",
  43528. image: {
  43529. source: "./media/characters/vitaen/side.svg",
  43530. extra: 1157/617,
  43531. bottom: 122/1279
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(6, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(19, "feet"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/fia-dreamweaver/front.svg",
  43551. extra: 1630/1504,
  43552. bottom: 25/1655
  43553. }
  43554. },
  43555. },
  43556. [
  43557. {
  43558. name: "Normal",
  43559. height: math.unit(19, "feet"),
  43560. default: true
  43561. },
  43562. ]
  43563. ))
  43564. characterMakers.push(() => makeCharacter(
  43565. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43566. {
  43567. front: {
  43568. height: math.unit(5 + 4/12, "feet"),
  43569. name: "Front",
  43570. image: {
  43571. source: "./media/characters/artan/front.svg",
  43572. extra: 1618/1535,
  43573. bottom: 46/1664
  43574. }
  43575. },
  43576. back: {
  43577. height: math.unit(5 + 4/12, "feet"),
  43578. name: "Back",
  43579. image: {
  43580. source: "./media/characters/artan/back.svg",
  43581. extra: 1618/1543,
  43582. bottom: 31/1649
  43583. }
  43584. },
  43585. },
  43586. [
  43587. {
  43588. name: "Normal",
  43589. height: math.unit(5 + 4/12, "feet"),
  43590. default: true
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43596. {
  43597. side: {
  43598. height: math.unit(182, "cm"),
  43599. weight: math.unit(1000, "lb"),
  43600. name: "Side",
  43601. image: {
  43602. source: "./media/characters/silver-dragon/side.svg",
  43603. extra: 710/287,
  43604. bottom: 88/798
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Normal",
  43611. height: math.unit(182, "cm"),
  43612. default: true
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43618. {
  43619. side: {
  43620. height: math.unit(6 + 6/12, "feet"),
  43621. weight: math.unit(1.5, "tons"),
  43622. name: "Side",
  43623. image: {
  43624. source: "./media/characters/zephyr/side.svg",
  43625. extra: 1433/586,
  43626. bottom: 109/1542
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(6 + 6/12, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43640. {
  43641. side: {
  43642. height: math.unit(1, "feet"),
  43643. name: "Side",
  43644. image: {
  43645. source: "./media/characters/vixye/side.svg",
  43646. extra: 632/541,
  43647. bottom: 0/632
  43648. }
  43649. },
  43650. },
  43651. [
  43652. {
  43653. name: "Normal",
  43654. height: math.unit(1, "feet"),
  43655. default: true
  43656. },
  43657. {
  43658. name: "True",
  43659. height: math.unit(1e15, "multiverses")
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43665. {
  43666. front: {
  43667. height: math.unit(8 + 2/12, "feet"),
  43668. weight: math.unit(650, "lb"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43672. extra: 1174/1137,
  43673. bottom: 82/1256
  43674. }
  43675. },
  43676. back: {
  43677. height: math.unit(8 + 2/12, "feet"),
  43678. weight: math.unit(650, "lb"),
  43679. name: "Back",
  43680. image: {
  43681. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43682. extra: 1204/1157,
  43683. bottom: 46/1250
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Wildform",
  43690. height: math.unit(8 + 2/12, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(18, "feet"),
  43700. name: "Front",
  43701. image: {
  43702. source: "./media/characters/cyphin/front.svg",
  43703. extra: 970/886,
  43704. bottom: 42/1012
  43705. }
  43706. },
  43707. back: {
  43708. height: math.unit(18, "feet"),
  43709. name: "Back",
  43710. image: {
  43711. source: "./media/characters/cyphin/back.svg",
  43712. extra: 1009/894,
  43713. bottom: 24/1033
  43714. }
  43715. },
  43716. head: {
  43717. height: math.unit(5.05, "feet"),
  43718. name: "Head",
  43719. image: {
  43720. source: "./media/characters/cyphin/head.svg"
  43721. }
  43722. },
  43723. tailbud: {
  43724. height: math.unit(5, "feet"),
  43725. name: "Tailbud",
  43726. image: {
  43727. source: "./media/characters/cyphin/tailbud.svg"
  43728. }
  43729. },
  43730. },
  43731. [
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43736. {
  43737. side: {
  43738. height: math.unit(10, "feet"),
  43739. weight: math.unit(6, "tons"),
  43740. name: "Side",
  43741. image: {
  43742. source: "./media/characters/raijin/side.svg",
  43743. extra: 1529/613,
  43744. bottom: 337/1866
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Normal",
  43751. height: math.unit(10, "feet"),
  43752. default: true
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43758. {
  43759. side: {
  43760. height: math.unit(9, "feet"),
  43761. name: "Side",
  43762. image: {
  43763. source: "./media/characters/nilghais/side.svg",
  43764. extra: 1047/744,
  43765. bottom: 91/1138
  43766. }
  43767. },
  43768. head: {
  43769. height: math.unit(3.14, "feet"),
  43770. name: "Head",
  43771. image: {
  43772. source: "./media/characters/nilghais/head.svg"
  43773. }
  43774. },
  43775. mouth: {
  43776. height: math.unit(4.6, "feet"),
  43777. name: "Mouth",
  43778. image: {
  43779. source: "./media/characters/nilghais/mouth.svg"
  43780. }
  43781. },
  43782. wings: {
  43783. height: math.unit(24, "feet"),
  43784. name: "Wings",
  43785. image: {
  43786. source: "./media/characters/nilghais/wings.svg"
  43787. }
  43788. },
  43789. ass: {
  43790. height: math.unit(6.12, "feet"),
  43791. name: "Ass",
  43792. image: {
  43793. source: "./media/characters/nilghais/ass.svg"
  43794. }
  43795. },
  43796. },
  43797. [
  43798. {
  43799. name: "Normal",
  43800. height: math.unit(9, "feet"),
  43801. default: true
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43807. {
  43808. regular: {
  43809. height: math.unit(16 + 2/12, "feet"),
  43810. weight: math.unit(2300, "lb"),
  43811. name: "Regular",
  43812. image: {
  43813. source: "./media/characters/zolgar/regular.svg",
  43814. extra: 1246/1004,
  43815. bottom: 124/1370
  43816. }
  43817. },
  43818. boxers: {
  43819. height: math.unit(16 + 2/12, "feet"),
  43820. weight: math.unit(2300, "lb"),
  43821. name: "Boxers",
  43822. image: {
  43823. source: "./media/characters/zolgar/boxers.svg",
  43824. extra: 1246/1004,
  43825. bottom: 124/1370
  43826. }
  43827. },
  43828. armored: {
  43829. height: math.unit(16 + 2/12, "feet"),
  43830. weight: math.unit(2300, "lb"),
  43831. name: "Armored",
  43832. image: {
  43833. source: "./media/characters/zolgar/armored.svg",
  43834. extra: 1246/1004,
  43835. bottom: 124/1370
  43836. }
  43837. },
  43838. goth: {
  43839. height: math.unit(16 + 2/12, "feet"),
  43840. weight: math.unit(2300, "lb"),
  43841. name: "Goth",
  43842. image: {
  43843. source: "./media/characters/zolgar/goth.svg",
  43844. extra: 1246/1004,
  43845. bottom: 124/1370
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Shrunken Down",
  43852. height: math.unit(9 + 2/12, "feet")
  43853. },
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(16 + 2/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(6, "feet"),
  43866. weight: math.unit(168, "lb"),
  43867. name: "Front",
  43868. image: {
  43869. source: "./media/characters/luca/front.svg",
  43870. extra: 841/667,
  43871. bottom: 102/943
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Normal",
  43878. height: math.unit(6, "feet"),
  43879. default: true
  43880. },
  43881. ]
  43882. ))
  43883. characterMakers.push(() => makeCharacter(
  43884. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43885. {
  43886. side: {
  43887. height: math.unit(7 + 3/12, "feet"),
  43888. weight: math.unit(312, "lb"),
  43889. name: "Side",
  43890. image: {
  43891. source: "./media/characters/zezo/side.svg",
  43892. extra: 1192/1067,
  43893. bottom: 63/1255
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Normal",
  43900. height: math.unit(7 + 3/12, "feet"),
  43901. default: true
  43902. },
  43903. ]
  43904. ))
  43905. characterMakers.push(() => makeCharacter(
  43906. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43907. {
  43908. front: {
  43909. height: math.unit(5 + 5/12, "feet"),
  43910. weight: math.unit(170, "lb"),
  43911. name: "Front",
  43912. image: {
  43913. source: "./media/characters/mayso/front.svg",
  43914. extra: 1215/1108,
  43915. bottom: 16/1231
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Normal",
  43922. height: math.unit(5 + 5/12, "feet"),
  43923. default: true
  43924. },
  43925. ]
  43926. ))
  43927. characterMakers.push(() => makeCharacter(
  43928. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43929. {
  43930. front: {
  43931. height: math.unit(4 + 3/12, "feet"),
  43932. weight: math.unit(80, "lb"),
  43933. name: "Front",
  43934. image: {
  43935. source: "./media/characters/hess/front.svg",
  43936. extra: 1200/1123,
  43937. bottom: 16/1216
  43938. }
  43939. },
  43940. },
  43941. [
  43942. {
  43943. name: "Normal",
  43944. height: math.unit(4 + 3/12, "feet"),
  43945. default: true
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43951. {
  43952. front: {
  43953. height: math.unit(1.9, "meters"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/ashgar/front.svg",
  43957. extra: 1177/1146,
  43958. bottom: 99/1276
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(1.9, "meters"),
  43963. name: "Back",
  43964. image: {
  43965. source: "./media/characters/ashgar/back.svg",
  43966. extra: 1201/1183,
  43967. bottom: 53/1254
  43968. }
  43969. },
  43970. feral: {
  43971. height: math.unit(1.4, "meters"),
  43972. name: "Feral",
  43973. image: {
  43974. source: "./media/characters/ashgar/feral.svg",
  43975. extra: 370/345,
  43976. bottom: 45/415
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(1.9, "meters"),
  43984. default: true
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43990. {
  43991. regular: {
  43992. height: math.unit(6, "feet"),
  43993. weight: math.unit(220, "lb"),
  43994. name: "Regular",
  43995. image: {
  43996. source: "./media/characters/phillip/regular.svg",
  43997. extra: 1373/1277,
  43998. bottom: 75/1448
  43999. }
  44000. },
  44001. dressed: {
  44002. height: math.unit(6, "feet"),
  44003. weight: math.unit(220, "lb"),
  44004. name: "Dressed",
  44005. image: {
  44006. source: "./media/characters/phillip/dressed.svg",
  44007. extra: 1373/1277,
  44008. bottom: 75/1448
  44009. }
  44010. },
  44011. paw: {
  44012. height: math.unit(1.44, "feet"),
  44013. name: "Paw",
  44014. image: {
  44015. source: "./media/characters/phillip/paw.svg"
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(6, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44029. {
  44030. side: {
  44031. height: math.unit(42, "feet"),
  44032. name: "Side",
  44033. image: {
  44034. source: "./media/characters/uvula/side.svg",
  44035. extra: 683/586,
  44036. bottom: 60/743
  44037. }
  44038. },
  44039. front: {
  44040. height: math.unit(42, "feet"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/uvula/front.svg",
  44044. extra: 705/613,
  44045. bottom: 54/759
  44046. }
  44047. },
  44048. maw: {
  44049. height: math.unit(23.5, "feet"),
  44050. name: "Maw",
  44051. image: {
  44052. source: "./media/characters/uvula/maw.svg"
  44053. }
  44054. },
  44055. },
  44056. [
  44057. {
  44058. name: "Original Size",
  44059. height: math.unit(14, "inches")
  44060. },
  44061. {
  44062. name: "Human Size",
  44063. height: math.unit(6, "feet")
  44064. },
  44065. {
  44066. name: "Big",
  44067. height: math.unit(42, "feet"),
  44068. default: true
  44069. },
  44070. {
  44071. name: "Bigger",
  44072. height: math.unit(100, "feet")
  44073. },
  44074. ]
  44075. ))
  44076. characterMakers.push(() => makeCharacter(
  44077. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44078. {
  44079. front: {
  44080. height: math.unit(5 + 11/12, "feet"),
  44081. name: "Front",
  44082. image: {
  44083. source: "./media/characters/lannah/front.svg",
  44084. extra: 1208/1113,
  44085. bottom: 97/1305
  44086. }
  44087. },
  44088. },
  44089. [
  44090. {
  44091. name: "Normal",
  44092. height: math.unit(5 + 11/12, "feet"),
  44093. default: true
  44094. },
  44095. ]
  44096. ))
  44097. characterMakers.push(() => makeCharacter(
  44098. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44099. {
  44100. front: {
  44101. height: math.unit(6 + 3/12, "feet"),
  44102. weight: math.unit(3.5, "tons"),
  44103. name: "Front",
  44104. image: {
  44105. source: "./media/characters/emberflame/front.svg",
  44106. extra: 1198/672,
  44107. bottom: 82/1280
  44108. }
  44109. },
  44110. side: {
  44111. height: math.unit(6 + 3/12, "feet"),
  44112. weight: math.unit(3.5, "tons"),
  44113. name: "Side",
  44114. image: {
  44115. source: "./media/characters/emberflame/side.svg",
  44116. extra: 938/527,
  44117. bottom: 56/994
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(6 + 3/12, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44131. {
  44132. side: {
  44133. height: math.unit(17.5, "feet"),
  44134. weight: math.unit(35, "tons"),
  44135. name: "Side",
  44136. image: {
  44137. source: "./media/characters/sophie-ambrose/side.svg",
  44138. extra: 1573/1242,
  44139. bottom: 71/1644
  44140. }
  44141. },
  44142. maw: {
  44143. height: math.unit(7.4, "feet"),
  44144. name: "Maw",
  44145. image: {
  44146. source: "./media/characters/sophie-ambrose/maw.svg"
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(17.5, "feet"),
  44154. default: true
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44160. {
  44161. front: {
  44162. height: math.unit(280, "feet"),
  44163. weight: math.unit(550, "tons"),
  44164. name: "Front",
  44165. image: {
  44166. source: "./media/characters/king-mugi/front.svg",
  44167. extra: 1102/947,
  44168. bottom: 104/1206
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "King Mugi",
  44175. height: math.unit(280, "feet"),
  44176. default: true
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(64, "meters"),
  44185. name: "Front",
  44186. image: {
  44187. source: "./media/characters/nova-fox/front.svg",
  44188. extra: 1310/1246,
  44189. bottom: 65/1375
  44190. }
  44191. },
  44192. },
  44193. [
  44194. {
  44195. name: "Macro",
  44196. height: math.unit(64, "meters"),
  44197. default: true
  44198. },
  44199. ]
  44200. ))
  44201. characterMakers.push(() => makeCharacter(
  44202. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44203. {
  44204. front: {
  44205. height: math.unit(6 + 3/12, "feet"),
  44206. weight: math.unit(170, "lb"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/sam-bat/front.svg",
  44210. extra: 1601/1411,
  44211. bottom: 125/1726
  44212. }
  44213. },
  44214. back: {
  44215. height: math.unit(6 + 3/12, "feet"),
  44216. weight: math.unit(170, "lb"),
  44217. name: "Back",
  44218. image: {
  44219. source: "./media/characters/sam-bat/back.svg",
  44220. extra: 1577/1405,
  44221. bottom: 58/1635
  44222. }
  44223. },
  44224. },
  44225. [
  44226. {
  44227. name: "Normal",
  44228. height: math.unit(6 + 3/12, "feet"),
  44229. default: true
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44235. {
  44236. front: {
  44237. height: math.unit(59, "feet"),
  44238. weight: math.unit(40000, "lb"),
  44239. name: "Front",
  44240. image: {
  44241. source: "./media/characters/inari/front.svg",
  44242. extra: 1884/1350,
  44243. bottom: 95/1979
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Gigantamax",
  44250. height: math.unit(59, "feet"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(5 + 8/12, "feet"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/elizabeth/front.svg",
  44263. extra: 1395/1298,
  44264. bottom: 54/1449
  44265. }
  44266. },
  44267. mouth: {
  44268. height: math.unit(1.97, "feet"),
  44269. name: "Mouth",
  44270. image: {
  44271. source: "./media/characters/elizabeth/mouth.svg"
  44272. }
  44273. },
  44274. foot: {
  44275. height: math.unit(1.17, "feet"),
  44276. name: "Foot",
  44277. image: {
  44278. source: "./media/characters/elizabeth/foot.svg"
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Normal",
  44285. height: math.unit(5 + 8/12, "feet"),
  44286. default: true
  44287. },
  44288. {
  44289. name: "Minimacro",
  44290. height: math.unit(18, "feet")
  44291. },
  44292. {
  44293. name: "Macro",
  44294. height: math.unit(180, "feet")
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44300. {
  44301. front: {
  44302. height: math.unit(5 + 2/12, "feet"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/october-gossamer/front.svg",
  44306. extra: 505/454,
  44307. bottom: 7/512
  44308. }
  44309. },
  44310. back: {
  44311. height: math.unit(5 + 2/12, "feet"),
  44312. name: "Back",
  44313. image: {
  44314. source: "./media/characters/october-gossamer/back.svg",
  44315. extra: 501/454,
  44316. bottom: 11/512
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Normal",
  44323. height: math.unit(5 + 2/12, "feet"),
  44324. default: true
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(5, "feet"),
  44333. name: "Front",
  44334. image: {
  44335. source: "./media/characters/epiglottis/front.svg",
  44336. extra: 923/849,
  44337. bottom: 17/940
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Original Size",
  44344. height: math.unit(10, "inches")
  44345. },
  44346. {
  44347. name: "Human Size",
  44348. height: math.unit(5, "feet"),
  44349. default: true
  44350. },
  44351. {
  44352. name: "Big",
  44353. height: math.unit(25, "feet")
  44354. },
  44355. {
  44356. name: "Bigger",
  44357. height: math.unit(50, "feet")
  44358. },
  44359. {
  44360. name: "oh lawd",
  44361. height: math.unit(75, "feet")
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(2 + 4/12, "feet"),
  44370. weight: math.unit(60, "lb"),
  44371. name: "Front",
  44372. image: {
  44373. source: "./media/characters/lerm/front.svg",
  44374. extra: 796/790,
  44375. bottom: 79/875
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Normal",
  44382. height: math.unit(2 + 4/12, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(5.5, "feet"),
  44392. weight: math.unit(130, "lb"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/xena-nebadon/front.svg",
  44396. extra: 1828/1730,
  44397. bottom: 79/1907
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Tiny Puppy",
  44404. height: math.unit(3, "inches")
  44405. },
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(5.5, "feet"),
  44409. default: true
  44410. },
  44411. {
  44412. name: "Lotta Lady",
  44413. height: math.unit(12, "feet")
  44414. },
  44415. {
  44416. name: "Pretty Big",
  44417. height: math.unit(100, "feet")
  44418. },
  44419. {
  44420. name: "Big",
  44421. height: math.unit(500, "feet")
  44422. },
  44423. {
  44424. name: "Skyscraper Toys",
  44425. height: math.unit(2500, "feet")
  44426. },
  44427. {
  44428. name: "Plane Catcher",
  44429. height: math.unit(8, "miles")
  44430. },
  44431. {
  44432. name: "Planet Toys",
  44433. height: math.unit(15, "earths")
  44434. },
  44435. {
  44436. name: "Stardust",
  44437. height: math.unit(0.25, "galaxies")
  44438. },
  44439. {
  44440. name: "Snacks",
  44441. height: math.unit(70, "universes")
  44442. },
  44443. ]
  44444. ))
  44445. characterMakers.push(() => makeCharacter(
  44446. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44447. {
  44448. front: {
  44449. height: math.unit(1.6, "meters"),
  44450. weight: math.unit(60, "kg"),
  44451. name: "Front",
  44452. image: {
  44453. source: "./media/characters/bounty/front.svg",
  44454. extra: 1426/1308,
  44455. bottom: 15/1441
  44456. }
  44457. },
  44458. back: {
  44459. height: math.unit(1.6, "meters"),
  44460. weight: math.unit(60, "kg"),
  44461. name: "Back",
  44462. image: {
  44463. source: "./media/characters/bounty/back.svg",
  44464. extra: 1417/1307,
  44465. bottom: 8/1425
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(1.6, "meters"),
  44473. default: true
  44474. },
  44475. {
  44476. name: "Macro",
  44477. height: math.unit(300, "meters")
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44483. {
  44484. front: {
  44485. height: math.unit(2 + 8/12, "feet"),
  44486. weight: math.unit(15, "lb"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/mochi/front.svg",
  44490. extra: 1022/852,
  44491. bottom: 435/1457
  44492. }
  44493. },
  44494. back: {
  44495. height: math.unit(2 + 8/12, "feet"),
  44496. weight: math.unit(15, "lb"),
  44497. name: "Back",
  44498. image: {
  44499. source: "./media/characters/mochi/back.svg",
  44500. extra: 1335/1119,
  44501. bottom: 39/1374
  44502. }
  44503. },
  44504. bird: {
  44505. height: math.unit(2 + 8/12, "feet"),
  44506. weight: math.unit(15, "lb"),
  44507. name: "Bird",
  44508. image: {
  44509. source: "./media/characters/mochi/bird.svg",
  44510. extra: 1251/1113,
  44511. bottom: 178/1429
  44512. }
  44513. },
  44514. kaiju: {
  44515. height: math.unit(154, "feet"),
  44516. weight: math.unit(1e7, "lb"),
  44517. name: "Kaiju",
  44518. image: {
  44519. source: "./media/characters/mochi/kaiju.svg",
  44520. extra: 460/324,
  44521. bottom: 40/500
  44522. }
  44523. },
  44524. head: {
  44525. height: math.unit(1.21, "feet"),
  44526. name: "Head",
  44527. image: {
  44528. source: "./media/characters/mochi/head.svg"
  44529. }
  44530. },
  44531. alternateTail: {
  44532. height: math.unit(2 + 8/12, "feet"),
  44533. weight: math.unit(45, "lb"),
  44534. name: "Alternate Tail",
  44535. image: {
  44536. source: "./media/characters/mochi/alternate-tail.svg",
  44537. extra: 139/76,
  44538. bottom: 45/184
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Micro",
  44545. height: math.unit(2, "inches")
  44546. },
  44547. {
  44548. name: "Normal",
  44549. height: math.unit(2 + 8/12, "feet"),
  44550. default: true
  44551. },
  44552. {
  44553. name: "Macro",
  44554. height: math.unit(106, "feet")
  44555. },
  44556. ]
  44557. ))
  44558. characterMakers.push(() => makeCharacter(
  44559. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44560. {
  44561. front: {
  44562. height: math.unit(5.67, "feet"),
  44563. weight: math.unit(135, "lb"),
  44564. name: "Front",
  44565. image: {
  44566. source: "./media/characters/sarel/front.svg",
  44567. extra: 865/788,
  44568. bottom: 97/962
  44569. }
  44570. },
  44571. back: {
  44572. height: math.unit(5.67, "feet"),
  44573. weight: math.unit(135, "lb"),
  44574. name: "Back",
  44575. image: {
  44576. source: "./media/characters/sarel/back.svg",
  44577. extra: 857/777,
  44578. bottom: 32/889
  44579. }
  44580. },
  44581. chozoan: {
  44582. height: math.unit(5.67, "feet"),
  44583. weight: math.unit(135, "lb"),
  44584. name: "Chozoan",
  44585. image: {
  44586. source: "./media/characters/sarel/chozoan.svg",
  44587. extra: 865/788,
  44588. bottom: 97/962
  44589. }
  44590. },
  44591. current: {
  44592. height: math.unit(5.67, "feet"),
  44593. weight: math.unit(135, "lb"),
  44594. name: "Current",
  44595. image: {
  44596. source: "./media/characters/sarel/current.svg",
  44597. extra: 865/788,
  44598. bottom: 97/962
  44599. }
  44600. },
  44601. head: {
  44602. height: math.unit(1.77, "feet"),
  44603. name: "Head",
  44604. image: {
  44605. source: "./media/characters/sarel/head.svg"
  44606. }
  44607. },
  44608. claws: {
  44609. height: math.unit(1.8, "feet"),
  44610. name: "Claws",
  44611. image: {
  44612. source: "./media/characters/sarel/claws.svg"
  44613. }
  44614. },
  44615. clawsAlt: {
  44616. height: math.unit(1.8, "feet"),
  44617. name: "Claws-alt",
  44618. image: {
  44619. source: "./media/characters/sarel/claws-alt.svg"
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(5.67, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44633. {
  44634. front: {
  44635. height: math.unit(5500, "feet"),
  44636. name: "Front",
  44637. image: {
  44638. source: "./media/characters/alyonia/front.svg",
  44639. extra: 1200/1135,
  44640. bottom: 29/1229
  44641. }
  44642. },
  44643. back: {
  44644. height: math.unit(5500, "feet"),
  44645. name: "Back",
  44646. image: {
  44647. source: "./media/characters/alyonia/back.svg",
  44648. extra: 1205/1138,
  44649. bottom: 10/1215
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Small",
  44656. height: math.unit(10, "feet")
  44657. },
  44658. {
  44659. name: "Macro",
  44660. height: math.unit(500, "feet")
  44661. },
  44662. {
  44663. name: "Mega Macro",
  44664. height: math.unit(5500, "feet"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Mega Macro+",
  44669. height: math.unit(500000, "feet")
  44670. },
  44671. {
  44672. name: "Giga Macro",
  44673. height: math.unit(3000, "miles")
  44674. },
  44675. {
  44676. name: "Tera Macro",
  44677. height: math.unit(2.8e6, "miles")
  44678. },
  44679. {
  44680. name: "Galactic",
  44681. height: math.unit(120000, "lightyears")
  44682. },
  44683. ]
  44684. ))
  44685. characterMakers.push(() => makeCharacter(
  44686. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44687. {
  44688. werewolf: {
  44689. height: math.unit(8, "feet"),
  44690. weight: math.unit(425, "lb"),
  44691. name: "Werewolf",
  44692. image: {
  44693. source: "./media/characters/autumn/werewolf.svg",
  44694. extra: 2154/2031,
  44695. bottom: 160/2314
  44696. }
  44697. },
  44698. human: {
  44699. height: math.unit(5 + 8/12, "feet"),
  44700. weight: math.unit(150, "lb"),
  44701. name: "Human",
  44702. image: {
  44703. source: "./media/characters/autumn/human.svg",
  44704. extra: 1200/1149,
  44705. bottom: 30/1230
  44706. }
  44707. },
  44708. },
  44709. [
  44710. {
  44711. name: "Normal",
  44712. height: math.unit(8, "feet"),
  44713. default: true
  44714. },
  44715. ]
  44716. ))
  44717. characterMakers.push(() => makeCharacter(
  44718. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44719. {
  44720. front: {
  44721. height: math.unit(8 + 5/12, "feet"),
  44722. weight: math.unit(825, "lb"),
  44723. name: "Front",
  44724. image: {
  44725. source: "./media/characters/cobalt-charizard/front.svg",
  44726. extra: 1268/1155,
  44727. bottom: 122/1390
  44728. }
  44729. },
  44730. side: {
  44731. height: math.unit(8 + 5/12, "feet"),
  44732. weight: math.unit(825, "lb"),
  44733. name: "Side",
  44734. image: {
  44735. source: "./media/characters/cobalt-charizard/side.svg",
  44736. extra: 1348/1257,
  44737. bottom: 58/1406
  44738. }
  44739. },
  44740. gMax: {
  44741. height: math.unit(134 + 11/12, "feet"),
  44742. name: "G-Max",
  44743. image: {
  44744. source: "./media/characters/cobalt-charizard/g-max.svg",
  44745. extra: 1835/1541,
  44746. bottom: 151/1986
  44747. }
  44748. },
  44749. },
  44750. [
  44751. {
  44752. name: "Normal",
  44753. height: math.unit(8 + 5/12, "feet"),
  44754. default: true
  44755. },
  44756. ]
  44757. ))
  44758. characterMakers.push(() => makeCharacter(
  44759. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44760. {
  44761. front: {
  44762. height: math.unit(6 + 3/12, "feet"),
  44763. weight: math.unit(210, "lb"),
  44764. name: "Front",
  44765. image: {
  44766. source: "./media/characters/stella/front.svg",
  44767. extra: 3549/3335,
  44768. bottom: 51/3600
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Normal",
  44775. height: math.unit(6 + 3/12, "feet"),
  44776. default: true
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44782. {
  44783. front: {
  44784. height: math.unit(5, "feet"),
  44785. weight: math.unit(90, "lb"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/riley-bishop/front.svg",
  44789. extra: 1450/1428,
  44790. bottom: 152/1602
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Normal",
  44797. height: math.unit(5, "feet"),
  44798. default: true
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44804. {
  44805. side: {
  44806. height: math.unit(8 + 2/12, "feet"),
  44807. weight: math.unit(500, "kg"),
  44808. name: "Side",
  44809. image: {
  44810. source: "./media/characters/theo-arcanine/side.svg",
  44811. extra: 1342/1074,
  44812. bottom: 111/1453
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(8 + 2/12, "feet"),
  44820. default: true
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(4, "feet"),
  44829. name: "Front",
  44830. image: {
  44831. source: "./media/characters/kali/front.svg",
  44832. extra: 1921/1357,
  44833. bottom: 70/1991
  44834. }
  44835. },
  44836. },
  44837. [
  44838. {
  44839. name: "Normal",
  44840. height: math.unit(4, "feet"),
  44841. default: true
  44842. },
  44843. {
  44844. name: "Macro",
  44845. height: math.unit(32, "meters")
  44846. },
  44847. {
  44848. name: "Macro+",
  44849. height: math.unit(150, "meters")
  44850. },
  44851. {
  44852. name: "Megamacro",
  44853. height: math.unit(7500, "meters")
  44854. },
  44855. {
  44856. name: "Megamacro+",
  44857. height: math.unit(80, "kilometers")
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44863. {
  44864. side: {
  44865. height: math.unit(5 + 11/12, "feet"),
  44866. weight: math.unit(236, "lb"),
  44867. name: "Side",
  44868. image: {
  44869. source: "./media/characters/gapp/side.svg",
  44870. extra: 775/340,
  44871. bottom: 58/833
  44872. }
  44873. },
  44874. mouth: {
  44875. height: math.unit(2.98, "feet"),
  44876. name: "Mouth",
  44877. image: {
  44878. source: "./media/characters/gapp/mouth.svg"
  44879. }
  44880. },
  44881. },
  44882. [
  44883. {
  44884. name: "Normal",
  44885. height: math.unit(5 + 1/12, "feet"),
  44886. default: true
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44892. {
  44893. front: {
  44894. height: math.unit(6, "feet"),
  44895. name: "Front",
  44896. image: {
  44897. source: "./media/characters/persephone/front.svg",
  44898. extra: 1895/1717,
  44899. bottom: 96/1991
  44900. }
  44901. },
  44902. back: {
  44903. height: math.unit(6, "feet"),
  44904. name: "Back",
  44905. image: {
  44906. source: "./media/characters/persephone/back.svg",
  44907. extra: 1868/1679,
  44908. bottom: 26/1894
  44909. }
  44910. },
  44911. casual: {
  44912. height: math.unit(6, "feet"),
  44913. name: "Casual",
  44914. image: {
  44915. source: "./media/characters/persephone/casual.svg",
  44916. extra: 1713/1541,
  44917. bottom: 76/1789
  44918. }
  44919. },
  44920. },
  44921. [
  44922. {
  44923. name: "Human Size",
  44924. height: math.unit(6, "feet")
  44925. },
  44926. {
  44927. name: "Big Steppy",
  44928. height: math.unit(600, "meters"),
  44929. default: true
  44930. },
  44931. {
  44932. name: "Galaxy Brain",
  44933. height: math.unit(1, "zettameter")
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(1.85, "meters"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/riley-foxthing/front.svg",
  44945. extra: 1495/1354,
  44946. bottom: 122/1617
  44947. }
  44948. },
  44949. frontAlt: {
  44950. height: math.unit(1.85, "meters"),
  44951. name: "Front (Alt)",
  44952. image: {
  44953. source: "./media/characters/riley-foxthing/front-alt.svg",
  44954. extra: 1572/1389,
  44955. bottom: 116/1688
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal Sized",
  44962. height: math.unit(1.85, "meters"),
  44963. default: true
  44964. },
  44965. {
  44966. name: "Quite Sizable",
  44967. height: math.unit(5, "meters")
  44968. },
  44969. {
  44970. name: "Rather Large",
  44971. height: math.unit(20, "meters")
  44972. },
  44973. {
  44974. name: "Macro",
  44975. height: math.unit(450, "meters")
  44976. },
  44977. {
  44978. name: "Giga",
  44979. height: math.unit(5, "km")
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44985. {
  44986. front: {
  44987. height: math.unit(6, "feet"),
  44988. weight: math.unit(200, "lb"),
  44989. name: "Front",
  44990. image: {
  44991. source: "./media/characters/blizzard/front.svg",
  44992. extra: 1136/990,
  44993. bottom: 136/1272
  44994. }
  44995. },
  44996. back: {
  44997. height: math.unit(6, "feet"),
  44998. weight: math.unit(200, "lb"),
  44999. name: "Back",
  45000. image: {
  45001. source: "./media/characters/blizzard/back.svg",
  45002. extra: 1175/1034,
  45003. bottom: 97/1272
  45004. }
  45005. },
  45006. sitting: {
  45007. height: math.unit(3.725, "feet"),
  45008. weight: math.unit(200, "lb"),
  45009. name: "Sitting",
  45010. image: {
  45011. source: "./media/characters/blizzard/sitting.svg",
  45012. extra: 581/485,
  45013. bottom: 90/671
  45014. }
  45015. },
  45016. frontWizard: {
  45017. height: math.unit(7.9, "feet"),
  45018. weight: math.unit(200, "lb"),
  45019. name: "Front (Wizard)",
  45020. image: {
  45021. source: "./media/characters/blizzard/front-wizard.svg"
  45022. }
  45023. },
  45024. backWizard: {
  45025. height: math.unit(7.9, "feet"),
  45026. weight: math.unit(200, "lb"),
  45027. name: "Back (Wizard)",
  45028. image: {
  45029. source: "./media/characters/blizzard/back-wizard.svg"
  45030. }
  45031. },
  45032. frontNsfw: {
  45033. height: math.unit(6, "feet"),
  45034. weight: math.unit(200, "lb"),
  45035. name: "Front (NSFW)",
  45036. image: {
  45037. source: "./media/characters/blizzard/front-nsfw.svg",
  45038. extra: 1136/990,
  45039. bottom: 136/1272
  45040. }
  45041. },
  45042. backNsfw: {
  45043. height: math.unit(6, "feet"),
  45044. weight: math.unit(200, "lb"),
  45045. name: "Back (NSFW)",
  45046. image: {
  45047. source: "./media/characters/blizzard/back-nsfw.svg",
  45048. extra: 1175/1034,
  45049. bottom: 97/1272
  45050. }
  45051. },
  45052. sittingNsfw: {
  45053. height: math.unit(3.725, "feet"),
  45054. weight: math.unit(200, "lb"),
  45055. name: "Sitting (NSFW)",
  45056. image: {
  45057. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45058. extra: 581/485,
  45059. bottom: 90/671
  45060. }
  45061. },
  45062. wizardFrontNsfw: {
  45063. height: math.unit(7.9, "feet"),
  45064. weight: math.unit(200, "lb"),
  45065. name: "Wizard (Front, NSFW)",
  45066. image: {
  45067. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Normal",
  45074. height: math.unit(6, "feet"),
  45075. default: true
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45081. {
  45082. front: {
  45083. height: math.unit(5 + 2/12, "feet"),
  45084. name: "Front",
  45085. image: {
  45086. source: "./media/characters/lumi/front.svg",
  45087. extra: 1328/1268,
  45088. bottom: 103/1431
  45089. }
  45090. },
  45091. back: {
  45092. height: math.unit(5 + 2/12, "feet"),
  45093. name: "Back",
  45094. image: {
  45095. source: "./media/characters/lumi/back.svg",
  45096. extra: 1381/1327,
  45097. bottom: 43/1424
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(5 + 2/12, "feet"),
  45105. default: true
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45111. {
  45112. front: {
  45113. height: math.unit(5 + 9/12, "feet"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/aliya-cotton/front.svg",
  45117. extra: 577/564,
  45118. bottom: 29/606
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(5 + 9/12, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45132. {
  45133. front: {
  45134. height: math.unit(2.7, "meters"),
  45135. weight: math.unit(25000, "lb"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/noah-luxray/front.svg",
  45139. extra: 1644/825,
  45140. bottom: 339/1983
  45141. }
  45142. },
  45143. side: {
  45144. height: math.unit(2.97, "meters"),
  45145. weight: math.unit(25000, "lb"),
  45146. name: "Side",
  45147. image: {
  45148. source: "./media/characters/noah-luxray/side.svg",
  45149. extra: 1319/650,
  45150. bottom: 163/1482
  45151. }
  45152. },
  45153. dick: {
  45154. height: math.unit(7.4, "feet"),
  45155. weight: math.unit(2500, "lb"),
  45156. name: "Dick",
  45157. image: {
  45158. source: "./media/characters/noah-luxray/dick.svg"
  45159. }
  45160. },
  45161. dickAlt: {
  45162. height: math.unit(10.83, "feet"),
  45163. weight: math.unit(2500, "lb"),
  45164. name: "Dick-alt",
  45165. image: {
  45166. source: "./media/characters/noah-luxray/dick-alt.svg"
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "BIG",
  45173. height: math.unit(2.7, "meters"),
  45174. default: true
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45180. {
  45181. standing: {
  45182. height: math.unit(183, "cm"),
  45183. weight: math.unit(68, "kg"),
  45184. name: "Standing",
  45185. image: {
  45186. source: "./media/characters/arion/standing.svg",
  45187. extra: 1869/1807,
  45188. bottom: 93/1962
  45189. }
  45190. },
  45191. reclining: {
  45192. height: math.unit(70.5, "cm"),
  45193. weight: math.unit(68, "lb"),
  45194. name: "Reclining",
  45195. image: {
  45196. source: "./media/characters/arion/reclining.svg",
  45197. extra: 937/870,
  45198. bottom: 63/1000
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Colossus Size, Low",
  45205. height: math.unit(33, "meters"),
  45206. default: true
  45207. },
  45208. {
  45209. name: "Colossus Size, Mid",
  45210. height: math.unit(52, "meters")
  45211. },
  45212. {
  45213. name: "Colossus Size, High",
  45214. height: math.unit(60, "meters")
  45215. },
  45216. {
  45217. name: "Titan Size, Low",
  45218. height: math.unit(91, "meters"),
  45219. },
  45220. {
  45221. name: "Titan Size, Mid",
  45222. height: math.unit(122, "meters")
  45223. },
  45224. {
  45225. name: "Titan Size, High",
  45226. height: math.unit(162, "meters")
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(53, "meters"),
  45235. name: "Front",
  45236. image: {
  45237. source: "./media/characters/stellar-marbey/front.svg",
  45238. extra: 1913/1805,
  45239. bottom: 92/2005
  45240. }
  45241. },
  45242. back: {
  45243. height: math.unit(53, "meters"),
  45244. name: "Back",
  45245. image: {
  45246. source: "./media/characters/stellar-marbey/back.svg",
  45247. extra: 1960/1851,
  45248. bottom: 28/1988
  45249. }
  45250. },
  45251. mouth: {
  45252. height: math.unit(3.5, "meters"),
  45253. name: "Mouth",
  45254. image: {
  45255. source: "./media/characters/stellar-marbey/mouth.svg"
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Macro",
  45262. height: math.unit(53, "meters"),
  45263. default: true
  45264. },
  45265. ]
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45269. {
  45270. front: {
  45271. height: math.unit(8 + 1/12, "feet"),
  45272. weight: math.unit(233, "lb"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/matsu/front.svg",
  45276. extra: 832/772,
  45277. bottom: 40/872
  45278. }
  45279. },
  45280. back: {
  45281. height: math.unit(8 + 1/12, "feet"),
  45282. weight: math.unit(233, "lb"),
  45283. name: "Back",
  45284. image: {
  45285. source: "./media/characters/matsu/back.svg",
  45286. extra: 839/780,
  45287. bottom: 47/886
  45288. }
  45289. },
  45290. },
  45291. [
  45292. {
  45293. name: "Normal",
  45294. height: math.unit(8 + 1/12, "feet"),
  45295. default: true
  45296. },
  45297. ]
  45298. ))
  45299. characterMakers.push(() => makeCharacter(
  45300. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45301. {
  45302. front: {
  45303. height: math.unit(4, "feet"),
  45304. weight: math.unit(148, "lb"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/thiz/front.svg",
  45308. extra: 1913/1748,
  45309. bottom: 62/1975
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(4, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(7 + 6/12, "feet"),
  45326. weight: math.unit(267, "lb"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/marcel/front.svg",
  45330. extra: 1221/1096,
  45331. bottom: 76/1297
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(7 + 6/12, "feet"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45345. {
  45346. side: {
  45347. height: math.unit(42, "meters"),
  45348. name: "Side",
  45349. image: {
  45350. source: "./media/characters/flake/side.svg",
  45351. extra: 1525/1306,
  45352. bottom: 209/1734
  45353. }
  45354. },
  45355. },
  45356. [
  45357. {
  45358. name: "Normal",
  45359. height: math.unit(42, "meters"),
  45360. default: true
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45366. {
  45367. dressed: {
  45368. height: math.unit(6 + 4/12, "feet"),
  45369. weight: math.unit(520, "lb"),
  45370. name: "Dressed",
  45371. image: {
  45372. source: "./media/characters/someonne/dressed.svg",
  45373. extra: 1020/1010,
  45374. bottom: 178/1198
  45375. }
  45376. },
  45377. undressed: {
  45378. height: math.unit(6 + 4/12, "feet"),
  45379. weight: math.unit(520, "lb"),
  45380. name: "Undressed",
  45381. image: {
  45382. source: "./media/characters/someonne/undressed.svg",
  45383. extra: 1019/1014,
  45384. bottom: 169/1188
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Normal",
  45391. height: math.unit(6 + 4/12, "feet"),
  45392. default: true
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45398. {
  45399. front: {
  45400. height: math.unit(3, "feet"),
  45401. weight: math.unit(30, "lb"),
  45402. name: "Front",
  45403. image: {
  45404. source: "./media/characters/till/front.svg",
  45405. extra: 892/823,
  45406. bottom: 55/947
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(3, "feet"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(9 + 8/12, "feet"),
  45423. weight: math.unit(800, "lb"),
  45424. name: "Front",
  45425. image: {
  45426. source: "./media/characters/sydney-heki/front.svg",
  45427. extra: 1360/1300,
  45428. bottom: 22/1382
  45429. }
  45430. },
  45431. back: {
  45432. height: math.unit(9 + 8/12, "feet"),
  45433. weight: math.unit(800, "lb"),
  45434. name: "Back",
  45435. image: {
  45436. source: "./media/characters/sydney-heki/back.svg",
  45437. extra: 1356/1293,
  45438. bottom: 12/1368
  45439. }
  45440. },
  45441. frontDressed: {
  45442. height: math.unit(9 + 8/12, "feet"),
  45443. weight: math.unit(800, "lb"),
  45444. name: "Front-dressed",
  45445. image: {
  45446. source: "./media/characters/sydney-heki/front-dressed.svg",
  45447. extra: 1360/1300,
  45448. bottom: 22/1382
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(9 + 8/12, "feet"),
  45456. default: true
  45457. },
  45458. {
  45459. name: "Macro",
  45460. height: math.unit(500, "feet")
  45461. },
  45462. {
  45463. name: "Megamacro",
  45464. height: math.unit(3.6, "miles")
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(200, "cm"),
  45473. weight: math.unit(250, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/fowler-karlsson/front.svg",
  45477. extra: 897/845,
  45478. bottom: 123/1020
  45479. }
  45480. },
  45481. back: {
  45482. height: math.unit(200, "cm"),
  45483. weight: math.unit(250, "lb"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/fowler-karlsson/back.svg",
  45487. extra: 999/944,
  45488. bottom: 26/1025
  45489. }
  45490. },
  45491. dick: {
  45492. height: math.unit(1.92, "feet"),
  45493. weight: math.unit(150, "lb"),
  45494. name: "Dick",
  45495. image: {
  45496. source: "./media/characters/fowler-karlsson/dick.svg"
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(200, "cm"),
  45504. default: true
  45505. },
  45506. {
  45507. name: "Smaller Macro",
  45508. height: math.unit(90, "m")
  45509. },
  45510. {
  45511. name: "Macro",
  45512. height: math.unit(150, "m")
  45513. },
  45514. {
  45515. name: "Bigger Macro",
  45516. height: math.unit(300, "m")
  45517. },
  45518. ]
  45519. ))
  45520. characterMakers.push(() => makeCharacter(
  45521. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45522. {
  45523. side: {
  45524. height: math.unit(8 + 2/12, "feet"),
  45525. weight: math.unit(1, "tonne"),
  45526. name: "Side",
  45527. image: {
  45528. source: "./media/characters/rylide/side.svg",
  45529. extra: 1318/1034,
  45530. bottom: 106/1424
  45531. }
  45532. },
  45533. sitting: {
  45534. height: math.unit(303, "cm"),
  45535. weight: math.unit(1, "tonne"),
  45536. name: "Sitting",
  45537. image: {
  45538. source: "./media/characters/rylide/sitting.svg",
  45539. extra: 1303/1103,
  45540. bottom: 36/1339
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(8 + 2/12, "feet"),
  45548. default: true
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45554. {
  45555. front: {
  45556. height: math.unit(5 + 10/12, "feet"),
  45557. weight: math.unit(160, "lb"),
  45558. name: "Front",
  45559. image: {
  45560. source: "./media/characters/pudask/front.svg",
  45561. extra: 1616/1590,
  45562. bottom: 161/1777
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Ferret Height",
  45569. height: math.unit(2 + 5/12, "feet")
  45570. },
  45571. {
  45572. name: "Canon Height",
  45573. height: math.unit(5 + 10/12, "feet"),
  45574. default: true
  45575. },
  45576. ]
  45577. ))
  45578. characterMakers.push(() => makeCharacter(
  45579. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45580. {
  45581. front: {
  45582. height: math.unit(3 + 6/12, "feet"),
  45583. weight: math.unit(60, "lb"),
  45584. name: "Front",
  45585. image: {
  45586. source: "./media/characters/ramita/front.svg",
  45587. extra: 1402/1232,
  45588. bottom: 62/1464
  45589. }
  45590. },
  45591. dressed: {
  45592. height: math.unit(3 + 6/12, "feet"),
  45593. weight: math.unit(60, "lb"),
  45594. name: "Dressed",
  45595. image: {
  45596. source: "./media/characters/ramita/dressed.svg",
  45597. extra: 1534/1249,
  45598. bottom: 50/1584
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(3 + 6/12, "feet"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(8, "feet"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/ark/front.svg",
  45618. extra: 772/693,
  45619. bottom: 45/817
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Normal",
  45626. height: math.unit(8, "feet"),
  45627. default: true
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45633. {
  45634. front: {
  45635. height: math.unit(6, "feet"),
  45636. weight: math.unit(250, "lb"),
  45637. volume: math.unit(5/8, "gallons"),
  45638. name: "Front",
  45639. image: {
  45640. source: "./media/characters/ludwig-horn/front.svg",
  45641. extra: 1782/1635,
  45642. bottom: 96/1878
  45643. }
  45644. },
  45645. back: {
  45646. height: math.unit(6, "feet"),
  45647. weight: math.unit(250, "lb"),
  45648. volume: math.unit(5/8, "gallons"),
  45649. name: "Back",
  45650. image: {
  45651. source: "./media/characters/ludwig-horn/back.svg",
  45652. extra: 1874/1729,
  45653. bottom: 27/1901
  45654. }
  45655. },
  45656. dick: {
  45657. height: math.unit(1.05, "feet"),
  45658. weight: math.unit(15, "lb"),
  45659. volume: math.unit(5/8, "gallons"),
  45660. name: "Dick",
  45661. image: {
  45662. source: "./media/characters/ludwig-horn/dick.svg"
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Small",
  45669. height: math.unit(6, "feet")
  45670. },
  45671. {
  45672. name: "Typical",
  45673. height: math.unit(12, "feet"),
  45674. default: true
  45675. },
  45676. {
  45677. name: "Building",
  45678. height: math.unit(80, "feet")
  45679. },
  45680. {
  45681. name: "Town",
  45682. height: math.unit(800, "feet")
  45683. },
  45684. {
  45685. name: "Kingdom",
  45686. height: math.unit(80000, "feet")
  45687. },
  45688. {
  45689. name: "Planet",
  45690. height: math.unit(8000000, "feet")
  45691. },
  45692. {
  45693. name: "Universe",
  45694. height: math.unit(8000000000, "feet")
  45695. },
  45696. {
  45697. name: "Transcended",
  45698. height: math.unit(8e27, "feet")
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45704. {
  45705. front: {
  45706. height: math.unit(5, "feet"),
  45707. weight: math.unit(50, "kg"),
  45708. name: "Front",
  45709. image: {
  45710. source: "./media/characters/biot-avery/front.svg",
  45711. extra: 1295/1232,
  45712. bottom: 86/1381
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(5, "feet"),
  45720. default: true
  45721. },
  45722. ]
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45726. {
  45727. front: {
  45728. height: math.unit(6, "feet"),
  45729. name: "Front",
  45730. image: {
  45731. source: "./media/characters/kitsune-kiro/front.svg",
  45732. extra: 1270/1158,
  45733. bottom: 42/1312
  45734. }
  45735. },
  45736. frontAlt: {
  45737. height: math.unit(6, "feet"),
  45738. name: "Front-alt",
  45739. image: {
  45740. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45741. extra: 1130/1081,
  45742. bottom: 36/1166
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Smol",
  45749. height: math.unit(3, "feet")
  45750. },
  45751. {
  45752. name: "Normal",
  45753. height: math.unit(6, "feet"),
  45754. default: true
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45760. {
  45761. front: {
  45762. height: math.unit(6, "feet"),
  45763. weight: math.unit(125, "lb"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/jack-thatcher/front.svg",
  45767. extra: 1474/1370,
  45768. bottom: 26/1500
  45769. }
  45770. },
  45771. back: {
  45772. height: math.unit(6, "feet"),
  45773. weight: math.unit(125, "lb"),
  45774. name: "Back",
  45775. image: {
  45776. source: "./media/characters/jack-thatcher/back.svg",
  45777. extra: 1489/1384,
  45778. bottom: 18/1507
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Normal",
  45785. height: math.unit(6, "feet"),
  45786. default: true
  45787. },
  45788. {
  45789. name: "Macro",
  45790. height: math.unit(75, "feet")
  45791. },
  45792. {
  45793. name: "Macro-er",
  45794. height: math.unit(250, "feet")
  45795. },
  45796. ]
  45797. ))
  45798. characterMakers.push(() => makeCharacter(
  45799. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45800. {
  45801. front: {
  45802. height: math.unit(7, "feet"),
  45803. weight: math.unit(110, "kg"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/max-hyper/front.svg",
  45807. extra: 1969/1881,
  45808. bottom: 49/2018
  45809. }
  45810. },
  45811. },
  45812. [
  45813. {
  45814. name: "Normal",
  45815. height: math.unit(7, "feet"),
  45816. default: true
  45817. },
  45818. ]
  45819. ))
  45820. characterMakers.push(() => makeCharacter(
  45821. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45822. {
  45823. front: {
  45824. height: math.unit(5 + 5/12, "feet"),
  45825. weight: math.unit(160, "lb"),
  45826. name: "Front",
  45827. image: {
  45828. source: "./media/characters/spook/front.svg",
  45829. extra: 794/791,
  45830. bottom: 54/848
  45831. }
  45832. },
  45833. back: {
  45834. height: math.unit(5 + 5/12, "feet"),
  45835. weight: math.unit(160, "lb"),
  45836. name: "Back",
  45837. image: {
  45838. source: "./media/characters/spook/back.svg",
  45839. extra: 812/798,
  45840. bottom: 32/844
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(5 + 5/12, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(18, "feet"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/xeaduulix/front.svg",
  45860. extra: 1380/1166,
  45861. bottom: 110/1490
  45862. }
  45863. },
  45864. back: {
  45865. height: math.unit(18, "feet"),
  45866. name: "Back",
  45867. image: {
  45868. source: "./media/characters/xeaduulix/back.svg",
  45869. extra: 1592/1170,
  45870. bottom: 128/1720
  45871. }
  45872. },
  45873. frontNsfw: {
  45874. height: math.unit(18, "feet"),
  45875. name: "Front (NSFW)",
  45876. image: {
  45877. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45878. extra: 1380/1166,
  45879. bottom: 110/1490
  45880. }
  45881. },
  45882. backNsfw: {
  45883. height: math.unit(18, "feet"),
  45884. name: "Back (NSFW)",
  45885. image: {
  45886. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45887. extra: 1592/1170,
  45888. bottom: 128/1720
  45889. }
  45890. },
  45891. },
  45892. [
  45893. {
  45894. name: "Normal",
  45895. height: math.unit(18, "feet"),
  45896. default: true
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45902. {
  45903. spreadWings: {
  45904. height: math.unit(20, "feet"),
  45905. name: "Spread Wings",
  45906. image: {
  45907. source: "./media/characters/fledge/spread-wings.svg",
  45908. extra: 693/635,
  45909. bottom: 26/719
  45910. }
  45911. },
  45912. front: {
  45913. height: math.unit(20, "feet"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/fledge/front.svg",
  45917. extra: 684/637,
  45918. bottom: 18/702
  45919. }
  45920. },
  45921. frontAlt: {
  45922. height: math.unit(20, "feet"),
  45923. name: "Front (Alt)",
  45924. image: {
  45925. source: "./media/characters/fledge/front-alt.svg",
  45926. extra: 708/664,
  45927. bottom: 13/721
  45928. }
  45929. },
  45930. back: {
  45931. height: math.unit(20, "feet"),
  45932. name: "Back",
  45933. image: {
  45934. source: "./media/characters/fledge/back.svg",
  45935. extra: 718/634,
  45936. bottom: 22/740
  45937. }
  45938. },
  45939. head: {
  45940. height: math.unit(5.55, "feet"),
  45941. name: "Head",
  45942. image: {
  45943. source: "./media/characters/fledge/head.svg"
  45944. }
  45945. },
  45946. headAlt: {
  45947. height: math.unit(5.1, "feet"),
  45948. name: "Head (Alt)",
  45949. image: {
  45950. source: "./media/characters/fledge/head-alt.svg"
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Small",
  45957. height: math.unit(6 + 2/12, "feet")
  45958. },
  45959. {
  45960. name: "Big",
  45961. height: math.unit(20, "feet"),
  45962. default: true
  45963. },
  45964. {
  45965. name: "Giant",
  45966. height: math.unit(100, "feet")
  45967. },
  45968. {
  45969. name: "Macro",
  45970. height: math.unit(200, "feet")
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(1, "meter"),
  45979. name: "Front",
  45980. image: {
  45981. source: "./media/characters/atlas-morenai/front.svg",
  45982. extra: 1275/1043,
  45983. bottom: 19/1294
  45984. }
  45985. },
  45986. back: {
  45987. height: math.unit(1, "meter"),
  45988. name: "Back",
  45989. image: {
  45990. source: "./media/characters/atlas-morenai/back.svg",
  45991. extra: 1141/1001,
  45992. bottom: 25/1166
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(1, "meter"),
  46000. default: true
  46001. },
  46002. {
  46003. name: "Magic-Infused",
  46004. height: math.unit(5, "meters")
  46005. },
  46006. ]
  46007. ))
  46008. characterMakers.push(() => makeCharacter(
  46009. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46010. {
  46011. front: {
  46012. height: math.unit(5, "meters"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/cintia/front.svg",
  46016. extra: 1312/1228,
  46017. bottom: 38/1350
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(5, "meters"),
  46022. name: "Back",
  46023. image: {
  46024. source: "./media/characters/cintia/back.svg",
  46025. extra: 1260/1166,
  46026. bottom: 98/1358
  46027. }
  46028. },
  46029. frontDick: {
  46030. height: math.unit(5, "meters"),
  46031. name: "Front (Dick)",
  46032. image: {
  46033. source: "./media/characters/cintia/front-dick.svg",
  46034. extra: 1312/1228,
  46035. bottom: 38/1350
  46036. }
  46037. },
  46038. backDick: {
  46039. height: math.unit(5, "meters"),
  46040. name: "Back (Dick)",
  46041. image: {
  46042. source: "./media/characters/cintia/back-dick.svg",
  46043. extra: 1260/1166,
  46044. bottom: 98/1358
  46045. }
  46046. },
  46047. bust: {
  46048. height: math.unit(1.97, "meters"),
  46049. name: "Bust",
  46050. image: {
  46051. source: "./media/characters/cintia/bust.svg",
  46052. extra: 617/565,
  46053. bottom: 0/617
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(5, "meters"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46067. {
  46068. side: {
  46069. height: math.unit(100, "feet"),
  46070. name: "Side",
  46071. image: {
  46072. source: "./media/characters/denora/side.svg",
  46073. extra: 875/803,
  46074. bottom: 9/884
  46075. }
  46076. },
  46077. },
  46078. [
  46079. {
  46080. name: "Standard",
  46081. height: math.unit(100, "feet"),
  46082. default: true
  46083. },
  46084. {
  46085. name: "Grand",
  46086. height: math.unit(1000, "feet")
  46087. },
  46088. {
  46089. name: "Conquering",
  46090. height: math.unit(10000, "feet")
  46091. },
  46092. ]
  46093. ))
  46094. characterMakers.push(() => makeCharacter(
  46095. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46096. {
  46097. dressed: {
  46098. height: math.unit(8 + 5/12, "feet"),
  46099. weight: math.unit(700, "lb"),
  46100. name: "Dressed",
  46101. image: {
  46102. source: "./media/characters/kiva/dressed.svg",
  46103. extra: 1102/1055,
  46104. bottom: 60/1162
  46105. }
  46106. },
  46107. nude: {
  46108. height: math.unit(8 + 5/12, "feet"),
  46109. weight: math.unit(700, "lb"),
  46110. name: "Nude",
  46111. image: {
  46112. source: "./media/characters/kiva/nude.svg",
  46113. extra: 1102/1055,
  46114. bottom: 60/1162
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Base Height",
  46121. height: math.unit(8 + 5/12, "feet"),
  46122. default: true
  46123. },
  46124. {
  46125. name: "Macro",
  46126. height: math.unit(100, "feet")
  46127. },
  46128. {
  46129. name: "Max",
  46130. height: math.unit(3280, "feet")
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46136. {
  46137. front: {
  46138. height: math.unit(6 + 8/12, "feet"),
  46139. weight: math.unit(250, "lb"),
  46140. name: "Front",
  46141. image: {
  46142. source: "./media/characters/ztragon/front.svg",
  46143. extra: 1825/1684,
  46144. bottom: 98/1923
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Normal",
  46151. height: math.unit(6 + 8/12, "feet"),
  46152. default: true
  46153. },
  46154. {
  46155. name: "Macro",
  46156. height: math.unit(80, "feet")
  46157. },
  46158. ]
  46159. ))
  46160. characterMakers.push(() => makeCharacter(
  46161. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46162. {
  46163. front: {
  46164. height: math.unit(10.4, "feet"),
  46165. weight: math.unit(2, "tons"),
  46166. name: "Front",
  46167. image: {
  46168. source: "./media/characters/yesenia/front.svg",
  46169. extra: 1479/1474,
  46170. bottom: 233/1712
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(10.4, "feet"),
  46178. default: true
  46179. },
  46180. ]
  46181. ))
  46182. characterMakers.push(() => makeCharacter(
  46183. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46184. {
  46185. normal: {
  46186. height: math.unit(6 + 1/12, "feet"),
  46187. weight: math.unit(180, "lb"),
  46188. name: "Normal",
  46189. image: {
  46190. source: "./media/characters/leanne-lycheborne/normal.svg",
  46191. extra: 1748/1660,
  46192. bottom: 98/1846
  46193. }
  46194. },
  46195. were: {
  46196. height: math.unit(12, "feet"),
  46197. weight: math.unit(1600, "lb"),
  46198. name: "Were",
  46199. image: {
  46200. source: "./media/characters/leanne-lycheborne/were.svg",
  46201. extra: 1485/1432,
  46202. bottom: 66/1551
  46203. }
  46204. },
  46205. },
  46206. [
  46207. {
  46208. name: "Normal",
  46209. height: math.unit(6 + 1/12, "feet"),
  46210. default: true
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46216. {
  46217. side: {
  46218. height: math.unit(13, "feet"),
  46219. name: "Side",
  46220. image: {
  46221. source: "./media/characters/kira-tyler/side.svg",
  46222. extra: 693/393,
  46223. bottom: 58/751
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Normal",
  46230. height: math.unit(13, "feet"),
  46231. default: true
  46232. },
  46233. ]
  46234. ))
  46235. characterMakers.push(() => makeCharacter(
  46236. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46237. {
  46238. front: {
  46239. height: math.unit(10.3, "feet"),
  46240. weight: math.unit(150, "lb"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/blaze/front.svg",
  46244. extra: 1378/1286,
  46245. bottom: 172/1550
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Normal",
  46252. height: math.unit(10.3, "feet"),
  46253. default: true
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46259. {
  46260. side: {
  46261. height: math.unit(2, "meters"),
  46262. weight: math.unit(400, "kg"),
  46263. name: "Side",
  46264. image: {
  46265. source: "./media/characters/anu/side.svg",
  46266. extra: 506/394,
  46267. bottom: 18/524
  46268. }
  46269. },
  46270. },
  46271. [
  46272. {
  46273. name: "Humanoid",
  46274. height: math.unit(2, "meters")
  46275. },
  46276. {
  46277. name: "Normal",
  46278. height: math.unit(5, "meters"),
  46279. default: true
  46280. },
  46281. ]
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(5 + 5/12, "feet"),
  46288. weight: math.unit(170, "lb"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/synx-the-lynx/front.svg",
  46292. extra: 1893/1745,
  46293. bottom: 17/1910
  46294. }
  46295. },
  46296. side: {
  46297. height: math.unit(5 + 5/12, "feet"),
  46298. weight: math.unit(170, "lb"),
  46299. name: "Side",
  46300. image: {
  46301. source: "./media/characters/synx-the-lynx/side.svg",
  46302. extra: 1884/1740,
  46303. bottom: 39/1923
  46304. }
  46305. },
  46306. back: {
  46307. height: math.unit(5 + 5/12, "feet"),
  46308. weight: math.unit(170, "lb"),
  46309. name: "Back",
  46310. image: {
  46311. source: "./media/characters/synx-the-lynx/back.svg",
  46312. extra: 1903/1755,
  46313. bottom: 14/1917
  46314. }
  46315. },
  46316. },
  46317. [
  46318. {
  46319. name: "Normal",
  46320. height: math.unit(5 + 5/12, "feet"),
  46321. default: true
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46327. {
  46328. back: {
  46329. height: math.unit(15, "feet"),
  46330. name: "Back",
  46331. image: {
  46332. source: "./media/characters/nadezda-fex/back.svg",
  46333. extra: 1695/1481,
  46334. bottom: 25/1720
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(15, "feet"),
  46342. default: true
  46343. },
  46344. {
  46345. name: "Macro",
  46346. height: math.unit(2.5, "miles")
  46347. },
  46348. {
  46349. name: "Goddess",
  46350. height: math.unit(2, "multiverses")
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(216, "cm"),
  46359. name: "Front",
  46360. image: {
  46361. source: "./media/characters/lev/front.svg",
  46362. extra: 1728/1670,
  46363. bottom: 82/1810
  46364. }
  46365. },
  46366. back: {
  46367. height: math.unit(216, "cm"),
  46368. name: "Back",
  46369. image: {
  46370. source: "./media/characters/lev/back.svg",
  46371. extra: 1738/1675,
  46372. bottom: 24/1762
  46373. }
  46374. },
  46375. dressed: {
  46376. height: math.unit(216, "cm"),
  46377. name: "Dressed",
  46378. image: {
  46379. source: "./media/characters/lev/dressed.svg",
  46380. extra: 1397/1351,
  46381. bottom: 73/1470
  46382. }
  46383. },
  46384. head: {
  46385. height: math.unit(0.51, "meter"),
  46386. name: "Head",
  46387. image: {
  46388. source: "./media/characters/lev/head.svg"
  46389. }
  46390. },
  46391. },
  46392. [
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(216, "cm"),
  46396. default: true
  46397. },
  46398. {
  46399. name: "Relatively Macro",
  46400. height: math.unit(80, "meters")
  46401. },
  46402. {
  46403. name: "Megamacro",
  46404. height: math.unit(21600, "meters")
  46405. },
  46406. {
  46407. name: "Megamacro+",
  46408. height: math.unit(64800, "meters")
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46414. {
  46415. front: {
  46416. height: math.unit(2, "meters"),
  46417. weight: math.unit(80, "kg"),
  46418. name: "Front",
  46419. image: {
  46420. source: "./media/characters/moka/front.svg",
  46421. extra: 1337/1255,
  46422. bottom: 58/1395
  46423. }
  46424. },
  46425. },
  46426. [
  46427. {
  46428. name: "Micro",
  46429. height: math.unit(15, "cm")
  46430. },
  46431. {
  46432. name: "Normal",
  46433. height: math.unit(2, "meters"),
  46434. default: true
  46435. },
  46436. {
  46437. name: "Macro",
  46438. height: math.unit(20, "meters"),
  46439. },
  46440. ]
  46441. ))
  46442. characterMakers.push(() => makeCharacter(
  46443. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46444. {
  46445. front: {
  46446. height: math.unit(9, "feet"),
  46447. weight: math.unit(240, "lb"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/kuzco/front.svg",
  46451. extra: 1593/1487,
  46452. bottom: 32/1625
  46453. }
  46454. },
  46455. side: {
  46456. height: math.unit(9, "feet"),
  46457. weight: math.unit(240, "lb"),
  46458. name: "Side",
  46459. image: {
  46460. source: "./media/characters/kuzco/side.svg",
  46461. extra: 1575/1485,
  46462. bottom: 30/1605
  46463. }
  46464. },
  46465. back: {
  46466. height: math.unit(9, "feet"),
  46467. weight: math.unit(240, "lb"),
  46468. name: "Back",
  46469. image: {
  46470. source: "./media/characters/kuzco/back.svg",
  46471. extra: 1603/1514,
  46472. bottom: 14/1617
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(9, "feet"),
  46480. default: true
  46481. },
  46482. ]
  46483. ))
  46484. characterMakers.push(() => makeCharacter(
  46485. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46486. {
  46487. side: {
  46488. height: math.unit(2, "meters"),
  46489. weight: math.unit(300, "kg"),
  46490. name: "Side",
  46491. image: {
  46492. source: "./media/characters/ceruleus/side.svg",
  46493. extra: 1068/974,
  46494. bottom: 126/1194
  46495. }
  46496. },
  46497. },
  46498. [
  46499. {
  46500. name: "Normal",
  46501. height: math.unit(16, "meters"),
  46502. default: true
  46503. },
  46504. ]
  46505. ))
  46506. characterMakers.push(() => makeCharacter(
  46507. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46508. {
  46509. front: {
  46510. height: math.unit(9, "feet"),
  46511. weight: math.unit(500, "kg"),
  46512. name: "Front",
  46513. image: {
  46514. source: "./media/characters/acouya/front.svg",
  46515. extra: 1660/1473,
  46516. bottom: 28/1688
  46517. }
  46518. },
  46519. },
  46520. [
  46521. {
  46522. name: "Normal",
  46523. height: math.unit(9, "feet"),
  46524. default: true
  46525. },
  46526. ]
  46527. ))
  46528. characterMakers.push(() => makeCharacter(
  46529. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46530. {
  46531. front: {
  46532. height: math.unit(5 + 6/12, "feet"),
  46533. weight: math.unit(195, "lb"),
  46534. name: "Front",
  46535. image: {
  46536. source: "./media/characters/vant/front.svg",
  46537. extra: 1396/1320,
  46538. bottom: 20/1416
  46539. }
  46540. },
  46541. back: {
  46542. height: math.unit(5 + 6/12, "feet"),
  46543. weight: math.unit(195, "lb"),
  46544. name: "Back",
  46545. image: {
  46546. source: "./media/characters/vant/back.svg",
  46547. extra: 1396/1320,
  46548. bottom: 20/1416
  46549. }
  46550. },
  46551. maw: {
  46552. height: math.unit(0.75, "feet"),
  46553. name: "Maw",
  46554. image: {
  46555. source: "./media/characters/vant/maw.svg"
  46556. }
  46557. },
  46558. paw: {
  46559. height: math.unit(1.07, "feet"),
  46560. name: "Paw",
  46561. image: {
  46562. source: "./media/characters/vant/paw.svg"
  46563. }
  46564. },
  46565. },
  46566. [
  46567. {
  46568. name: "Micro",
  46569. height: math.unit(0.25, "inches")
  46570. },
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(5 + 6/12, "feet"),
  46574. default: true
  46575. },
  46576. {
  46577. name: "Macro",
  46578. height: math.unit(75, "feet")
  46579. },
  46580. ]
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46584. {
  46585. front: {
  46586. height: math.unit(30, "meters"),
  46587. weight: math.unit(363, "tons"),
  46588. name: "Front",
  46589. image: {
  46590. source: "./media/characters/ahra/front.svg",
  46591. extra: 1914/1814,
  46592. bottom: 46/1960
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Macro",
  46599. height: math.unit(30, "meters"),
  46600. default: true
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46606. {
  46607. undressed: {
  46608. height: math.unit(2, "m"),
  46609. weight: math.unit(250, "kg"),
  46610. name: "Undressed",
  46611. image: {
  46612. source: "./media/characters/coriander/undressed.svg",
  46613. extra: 1757/1606,
  46614. bottom: 107/1864
  46615. }
  46616. },
  46617. dressed: {
  46618. height: math.unit(2, "m"),
  46619. weight: math.unit(250, "kg"),
  46620. name: "Dressed",
  46621. image: {
  46622. source: "./media/characters/coriander/dressed.svg",
  46623. extra: 1757/1606,
  46624. bottom: 107/1864
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(4, "meters"),
  46632. default: true
  46633. },
  46634. {
  46635. name: "XL",
  46636. height: math.unit(6, "meters")
  46637. },
  46638. {
  46639. name: "XXL",
  46640. height: math.unit(8, "meters")
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46646. {
  46647. front: {
  46648. height: math.unit(6, "feet"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/syrinx/front.svg",
  46652. extra: 1557/1259,
  46653. bottom: 171/1728
  46654. }
  46655. },
  46656. },
  46657. [
  46658. {
  46659. name: "Normal",
  46660. height: math.unit(6 + 3/12, "feet"),
  46661. default: true
  46662. },
  46663. ]
  46664. ))
  46665. characterMakers.push(() => makeCharacter(
  46666. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46667. {
  46668. front: {
  46669. height: math.unit(11 + 6/12, "feet"),
  46670. weight: math.unit(1.5, "tons"),
  46671. name: "Front",
  46672. image: {
  46673. source: "./media/characters/bor/front.svg",
  46674. extra: 1189/1109,
  46675. bottom: 170/1359
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(11 + 6/12, "feet"),
  46683. default: true
  46684. },
  46685. {
  46686. name: "Macro",
  46687. height: math.unit(32 + 9/12, "feet")
  46688. },
  46689. ]
  46690. ))
  46691. characterMakers.push(() => makeCharacter(
  46692. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46693. {
  46694. anthro: {
  46695. height: math.unit(9, "feet"),
  46696. weight: math.unit(2076, "lb"),
  46697. name: "Anthro",
  46698. image: {
  46699. source: "./media/characters/abacus/anthro.svg",
  46700. extra: 1540/1494,
  46701. bottom: 233/1773
  46702. }
  46703. },
  46704. pigeon: {
  46705. height: math.unit(1, "feet"),
  46706. name: "Pigeon",
  46707. image: {
  46708. source: "./media/characters/abacus/pigeon.svg",
  46709. extra: 528/525,
  46710. bottom: 46/574
  46711. }
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Normal",
  46717. height: math.unit(9, "feet"),
  46718. default: true
  46719. },
  46720. ]
  46721. ))
  46722. characterMakers.push(() => makeCharacter(
  46723. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46724. {
  46725. side: {
  46726. height: math.unit(6, "feet"),
  46727. name: "Side",
  46728. image: {
  46729. source: "./media/characters/delkhan/side.svg",
  46730. extra: 1884/1786,
  46731. bottom: 308/2192
  46732. }
  46733. },
  46734. head: {
  46735. height: math.unit(3.38, "feet"),
  46736. name: "Head",
  46737. image: {
  46738. source: "./media/characters/delkhan/head.svg"
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(72, "feet"),
  46746. default: true
  46747. },
  46748. {
  46749. name: "Giant",
  46750. height: math.unit(172, "feet")
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46756. {
  46757. standing: {
  46758. height: math.unit(6, "feet"),
  46759. name: "Standing",
  46760. image: {
  46761. source: "./media/characters/euchidat/standing.svg",
  46762. extra: 1612/1553,
  46763. bottom: 116/1728
  46764. }
  46765. },
  46766. leaning: {
  46767. height: math.unit(6, "feet"),
  46768. name: "Leaning",
  46769. image: {
  46770. source: "./media/characters/euchidat/leaning.svg",
  46771. extra: 1719/1674,
  46772. bottom: 27/1746
  46773. }
  46774. },
  46775. },
  46776. [
  46777. {
  46778. name: "Normal",
  46779. height: math.unit(175, "feet"),
  46780. default: true
  46781. },
  46782. {
  46783. name: "Megamacro",
  46784. height: math.unit(190, "miles")
  46785. },
  46786. {
  46787. name: "Gigamacro",
  46788. height: math.unit(190000, "miles")
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46794. {
  46795. front: {
  46796. height: math.unit(6, "feet"),
  46797. weight: math.unit(150, "lb"),
  46798. name: "Front",
  46799. image: {
  46800. source: "./media/characters/rebecca-stack/front.svg",
  46801. extra: 1256/1201,
  46802. bottom: 18/1274
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(5 + 8/12, "feet"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "Demolitionist",
  46814. height: math.unit(200, "feet")
  46815. },
  46816. {
  46817. name: "Out of Control",
  46818. height: math.unit(2, "miles")
  46819. },
  46820. {
  46821. name: "Giga",
  46822. height: math.unit(7200, "miles")
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46828. {
  46829. front: {
  46830. height: math.unit(6, "feet"),
  46831. weight: math.unit(150, "lb"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/jenny-cartwright/front.svg",
  46835. extra: 1384/1376,
  46836. bottom: 58/1442
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(6 + 7/12, "feet"),
  46844. default: true
  46845. },
  46846. {
  46847. name: "Librarian",
  46848. height: math.unit(55, "feet")
  46849. },
  46850. {
  46851. name: "Sightseer",
  46852. height: math.unit(50, "miles")
  46853. },
  46854. {
  46855. name: "Giga",
  46856. height: math.unit(30000, "miles")
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46862. {
  46863. nude: {
  46864. height: math.unit(8, "feet"),
  46865. weight: math.unit(225, "lb"),
  46866. name: "Nude",
  46867. image: {
  46868. source: "./media/characters/marvy/nude.svg",
  46869. extra: 1900/1683,
  46870. bottom: 89/1989
  46871. }
  46872. },
  46873. dressed: {
  46874. height: math.unit(8, "feet"),
  46875. weight: math.unit(225, "lb"),
  46876. name: "Dressed",
  46877. image: {
  46878. source: "./media/characters/marvy/dressed.svg",
  46879. extra: 1900/1683,
  46880. bottom: 89/1989
  46881. }
  46882. },
  46883. head: {
  46884. height: math.unit(2.85, "feet"),
  46885. name: "Head",
  46886. image: {
  46887. source: "./media/characters/marvy/head.svg"
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(8, "feet"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46901. {
  46902. front: {
  46903. height: math.unit(8, "feet"),
  46904. weight: math.unit(250, "lb"),
  46905. name: "Front",
  46906. image: {
  46907. source: "./media/characters/leah/front.svg",
  46908. extra: 1257/1149,
  46909. bottom: 109/1366
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(8, "feet"),
  46917. default: true
  46918. },
  46919. {
  46920. name: "Minimacro",
  46921. height: math.unit(40, "feet")
  46922. },
  46923. {
  46924. name: "Macro",
  46925. height: math.unit(124, "feet")
  46926. },
  46927. {
  46928. name: "Megamacro",
  46929. height: math.unit(850, "feet")
  46930. },
  46931. ]
  46932. ))
  46933. characterMakers.push(() => makeCharacter(
  46934. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46935. {
  46936. side: {
  46937. height: math.unit(13 + 6/12, "feet"),
  46938. weight: math.unit(3200, "lb"),
  46939. name: "Side",
  46940. image: {
  46941. source: "./media/characters/alvir/side.svg",
  46942. extra: 896/589,
  46943. bottom: 26/922
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Normal",
  46950. height: math.unit(13 + 6/12, "feet"),
  46951. default: true
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46957. {
  46958. front: {
  46959. height: math.unit(5 + 4/12, "feet"),
  46960. weight: math.unit(236, "lb"),
  46961. name: "Front",
  46962. image: {
  46963. source: "./media/characters/zaina-khalil/front.svg",
  46964. extra: 1533/1485,
  46965. bottom: 94/1627
  46966. }
  46967. },
  46968. side: {
  46969. height: math.unit(5 + 4/12, "feet"),
  46970. weight: math.unit(236, "lb"),
  46971. name: "Side",
  46972. image: {
  46973. source: "./media/characters/zaina-khalil/side.svg",
  46974. extra: 1537/1498,
  46975. bottom: 66/1603
  46976. }
  46977. },
  46978. back: {
  46979. height: math.unit(5 + 4/12, "feet"),
  46980. weight: math.unit(236, "lb"),
  46981. name: "Back",
  46982. image: {
  46983. source: "./media/characters/zaina-khalil/back.svg",
  46984. extra: 1546/1494,
  46985. bottom: 89/1635
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Normal",
  46992. height: math.unit(5 + 4/12, "feet"),
  46993. default: true
  46994. },
  46995. ]
  46996. ))
  46997. characterMakers.push(() => makeCharacter(
  46998. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46999. {
  47000. side: {
  47001. height: math.unit(12, "feet"),
  47002. weight: math.unit(4000, "lb"),
  47003. name: "Side",
  47004. image: {
  47005. source: "./media/characters/terry/side.svg",
  47006. extra: 1518/1439,
  47007. bottom: 149/1667
  47008. }
  47009. },
  47010. },
  47011. [
  47012. {
  47013. name: "Normal",
  47014. height: math.unit(12, "feet"),
  47015. default: true
  47016. },
  47017. ]
  47018. ))
  47019. characterMakers.push(() => makeCharacter(
  47020. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47021. {
  47022. front: {
  47023. height: math.unit(12, "feet"),
  47024. weight: math.unit(1500, "lb"),
  47025. name: "Front",
  47026. image: {
  47027. source: "./media/characters/kahea/front.svg",
  47028. extra: 1722/1617,
  47029. bottom: 179/1901
  47030. }
  47031. },
  47032. },
  47033. [
  47034. {
  47035. name: "Normal",
  47036. height: math.unit(12, "feet"),
  47037. default: true
  47038. },
  47039. ]
  47040. ))
  47041. characterMakers.push(() => makeCharacter(
  47042. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47043. {
  47044. demonFront: {
  47045. height: math.unit(36, "feet"),
  47046. name: "Front",
  47047. image: {
  47048. source: "./media/characters/alex-xuria/demon-front.svg",
  47049. extra: 1705/1673,
  47050. bottom: 198/1903
  47051. },
  47052. form: "demon",
  47053. default: true
  47054. },
  47055. demonBack: {
  47056. height: math.unit(36, "feet"),
  47057. name: "Back",
  47058. image: {
  47059. source: "./media/characters/alex-xuria/demon-back.svg",
  47060. extra: 1725/1693,
  47061. bottom: 70/1795
  47062. },
  47063. form: "demon"
  47064. },
  47065. demonHead: {
  47066. height: math.unit(2.14, "meters"),
  47067. name: "Head",
  47068. image: {
  47069. source: "./media/characters/alex-xuria/demon-head.svg"
  47070. },
  47071. form: "demon"
  47072. },
  47073. demonHand: {
  47074. height: math.unit(1.61, "meters"),
  47075. name: "Hand",
  47076. image: {
  47077. source: "./media/characters/alex-xuria/demon-hand.svg"
  47078. },
  47079. form: "demon"
  47080. },
  47081. demonPaw: {
  47082. height: math.unit(1.35, "meters"),
  47083. name: "Paw",
  47084. image: {
  47085. source: "./media/characters/alex-xuria/demon-paw.svg"
  47086. },
  47087. form: "demon"
  47088. },
  47089. demonFoot: {
  47090. height: math.unit(2.2, "meters"),
  47091. name: "Foot",
  47092. image: {
  47093. source: "./media/characters/alex-xuria/demon-foot.svg"
  47094. },
  47095. form: "demon"
  47096. },
  47097. demonCock: {
  47098. height: math.unit(1.74, "meters"),
  47099. name: "Cock",
  47100. image: {
  47101. source: "./media/characters/alex-xuria/demon-cock.svg"
  47102. },
  47103. form: "demon"
  47104. },
  47105. demonTailClosed: {
  47106. height: math.unit(1.47, "meters"),
  47107. name: "Tail (Closed)",
  47108. image: {
  47109. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47110. },
  47111. form: "demon"
  47112. },
  47113. demonTailOpen: {
  47114. height: math.unit(2.85, "meters"),
  47115. name: "Tail (Open)",
  47116. image: {
  47117. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47118. },
  47119. form: "demon"
  47120. },
  47121. incubusFront: {
  47122. height: math.unit(12, "feet"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/alex-xuria/incubus-front.svg",
  47126. extra: 1754/1677,
  47127. bottom: 125/1879
  47128. },
  47129. form: "incubus",
  47130. default: true
  47131. },
  47132. incubusBack: {
  47133. height: math.unit(12, "feet"),
  47134. name: "Back",
  47135. image: {
  47136. source: "./media/characters/alex-xuria/incubus-back.svg",
  47137. extra: 1702/1647,
  47138. bottom: 30/1732
  47139. },
  47140. form: "incubus"
  47141. },
  47142. incubusHead: {
  47143. height: math.unit(3.45, "feet"),
  47144. name: "Head",
  47145. image: {
  47146. source: "./media/characters/alex-xuria/incubus-head.svg"
  47147. },
  47148. form: "incubus"
  47149. },
  47150. rabbitFront: {
  47151. height: math.unit(6, "feet"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47155. extra: 1369/1349,
  47156. bottom: 45/1414
  47157. },
  47158. form: "rabbit",
  47159. default: true
  47160. },
  47161. rabbitSide: {
  47162. height: math.unit(6, "feet"),
  47163. name: "Side",
  47164. image: {
  47165. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47166. extra: 1370/1356,
  47167. bottom: 37/1407
  47168. },
  47169. form: "rabbit"
  47170. },
  47171. rabbitBack: {
  47172. height: math.unit(6, "feet"),
  47173. name: "Back",
  47174. image: {
  47175. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47176. extra: 1375/1358,
  47177. bottom: 43/1418
  47178. },
  47179. form: "rabbit"
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(6, "feet"),
  47186. default: true,
  47187. form: "rabbit"
  47188. },
  47189. {
  47190. name: "Incubus",
  47191. height: math.unit(12, "feet"),
  47192. default: true,
  47193. form: "incubus"
  47194. },
  47195. {
  47196. name: "Demon",
  47197. height: math.unit(36, "feet"),
  47198. default: true,
  47199. form: "demon"
  47200. }
  47201. ],
  47202. {
  47203. "demon": {
  47204. name: "Demon",
  47205. default: true
  47206. },
  47207. "incubus": {
  47208. name: "Incubus",
  47209. },
  47210. "rabbit": {
  47211. name: "Rabbit"
  47212. }
  47213. }
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(7 + 5/12, "feet"),
  47220. weight: math.unit(510, "lb"),
  47221. name: "Front",
  47222. image: {
  47223. source: "./media/characters/syrup/front.svg",
  47224. extra: 932/916,
  47225. bottom: 26/958
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(7 + 5/12, "feet"),
  47233. default: true
  47234. },
  47235. {
  47236. name: "Big",
  47237. height: math.unit(50, "feet")
  47238. },
  47239. {
  47240. name: "Macro",
  47241. height: math.unit(300, "feet")
  47242. },
  47243. {
  47244. name: "Megamacro",
  47245. height: math.unit(1, "mile")
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(6 + 9/12, "feet"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/zeimne/front.svg",
  47257. extra: 1969/1806,
  47258. bottom: 53/2022
  47259. }
  47260. },
  47261. },
  47262. [
  47263. {
  47264. name: "Normal",
  47265. height: math.unit(6 + 9/12, "feet"),
  47266. default: true
  47267. },
  47268. {
  47269. name: "Giant",
  47270. height: math.unit(550, "feet")
  47271. },
  47272. {
  47273. name: "Mega",
  47274. height: math.unit(3, "miles")
  47275. },
  47276. {
  47277. name: "Giga",
  47278. height: math.unit(250, "miles")
  47279. },
  47280. {
  47281. name: "Tera",
  47282. height: math.unit(1, "AU")
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47288. {
  47289. front: {
  47290. height: math.unit(5 + 2/12, "feet"),
  47291. name: "Front",
  47292. image: {
  47293. source: "./media/characters/grar/front.svg",
  47294. extra: 1331/1119,
  47295. bottom: 60/1391
  47296. }
  47297. },
  47298. back: {
  47299. height: math.unit(5 + 2/12, "feet"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/grar/back.svg",
  47303. extra: 1385/1169,
  47304. bottom: 23/1408
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(5 + 2/12, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(13 + 7/12, "feet"),
  47321. weight: math.unit(2200, "lb"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/endraya/front.svg",
  47325. extra: 1289/1215,
  47326. bottom: 50/1339
  47327. }
  47328. },
  47329. nude: {
  47330. height: math.unit(13 + 7/12, "feet"),
  47331. weight: math.unit(2200, "lb"),
  47332. name: "Nude",
  47333. image: {
  47334. source: "./media/characters/endraya/nude.svg",
  47335. extra: 1247/1171,
  47336. bottom: 40/1287
  47337. }
  47338. },
  47339. head: {
  47340. height: math.unit(2.6, "feet"),
  47341. name: "Head",
  47342. image: {
  47343. source: "./media/characters/endraya/head.svg"
  47344. }
  47345. },
  47346. slit: {
  47347. height: math.unit(3.4, "feet"),
  47348. name: "Slit",
  47349. image: {
  47350. source: "./media/characters/endraya/slit.svg"
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Normal",
  47357. height: math.unit(13 + 7/12, "feet"),
  47358. default: true
  47359. },
  47360. {
  47361. name: "Macro",
  47362. height: math.unit(200, "feet")
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(1.81, "meters"),
  47371. weight: math.unit(69, "kg"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/rodryana/front.svg",
  47375. extra: 2002/1921,
  47376. bottom: 53/2055
  47377. }
  47378. },
  47379. back: {
  47380. height: math.unit(1.81, "meters"),
  47381. weight: math.unit(69, "kg"),
  47382. name: "Back",
  47383. image: {
  47384. source: "./media/characters/rodryana/back.svg",
  47385. extra: 1993/1926,
  47386. bottom: 48/2041
  47387. }
  47388. },
  47389. maw: {
  47390. height: math.unit(0.19769417475, "meters"),
  47391. name: "Maw",
  47392. image: {
  47393. source: "./media/characters/rodryana/maw.svg"
  47394. }
  47395. },
  47396. slit: {
  47397. height: math.unit(0.31631067961, "meters"),
  47398. name: "Slit",
  47399. image: {
  47400. source: "./media/characters/rodryana/slit.svg"
  47401. }
  47402. },
  47403. },
  47404. [
  47405. {
  47406. name: "Normal",
  47407. height: math.unit(1.81, "meters")
  47408. },
  47409. {
  47410. name: "Mini Macro",
  47411. height: math.unit(181, "meters")
  47412. },
  47413. {
  47414. name: "Macro",
  47415. height: math.unit(452, "meters"),
  47416. default: true
  47417. },
  47418. {
  47419. name: "Mega Macro",
  47420. height: math.unit(1.375, "km")
  47421. },
  47422. {
  47423. name: "Giga Macro",
  47424. height: math.unit(13.575, "km")
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(6, "feet"),
  47433. weight: math.unit(1000, "lb"),
  47434. name: "Front",
  47435. image: {
  47436. source: "./media/characters/asaya/front.svg",
  47437. extra: 1460/1200,
  47438. bottom: 71/1531
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(8, "km"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47452. {
  47453. front: {
  47454. height: math.unit(3.5, "meters"),
  47455. name: "Front",
  47456. image: {
  47457. source: "./media/characters/sarzu-and-israz/front.svg",
  47458. extra: 1570/1558,
  47459. bottom: 150/1720
  47460. },
  47461. },
  47462. back: {
  47463. height: math.unit(3.5, "meters"),
  47464. name: "Back",
  47465. image: {
  47466. source: "./media/characters/sarzu-and-israz/back.svg",
  47467. extra: 1523/1509,
  47468. bottom: 132/1655
  47469. },
  47470. },
  47471. frontFemale: {
  47472. height: math.unit(3.5, "meters"),
  47473. name: "Front (Female)",
  47474. image: {
  47475. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47476. extra: 1570/1558,
  47477. bottom: 150/1720
  47478. },
  47479. },
  47480. frontHerm: {
  47481. height: math.unit(3.5, "meters"),
  47482. name: "Front (Herm)",
  47483. image: {
  47484. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47485. extra: 1570/1558,
  47486. bottom: 150/1720
  47487. },
  47488. },
  47489. },
  47490. [
  47491. {
  47492. name: "Normal",
  47493. height: math.unit(3.5, "meters"),
  47494. default: true,
  47495. },
  47496. {
  47497. name: "Macro",
  47498. height: math.unit(65.5, "meters"),
  47499. },
  47500. ],
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47504. {
  47505. front: {
  47506. height: math.unit(6, "feet"),
  47507. weight: math.unit(250, "lb"),
  47508. name: "Front",
  47509. image: {
  47510. source: "./media/characters/zenimma/front.svg",
  47511. extra: 1346/1320,
  47512. bottom: 58/1404
  47513. }
  47514. },
  47515. back: {
  47516. height: math.unit(6, "feet"),
  47517. weight: math.unit(250, "lb"),
  47518. name: "Back",
  47519. image: {
  47520. source: "./media/characters/zenimma/back.svg",
  47521. extra: 1324/1308,
  47522. bottom: 44/1368
  47523. }
  47524. },
  47525. dick: {
  47526. height: math.unit(1.44, "feet"),
  47527. name: "Dick",
  47528. image: {
  47529. source: "./media/characters/zenimma/dick.svg"
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Canon Height",
  47536. height: math.unit(66, "miles"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47543. {
  47544. nude: {
  47545. height: math.unit(6, "feet"),
  47546. weight: math.unit(150, "lb"),
  47547. name: "Nude",
  47548. image: {
  47549. source: "./media/characters/shavon/nude.svg",
  47550. extra: 1242/1096,
  47551. bottom: 98/1340
  47552. }
  47553. },
  47554. dressed: {
  47555. height: math.unit(6, "feet"),
  47556. weight: math.unit(150, "lb"),
  47557. name: "Dressed",
  47558. image: {
  47559. source: "./media/characters/shavon/dressed.svg",
  47560. extra: 1242/1096,
  47561. bottom: 98/1340
  47562. }
  47563. },
  47564. },
  47565. [
  47566. {
  47567. name: "Macro",
  47568. height: math.unit(255, "feet"),
  47569. default: true
  47570. },
  47571. ]
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47575. {
  47576. front: {
  47577. height: math.unit(6, "feet"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/steph/front.svg",
  47581. extra: 1430/1330,
  47582. bottom: 54/1484
  47583. }
  47584. },
  47585. },
  47586. [
  47587. {
  47588. name: "Normal",
  47589. height: math.unit(6, "feet"),
  47590. default: true
  47591. },
  47592. ]
  47593. ))
  47594. characterMakers.push(() => makeCharacter(
  47595. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47596. {
  47597. front: {
  47598. height: math.unit(9, "feet"),
  47599. weight: math.unit(400, "lb"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/kil'aman/front.svg",
  47603. extra: 1210/1159,
  47604. bottom: 109/1319
  47605. }
  47606. },
  47607. head: {
  47608. height: math.unit(2.14, "feet"),
  47609. name: "Head",
  47610. image: {
  47611. source: "./media/characters/kil'aman/head.svg"
  47612. }
  47613. },
  47614. maw: {
  47615. height: math.unit(1.21, "feet"),
  47616. name: "Maw",
  47617. image: {
  47618. source: "./media/characters/kil'aman/maw.svg"
  47619. }
  47620. },
  47621. foot: {
  47622. height: math.unit(1.7, "feet"),
  47623. name: "Foot",
  47624. image: {
  47625. source: "./media/characters/kil'aman/foot.svg"
  47626. }
  47627. },
  47628. dick: {
  47629. height: math.unit(2.1, "feet"),
  47630. name: "Dick",
  47631. image: {
  47632. source: "./media/characters/kil'aman/dick.svg"
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(9, "feet")
  47640. },
  47641. {
  47642. name: "Canon Height",
  47643. height: math.unit(10, "miles"),
  47644. default: true
  47645. },
  47646. {
  47647. name: "Maximum",
  47648. height: math.unit(6e9, "miles")
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47654. {
  47655. front: {
  47656. height: math.unit(90, "feet"),
  47657. weight: math.unit(675000, "lb"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/qadan/front.svg",
  47661. extra: 1012/1004,
  47662. bottom: 78/1090
  47663. }
  47664. },
  47665. back: {
  47666. height: math.unit(90, "feet"),
  47667. weight: math.unit(675000, "lb"),
  47668. name: "Back",
  47669. image: {
  47670. source: "./media/characters/qadan/back.svg",
  47671. extra: 1042/1031,
  47672. bottom: 55/1097
  47673. }
  47674. },
  47675. armored: {
  47676. height: math.unit(90, "feet"),
  47677. weight: math.unit(675000, "lb"),
  47678. name: "Armored",
  47679. image: {
  47680. source: "./media/characters/qadan/armored.svg",
  47681. extra: 1047/1037,
  47682. bottom: 48/1095
  47683. }
  47684. },
  47685. },
  47686. [
  47687. {
  47688. name: "Normal",
  47689. height: math.unit(90, "feet"),
  47690. default: true
  47691. },
  47692. ]
  47693. ))
  47694. characterMakers.push(() => makeCharacter(
  47695. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47696. {
  47697. front: {
  47698. height: math.unit(6, "feet"),
  47699. weight: math.unit(225, "lb"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/brooke/front.svg",
  47703. extra: 1050/1010,
  47704. bottom: 66/1116
  47705. }
  47706. },
  47707. back: {
  47708. height: math.unit(6, "feet"),
  47709. weight: math.unit(225, "lb"),
  47710. name: "Back",
  47711. image: {
  47712. source: "./media/characters/brooke/back.svg",
  47713. extra: 1053/1013,
  47714. bottom: 41/1094
  47715. }
  47716. },
  47717. dressed: {
  47718. height: math.unit(6, "feet"),
  47719. weight: math.unit(225, "lb"),
  47720. name: "Dressed",
  47721. image: {
  47722. source: "./media/characters/brooke/dressed.svg",
  47723. extra: 1050/1010,
  47724. bottom: 66/1116
  47725. }
  47726. },
  47727. },
  47728. [
  47729. {
  47730. name: "Canon Height",
  47731. height: math.unit(500, "miles"),
  47732. default: true
  47733. },
  47734. ]
  47735. ))
  47736. characterMakers.push(() => makeCharacter(
  47737. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47738. {
  47739. front: {
  47740. height: math.unit(6 + 2/12, "feet"),
  47741. weight: math.unit(210, "lb"),
  47742. name: "Front",
  47743. image: {
  47744. source: "./media/characters/wubs/front.svg",
  47745. extra: 1345/1325,
  47746. bottom: 70/1415
  47747. }
  47748. },
  47749. back: {
  47750. height: math.unit(6 + 2/12, "feet"),
  47751. weight: math.unit(210, "lb"),
  47752. name: "Back",
  47753. image: {
  47754. source: "./media/characters/wubs/back.svg",
  47755. extra: 1296/1275,
  47756. bottom: 58/1354
  47757. }
  47758. },
  47759. },
  47760. [
  47761. {
  47762. name: "Normal",
  47763. height: math.unit(6 + 2/12, "feet"),
  47764. default: true
  47765. },
  47766. {
  47767. name: "Macro",
  47768. height: math.unit(1000, "feet")
  47769. },
  47770. {
  47771. name: "Megamacro",
  47772. height: math.unit(1, "mile")
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47778. {
  47779. front: {
  47780. height: math.unit(4, "feet"),
  47781. weight: math.unit(120, "lb"),
  47782. name: "Front",
  47783. image: {
  47784. source: "./media/characters/blue/front.svg",
  47785. extra: 1636/1525,
  47786. bottom: 43/1679
  47787. }
  47788. },
  47789. back: {
  47790. height: math.unit(4, "feet"),
  47791. weight: math.unit(120, "lb"),
  47792. name: "Back",
  47793. image: {
  47794. source: "./media/characters/blue/back.svg",
  47795. extra: 1660/1560,
  47796. bottom: 57/1717
  47797. }
  47798. },
  47799. paws: {
  47800. height: math.unit(0.826, "feet"),
  47801. name: "Paws",
  47802. image: {
  47803. source: "./media/characters/blue/paws.svg"
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Micro",
  47810. height: math.unit(3, "inches")
  47811. },
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(4, "feet"),
  47815. default: true
  47816. },
  47817. {
  47818. name: "Femenine Form",
  47819. height: math.unit(14, "feet")
  47820. },
  47821. {
  47822. name: "Werebat Form",
  47823. height: math.unit(18, "feet")
  47824. },
  47825. ]
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47829. {
  47830. female: {
  47831. height: math.unit(7 + 4/12, "feet"),
  47832. weight: math.unit(243, "lb"),
  47833. name: "Female",
  47834. image: {
  47835. source: "./media/characters/kaya/female.svg",
  47836. extra: 975/898,
  47837. bottom: 34/1009
  47838. }
  47839. },
  47840. herm: {
  47841. height: math.unit(7 + 4/12, "feet"),
  47842. weight: math.unit(243, "lb"),
  47843. name: "Herm",
  47844. image: {
  47845. source: "./media/characters/kaya/herm.svg",
  47846. extra: 975/898,
  47847. bottom: 34/1009
  47848. }
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Normal",
  47854. height: math.unit(7 + 4/12, "feet"),
  47855. default: true
  47856. },
  47857. ]
  47858. ))
  47859. characterMakers.push(() => makeCharacter(
  47860. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47861. {
  47862. female: {
  47863. height: math.unit(9 + 4/12, "feet"),
  47864. weight: math.unit(398, "lb"),
  47865. name: "Female",
  47866. image: {
  47867. source: "./media/characters/kassandra/female.svg",
  47868. extra: 908/839,
  47869. bottom: 61/969
  47870. }
  47871. },
  47872. intersex: {
  47873. height: math.unit(9 + 4/12, "feet"),
  47874. weight: math.unit(398, "lb"),
  47875. name: "Intersex",
  47876. image: {
  47877. source: "./media/characters/kassandra/intersex.svg",
  47878. extra: 908/839,
  47879. bottom: 61/969
  47880. }
  47881. },
  47882. },
  47883. [
  47884. {
  47885. name: "Normal",
  47886. height: math.unit(9 + 4/12, "feet"),
  47887. default: true
  47888. },
  47889. ]
  47890. ))
  47891. characterMakers.push(() => makeCharacter(
  47892. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47893. {
  47894. front: {
  47895. height: math.unit(3, "meters"),
  47896. name: "Front",
  47897. image: {
  47898. source: "./media/characters/amy/front.svg",
  47899. extra: 1380/1343,
  47900. bottom: 70/1450
  47901. }
  47902. },
  47903. back: {
  47904. height: math.unit(3, "meters"),
  47905. name: "Back",
  47906. image: {
  47907. source: "./media/characters/amy/back.svg",
  47908. extra: 1380/1347,
  47909. bottom: 66/1446
  47910. }
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(3, "meters"),
  47917. default: true
  47918. },
  47919. ]
  47920. ))
  47921. characterMakers.push(() => makeCharacter(
  47922. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47923. {
  47924. side: {
  47925. height: math.unit(47, "cm"),
  47926. weight: math.unit(10.8, "kg"),
  47927. name: "Side",
  47928. image: {
  47929. source: "./media/characters/alphaschakal/side.svg",
  47930. extra: 1058/568,
  47931. bottom: 62/1120
  47932. }
  47933. },
  47934. back: {
  47935. height: math.unit(78, "cm"),
  47936. weight: math.unit(10.8, "kg"),
  47937. name: "Back",
  47938. image: {
  47939. source: "./media/characters/alphaschakal/back.svg",
  47940. extra: 1102/942,
  47941. bottom: 185/1287
  47942. }
  47943. },
  47944. head: {
  47945. height: math.unit(28, "cm"),
  47946. name: "Head",
  47947. image: {
  47948. source: "./media/characters/alphaschakal/head.svg",
  47949. extra: 696/508,
  47950. bottom: 0/696
  47951. }
  47952. },
  47953. paw: {
  47954. height: math.unit(16, "cm"),
  47955. name: "Paw",
  47956. image: {
  47957. source: "./media/characters/alphaschakal/paw.svg"
  47958. }
  47959. },
  47960. },
  47961. [
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(47, "cm"),
  47965. default: true
  47966. },
  47967. {
  47968. name: "Macro",
  47969. height: math.unit(340, "cm")
  47970. },
  47971. ]
  47972. ))
  47973. characterMakers.push(() => makeCharacter(
  47974. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47975. {
  47976. front: {
  47977. height: math.unit(36, "earths"),
  47978. name: "Front",
  47979. image: {
  47980. source: "./media/characters/ecobyss/front.svg",
  47981. extra: 1282/1215,
  47982. bottom: 11/1293
  47983. }
  47984. },
  47985. back: {
  47986. height: math.unit(36, "earths"),
  47987. name: "Back",
  47988. image: {
  47989. source: "./media/characters/ecobyss/back.svg",
  47990. extra: 1291/1222,
  47991. bottom: 8/1299
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(36, "earths"),
  47999. default: true
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48005. {
  48006. front: {
  48007. height: math.unit(12, "feet"),
  48008. name: "Front",
  48009. image: {
  48010. source: "./media/characters/vasuk/front.svg",
  48011. extra: 1326/1207,
  48012. bottom: 64/1390
  48013. }
  48014. },
  48015. },
  48016. [
  48017. {
  48018. name: "Normal",
  48019. height: math.unit(12, "feet"),
  48020. default: true
  48021. },
  48022. ]
  48023. ))
  48024. characterMakers.push(() => makeCharacter(
  48025. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48026. {
  48027. side: {
  48028. height: math.unit(100, "feet"),
  48029. name: "Side",
  48030. image: {
  48031. source: "./media/characters/linneaus/side.svg",
  48032. extra: 987/807,
  48033. bottom: 47/1034
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Macro",
  48040. height: math.unit(100, "feet"),
  48041. default: true
  48042. },
  48043. ]
  48044. ))
  48045. characterMakers.push(() => makeCharacter(
  48046. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48047. {
  48048. front: {
  48049. height: math.unit(8, "feet"),
  48050. weight: math.unit(1200, "lb"),
  48051. name: "Front",
  48052. image: {
  48053. source: "./media/characters/nyterious-daligdig/front.svg",
  48054. extra: 1284/1094,
  48055. bottom: 84/1368
  48056. }
  48057. },
  48058. back: {
  48059. height: math.unit(8, "feet"),
  48060. weight: math.unit(1200, "lb"),
  48061. name: "Back",
  48062. image: {
  48063. source: "./media/characters/nyterious-daligdig/back.svg",
  48064. extra: 1301/1121,
  48065. bottom: 129/1430
  48066. }
  48067. },
  48068. mouth: {
  48069. height: math.unit(1.464, "feet"),
  48070. name: "Mouth",
  48071. image: {
  48072. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48073. }
  48074. },
  48075. },
  48076. [
  48077. {
  48078. name: "Small",
  48079. height: math.unit(8, "feet"),
  48080. default: true
  48081. },
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(15, "feet")
  48085. },
  48086. {
  48087. name: "Macro",
  48088. height: math.unit(90, "feet")
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48094. {
  48095. front: {
  48096. height: math.unit(7 + 4/12, "feet"),
  48097. weight: math.unit(252, "lb"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/bandel/front.svg",
  48101. extra: 1946/1775,
  48102. bottom: 26/1972
  48103. }
  48104. },
  48105. back: {
  48106. height: math.unit(7 + 4/12, "feet"),
  48107. weight: math.unit(252, "lb"),
  48108. name: "Back",
  48109. image: {
  48110. source: "./media/characters/bandel/back.svg",
  48111. extra: 1940/1770,
  48112. bottom: 25/1965
  48113. }
  48114. },
  48115. maw: {
  48116. height: math.unit(2.15, "feet"),
  48117. name: "Maw",
  48118. image: {
  48119. source: "./media/characters/bandel/maw.svg"
  48120. }
  48121. },
  48122. stomach: {
  48123. height: math.unit(1.95, "feet"),
  48124. name: "Stomach",
  48125. image: {
  48126. source: "./media/characters/bandel/stomach.svg"
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(7 + 4/12, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(10 + 5/12, "feet"),
  48143. weight: math.unit(773.5, "kg"),
  48144. name: "Front",
  48145. image: {
  48146. source: "./media/characters/zed/front.svg",
  48147. extra: 987/941,
  48148. bottom: 52/1039
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Short",
  48155. height: math.unit(5 + 4/12, "feet")
  48156. },
  48157. {
  48158. name: "Average",
  48159. height: math.unit(10 + 5/12, "feet"),
  48160. default: true
  48161. },
  48162. {
  48163. name: "Mini-Macro",
  48164. height: math.unit(24 + 9/12, "feet")
  48165. },
  48166. {
  48167. name: "Macro",
  48168. height: math.unit(249, "feet")
  48169. },
  48170. {
  48171. name: "Mega-Macro",
  48172. height: math.unit(12490, "feet")
  48173. },
  48174. {
  48175. name: "Giga-Macro",
  48176. height: math.unit(24.9, "miles")
  48177. },
  48178. {
  48179. name: "Tera-Macro",
  48180. height: math.unit(24900, "miles")
  48181. },
  48182. {
  48183. name: "Cosmic Scale",
  48184. height: math.unit(38.9, "lightyears")
  48185. },
  48186. {
  48187. name: "Universal Scale",
  48188. height: math.unit(138e12, "lightyears")
  48189. },
  48190. ]
  48191. ))
  48192. characterMakers.push(() => makeCharacter(
  48193. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48194. {
  48195. front: {
  48196. height: math.unit(1561, "inches"),
  48197. name: "Front",
  48198. image: {
  48199. source: "./media/characters/ivan/front.svg",
  48200. extra: 1126/1071,
  48201. bottom: 26/1152
  48202. }
  48203. },
  48204. back: {
  48205. height: math.unit(1561, "inches"),
  48206. name: "Back",
  48207. image: {
  48208. source: "./media/characters/ivan/back.svg",
  48209. extra: 1134/1079,
  48210. bottom: 30/1164
  48211. }
  48212. },
  48213. },
  48214. [
  48215. {
  48216. name: "Normal",
  48217. height: math.unit(1561, "inches"),
  48218. default: true
  48219. },
  48220. ]
  48221. ))
  48222. characterMakers.push(() => makeCharacter(
  48223. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48224. {
  48225. front: {
  48226. height: math.unit(5 + 7/12, "feet"),
  48227. weight: math.unit(150, "lb"),
  48228. name: "Front",
  48229. image: {
  48230. source: "./media/characters/robin-arctic-hare/front.svg",
  48231. extra: 1148/974,
  48232. bottom: 20/1168
  48233. }
  48234. },
  48235. },
  48236. [
  48237. {
  48238. name: "Normal",
  48239. height: math.unit(5 + 7/12, "feet"),
  48240. default: true
  48241. },
  48242. ]
  48243. ))
  48244. characterMakers.push(() => makeCharacter(
  48245. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48246. {
  48247. side: {
  48248. height: math.unit(5, "feet"),
  48249. name: "Side",
  48250. image: {
  48251. source: "./media/characters/birch/side.svg",
  48252. extra: 985/796,
  48253. bottom: 111/1096
  48254. }
  48255. },
  48256. },
  48257. [
  48258. {
  48259. name: "Normal",
  48260. height: math.unit(5, "feet"),
  48261. default: true
  48262. },
  48263. ]
  48264. ))
  48265. characterMakers.push(() => makeCharacter(
  48266. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48267. {
  48268. front: {
  48269. height: math.unit(4, "feet"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/rasp/front.svg",
  48273. extra: 561/478,
  48274. bottom: 74/635
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(4, "feet"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(4 + 6/12, "feet"),
  48291. name: "Front",
  48292. image: {
  48293. source: "./media/characters/agatha/front.svg",
  48294. extra: 947/933,
  48295. bottom: 42/989
  48296. }
  48297. },
  48298. back: {
  48299. height: math.unit(4 + 6/12, "feet"),
  48300. name: "Back",
  48301. image: {
  48302. source: "./media/characters/agatha/back.svg",
  48303. extra: 935/922,
  48304. bottom: 48/983
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Normal",
  48311. height: math.unit(4 + 6 /12, "feet"),
  48312. default: true
  48313. },
  48314. {
  48315. name: "Max Size",
  48316. height: math.unit(500, "feet")
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48322. {
  48323. side: {
  48324. height: math.unit(30, "feet"),
  48325. name: "Side",
  48326. image: {
  48327. source: "./media/characters/roggy/side.svg",
  48328. extra: 909/643,
  48329. bottom: 63/972
  48330. }
  48331. },
  48332. lounging: {
  48333. height: math.unit(20, "feet"),
  48334. name: "Lounging",
  48335. image: {
  48336. source: "./media/characters/roggy/lounging.svg",
  48337. extra: 643/479,
  48338. bottom: 145/788
  48339. }
  48340. },
  48341. handpaw: {
  48342. height: math.unit(13.1, "feet"),
  48343. name: "Handpaw",
  48344. image: {
  48345. source: "./media/characters/roggy/handpaw.svg"
  48346. }
  48347. },
  48348. footpaw: {
  48349. height: math.unit(15.8, "feet"),
  48350. name: "Footpaw",
  48351. image: {
  48352. source: "./media/characters/roggy/footpaw.svg"
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Menacing",
  48359. height: math.unit(30, "feet"),
  48360. default: true
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(5 + 7/12, "feet"),
  48369. weight: math.unit(135, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/naomi/front.svg",
  48373. extra: 1209/1154,
  48374. bottom: 129/1338
  48375. }
  48376. },
  48377. back: {
  48378. height: math.unit(5 + 7/12, "feet"),
  48379. weight: math.unit(135, "lb"),
  48380. name: "Back",
  48381. image: {
  48382. source: "./media/characters/naomi/back.svg",
  48383. extra: 1252/1190,
  48384. bottom: 23/1275
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(5 + 7 /12, "feet"),
  48392. default: true
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48398. {
  48399. side: {
  48400. height: math.unit(35, "meters"),
  48401. name: "Side",
  48402. image: {
  48403. source: "./media/characters/kimpi/side.svg",
  48404. extra: 419/382,
  48405. bottom: 63/482
  48406. }
  48407. },
  48408. hand: {
  48409. height: math.unit(8.96, "meters"),
  48410. name: "Hand",
  48411. image: {
  48412. source: "./media/characters/kimpi/hand.svg"
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(35, "meters"),
  48420. default: true
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(4 + 4/12, "feet"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/pepper-purrloin/front.svg",
  48432. extra: 1141/1024,
  48433. bottom: 21/1162
  48434. }
  48435. },
  48436. },
  48437. [
  48438. {
  48439. name: "Normal",
  48440. height: math.unit(4 + 4/12, "feet"),
  48441. default: true
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(6 + 2/12, "feet"),
  48450. name: "Front",
  48451. image: {
  48452. source: "./media/characters/raphael/front.svg",
  48453. extra: 1101/962,
  48454. bottom: 59/1160
  48455. }
  48456. },
  48457. },
  48458. [
  48459. {
  48460. name: "Normal",
  48461. height: math.unit(6 + 2/12, "feet"),
  48462. default: true
  48463. },
  48464. ]
  48465. ))
  48466. characterMakers.push(() => makeCharacter(
  48467. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48468. {
  48469. front: {
  48470. height: math.unit(6, "feet"),
  48471. weight: math.unit(150, "lb"),
  48472. name: "Front",
  48473. image: {
  48474. source: "./media/characters/victor-williams/front.svg",
  48475. extra: 1894/1825,
  48476. bottom: 67/1961
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(6, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(5 + 8/12, "feet"),
  48493. weight: math.unit(150, "lb"),
  48494. name: "Front",
  48495. image: {
  48496. source: "./media/characters/rachel/front.svg",
  48497. extra: 1902/1787,
  48498. bottom: 46/1948
  48499. }
  48500. },
  48501. },
  48502. [
  48503. {
  48504. name: "Base Height",
  48505. height: math.unit(5 + 8/12, "feet"),
  48506. default: true
  48507. },
  48508. {
  48509. name: "Macro",
  48510. height: math.unit(200, "feet")
  48511. },
  48512. {
  48513. name: "Mega Macro",
  48514. height: math.unit(1, "mile")
  48515. },
  48516. {
  48517. name: "Giga Macro",
  48518. height: math.unit(1500, "miles")
  48519. },
  48520. {
  48521. name: "Tera Macro",
  48522. height: math.unit(8000, "miles")
  48523. },
  48524. {
  48525. name: "Tera Macro+",
  48526. height: math.unit(2e5, "miles")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48532. {
  48533. front: {
  48534. height: math.unit(6.5, "feet"),
  48535. name: "Front",
  48536. image: {
  48537. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48538. extra: 860/819,
  48539. bottom: 307/1167
  48540. }
  48541. },
  48542. back: {
  48543. height: math.unit(6.5, "feet"),
  48544. name: "Back",
  48545. image: {
  48546. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48547. extra: 880/837,
  48548. bottom: 395/1275
  48549. }
  48550. },
  48551. sleeping: {
  48552. height: math.unit(2.79, "feet"),
  48553. name: "Sleeping",
  48554. image: {
  48555. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48556. extra: 465/383,
  48557. bottom: 263/728
  48558. }
  48559. },
  48560. maw: {
  48561. height: math.unit(2.52, "feet"),
  48562. name: "Maw",
  48563. image: {
  48564. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(6.5, "feet"),
  48572. default: true
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48578. {
  48579. front: {
  48580. height: math.unit(5, "feet"),
  48581. name: "Front",
  48582. image: {
  48583. source: "./media/characters/nova-nerium/front.svg",
  48584. extra: 1548/1392,
  48585. bottom: 374/1922
  48586. }
  48587. },
  48588. back: {
  48589. height: math.unit(5, "feet"),
  48590. name: "Back",
  48591. image: {
  48592. source: "./media/characters/nova-nerium/back.svg",
  48593. extra: 1658/1468,
  48594. bottom: 257/1915
  48595. }
  48596. },
  48597. },
  48598. [
  48599. {
  48600. name: "Normal",
  48601. height: math.unit(5, "feet"),
  48602. default: true
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48608. {
  48609. front: {
  48610. height: math.unit(5 + 4/12, "feet"),
  48611. name: "Front",
  48612. image: {
  48613. source: "./media/characters/ashe-pyriph/front.svg",
  48614. extra: 1935/1747,
  48615. bottom: 60/1995
  48616. }
  48617. },
  48618. },
  48619. [
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(5 + 4/12, "feet"),
  48623. default: true
  48624. },
  48625. ]
  48626. ))
  48627. characterMakers.push(() => makeCharacter(
  48628. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48629. {
  48630. front: {
  48631. height: math.unit(8.7, "feet"),
  48632. name: "Front",
  48633. image: {
  48634. source: "./media/characters/flicker-wisp/front.svg",
  48635. extra: 1835/1613,
  48636. bottom: 449/2284
  48637. }
  48638. },
  48639. side: {
  48640. height: math.unit(8.7, "feet"),
  48641. name: "Side",
  48642. image: {
  48643. source: "./media/characters/flicker-wisp/side.svg",
  48644. extra: 1841/1642,
  48645. bottom: 336/2177
  48646. },
  48647. default: true
  48648. },
  48649. maw: {
  48650. height: math.unit(3.35, "feet"),
  48651. name: "Maw",
  48652. image: {
  48653. source: "./media/characters/flicker-wisp/maw.svg",
  48654. extra: 2338/1506,
  48655. bottom: 0/2338
  48656. }
  48657. },
  48658. ovipositor: {
  48659. height: math.unit(4.95, "feet"),
  48660. name: "Ovipositor",
  48661. image: {
  48662. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48663. }
  48664. },
  48665. egg: {
  48666. height: math.unit(0.385, "feet"),
  48667. weight: math.unit(2, "lb"),
  48668. name: "Egg",
  48669. image: {
  48670. source: "./media/characters/flicker-wisp/egg.svg"
  48671. }
  48672. },
  48673. },
  48674. [
  48675. {
  48676. name: "Normal",
  48677. height: math.unit(8.7, "feet"),
  48678. default: true
  48679. },
  48680. ]
  48681. ))
  48682. characterMakers.push(() => makeCharacter(
  48683. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48684. {
  48685. side: {
  48686. height: math.unit(11, "feet"),
  48687. name: "Side",
  48688. image: {
  48689. source: "./media/characters/faefnul/side.svg",
  48690. extra: 1100/1007,
  48691. bottom: 0/1100
  48692. }
  48693. },
  48694. },
  48695. [
  48696. {
  48697. name: "Normal",
  48698. height: math.unit(11, "feet"),
  48699. default: true
  48700. },
  48701. ]
  48702. ))
  48703. characterMakers.push(() => makeCharacter(
  48704. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48705. {
  48706. front: {
  48707. height: math.unit(6 + 2/12, "feet"),
  48708. name: "Front",
  48709. image: {
  48710. source: "./media/characters/shady/front.svg",
  48711. extra: 502/461,
  48712. bottom: 9/511
  48713. }
  48714. },
  48715. kneeling: {
  48716. height: math.unit(4.6, "feet"),
  48717. name: "Kneeling",
  48718. image: {
  48719. source: "./media/characters/shady/kneeling.svg",
  48720. extra: 1328/1219,
  48721. bottom: 117/1445
  48722. }
  48723. },
  48724. maw: {
  48725. height: math.unit(2, "feet"),
  48726. name: "Maw",
  48727. image: {
  48728. source: "./media/characters/shady/maw.svg"
  48729. }
  48730. },
  48731. },
  48732. [
  48733. {
  48734. name: "Nano",
  48735. height: math.unit(1, "mm")
  48736. },
  48737. {
  48738. name: "Micro",
  48739. height: math.unit(12, "mm")
  48740. },
  48741. {
  48742. name: "Tiny",
  48743. height: math.unit(3, "inches")
  48744. },
  48745. {
  48746. name: "Normal",
  48747. height: math.unit(6 + 2/12, "feet"),
  48748. default: true
  48749. },
  48750. {
  48751. name: "Big",
  48752. height: math.unit(15, "feet")
  48753. },
  48754. {
  48755. name: "Macro",
  48756. height: math.unit(150, "feet")
  48757. },
  48758. {
  48759. name: "Titanic",
  48760. height: math.unit(500, "feet")
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48766. {
  48767. front: {
  48768. height: math.unit(12, "feet"),
  48769. name: "Front",
  48770. image: {
  48771. source: "./media/characters/fenrir/front.svg",
  48772. extra: 968/875,
  48773. bottom: 22/990
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Big",
  48780. height: math.unit(12, "feet"),
  48781. default: true
  48782. },
  48783. ]
  48784. ))
  48785. characterMakers.push(() => makeCharacter(
  48786. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48787. {
  48788. front: {
  48789. height: math.unit(5 + 4/12, "feet"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/makar/front.svg",
  48793. extra: 1181/1112,
  48794. bottom: 78/1259
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(5 + 4/12, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(5 + 7/12, "feet"),
  48811. name: "Front",
  48812. image: {
  48813. source: "./media/characters/callow/front.svg",
  48814. extra: 1482/1304,
  48815. bottom: 23/1505
  48816. }
  48817. },
  48818. back: {
  48819. height: math.unit(5 + 7/12, "feet"),
  48820. name: "Back",
  48821. image: {
  48822. source: "./media/characters/callow/back.svg",
  48823. extra: 1484/1296,
  48824. bottom: 25/1509
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Micro",
  48831. height: math.unit(3, "inches"),
  48832. default: true
  48833. },
  48834. {
  48835. name: "Normal",
  48836. height: math.unit(5 + 7/12, "feet")
  48837. },
  48838. ]
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48842. {
  48843. front: {
  48844. height: math.unit(6 + 2/12, "feet"),
  48845. name: "Front",
  48846. image: {
  48847. source: "./media/characters/natel/front.svg",
  48848. extra: 1833/1692,
  48849. bottom: 166/1999
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(6 + 2/12, "feet"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(1.75, "meters"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/misu/front.svg",
  48869. extra: 1690/1558,
  48870. bottom: 234/1924
  48871. }
  48872. },
  48873. back: {
  48874. height: math.unit(1.75, "meters"),
  48875. name: "Back",
  48876. image: {
  48877. source: "./media/characters/misu/back.svg",
  48878. extra: 1762/1618,
  48879. bottom: 146/1908
  48880. }
  48881. },
  48882. frontNude: {
  48883. height: math.unit(1.75, "meters"),
  48884. name: "Front (Nude)",
  48885. image: {
  48886. source: "./media/characters/misu/front-nude.svg",
  48887. extra: 1690/1558,
  48888. bottom: 234/1924
  48889. }
  48890. },
  48891. backNude: {
  48892. height: math.unit(1.75, "meters"),
  48893. name: "Back (Nude)",
  48894. image: {
  48895. source: "./media/characters/misu/back-nude.svg",
  48896. extra: 1762/1618,
  48897. bottom: 146/1908
  48898. }
  48899. },
  48900. frontErect: {
  48901. height: math.unit(1.75, "meters"),
  48902. name: "Front (Erect)",
  48903. image: {
  48904. source: "./media/characters/misu/front-erect.svg",
  48905. extra: 1690/1558,
  48906. bottom: 234/1924
  48907. }
  48908. },
  48909. maw: {
  48910. height: math.unit(0.47, "meters"),
  48911. name: "Maw",
  48912. image: {
  48913. source: "./media/characters/misu/maw.svg"
  48914. }
  48915. },
  48916. head: {
  48917. height: math.unit(0.35, "meters"),
  48918. name: "Head",
  48919. image: {
  48920. source: "./media/characters/misu/head.svg"
  48921. }
  48922. },
  48923. rear: {
  48924. height: math.unit(0.47, "meters"),
  48925. name: "Rear",
  48926. image: {
  48927. source: "./media/characters/misu/rear.svg"
  48928. }
  48929. },
  48930. },
  48931. [
  48932. {
  48933. name: "Normal",
  48934. height: math.unit(1.75, "meters")
  48935. },
  48936. {
  48937. name: "Not good for the people",
  48938. height: math.unit(42, "meters")
  48939. },
  48940. {
  48941. name: "Not good for the neighborhood",
  48942. height: math.unit(135, "meters")
  48943. },
  48944. {
  48945. name: "Bit bigger problem",
  48946. height: math.unit(380, "meters"),
  48947. default: true
  48948. },
  48949. {
  48950. name: "Not good for the city",
  48951. height: math.unit(1.5, "km")
  48952. },
  48953. {
  48954. name: "Not good for the county",
  48955. height: math.unit(5.5, "km")
  48956. },
  48957. {
  48958. name: "Not good for the state",
  48959. height: math.unit(25, "km")
  48960. },
  48961. {
  48962. name: "Not good for the country",
  48963. height: math.unit(125, "km")
  48964. },
  48965. {
  48966. name: "Not good for the continent",
  48967. height: math.unit(2100, "km")
  48968. },
  48969. {
  48970. name: "Not good for the planet",
  48971. height: math.unit(35000, "km")
  48972. },
  48973. {
  48974. name: "Just no",
  48975. height: math.unit(8.5e18, "km")
  48976. },
  48977. ]
  48978. ))
  48979. characterMakers.push(() => makeCharacter(
  48980. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48981. {
  48982. front: {
  48983. height: math.unit(6.5, "feet"),
  48984. name: "Front",
  48985. image: {
  48986. source: "./media/characters/poppy/front.svg",
  48987. extra: 1878/1812,
  48988. bottom: 43/1921
  48989. }
  48990. },
  48991. feet: {
  48992. height: math.unit(1.06, "feet"),
  48993. name: "Feet",
  48994. image: {
  48995. source: "./media/characters/poppy/feet.svg",
  48996. extra: 1083/1083,
  48997. bottom: 87/1170
  48998. }
  48999. },
  49000. },
  49001. [
  49002. {
  49003. name: "Human",
  49004. height: math.unit(6.5, "feet")
  49005. },
  49006. {
  49007. name: "Default",
  49008. height: math.unit(300, "feet"),
  49009. default: true
  49010. },
  49011. {
  49012. name: "Huge",
  49013. height: math.unit(850, "feet")
  49014. },
  49015. {
  49016. name: "Mega",
  49017. height: math.unit(8000, "feet")
  49018. },
  49019. {
  49020. name: "Giga",
  49021. height: math.unit(300, "miles")
  49022. },
  49023. ]
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49027. {
  49028. bipedal: {
  49029. height: math.unit(7, "feet"),
  49030. name: "Bipedal",
  49031. image: {
  49032. source: "./media/characters/zener/bipedal.svg",
  49033. extra: 874/805,
  49034. bottom: 109/983
  49035. }
  49036. },
  49037. quadrupedal: {
  49038. height: math.unit(4.64, "feet"),
  49039. name: "Quadrupedal",
  49040. image: {
  49041. source: "./media/characters/zener/quadrupedal.svg",
  49042. extra: 638/507,
  49043. bottom: 190/828
  49044. }
  49045. },
  49046. cock: {
  49047. height: math.unit(18, "inches"),
  49048. name: "Cock",
  49049. image: {
  49050. source: "./media/characters/zener/cock.svg"
  49051. }
  49052. },
  49053. },
  49054. [
  49055. {
  49056. name: "Normal",
  49057. height: math.unit(7, "feet"),
  49058. default: true
  49059. },
  49060. ]
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49064. {
  49065. nude: {
  49066. height: math.unit(5 + 6/12, "feet"),
  49067. name: "Nude",
  49068. image: {
  49069. source: "./media/characters/charlie-dog/nude.svg",
  49070. extra: 768/734,
  49071. bottom: 26/794
  49072. }
  49073. },
  49074. dressed: {
  49075. height: math.unit(5 + 6/12, "feet"),
  49076. name: "Dressed",
  49077. image: {
  49078. source: "./media/characters/charlie-dog/dressed.svg",
  49079. extra: 768/734,
  49080. bottom: 26/794
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(5 + 6/12, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(6 + 4/12, "feet"),
  49097. name: "Front",
  49098. image: {
  49099. source: "./media/characters/ir'istrasz/front.svg",
  49100. extra: 1014/977,
  49101. bottom: 65/1079
  49102. }
  49103. },
  49104. back: {
  49105. height: math.unit(6 + 4/12, "feet"),
  49106. name: "Back",
  49107. image: {
  49108. source: "./media/characters/ir'istrasz/back.svg",
  49109. extra: 1024/992,
  49110. bottom: 34/1058
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Normal",
  49117. height: math.unit(6 + 4/12, "feet"),
  49118. default: true
  49119. },
  49120. ]
  49121. ))
  49122. characterMakers.push(() => makeCharacter(
  49123. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49124. {
  49125. front: {
  49126. height: math.unit(5 + 8/12, "feet"),
  49127. name: "Front",
  49128. image: {
  49129. source: "./media/characters/dee-ditto/front.svg",
  49130. extra: 1874/1785,
  49131. bottom: 68/1942
  49132. }
  49133. },
  49134. back: {
  49135. height: math.unit(5 + 8/12, "feet"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/dee-ditto/back.svg",
  49139. extra: 1870/1783,
  49140. bottom: 77/1947
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(5 + 8/12, "feet"),
  49148. default: true
  49149. },
  49150. ]
  49151. ))
  49152. characterMakers.push(() => makeCharacter(
  49153. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49154. {
  49155. front: {
  49156. height: math.unit(7 + 6/12, "feet"),
  49157. name: "Front",
  49158. image: {
  49159. source: "./media/characters/fey/front.svg",
  49160. extra: 995/979,
  49161. bottom: 30/1025
  49162. }
  49163. },
  49164. back: {
  49165. height: math.unit(7 + 6/12, "feet"),
  49166. name: "Back",
  49167. image: {
  49168. source: "./media/characters/fey/back.svg",
  49169. extra: 1079/1008,
  49170. bottom: 5/1084
  49171. }
  49172. },
  49173. dressed: {
  49174. height: math.unit(7 + 6/12, "feet"),
  49175. name: "Dressed",
  49176. image: {
  49177. source: "./media/characters/fey/dressed.svg",
  49178. extra: 995/979,
  49179. bottom: 30/1025
  49180. }
  49181. },
  49182. },
  49183. [
  49184. {
  49185. name: "Normal",
  49186. height: math.unit(7 + 6/12, "feet"),
  49187. default: true
  49188. },
  49189. ]
  49190. ))
  49191. characterMakers.push(() => makeCharacter(
  49192. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49193. {
  49194. standing: {
  49195. height: math.unit(17, "feet"),
  49196. name: "Standing",
  49197. image: {
  49198. source: "./media/characters/aster/standing.svg",
  49199. extra: 1798/1598,
  49200. bottom: 117/1915
  49201. }
  49202. },
  49203. },
  49204. [
  49205. {
  49206. name: "Normal",
  49207. height: math.unit(17, "feet"),
  49208. default: true
  49209. },
  49210. {
  49211. name: "Homewrecker",
  49212. height: math.unit(95, "feet")
  49213. },
  49214. {
  49215. name: "Planet Devourer",
  49216. height: math.unit(1008000, "miles")
  49217. },
  49218. ]
  49219. ))
  49220. characterMakers.push(() => makeCharacter(
  49221. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49222. {
  49223. front: {
  49224. height: math.unit(6 + 5/12, "feet"),
  49225. weight: math.unit(265, "lb"),
  49226. name: "Front",
  49227. image: {
  49228. source: "./media/characters/devon-childs/front.svg",
  49229. extra: 1795/1721,
  49230. bottom: 41/1836
  49231. }
  49232. },
  49233. side: {
  49234. height: math.unit(6 + 5/12, "feet"),
  49235. weight: math.unit(265, "lb"),
  49236. name: "Side",
  49237. image: {
  49238. source: "./media/characters/devon-childs/side.svg",
  49239. extra: 1812/1738,
  49240. bottom: 30/1842
  49241. }
  49242. },
  49243. back: {
  49244. height: math.unit(6 + 5/12, "feet"),
  49245. weight: math.unit(265, "lb"),
  49246. name: "Back",
  49247. image: {
  49248. source: "./media/characters/devon-childs/back.svg",
  49249. extra: 1808/1735,
  49250. bottom: 23/1831
  49251. }
  49252. },
  49253. hand: {
  49254. height: math.unit(1.464, "feet"),
  49255. name: "Hand",
  49256. image: {
  49257. source: "./media/characters/devon-childs/hand.svg"
  49258. }
  49259. },
  49260. foot: {
  49261. height: math.unit(1.6, "feet"),
  49262. name: "Foot",
  49263. image: {
  49264. source: "./media/characters/devon-childs/foot.svg"
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Micro",
  49271. height: math.unit(7, "cm")
  49272. },
  49273. {
  49274. name: "Normal",
  49275. height: math.unit(6 + 5/12, "feet"),
  49276. default: true
  49277. },
  49278. {
  49279. name: "Macro",
  49280. height: math.unit(154, "feet")
  49281. },
  49282. ]
  49283. ))
  49284. characterMakers.push(() => makeCharacter(
  49285. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49286. {
  49287. front: {
  49288. height: math.unit(6, "feet"),
  49289. weight: math.unit(180, "lb"),
  49290. name: "Front",
  49291. image: {
  49292. source: "./media/characters/lydemox-vir/front.svg",
  49293. extra: 1632/1435,
  49294. bottom: 58/1690
  49295. }
  49296. },
  49297. frontSFW: {
  49298. height: math.unit(6, "feet"),
  49299. weight: math.unit(180, "lb"),
  49300. name: "Front (SFW)",
  49301. image: {
  49302. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49303. extra: 1632/1435,
  49304. bottom: 58/1690
  49305. }
  49306. },
  49307. back: {
  49308. height: math.unit(6, "feet"),
  49309. weight: math.unit(180, "lb"),
  49310. name: "Back",
  49311. image: {
  49312. source: "./media/characters/lydemox-vir/back.svg",
  49313. extra: 1593/1408,
  49314. bottom: 31/1624
  49315. }
  49316. },
  49317. paw: {
  49318. height: math.unit(1.85, "feet"),
  49319. name: "Paw",
  49320. image: {
  49321. source: "./media/characters/lydemox-vir/paw.svg"
  49322. }
  49323. },
  49324. dick: {
  49325. height: math.unit(1.8, "feet"),
  49326. name: "Dick",
  49327. image: {
  49328. source: "./media/characters/lydemox-vir/dick.svg"
  49329. }
  49330. },
  49331. },
  49332. [
  49333. {
  49334. name: "Macro",
  49335. height: math.unit(100, "feet"),
  49336. default: true
  49337. },
  49338. {
  49339. name: "Teramacro",
  49340. height: math.unit(1, "earth")
  49341. },
  49342. {
  49343. name: "Planetary",
  49344. height: math.unit(20, "earths")
  49345. },
  49346. ]
  49347. ))
  49348. characterMakers.push(() => makeCharacter(
  49349. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49350. {
  49351. front: {
  49352. height: math.unit(15 + 8/12, "feet"),
  49353. weight: math.unit(1237, "kg"),
  49354. name: "Front",
  49355. image: {
  49356. source: "./media/characters/mia/front.svg",
  49357. extra: 1573/1446,
  49358. bottom: 58/1631
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Small",
  49365. height: math.unit(9 + 5/12, "feet")
  49366. },
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(15 + 8/12, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49376. {
  49377. front: {
  49378. height: math.unit(10 + 6/12, "feet"),
  49379. weight: math.unit(1.3, "tons"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/mr-graves/front.svg",
  49383. extra: 1779/1695,
  49384. bottom: 198/1977
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Normal",
  49391. height: math.unit(10 + 6 /12, "feet"),
  49392. default: true
  49393. },
  49394. ]
  49395. ))
  49396. characterMakers.push(() => makeCharacter(
  49397. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49398. {
  49399. dressedFront: {
  49400. height: math.unit(5 + 8/12, "feet"),
  49401. weight: math.unit(125, "lb"),
  49402. name: "Dressed (Front)",
  49403. image: {
  49404. source: "./media/characters/jess/dressed-front.svg",
  49405. extra: 1176/1152,
  49406. bottom: 42/1218
  49407. }
  49408. },
  49409. dressedSide: {
  49410. height: math.unit(5 + 8/12, "feet"),
  49411. weight: math.unit(125, "lb"),
  49412. name: "Dressed (Side)",
  49413. image: {
  49414. source: "./media/characters/jess/dressed-side.svg",
  49415. extra: 1204/1190,
  49416. bottom: 6/1210
  49417. }
  49418. },
  49419. nudeFront: {
  49420. height: math.unit(5 + 8/12, "feet"),
  49421. weight: math.unit(125, "lb"),
  49422. name: "Nude (Front)",
  49423. image: {
  49424. source: "./media/characters/jess/nude-front.svg",
  49425. extra: 1176/1152,
  49426. bottom: 42/1218
  49427. }
  49428. },
  49429. nudeSide: {
  49430. height: math.unit(5 + 8/12, "feet"),
  49431. weight: math.unit(125, "lb"),
  49432. name: "Nude (Side)",
  49433. image: {
  49434. source: "./media/characters/jess/nude-side.svg",
  49435. extra: 1204/1190,
  49436. bottom: 6/1210
  49437. }
  49438. },
  49439. organsFront: {
  49440. height: math.unit(2.83799342105, "feet"),
  49441. name: "Organs (Front)",
  49442. image: {
  49443. source: "./media/characters/jess/organs-front.svg"
  49444. }
  49445. },
  49446. organsSide: {
  49447. height: math.unit(2.64225290474, "feet"),
  49448. name: "Organs (Side)",
  49449. image: {
  49450. source: "./media/characters/jess/organs-side.svg"
  49451. }
  49452. },
  49453. digestiveTractFront: {
  49454. height: math.unit(2.8106580871, "feet"),
  49455. name: "Digestive Tract (Front)",
  49456. image: {
  49457. source: "./media/characters/jess/digestive-tract-front.svg"
  49458. }
  49459. },
  49460. digestiveTractSide: {
  49461. height: math.unit(2.54365045014, "feet"),
  49462. name: "Digestive Tract (Side)",
  49463. image: {
  49464. source: "./media/characters/jess/digestive-tract-side.svg"
  49465. }
  49466. },
  49467. respiratorySystemFront: {
  49468. height: math.unit(1.11196233456, "feet"),
  49469. name: "Respiratory System (Front)",
  49470. image: {
  49471. source: "./media/characters/jess/respiratory-system-front.svg"
  49472. }
  49473. },
  49474. respiratorySystemSide: {
  49475. height: math.unit(0.89327966297, "feet"),
  49476. name: "Respiratory System (Side)",
  49477. image: {
  49478. source: "./media/characters/jess/respiratory-system-side.svg"
  49479. }
  49480. },
  49481. urinaryTractFront: {
  49482. height: math.unit(1.16126356186, "feet"),
  49483. name: "Urinary Tract (Front)",
  49484. image: {
  49485. source: "./media/characters/jess/urinary-tract-front.svg"
  49486. }
  49487. },
  49488. urinaryTractSide: {
  49489. height: math.unit(1.20910039627, "feet"),
  49490. name: "Urinary Tract (Side)",
  49491. image: {
  49492. source: "./media/characters/jess/urinary-tract-side.svg"
  49493. }
  49494. },
  49495. reproductiveOrgansFront: {
  49496. height: math.unit(0.48422591566, "feet"),
  49497. name: "Reproductive Organs (Front)",
  49498. image: {
  49499. source: "./media/characters/jess/reproductive-organs-front.svg"
  49500. }
  49501. },
  49502. reproductiveOrgansSide: {
  49503. height: math.unit(0.61553314481, "feet"),
  49504. name: "Reproductive Organs (Side)",
  49505. image: {
  49506. source: "./media/characters/jess/reproductive-organs-side.svg"
  49507. }
  49508. },
  49509. breastsFront: {
  49510. height: math.unit(0.47690395121, "feet"),
  49511. name: "Breasts (Front)",
  49512. image: {
  49513. source: "./media/characters/jess/breasts-front.svg"
  49514. }
  49515. },
  49516. breastsSide: {
  49517. height: math.unit(0.30556998307, "feet"),
  49518. name: "Breasts (Side)",
  49519. image: {
  49520. source: "./media/characters/jess/breasts-side.svg"
  49521. }
  49522. },
  49523. heartFront: {
  49524. height: math.unit(0.53011022622, "feet"),
  49525. name: "Heart (Front)",
  49526. image: {
  49527. source: "./media/characters/jess/heart-front.svg"
  49528. }
  49529. },
  49530. heartSide: {
  49531. height: math.unit(0.51790695213, "feet"),
  49532. name: "Heart (Side)",
  49533. image: {
  49534. source: "./media/characters/jess/heart-side.svg"
  49535. }
  49536. },
  49537. earsAndNoseFront: {
  49538. height: math.unit(0.29385483995, "feet"),
  49539. name: "Ears and Nose (Front)",
  49540. image: {
  49541. source: "./media/characters/jess/ears-and-nose-front.svg"
  49542. }
  49543. },
  49544. earsAndNoseSide: {
  49545. height: math.unit(0.18109658741, "feet"),
  49546. name: "Ears and Nose (Side)",
  49547. image: {
  49548. source: "./media/characters/jess/ears-and-nose-side.svg"
  49549. }
  49550. },
  49551. },
  49552. [
  49553. {
  49554. name: "Normal",
  49555. height: math.unit(5 + 8/12, "feet"),
  49556. default: true
  49557. },
  49558. ]
  49559. ))
  49560. characterMakers.push(() => makeCharacter(
  49561. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49562. {
  49563. front: {
  49564. height: math.unit(6, "feet"),
  49565. weight: math.unit(6.64467e-7, "grams"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/wimpering/front.svg",
  49569. extra: 597/587,
  49570. bottom: 34/631
  49571. }
  49572. },
  49573. },
  49574. [
  49575. {
  49576. name: "Micro",
  49577. height: math.unit(0.4, "mm"),
  49578. default: true
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(5 + 2/12, "feet"),
  49587. weight: math.unit(110, "lb"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/keltre/front.svg",
  49591. extra: 1099/1057,
  49592. bottom: 22/1121
  49593. }
  49594. },
  49595. back: {
  49596. height: math.unit(5 + 2/12, "feet"),
  49597. weight: math.unit(110, "lb"),
  49598. name: "Back",
  49599. image: {
  49600. source: "./media/characters/keltre/back.svg",
  49601. extra: 1095/1053,
  49602. bottom: 17/1112
  49603. }
  49604. },
  49605. dressed: {
  49606. height: math.unit(5 + 2/12, "feet"),
  49607. weight: math.unit(110, "lb"),
  49608. name: "Dressed",
  49609. image: {
  49610. source: "./media/characters/keltre/dressed.svg",
  49611. extra: 1099/1057,
  49612. bottom: 22/1121
  49613. }
  49614. },
  49615. winter: {
  49616. height: math.unit(5 + 2/12, "feet"),
  49617. weight: math.unit(110, "lb"),
  49618. name: "Winter",
  49619. image: {
  49620. source: "./media/characters/keltre/winter.svg",
  49621. extra: 1099/1057,
  49622. bottom: 22/1121
  49623. }
  49624. },
  49625. head: {
  49626. height: math.unit(1.61 * 0.86, "feet"),
  49627. name: "Head",
  49628. image: {
  49629. source: "./media/characters/keltre/head.svg",
  49630. extra: 534/421,
  49631. bottom: 0/534
  49632. }
  49633. },
  49634. hand: {
  49635. height: math.unit(1.3 * 0.86, "feet"),
  49636. name: "Hand",
  49637. image: {
  49638. source: "./media/characters/keltre/hand.svg"
  49639. }
  49640. },
  49641. foot: {
  49642. height: math.unit(1.8 * 0.86, "feet"),
  49643. name: "Foot",
  49644. image: {
  49645. source: "./media/characters/keltre/foot.svg"
  49646. }
  49647. },
  49648. },
  49649. [
  49650. {
  49651. name: "Fine",
  49652. height: math.unit(1, "inch")
  49653. },
  49654. {
  49655. name: "Dimnutive",
  49656. height: math.unit(4, "inches")
  49657. },
  49658. {
  49659. name: "Tiny",
  49660. height: math.unit(1, "foot")
  49661. },
  49662. {
  49663. name: "Small",
  49664. height: math.unit(3, "feet")
  49665. },
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(5 + 2/12, "feet"),
  49669. default: true
  49670. },
  49671. ]
  49672. ))
  49673. characterMakers.push(() => makeCharacter(
  49674. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49675. {
  49676. front: {
  49677. height: math.unit(6 + 2/12, "feet"),
  49678. name: "Front",
  49679. image: {
  49680. source: "./media/characters/nox/front.svg",
  49681. extra: 1917/1830,
  49682. bottom: 74/1991
  49683. }
  49684. },
  49685. back: {
  49686. height: math.unit(6 + 2/12, "feet"),
  49687. name: "Back",
  49688. image: {
  49689. source: "./media/characters/nox/back.svg",
  49690. extra: 1896/1815,
  49691. bottom: 21/1917
  49692. }
  49693. },
  49694. head: {
  49695. height: math.unit(1.1, "feet"),
  49696. name: "Head",
  49697. image: {
  49698. source: "./media/characters/nox/head.svg",
  49699. extra: 874/704,
  49700. bottom: 0/874
  49701. }
  49702. },
  49703. tattoo: {
  49704. height: math.unit(0.729, "feet"),
  49705. name: "Tattoo",
  49706. image: {
  49707. source: "./media/characters/nox/tattoo.svg"
  49708. }
  49709. },
  49710. },
  49711. [
  49712. {
  49713. name: "Normal",
  49714. height: math.unit(6 + 2/12, "feet")
  49715. },
  49716. {
  49717. name: "Gigamacro",
  49718. height: math.unit(2, "earths"),
  49719. default: true
  49720. },
  49721. {
  49722. name: "Cosmic",
  49723. height: math.unit(867, "yottameters")
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(6, "feet"),
  49732. weight: math.unit(150, "lb"),
  49733. name: "Front",
  49734. image: {
  49735. source: "./media/characters/caspian/front.svg",
  49736. extra: 1443/1359,
  49737. bottom: 0/1443
  49738. }
  49739. },
  49740. back: {
  49741. height: math.unit(6, "feet"),
  49742. weight: math.unit(150, "lb"),
  49743. name: "Back",
  49744. image: {
  49745. source: "./media/characters/caspian/back.svg",
  49746. extra: 1379/1309,
  49747. bottom: 0/1379
  49748. }
  49749. },
  49750. head: {
  49751. height: math.unit(0.9, "feet"),
  49752. name: "Head",
  49753. image: {
  49754. source: "./media/characters/caspian/head.svg",
  49755. extra: 692/492,
  49756. bottom: 0/692
  49757. }
  49758. },
  49759. headAlt: {
  49760. height: math.unit(0.95, "feet"),
  49761. name: "Head (Alt)",
  49762. image: {
  49763. source: "./media/characters/caspian/head-alt.svg",
  49764. extra: 668/508,
  49765. bottom: 0/668
  49766. }
  49767. },
  49768. hand: {
  49769. height: math.unit(0.8, "feet"),
  49770. name: "Hand",
  49771. image: {
  49772. source: "./media/characters/caspian/hand.svg"
  49773. }
  49774. },
  49775. paw: {
  49776. height: math.unit(0.95, "feet"),
  49777. name: "Paw",
  49778. image: {
  49779. source: "./media/characters/caspian/paw.svg"
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Normal",
  49786. height: math.unit(162, "feet"),
  49787. default: true
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49793. {
  49794. front: {
  49795. height: math.unit(6, "feet"),
  49796. name: "Front",
  49797. image: {
  49798. source: "./media/characters/myra-aisling/front.svg",
  49799. extra: 1268/1166,
  49800. bottom: 73/1341
  49801. }
  49802. },
  49803. back: {
  49804. height: math.unit(6, "feet"),
  49805. name: "Back",
  49806. image: {
  49807. source: "./media/characters/myra-aisling/back.svg",
  49808. extra: 1249/1149,
  49809. bottom: 79/1328
  49810. }
  49811. },
  49812. dressed: {
  49813. height: math.unit(6, "feet"),
  49814. name: "Dressed",
  49815. image: {
  49816. source: "./media/characters/myra-aisling/dressed.svg",
  49817. extra: 1290/1189,
  49818. bottom: 47/1337
  49819. }
  49820. },
  49821. hand: {
  49822. height: math.unit(1.1, "feet"),
  49823. name: "Hand",
  49824. image: {
  49825. source: "./media/characters/myra-aisling/hand.svg"
  49826. }
  49827. },
  49828. paw: {
  49829. height: math.unit(1.23, "feet"),
  49830. name: "Paw",
  49831. image: {
  49832. source: "./media/characters/myra-aisling/paw.svg"
  49833. }
  49834. },
  49835. },
  49836. [
  49837. {
  49838. name: "Normal",
  49839. height: math.unit(160, "feet"),
  49840. default: true
  49841. },
  49842. ]
  49843. ))
  49844. characterMakers.push(() => makeCharacter(
  49845. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49846. {
  49847. front: {
  49848. height: math.unit(6, "feet"),
  49849. name: "Front",
  49850. image: {
  49851. source: "./media/characters/tenley-sidero/front.svg",
  49852. extra: 1365/1276,
  49853. bottom: 47/1412
  49854. }
  49855. },
  49856. back: {
  49857. height: math.unit(6, "feet"),
  49858. name: "Back",
  49859. image: {
  49860. source: "./media/characters/tenley-sidero/back.svg",
  49861. extra: 1383/1283,
  49862. bottom: 35/1418
  49863. }
  49864. },
  49865. dressed: {
  49866. height: math.unit(6, "feet"),
  49867. name: "Dressed",
  49868. image: {
  49869. source: "./media/characters/tenley-sidero/dressed.svg",
  49870. extra: 1364/1275,
  49871. bottom: 42/1406
  49872. }
  49873. },
  49874. head: {
  49875. height: math.unit(1.47, "feet"),
  49876. name: "Head",
  49877. image: {
  49878. source: "./media/characters/tenley-sidero/head.svg",
  49879. extra: 610/490,
  49880. bottom: 0/610
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Normal",
  49887. height: math.unit(154, "feet"),
  49888. default: true
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(5, "inches"),
  49897. name: "Front",
  49898. image: {
  49899. source: "./media/characters/mallory/front.svg",
  49900. extra: 1919/1678,
  49901. bottom: 29/1948
  49902. }
  49903. },
  49904. hand: {
  49905. height: math.unit(0.73, "inches"),
  49906. name: "Hand",
  49907. image: {
  49908. source: "./media/characters/mallory/hand.svg"
  49909. }
  49910. },
  49911. paw: {
  49912. height: math.unit(0.68, "inches"),
  49913. name: "Paw",
  49914. image: {
  49915. source: "./media/characters/mallory/paw.svg"
  49916. }
  49917. },
  49918. },
  49919. [
  49920. {
  49921. name: "Small",
  49922. height: math.unit(5, "inches"),
  49923. default: true
  49924. },
  49925. ]
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49929. {
  49930. naked: {
  49931. height: math.unit(6, "feet"),
  49932. name: "Naked",
  49933. image: {
  49934. source: "./media/characters/mab/naked.svg",
  49935. extra: 1855/1757,
  49936. bottom: 208/2063
  49937. }
  49938. },
  49939. outside: {
  49940. height: math.unit(6, "feet"),
  49941. name: "Outside",
  49942. image: {
  49943. source: "./media/characters/mab/outside.svg",
  49944. extra: 1855/1757,
  49945. bottom: 208/2063
  49946. }
  49947. },
  49948. party: {
  49949. height: math.unit(6, "feet"),
  49950. name: "Party",
  49951. image: {
  49952. source: "./media/characters/mab/party.svg",
  49953. extra: 1855/1757,
  49954. bottom: 208/2063
  49955. }
  49956. },
  49957. },
  49958. [
  49959. {
  49960. name: "Normal",
  49961. height: math.unit(165, "feet"),
  49962. default: true
  49963. },
  49964. ]
  49965. ))
  49966. characterMakers.push(() => makeCharacter(
  49967. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49968. {
  49969. feral: {
  49970. height: math.unit(12, "feet"),
  49971. weight: math.unit(20000, "lb"),
  49972. name: "Side",
  49973. image: {
  49974. source: "./media/characters/winter/feral.svg",
  49975. extra: 1286/943,
  49976. bottom: 112/1398
  49977. },
  49978. form: "feral",
  49979. default: true
  49980. },
  49981. feralNsfw: {
  49982. height: math.unit(12, "feet"),
  49983. weight: math.unit(20000, "lb"),
  49984. name: "Side (NSFW)",
  49985. image: {
  49986. source: "./media/characters/winter/feral-nsfw.svg",
  49987. extra: 1286/943,
  49988. bottom: 112/1398
  49989. },
  49990. form: "feral"
  49991. },
  49992. dick: {
  49993. height: math.unit(3.79, "feet"),
  49994. name: "Dick",
  49995. image: {
  49996. source: "./media/characters/winter/dick.svg"
  49997. },
  49998. form: "feral"
  49999. },
  50000. anthro: {
  50001. height: math.unit(12, "feet"),
  50002. weight: math.unit(10, "tons"),
  50003. name: "Anthro",
  50004. image: {
  50005. source: "./media/characters/winter/anthro.svg",
  50006. extra: 1701/1553,
  50007. bottom: 64/1765
  50008. },
  50009. form: "anthro",
  50010. default: true
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Big",
  50016. height: math.unit(12, "feet"),
  50017. default: true,
  50018. form: "feral"
  50019. },
  50020. {
  50021. name: "Big",
  50022. height: math.unit(12, "feet"),
  50023. default: true,
  50024. form: "anthro"
  50025. },
  50026. ],
  50027. {
  50028. "feral": {
  50029. name: "Feral",
  50030. default: true
  50031. },
  50032. "anthro": {
  50033. name: "Anthro"
  50034. }
  50035. }
  50036. ))
  50037. characterMakers.push(() => makeCharacter(
  50038. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50039. {
  50040. front: {
  50041. height: math.unit(4.1, "inches"),
  50042. name: "Front",
  50043. image: {
  50044. source: "./media/characters/alto/front.svg",
  50045. extra: 736/627,
  50046. bottom: 90/826
  50047. }
  50048. },
  50049. },
  50050. [
  50051. {
  50052. name: "Normal",
  50053. height: math.unit(4.1, "inches"),
  50054. default: true
  50055. },
  50056. ]
  50057. ))
  50058. characterMakers.push(() => makeCharacter(
  50059. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50060. {
  50061. sitting: {
  50062. height: math.unit(3, "feet"),
  50063. name: "Sitting",
  50064. image: {
  50065. source: "./media/characters/ratstrid-v/sitting.svg",
  50066. extra: 355/310,
  50067. bottom: 136/491
  50068. }
  50069. },
  50070. },
  50071. [
  50072. {
  50073. name: "Normal",
  50074. height: math.unit(3, "feet"),
  50075. default: true
  50076. },
  50077. ]
  50078. ))
  50079. characterMakers.push(() => makeCharacter(
  50080. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50081. {
  50082. back: {
  50083. height: math.unit(6, "feet"),
  50084. weight: math.unit(350, "lb"),
  50085. name: "Back",
  50086. image: {
  50087. source: "./media/characters/siz/back.svg",
  50088. extra: 1449/1274,
  50089. bottom: 13/1462
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Over-Overcompressed",
  50096. height: math.unit(8, "feet")
  50097. },
  50098. {
  50099. name: "Overcompressed",
  50100. height: math.unit(32, "feet")
  50101. },
  50102. {
  50103. name: "Compressed",
  50104. height: math.unit(128, "feet"),
  50105. default: true
  50106. },
  50107. {
  50108. name: "Half-Compressed",
  50109. height: math.unit(512, "feet")
  50110. },
  50111. {
  50112. name: "Quarter-Compressed",
  50113. height: math.unit(2048, "feet")
  50114. },
  50115. {
  50116. name: "Uncompressed?",
  50117. height: math.unit(8192, "feet")
  50118. },
  50119. ]
  50120. ))
  50121. characterMakers.push(() => makeCharacter(
  50122. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50123. {
  50124. front: {
  50125. height: math.unit(5 + 9/12, "feet"),
  50126. weight: math.unit(150, "lb"),
  50127. name: "Front",
  50128. image: {
  50129. source: "./media/characters/ven/front.svg",
  50130. extra: 1372/1320,
  50131. bottom: 73/1445
  50132. }
  50133. },
  50134. side: {
  50135. height: math.unit(5 + 9/12, "feet"),
  50136. weight: math.unit(1150, "lb"),
  50137. name: "Side",
  50138. image: {
  50139. source: "./media/characters/ven/side.svg",
  50140. extra: 1119/1070,
  50141. bottom: 42/1161
  50142. },
  50143. default: true
  50144. },
  50145. },
  50146. [
  50147. {
  50148. name: "Normal",
  50149. height: math.unit(5 + 9/12, "feet"),
  50150. default: true
  50151. },
  50152. ]
  50153. ))
  50154. characterMakers.push(() => makeCharacter(
  50155. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50156. {
  50157. front: {
  50158. height: math.unit(12, "feet"),
  50159. weight: math.unit(1000, "kg"),
  50160. name: "Front",
  50161. image: {
  50162. source: "./media/characters/maple/front.svg",
  50163. extra: 1193/1081,
  50164. bottom: 22/1215
  50165. }
  50166. },
  50167. },
  50168. [
  50169. {
  50170. name: "Compressed",
  50171. height: math.unit(7, "feet")
  50172. },
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(12, "feet"),
  50176. default: true
  50177. },
  50178. ]
  50179. ))
  50180. characterMakers.push(() => makeCharacter(
  50181. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50182. {
  50183. front: {
  50184. height: math.unit(9, "feet"),
  50185. weight: math.unit(1500, "lb"),
  50186. name: "Front",
  50187. image: {
  50188. source: "./media/characters/nora/front.svg",
  50189. extra: 1348/1286,
  50190. bottom: 218/1566
  50191. }
  50192. },
  50193. erect: {
  50194. height: math.unit(9, "feet"),
  50195. weight: math.unit(11500, "lb"),
  50196. name: "Erect",
  50197. image: {
  50198. source: "./media/characters/nora/erect.svg",
  50199. extra: 1488/1433,
  50200. bottom: 133/1621
  50201. }
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Normal",
  50207. height: math.unit(9, "feet"),
  50208. default: true
  50209. },
  50210. ]
  50211. ))
  50212. characterMakers.push(() => makeCharacter(
  50213. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50214. {
  50215. front: {
  50216. height: math.unit(25, "feet"),
  50217. weight: math.unit(27500, "lb"),
  50218. name: "Front",
  50219. image: {
  50220. source: "./media/characters/north-caudin/front.svg",
  50221. extra: 1184/1082,
  50222. bottom: 23/1207
  50223. }
  50224. },
  50225. },
  50226. [
  50227. {
  50228. name: "Compressed",
  50229. height: math.unit(10, "feet")
  50230. },
  50231. {
  50232. name: "Normal",
  50233. height: math.unit(25, "feet"),
  50234. default: true
  50235. },
  50236. ]
  50237. ))
  50238. characterMakers.push(() => makeCharacter(
  50239. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50240. {
  50241. front: {
  50242. height: math.unit(9, "feet"),
  50243. weight: math.unit(1250, "lb"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/merrian/front.svg",
  50247. extra: 2393/2304,
  50248. bottom: 40/2433
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(9, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(9, "feet"),
  50265. weight: math.unit(1000, "lb"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/hazel/front.svg",
  50269. extra: 2351/2298,
  50270. bottom: 38/2389
  50271. }
  50272. },
  50273. },
  50274. [
  50275. {
  50276. name: "Normal",
  50277. height: math.unit(9, "feet"),
  50278. default: true
  50279. },
  50280. ]
  50281. ))
  50282. characterMakers.push(() => makeCharacter(
  50283. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50284. {
  50285. front: {
  50286. height: math.unit(13, "feet"),
  50287. weight: math.unit(3200, "lb"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/emma/front.svg",
  50291. extra: 2263/2029,
  50292. bottom: 68/2331
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Normal",
  50299. height: math.unit(13, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(11 + 9/12, "feet"),
  50309. weight: math.unit(2500, "lb"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/ilumina/front.svg",
  50313. extra: 2248/2209,
  50314. bottom: 164/2412
  50315. }
  50316. },
  50317. },
  50318. [
  50319. {
  50320. name: "Normal",
  50321. height: math.unit(11 + 9/12, "feet"),
  50322. default: true
  50323. },
  50324. ]
  50325. ))
  50326. characterMakers.push(() => makeCharacter(
  50327. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50328. {
  50329. front: {
  50330. height: math.unit(8 + 10/12, "feet"),
  50331. weight: math.unit(1350, "lb"),
  50332. name: "Front",
  50333. image: {
  50334. source: "./media/characters/moonshine/front.svg",
  50335. extra: 2395/2288,
  50336. bottom: 40/2435
  50337. }
  50338. },
  50339. },
  50340. [
  50341. {
  50342. name: "Normal",
  50343. height: math.unit(8 + 10/12, "feet"),
  50344. default: true
  50345. },
  50346. ]
  50347. ))
  50348. characterMakers.push(() => makeCharacter(
  50349. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50350. {
  50351. front: {
  50352. height: math.unit(14, "feet"),
  50353. weight: math.unit(3400, "lb"),
  50354. name: "Front",
  50355. image: {
  50356. source: "./media/characters/aletia/front.svg",
  50357. extra: 1185/1052,
  50358. bottom: 21/1206
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Compressed",
  50365. height: math.unit(8, "feet")
  50366. },
  50367. {
  50368. name: "Normal",
  50369. height: math.unit(14, "feet"),
  50370. default: true
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50376. {
  50377. front: {
  50378. height: math.unit(17, "feet"),
  50379. weight: math.unit(6500, "lb"),
  50380. name: "Front",
  50381. image: {
  50382. source: "./media/characters/deidra/front.svg",
  50383. extra: 1201/1081,
  50384. bottom: 16/1217
  50385. }
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Compressed",
  50391. height: math.unit(9 + 6/12, "feet")
  50392. },
  50393. {
  50394. name: "Normal",
  50395. height: math.unit(17, "feet"),
  50396. default: true
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50402. {
  50403. front: {
  50404. height: math.unit(7 + 4/12, "feet"),
  50405. weight: math.unit(280, "lb"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/freki-yrmori/front.svg",
  50409. extra: 1286/1182,
  50410. bottom: 29/1315
  50411. }
  50412. },
  50413. maw: {
  50414. height: math.unit(0.9, "feet"),
  50415. name: "Maw",
  50416. image: {
  50417. source: "./media/characters/freki-yrmori/maw.svg"
  50418. }
  50419. },
  50420. },
  50421. [
  50422. {
  50423. name: "Normal",
  50424. height: math.unit(7 + 4/12, "feet"),
  50425. default: true
  50426. },
  50427. {
  50428. name: "Macro",
  50429. height: math.unit(38.5, "meters")
  50430. },
  50431. ]
  50432. ))
  50433. characterMakers.push(() => makeCharacter(
  50434. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50435. {
  50436. side: {
  50437. height: math.unit(47.2, "meters"),
  50438. weight: math.unit(10000, "tons"),
  50439. name: "Side",
  50440. image: {
  50441. source: "./media/characters/aetherios/side.svg",
  50442. extra: 2363/642,
  50443. bottom: 221/2584
  50444. }
  50445. },
  50446. top: {
  50447. height: math.unit(240, "meters"),
  50448. weight: math.unit(10000, "tons"),
  50449. name: "Top",
  50450. image: {
  50451. source: "./media/characters/aetherios/top.svg"
  50452. }
  50453. },
  50454. bottom: {
  50455. height: math.unit(240, "meters"),
  50456. weight: math.unit(10000, "tons"),
  50457. name: "Bottom",
  50458. image: {
  50459. source: "./media/characters/aetherios/bottom.svg"
  50460. }
  50461. },
  50462. head: {
  50463. height: math.unit(38.6, "meters"),
  50464. name: "Head",
  50465. image: {
  50466. source: "./media/characters/aetherios/head.svg",
  50467. extra: 1335/1112,
  50468. bottom: 0/1335
  50469. }
  50470. },
  50471. front: {
  50472. height: math.unit(29, "meters"),
  50473. name: "Front",
  50474. image: {
  50475. source: "./media/characters/aetherios/front.svg",
  50476. extra: 1266/953,
  50477. bottom: 158/1424
  50478. }
  50479. },
  50480. maw: {
  50481. height: math.unit(16.37, "meters"),
  50482. name: "Maw",
  50483. image: {
  50484. source: "./media/characters/aetherios/maw.svg",
  50485. extra: 748/637,
  50486. bottom: 0/748
  50487. },
  50488. extraAttributes: {
  50489. preyCapacity: {
  50490. name: "Capacity",
  50491. power: 3,
  50492. type: "volume",
  50493. base: math.unit(1000, "people")
  50494. },
  50495. tongueSize: {
  50496. name: "Tongue Size",
  50497. power: 2,
  50498. type: "area",
  50499. base: math.unit(21, "m^2")
  50500. }
  50501. }
  50502. },
  50503. forepaw: {
  50504. height: math.unit(18, "meters"),
  50505. name: "Forepaw",
  50506. image: {
  50507. source: "./media/characters/aetherios/forepaw.svg"
  50508. }
  50509. },
  50510. hindpaw: {
  50511. height: math.unit(23, "meters"),
  50512. name: "Hindpaw",
  50513. image: {
  50514. source: "./media/characters/aetherios/hindpaw.svg"
  50515. }
  50516. },
  50517. genitals: {
  50518. height: math.unit(42, "meters"),
  50519. name: "Genitals",
  50520. image: {
  50521. source: "./media/characters/aetherios/genitals.svg"
  50522. }
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Normal",
  50528. height: math.unit(47.2, "meters"),
  50529. default: true
  50530. },
  50531. {
  50532. name: "Macro",
  50533. height: math.unit(160, "meters")
  50534. },
  50535. {
  50536. name: "Mega",
  50537. height: math.unit(1.87, "km")
  50538. },
  50539. {
  50540. name: "Giga",
  50541. height: math.unit(40000, "km")
  50542. },
  50543. {
  50544. name: "Stellar",
  50545. height: math.unit(158000000, "km")
  50546. },
  50547. {
  50548. name: "Cosmic",
  50549. height: math.unit(9.46e12, "km")
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(5 + 4/12, "feet"),
  50558. weight: math.unit(80, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/mizu-gieeg/front.svg",
  50562. extra: 850/709,
  50563. bottom: 52/902
  50564. }
  50565. },
  50566. back: {
  50567. height: math.unit(5 + 4/12, "feet"),
  50568. weight: math.unit(80, "lb"),
  50569. name: "Back",
  50570. image: {
  50571. source: "./media/characters/mizu-gieeg/back.svg",
  50572. extra: 882/745,
  50573. bottom: 25/907
  50574. }
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(5 + 4/12, "feet"),
  50581. default: true
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50587. {
  50588. front: {
  50589. height: math.unit(6, "feet"),
  50590. name: "Front",
  50591. image: {
  50592. source: "./media/characters/roselle-st-papier/front.svg",
  50593. extra: 1430/1280,
  50594. bottom: 37/1467
  50595. }
  50596. },
  50597. back: {
  50598. height: math.unit(6, "feet"),
  50599. name: "Back",
  50600. image: {
  50601. source: "./media/characters/roselle-st-papier/back.svg",
  50602. extra: 1491/1296,
  50603. bottom: 23/1514
  50604. }
  50605. },
  50606. ear: {
  50607. height: math.unit(1.26, "feet"),
  50608. name: "Ear",
  50609. image: {
  50610. source: "./media/characters/roselle-st-papier/ear.svg"
  50611. }
  50612. },
  50613. },
  50614. [
  50615. {
  50616. name: "Normal",
  50617. height: math.unit(150, "feet"),
  50618. default: true
  50619. },
  50620. ]
  50621. ))
  50622. characterMakers.push(() => makeCharacter(
  50623. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50624. {
  50625. front: {
  50626. height: math.unit(1, "inches"),
  50627. name: "Front",
  50628. image: {
  50629. source: "./media/characters/valargent/front.svg",
  50630. extra: 1825/1694,
  50631. bottom: 62/1887
  50632. }
  50633. },
  50634. back: {
  50635. height: math.unit(1, "inches"),
  50636. name: "Back",
  50637. image: {
  50638. source: "./media/characters/valargent/back.svg",
  50639. extra: 1775/1682,
  50640. bottom: 88/1863
  50641. }
  50642. },
  50643. },
  50644. [
  50645. {
  50646. name: "Micro",
  50647. height: math.unit(1, "inch"),
  50648. default: true
  50649. },
  50650. ]
  50651. ))
  50652. characterMakers.push(() => makeCharacter(
  50653. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50654. {
  50655. front: {
  50656. height: math.unit(3.4, "meters"),
  50657. name: "Front",
  50658. image: {
  50659. source: "./media/characters/zarina/front.svg",
  50660. extra: 1733/1425,
  50661. bottom: 93/1826
  50662. }
  50663. },
  50664. squatting: {
  50665. height: math.unit(2.14, "meters"),
  50666. name: "Squatting",
  50667. image: {
  50668. source: "./media/characters/zarina/squatting.svg",
  50669. extra: 1073/788,
  50670. bottom: 63/1136
  50671. }
  50672. },
  50673. back: {
  50674. height: math.unit(2.14, "meters"),
  50675. name: "Back",
  50676. image: {
  50677. source: "./media/characters/zarina/back.svg",
  50678. extra: 1128/885,
  50679. bottom: 0/1128
  50680. }
  50681. },
  50682. },
  50683. [
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(3.4, "meters"),
  50687. default: true
  50688. },
  50689. {
  50690. name: "Big",
  50691. height: math.unit(5, "meters")
  50692. },
  50693. {
  50694. name: "Macro",
  50695. height: math.unit(110, "meters")
  50696. },
  50697. ]
  50698. ))
  50699. characterMakers.push(() => makeCharacter(
  50700. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50701. {
  50702. front: {
  50703. height: math.unit(7, "feet"),
  50704. name: "Front",
  50705. image: {
  50706. source: "./media/characters/ventus-astro-fox/front.svg",
  50707. extra: 1792/1623,
  50708. bottom: 28/1820
  50709. }
  50710. },
  50711. back: {
  50712. height: math.unit(7, "feet"),
  50713. name: "Back",
  50714. image: {
  50715. source: "./media/characters/ventus-astro-fox/back.svg",
  50716. extra: 1789/1620,
  50717. bottom: 31/1820
  50718. }
  50719. },
  50720. outfit: {
  50721. height: math.unit(7, "feet"),
  50722. name: "Outfit",
  50723. image: {
  50724. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50725. extra: 1054/925,
  50726. bottom: 15/1069
  50727. }
  50728. },
  50729. head: {
  50730. height: math.unit(1.12, "feet"),
  50731. name: "Head",
  50732. image: {
  50733. source: "./media/characters/ventus-astro-fox/head.svg",
  50734. extra: 866/504,
  50735. bottom: 0/866
  50736. }
  50737. },
  50738. hand: {
  50739. height: math.unit(1, "feet"),
  50740. name: "Hand",
  50741. image: {
  50742. source: "./media/characters/ventus-astro-fox/hand.svg"
  50743. }
  50744. },
  50745. paw: {
  50746. height: math.unit(1.5, "feet"),
  50747. name: "Paw",
  50748. image: {
  50749. source: "./media/characters/ventus-astro-fox/paw.svg"
  50750. }
  50751. },
  50752. },
  50753. [
  50754. {
  50755. name: "Normal",
  50756. height: math.unit(7, "feet"),
  50757. default: true
  50758. },
  50759. {
  50760. name: "Macro",
  50761. height: math.unit(200, "feet")
  50762. },
  50763. {
  50764. name: "Cosmic",
  50765. height: math.unit(3, "universes")
  50766. },
  50767. ]
  50768. ))
  50769. characterMakers.push(() => makeCharacter(
  50770. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50771. {
  50772. front: {
  50773. height: math.unit(3, "meters"),
  50774. weight: math.unit(7000, "lb"),
  50775. name: "Front",
  50776. image: {
  50777. source: "./media/characters/core-t/front.svg",
  50778. extra: 5729/4941,
  50779. bottom: 1129/6858
  50780. }
  50781. },
  50782. },
  50783. [
  50784. {
  50785. name: "Big",
  50786. height: math.unit(3, "meters"),
  50787. default: true
  50788. },
  50789. ]
  50790. ))
  50791. characterMakers.push(() => makeCharacter(
  50792. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50793. {
  50794. normal: {
  50795. height: math.unit(6 + 6/12, "feet"),
  50796. weight: math.unit(275, "lb"),
  50797. name: "Front",
  50798. image: {
  50799. source: "./media/characters/cadbunny/normal.svg",
  50800. extra: 1129/947,
  50801. bottom: 93/1222
  50802. },
  50803. default: true,
  50804. form: "normal"
  50805. },
  50806. gigantamax: {
  50807. height: math.unit(26, "feet"),
  50808. weight: math.unit(16000, "lb"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/cadbunny/gigantamax.svg",
  50812. extra: 1133/944,
  50813. bottom: 90/1223
  50814. },
  50815. default: true,
  50816. form: "gigantamax"
  50817. },
  50818. },
  50819. [
  50820. {
  50821. name: "Normal",
  50822. height: math.unit(6 + 6/12, "feet"),
  50823. default: true,
  50824. form: "normal"
  50825. },
  50826. {
  50827. name: "Small",
  50828. height: math.unit(26, "feet"),
  50829. default: true,
  50830. form: "gigantamax"
  50831. },
  50832. {
  50833. name: "Large",
  50834. height: math.unit(78, "feet"),
  50835. form: "gigantamax"
  50836. },
  50837. ],
  50838. {
  50839. "normal": {
  50840. name: "Normal",
  50841. default: true
  50842. },
  50843. "gigantamax": {
  50844. name: "Gigantamax"
  50845. }
  50846. }
  50847. ))
  50848. characterMakers.push(() => makeCharacter(
  50849. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50850. {
  50851. anthroFront: {
  50852. height: math.unit(8, "feet"),
  50853. weight: math.unit(300, "lb"),
  50854. name: "Front",
  50855. image: {
  50856. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50857. extra: 1272/1176,
  50858. bottom: 53/1325
  50859. },
  50860. form: "anthro",
  50861. default: true
  50862. },
  50863. feralSide: {
  50864. height: math.unit(4, "feet"),
  50865. weight: math.unit(250, "lb"),
  50866. name: "Side",
  50867. image: {
  50868. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50869. extra: 731/621,
  50870. bottom: 0/731
  50871. },
  50872. form: "feral",
  50873. default: true
  50874. },
  50875. },
  50876. [
  50877. {
  50878. name: "Regular",
  50879. height: math.unit(8, "feet"),
  50880. form: "anthro"
  50881. },
  50882. {
  50883. name: "Macro",
  50884. height: math.unit(250, "feet"),
  50885. form: "anthro",
  50886. default: true
  50887. },
  50888. {
  50889. name: "Regular",
  50890. height: math.unit(4, "feet"),
  50891. form: "feral"
  50892. },
  50893. {
  50894. name: "Macro",
  50895. height: math.unit(125, "feet"),
  50896. form: "feral",
  50897. default: true
  50898. },
  50899. ],
  50900. {
  50901. "anthro": {
  50902. name: "Anthro",
  50903. default: true
  50904. },
  50905. "feral": {
  50906. name: "Feral",
  50907. },
  50908. }
  50909. ))
  50910. characterMakers.push(() => makeCharacter(
  50911. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50912. {
  50913. front: {
  50914. height: math.unit(11 + 10/12, "feet"),
  50915. weight: math.unit(1587, "kg"),
  50916. name: "Front",
  50917. image: {
  50918. source: "./media/characters/maple-javira-dragon/front.svg",
  50919. extra: 1136/744,
  50920. bottom: 73/1209
  50921. }
  50922. },
  50923. side: {
  50924. height: math.unit(11 + 10/12, "feet"),
  50925. weight: math.unit(1587, "kg"),
  50926. name: "Side",
  50927. image: {
  50928. source: "./media/characters/maple-javira-dragon/side.svg",
  50929. extra: 712/505,
  50930. bottom: 17/729
  50931. }
  50932. },
  50933. head: {
  50934. height: math.unit(8.05, "feet"),
  50935. name: "Head",
  50936. image: {
  50937. source: "./media/characters/maple-javira-dragon/head.svg",
  50938. extra: 1420/1344,
  50939. bottom: 0/1420
  50940. }
  50941. },
  50942. },
  50943. [
  50944. {
  50945. name: "Normal",
  50946. height: math.unit(11 + 10/12, "feet"),
  50947. default: true
  50948. },
  50949. ]
  50950. ))
  50951. characterMakers.push(() => makeCharacter(
  50952. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50953. {
  50954. front: {
  50955. height: math.unit(117, "cm"),
  50956. weight: math.unit(50, "kg"),
  50957. name: "Front",
  50958. image: {
  50959. source: "./media/characters/sonia-wyverntail/front.svg",
  50960. extra: 708/592,
  50961. bottom: 25/733
  50962. }
  50963. },
  50964. },
  50965. [
  50966. {
  50967. name: "Normal",
  50968. height: math.unit(117, "cm"),
  50969. default: true
  50970. },
  50971. ]
  50972. ))
  50973. characterMakers.push(() => makeCharacter(
  50974. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50975. {
  50976. front: {
  50977. height: math.unit(6 + 5/12, "feet"),
  50978. name: "Front",
  50979. image: {
  50980. source: "./media/characters/micah/front.svg",
  50981. extra: 1758/1546,
  50982. bottom: 214/1972
  50983. }
  50984. },
  50985. },
  50986. [
  50987. {
  50988. name: "Normal",
  50989. height: math.unit(6 + 5/12, "feet"),
  50990. default: true
  50991. },
  50992. ]
  50993. ))
  50994. characterMakers.push(() => makeCharacter(
  50995. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50996. {
  50997. front: {
  50998. height: math.unit(5 + 10/12, "feet"),
  50999. weight: math.unit(220, "lb"),
  51000. name: "Front",
  51001. image: {
  51002. source: "./media/characters/zarya/front.svg",
  51003. extra: 593/572,
  51004. bottom: 50/643
  51005. }
  51006. },
  51007. back: {
  51008. height: math.unit(5 + 10/12, "feet"),
  51009. weight: math.unit(220, "lb"),
  51010. name: "Back",
  51011. image: {
  51012. source: "./media/characters/zarya/back.svg",
  51013. extra: 603/582,
  51014. bottom: 38/641
  51015. }
  51016. },
  51017. },
  51018. [
  51019. {
  51020. name: "Normal",
  51021. height: math.unit(5 + 10/12, "feet"),
  51022. default: true
  51023. },
  51024. ]
  51025. ))
  51026. characterMakers.push(() => makeCharacter(
  51027. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51028. {
  51029. front: {
  51030. height: math.unit(7.5, "feet"),
  51031. name: "Front",
  51032. image: {
  51033. source: "./media/characters/sven-hatisson/front.svg",
  51034. extra: 917/857,
  51035. bottom: 42/959
  51036. }
  51037. },
  51038. back: {
  51039. height: math.unit(7.5, "feet"),
  51040. name: "Back",
  51041. image: {
  51042. source: "./media/characters/sven-hatisson/back.svg",
  51043. extra: 903/856,
  51044. bottom: 15/918
  51045. }
  51046. },
  51047. },
  51048. [
  51049. {
  51050. name: "Base Height",
  51051. height: math.unit(7.5, "feet")
  51052. },
  51053. {
  51054. name: "Usual Height",
  51055. height: math.unit(13.5, "feet"),
  51056. default: true
  51057. },
  51058. {
  51059. name: "Smaller Macro",
  51060. height: math.unit(85, "feet")
  51061. },
  51062. {
  51063. name: "Moderate Macro",
  51064. height: math.unit(320, "feet")
  51065. },
  51066. {
  51067. name: "Large Macro",
  51068. height: math.unit(1000, "feet")
  51069. },
  51070. {
  51071. name: "Largest Size",
  51072. height: math.unit(2, "miles")
  51073. },
  51074. ]
  51075. ))
  51076. characterMakers.push(() => makeCharacter(
  51077. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51078. {
  51079. side: {
  51080. height: math.unit(1.8, "meters"),
  51081. weight: math.unit(275, "kg"),
  51082. name: "Side",
  51083. image: {
  51084. source: "./media/characters/terra/side.svg",
  51085. extra: 1273/1147,
  51086. bottom: 0/1273
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Normal",
  51093. height: math.unit(16.2, "meters"),
  51094. default: true
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51100. {
  51101. borzoiFront: {
  51102. height: math.unit(6 + 9/12, "feet"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/rae/borzoi-front.svg",
  51106. extra: 1161/1098,
  51107. bottom: 31/1192
  51108. },
  51109. form: "borzoi",
  51110. default: true
  51111. },
  51112. werewolfFront: {
  51113. height: math.unit(8 + 7/12, "feet"),
  51114. name: "Front",
  51115. image: {
  51116. source: "./media/characters/rae/werewolf-front.svg",
  51117. extra: 1411/1334,
  51118. bottom: 127/1538
  51119. },
  51120. form: "werewolf",
  51121. default: true
  51122. },
  51123. },
  51124. [
  51125. {
  51126. name: "Normal",
  51127. height: math.unit(6 + 9/12, "feet"),
  51128. default: true,
  51129. form: "borzoi"
  51130. },
  51131. {
  51132. name: "Normal",
  51133. height: math.unit(8 + 7/12, "feet"),
  51134. default: true,
  51135. form: "werewolf"
  51136. },
  51137. ],
  51138. {
  51139. "borzoi": {
  51140. name: "Borzoi",
  51141. default: true
  51142. },
  51143. "werewolf": {
  51144. name: "Werewolf",
  51145. },
  51146. }
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(8 + 7/12, "feet"),
  51153. weight: math.unit(482, "lb"),
  51154. name: "Front",
  51155. image: {
  51156. source: "./media/characters/kit/front.svg",
  51157. extra: 1247/1103,
  51158. bottom: 41/1288
  51159. }
  51160. },
  51161. back: {
  51162. height: math.unit(8 + 7/12, "feet"),
  51163. weight: math.unit(482, "lb"),
  51164. name: "Back",
  51165. image: {
  51166. source: "./media/characters/kit/back.svg",
  51167. extra: 1252/1123,
  51168. bottom: 21/1273
  51169. }
  51170. },
  51171. paw: {
  51172. height: math.unit(1.46, "feet"),
  51173. name: "Paw",
  51174. image: {
  51175. source: "./media/characters/kit/paw.svg"
  51176. }
  51177. },
  51178. },
  51179. [
  51180. {
  51181. name: "Normal",
  51182. height: math.unit(2.61, "meters"),
  51183. default: true
  51184. },
  51185. {
  51186. name: "\"Tall\"",
  51187. height: math.unit(8.21, "meters")
  51188. },
  51189. {
  51190. name: "Tall",
  51191. height: math.unit(19.6, "meters")
  51192. },
  51193. {
  51194. name: "Very Tall",
  51195. height: math.unit(57.91, "meters")
  51196. },
  51197. {
  51198. name: "Semi-Macro",
  51199. height: math.unit(138.64, "meters")
  51200. },
  51201. {
  51202. name: "Macro",
  51203. height: math.unit(831.99, "meters")
  51204. },
  51205. {
  51206. name: "EX-Macro",
  51207. height: math.unit(96451121, "meters")
  51208. },
  51209. {
  51210. name: "S1-Omnipotent",
  51211. height: math.unit(4.42074e+9, "meters")
  51212. },
  51213. {
  51214. name: "S2-Omnipotent",
  51215. height: math.unit(9.42074e+17, "meters")
  51216. },
  51217. {
  51218. name: "Omnipotent",
  51219. height: math.unit(4.23112e+24, "meters")
  51220. },
  51221. {
  51222. name: "Hypergod",
  51223. height: math.unit(5.05176e+27, "meters")
  51224. },
  51225. {
  51226. name: "Hypergod-EX",
  51227. height: math.unit(9.45532e+49, "meters")
  51228. },
  51229. {
  51230. name: "Hypergod-SP",
  51231. height: math.unit(9.45532e+195, "meters")
  51232. },
  51233. ]
  51234. ))
  51235. characterMakers.push(() => makeCharacter(
  51236. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51237. {
  51238. side: {
  51239. height: math.unit(0.6, "meters"),
  51240. weight: math.unit(24, "kg"),
  51241. name: "Side",
  51242. image: {
  51243. source: "./media/characters/celeste/side.svg",
  51244. extra: 810/517,
  51245. bottom: 53/863
  51246. }
  51247. },
  51248. },
  51249. [
  51250. {
  51251. name: "Velociraptor",
  51252. height: math.unit(0.6, "meters"),
  51253. default: true
  51254. },
  51255. {
  51256. name: "Utahraptor",
  51257. height: math.unit(1.8, "meters")
  51258. },
  51259. {
  51260. name: "Gallimimus",
  51261. height: math.unit(4.0, "meters")
  51262. },
  51263. {
  51264. name: "Large",
  51265. height: math.unit(20, "meters")
  51266. },
  51267. {
  51268. name: "Planetary",
  51269. height: math.unit(50, "megameters")
  51270. },
  51271. {
  51272. name: "Stellar",
  51273. height: math.unit(1.5, "gigameters")
  51274. },
  51275. {
  51276. name: "Galactic",
  51277. height: math.unit(100, "exameters")
  51278. },
  51279. ]
  51280. ))
  51281. characterMakers.push(() => makeCharacter(
  51282. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51283. {
  51284. front: {
  51285. height: math.unit(6, "feet"),
  51286. weight: math.unit(210, "lb"),
  51287. name: "Front",
  51288. image: {
  51289. source: "./media/characters/glacia/front.svg",
  51290. extra: 958/901,
  51291. bottom: 45/1003
  51292. }
  51293. },
  51294. },
  51295. [
  51296. {
  51297. name: "Macro",
  51298. height: math.unit(1000, "meters"),
  51299. default: true
  51300. },
  51301. ]
  51302. ))
  51303. characterMakers.push(() => makeCharacter(
  51304. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51305. {
  51306. front: {
  51307. height: math.unit(4, "meters"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/giri/front.svg",
  51311. extra: 966/894,
  51312. bottom: 21/987
  51313. }
  51314. },
  51315. },
  51316. [
  51317. {
  51318. name: "Normal",
  51319. height: math.unit(4, "meters"),
  51320. default: true
  51321. },
  51322. ]
  51323. ))
  51324. characterMakers.push(() => makeCharacter(
  51325. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51326. {
  51327. back: {
  51328. height: math.unit(4, "feet"),
  51329. weight: math.unit(37, "lb"),
  51330. name: "Back",
  51331. image: {
  51332. source: "./media/characters/tin/back.svg",
  51333. extra: 845/780,
  51334. bottom: 28/873
  51335. }
  51336. },
  51337. },
  51338. [
  51339. {
  51340. name: "Normal",
  51341. height: math.unit(4, "feet"),
  51342. default: true
  51343. },
  51344. ]
  51345. ))
  51346. characterMakers.push(() => makeCharacter(
  51347. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51348. {
  51349. front: {
  51350. height: math.unit(25, "feet"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/cadenza-vivace/front.svg",
  51354. extra: 1842/1578,
  51355. bottom: 30/1872
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Macro",
  51362. height: math.unit(25, "feet"),
  51363. default: true
  51364. },
  51365. ]
  51366. ))
  51367. characterMakers.push(() => makeCharacter(
  51368. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51369. {
  51370. front: {
  51371. height: math.unit(10, "feet"),
  51372. weight: math.unit(625, "kg"),
  51373. name: "Front",
  51374. image: {
  51375. source: "./media/characters/zain/front.svg",
  51376. extra: 1682/1498,
  51377. bottom: 223/1905
  51378. }
  51379. },
  51380. back: {
  51381. height: math.unit(10, "feet"),
  51382. weight: math.unit(625, "kg"),
  51383. name: "Back",
  51384. image: {
  51385. source: "./media/characters/zain/back.svg",
  51386. extra: 1814/1657,
  51387. bottom: 152/1966
  51388. }
  51389. },
  51390. head: {
  51391. height: math.unit(10, "feet"),
  51392. weight: math.unit(625, "kg"),
  51393. name: "Head",
  51394. image: {
  51395. source: "./media/characters/zain/head.svg",
  51396. extra: 1059/762,
  51397. bottom: 0/1059
  51398. }
  51399. },
  51400. },
  51401. [
  51402. {
  51403. name: "Normal",
  51404. height: math.unit(10, "feet"),
  51405. default: true
  51406. },
  51407. ]
  51408. ))
  51409. characterMakers.push(() => makeCharacter(
  51410. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51411. {
  51412. front: {
  51413. height: math.unit(6 + 5/12, "feet"),
  51414. weight: math.unit(750, "lb"),
  51415. name: "Front",
  51416. image: {
  51417. source: "./media/characters/ruchex/front.svg",
  51418. extra: 877/820,
  51419. bottom: 17/894
  51420. },
  51421. extraAttributes: {
  51422. "width": {
  51423. name: "Width",
  51424. power: 1,
  51425. type: "length",
  51426. base: math.unit(4.757, "feet")
  51427. },
  51428. }
  51429. },
  51430. },
  51431. [
  51432. {
  51433. name: "Normal",
  51434. height: math.unit(6 + 5/12, "feet"),
  51435. default: true
  51436. },
  51437. ]
  51438. ))
  51439. characterMakers.push(() => makeCharacter(
  51440. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51441. {
  51442. dressedFront: {
  51443. height: math.unit(191, "cm"),
  51444. weight: math.unit(80, "kg"),
  51445. name: "Front",
  51446. image: {
  51447. source: "./media/characters/buster/dressed-front.svg",
  51448. extra: 1022/973,
  51449. bottom: 69/1091
  51450. }
  51451. },
  51452. dressedBack: {
  51453. height: math.unit(191, "cm"),
  51454. weight: math.unit(80, "kg"),
  51455. name: "Back",
  51456. image: {
  51457. source: "./media/characters/buster/dressed-back.svg",
  51458. extra: 1018/970,
  51459. bottom: 55/1073
  51460. }
  51461. },
  51462. nudeFront: {
  51463. height: math.unit(191, "cm"),
  51464. weight: math.unit(80, "kg"),
  51465. name: "Front (Nude)",
  51466. image: {
  51467. source: "./media/characters/buster/nude-front.svg",
  51468. extra: 1022/973,
  51469. bottom: 69/1091
  51470. }
  51471. },
  51472. nudeBack: {
  51473. height: math.unit(191, "cm"),
  51474. weight: math.unit(80, "kg"),
  51475. name: "Back (Nude)",
  51476. image: {
  51477. source: "./media/characters/buster/nude-back.svg",
  51478. extra: 1018/970,
  51479. bottom: 55/1073
  51480. }
  51481. },
  51482. dick: {
  51483. height: math.unit(2.59, "feet"),
  51484. name: "Dick",
  51485. image: {
  51486. source: "./media/characters/buster/dick.svg"
  51487. }
  51488. },
  51489. ass: {
  51490. height: math.unit(1.2, "feet"),
  51491. name: "Ass",
  51492. image: {
  51493. source: "./media/characters/buster/ass.svg"
  51494. }
  51495. },
  51496. },
  51497. [
  51498. {
  51499. name: "Normal",
  51500. height: math.unit(191, "cm"),
  51501. default: true
  51502. },
  51503. ]
  51504. ))
  51505. characterMakers.push(() => makeCharacter(
  51506. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51507. {
  51508. side: {
  51509. height: math.unit(8.1, "feet"),
  51510. weight: math.unit(3500, "lb"),
  51511. name: "Side",
  51512. image: {
  51513. source: "./media/characters/sonya/side.svg",
  51514. extra: 1730/1317,
  51515. bottom: 86/1816
  51516. }
  51517. },
  51518. },
  51519. [
  51520. {
  51521. name: "Normal",
  51522. height: math.unit(8.1, "feet"),
  51523. default: true
  51524. },
  51525. ]
  51526. ))
  51527. characterMakers.push(() => makeCharacter(
  51528. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51529. {
  51530. front: {
  51531. height: math.unit(6, "feet"),
  51532. weight: math.unit(150, "lb"),
  51533. name: "Front",
  51534. image: {
  51535. source: "./media/characters/cadence-andrysiak/front.svg",
  51536. extra: 1164/1121,
  51537. bottom: 60/1224
  51538. }
  51539. },
  51540. back: {
  51541. height: math.unit(6, "feet"),
  51542. weight: math.unit(150, "lb"),
  51543. name: "Back",
  51544. image: {
  51545. source: "./media/characters/cadence-andrysiak/back.svg",
  51546. extra: 1200/1165,
  51547. bottom: 9/1209
  51548. }
  51549. },
  51550. dressed: {
  51551. height: math.unit(6, "feet"),
  51552. weight: math.unit(150, "lb"),
  51553. name: "Dressed",
  51554. image: {
  51555. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51556. extra: 1164/1121,
  51557. bottom: 60/1224
  51558. }
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Micro",
  51564. height: math.unit(1, "mm")
  51565. },
  51566. {
  51567. name: "Normal",
  51568. height: math.unit(6, "feet"),
  51569. default: true
  51570. },
  51571. ]
  51572. ))
  51573. characterMakers.push(() => makeCharacter(
  51574. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51575. {
  51576. front: {
  51577. height: math.unit(60, "inches"),
  51578. weight: math.unit(16, "lb"),
  51579. preyCapacity: math.unit(80, "liters"),
  51580. name: "Front",
  51581. image: {
  51582. source: "./media/characters/penny-lynx/front.svg",
  51583. extra: 1959/1769,
  51584. bottom: 49/2008
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Nokia",
  51591. height: math.unit(2, "inches")
  51592. },
  51593. {
  51594. name: "Desktop",
  51595. height: math.unit(24, "inches")
  51596. },
  51597. {
  51598. name: "TV",
  51599. height: math.unit(60, "inches")
  51600. },
  51601. {
  51602. name: "Jumbotron",
  51603. height: math.unit(12, "feet")
  51604. },
  51605. {
  51606. name: "Billboard",
  51607. height: math.unit(48, "feet"),
  51608. default: true
  51609. },
  51610. {
  51611. name: "IMAX",
  51612. height: math.unit(96, "feet")
  51613. },
  51614. {
  51615. name: "SINGULARITY",
  51616. height: math.unit(864938, "miles")
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51622. {
  51623. front: {
  51624. height: math.unit(5 + 4/12, "feet"),
  51625. weight: math.unit(230, "lb"),
  51626. name: "Front",
  51627. image: {
  51628. source: "./media/characters/sukebe/front.svg",
  51629. extra: 2130/2038,
  51630. bottom: 90/2220
  51631. }
  51632. },
  51633. back: {
  51634. height: math.unit(3.48, "feet"),
  51635. weight: math.unit(230, "lb"),
  51636. name: "Back",
  51637. image: {
  51638. source: "./media/characters/sukebe/back.svg",
  51639. extra: 1670/1604,
  51640. bottom: 0/1670
  51641. }
  51642. },
  51643. },
  51644. [
  51645. {
  51646. name: "Normal",
  51647. height: math.unit(5 + 4/12, "feet"),
  51648. default: true
  51649. },
  51650. ]
  51651. ))
  51652. characterMakers.push(() => makeCharacter(
  51653. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51654. {
  51655. front: {
  51656. height: math.unit(6, "feet"),
  51657. name: "Front",
  51658. image: {
  51659. source: "./media/characters/nylla/front.svg",
  51660. extra: 1868/1699,
  51661. bottom: 97/1965
  51662. }
  51663. },
  51664. back: {
  51665. height: math.unit(6, "feet"),
  51666. name: "Back",
  51667. image: {
  51668. source: "./media/characters/nylla/back.svg",
  51669. extra: 1889/1712,
  51670. bottom: 93/1982
  51671. }
  51672. },
  51673. frontNsfw: {
  51674. height: math.unit(6, "feet"),
  51675. name: "Front (NSFW)",
  51676. image: {
  51677. source: "./media/characters/nylla/front-nsfw.svg",
  51678. extra: 1868/1699,
  51679. bottom: 97/1965
  51680. },
  51681. extraAttributes: {
  51682. "dickLength": {
  51683. name: "Dick Length",
  51684. power: 1,
  51685. type: "length",
  51686. base: math.unit(1.4, "feet")
  51687. },
  51688. "cumVolume": {
  51689. name: "Cum Volume",
  51690. power: 3,
  51691. type: "volume",
  51692. base: math.unit(100, "mL")
  51693. },
  51694. }
  51695. },
  51696. backNsfw: {
  51697. height: math.unit(6, "feet"),
  51698. name: "Back (NSFW)",
  51699. image: {
  51700. source: "./media/characters/nylla/back-nsfw.svg",
  51701. extra: 1889/1712,
  51702. bottom: 93/1982
  51703. }
  51704. },
  51705. maw: {
  51706. height: math.unit(2.10, "feet"),
  51707. name: "Maw",
  51708. image: {
  51709. source: "./media/characters/nylla/maw.svg"
  51710. }
  51711. },
  51712. paws: {
  51713. height: math.unit(2.06, "feet"),
  51714. name: "Paws",
  51715. image: {
  51716. source: "./media/characters/nylla/paws.svg"
  51717. }
  51718. },
  51719. muzzle: {
  51720. height: math.unit(0.61, "feet"),
  51721. name: "Muzzle",
  51722. image: {
  51723. source: "./media/characters/nylla/muzzle.svg"
  51724. }
  51725. },
  51726. sheath: {
  51727. height: math.unit(1.305, "feet"),
  51728. name: "Sheath",
  51729. image: {
  51730. source: "./media/characters/nylla/sheath.svg"
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Micro",
  51737. height: math.unit(7.5, "inches")
  51738. },
  51739. {
  51740. name: "Normal",
  51741. height: math.unit(7, "feet"),
  51742. default: true
  51743. },
  51744. {
  51745. name: "Macro",
  51746. height: math.unit(60, "feet")
  51747. },
  51748. {
  51749. name: "Mega",
  51750. height: math.unit(200, "feet")
  51751. },
  51752. ]
  51753. ))
  51754. characterMakers.push(() => makeCharacter(
  51755. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51756. {
  51757. front: {
  51758. height: math.unit(10, "feet"),
  51759. weight: math.unit(2300, "lb"),
  51760. name: "Front",
  51761. image: {
  51762. source: "./media/characters/hunt3r/front.svg",
  51763. extra: 1909/1742,
  51764. bottom: 46/1955
  51765. }
  51766. },
  51767. },
  51768. [
  51769. {
  51770. name: "Normal",
  51771. height: math.unit(10, "feet"),
  51772. default: true
  51773. },
  51774. ]
  51775. ))
  51776. characterMakers.push(() => makeCharacter(
  51777. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51778. {
  51779. dressed: {
  51780. height: math.unit(11, "feet"),
  51781. weight: math.unit(18500, "lb"),
  51782. preyCapacity: math.unit(9, "people"),
  51783. name: "Dressed",
  51784. image: {
  51785. source: "./media/characters/cylphis/dressed.svg",
  51786. extra: 1028/1003,
  51787. bottom: 75/1103
  51788. },
  51789. },
  51790. undressed: {
  51791. height: math.unit(11, "feet"),
  51792. weight: math.unit(18500, "lb"),
  51793. preyCapacity: math.unit(9, "people"),
  51794. name: "Undressed",
  51795. image: {
  51796. source: "./media/characters/cylphis/undressed.svg",
  51797. extra: 1028/1003,
  51798. bottom: 75/1103
  51799. }
  51800. },
  51801. full: {
  51802. height: math.unit(11, "feet"),
  51803. weight: math.unit(18500 + 150*9, "lb"),
  51804. preyCapacity: math.unit(9, "people"),
  51805. name: "Full",
  51806. image: {
  51807. source: "./media/characters/cylphis/full.svg",
  51808. extra: 1028/1003,
  51809. bottom: 75/1103
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Small",
  51816. height: math.unit(8, "feet")
  51817. },
  51818. {
  51819. name: "Normal",
  51820. height: math.unit(11, "feet"),
  51821. default: true
  51822. },
  51823. ]
  51824. ))
  51825. characterMakers.push(() => makeCharacter(
  51826. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51827. {
  51828. front: {
  51829. height: math.unit(2 + 7/12, "feet"),
  51830. name: "Front",
  51831. image: {
  51832. source: "./media/characters/orishan/front.svg",
  51833. extra: 1058/1023,
  51834. bottom: 23/1081
  51835. }
  51836. },
  51837. back: {
  51838. height: math.unit(2 + 7/12, "feet"),
  51839. name: "Back",
  51840. image: {
  51841. source: "./media/characters/orishan/back.svg",
  51842. extra: 1058/1023,
  51843. bottom: 23/1081
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Micro",
  51850. height: math.unit(2, "cm")
  51851. },
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(2 + 7/12, "feet"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51861. {
  51862. front: {
  51863. height: math.unit(3, "meters"),
  51864. weight: math.unit(508, "kg"),
  51865. name: "Front",
  51866. image: {
  51867. source: "./media/characters/seranis/front.svg",
  51868. extra: 1478/1454,
  51869. bottom: 41/1519
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(3, "meters"),
  51877. default: true
  51878. },
  51879. {
  51880. name: "Macro",
  51881. height: math.unit(108, "meters")
  51882. },
  51883. {
  51884. name: "Megamacro",
  51885. height: math.unit(1250, "meters")
  51886. },
  51887. ]
  51888. ))
  51889. characterMakers.push(() => makeCharacter(
  51890. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51891. {
  51892. undressed: {
  51893. height: math.unit(5 + 3/12, "feet"),
  51894. name: "Undressed",
  51895. image: {
  51896. source: "./media/characters/ankou/undressed.svg",
  51897. extra: 1301/1213,
  51898. bottom: 87/1388
  51899. }
  51900. },
  51901. dressed: {
  51902. height: math.unit(5 + 3/12, "feet"),
  51903. name: "Dressed",
  51904. image: {
  51905. source: "./media/characters/ankou/dressed.svg",
  51906. extra: 1301/1213,
  51907. bottom: 87/1388
  51908. }
  51909. },
  51910. head: {
  51911. height: math.unit(1.61, "feet"),
  51912. name: "Head",
  51913. image: {
  51914. source: "./media/characters/ankou/head.svg"
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Normal",
  51921. height: math.unit(5 + 3/12, "feet"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51928. {
  51929. side: {
  51930. height: math.unit(6 + 3/12, "feet"),
  51931. weight: math.unit(200, "kg"),
  51932. name: "Side",
  51933. image: {
  51934. source: "./media/characters/juniper-skunktaur/side.svg",
  51935. extra: 1574/1229,
  51936. bottom: 38/1612
  51937. }
  51938. },
  51939. front: {
  51940. height: math.unit(6 + 3/12, "feet"),
  51941. weight: math.unit(200, "kg"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/juniper-skunktaur/front.svg",
  51945. extra: 1337/1278,
  51946. bottom: 22/1359
  51947. }
  51948. },
  51949. back: {
  51950. height: math.unit(6 + 3/12, "feet"),
  51951. weight: math.unit(200, "kg"),
  51952. name: "Back",
  51953. image: {
  51954. source: "./media/characters/juniper-skunktaur/back.svg",
  51955. extra: 1618/1273,
  51956. bottom: 13/1631
  51957. }
  51958. },
  51959. top: {
  51960. height: math.unit(2.62, "feet"),
  51961. weight: math.unit(200, "kg"),
  51962. name: "Top",
  51963. image: {
  51964. source: "./media/characters/juniper-skunktaur/top.svg"
  51965. }
  51966. },
  51967. },
  51968. [
  51969. {
  51970. name: "Normal",
  51971. height: math.unit(6 + 3/12, "feet"),
  51972. default: true
  51973. },
  51974. ]
  51975. ))
  51976. characterMakers.push(() => makeCharacter(
  51977. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51978. {
  51979. front: {
  51980. height: math.unit(20.5, "feet"),
  51981. name: "Front",
  51982. image: {
  51983. source: "./media/characters/rei/front.svg",
  51984. extra: 1349/1195,
  51985. bottom: 31/1380
  51986. }
  51987. },
  51988. back: {
  51989. height: math.unit(20.5, "feet"),
  51990. name: "Back",
  51991. image: {
  51992. source: "./media/characters/rei/back.svg",
  51993. extra: 1358/1204,
  51994. bottom: 22/1380
  51995. }
  51996. },
  51997. pawsDigi: {
  51998. height: math.unit(3.45, "feet"),
  51999. name: "Paws (Digi)",
  52000. image: {
  52001. source: "./media/characters/rei/paws-digi.svg"
  52002. }
  52003. },
  52004. pawsPlanti: {
  52005. height: math.unit(3.45, "feet"),
  52006. name: "Paws (Planti)",
  52007. image: {
  52008. source: "./media/characters/rei/paws-planti.svg"
  52009. }
  52010. },
  52011. },
  52012. [
  52013. {
  52014. name: "Normal",
  52015. height: math.unit(20.5, "feet"),
  52016. default: true
  52017. },
  52018. ]
  52019. ))
  52020. characterMakers.push(() => makeCharacter(
  52021. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52022. {
  52023. front: {
  52024. height: math.unit(5 + 11/12, "feet"),
  52025. name: "Front",
  52026. image: {
  52027. source: "./media/characters/carina/front.svg",
  52028. extra: 1720/1449,
  52029. bottom: 14/1734
  52030. }
  52031. },
  52032. back: {
  52033. height: math.unit(5 + 11/12, "feet"),
  52034. name: "Back",
  52035. image: {
  52036. source: "./media/characters/carina/back.svg",
  52037. extra: 1493/1445,
  52038. bottom: 17/1510
  52039. }
  52040. },
  52041. paw: {
  52042. height: math.unit(0.92, "feet"),
  52043. name: "Paw",
  52044. image: {
  52045. source: "./media/characters/carina/paw.svg"
  52046. }
  52047. },
  52048. },
  52049. [
  52050. {
  52051. name: "Normal",
  52052. height: math.unit(5 + 11/12, "feet"),
  52053. default: true
  52054. },
  52055. ]
  52056. ))
  52057. characterMakers.push(() => makeCharacter(
  52058. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52059. {
  52060. front: {
  52061. height: math.unit(4.88, "meters"),
  52062. name: "Front",
  52063. image: {
  52064. source: "./media/characters/maya/front.svg",
  52065. extra: 1222/1145,
  52066. bottom: 57/1279
  52067. }
  52068. },
  52069. },
  52070. [
  52071. {
  52072. name: "Normal",
  52073. height: math.unit(4.88, "meters"),
  52074. default: true
  52075. },
  52076. {
  52077. name: "Macro",
  52078. height: math.unit(38.1, "meters")
  52079. },
  52080. {
  52081. name: "Macro+",
  52082. height: math.unit(152.4, "meters")
  52083. },
  52084. {
  52085. name: "Macro++",
  52086. height: math.unit(16.09, "km")
  52087. },
  52088. {
  52089. name: "Mega-macro",
  52090. height: math.unit(700, "megameters")
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(6 + 2/12, "feet"),
  52099. weight: math.unit(500, "lb"),
  52100. preyCapacity: math.unit(4, "people"),
  52101. name: "Front",
  52102. image: {
  52103. source: "./media/characters/yepir/front.svg"
  52104. }
  52105. },
  52106. side: {
  52107. height: math.unit(6 + 2/12, "feet"),
  52108. weight: math.unit(500, "lb"),
  52109. preyCapacity: math.unit(4, "people"),
  52110. name: "Side",
  52111. image: {
  52112. source: "./media/characters/yepir/side.svg"
  52113. }
  52114. },
  52115. paw: {
  52116. height: math.unit(1.05, "feet"),
  52117. name: "Paw",
  52118. image: {
  52119. source: "./media/characters/yepir/paw.svg"
  52120. }
  52121. },
  52122. },
  52123. [
  52124. {
  52125. name: "Normal",
  52126. height: math.unit(6 + 2/12, "feet"),
  52127. default: true
  52128. },
  52129. ]
  52130. ))
  52131. characterMakers.push(() => makeCharacter(
  52132. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52133. {
  52134. front: {
  52135. height: math.unit(5 + 4/12, "feet"),
  52136. name: "Front",
  52137. image: {
  52138. source: "./media/characters/russec/front.svg",
  52139. extra: 1926/1626,
  52140. bottom: 72/1998
  52141. }
  52142. },
  52143. back: {
  52144. height: math.unit(5 + 4/12, "feet"),
  52145. name: "Back",
  52146. image: {
  52147. source: "./media/characters/russec/back.svg",
  52148. extra: 1910/1591,
  52149. bottom: 48/1958
  52150. }
  52151. },
  52152. },
  52153. [
  52154. {
  52155. name: "Small",
  52156. height: math.unit(5 + 4/12, "feet")
  52157. },
  52158. {
  52159. name: "Normal",
  52160. height: math.unit(72, "feet"),
  52161. default: true
  52162. },
  52163. ]
  52164. ))
  52165. characterMakers.push(() => makeCharacter(
  52166. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52167. {
  52168. side: {
  52169. height: math.unit(12, "feet"),
  52170. name: "Side",
  52171. image: {
  52172. source: "./media/characters/cianus/side.svg",
  52173. extra: 808/526,
  52174. bottom: 61/869
  52175. }
  52176. },
  52177. },
  52178. [
  52179. {
  52180. name: "Normal",
  52181. height: math.unit(12, "feet"),
  52182. default: true
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52188. {
  52189. front: {
  52190. height: math.unit(9 + 6/12, "feet"),
  52191. weight: math.unit(300, "lb"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/ahab/front.svg",
  52195. extra: 1897/1868,
  52196. bottom: 121/2018
  52197. }
  52198. },
  52199. frontNsfw: {
  52200. height: math.unit(9 + 6/12, "feet"),
  52201. weight: math.unit(300, "lb"),
  52202. name: "Front-nsfw",
  52203. image: {
  52204. source: "./media/characters/ahab/front-nsfw.svg",
  52205. extra: 1897/1868,
  52206. bottom: 121/2018
  52207. }
  52208. },
  52209. },
  52210. [
  52211. {
  52212. name: "Normal",
  52213. height: math.unit(9 + 6/12, "feet")
  52214. },
  52215. {
  52216. name: "Macro",
  52217. height: math.unit(657, "feet"),
  52218. default: true
  52219. },
  52220. ]
  52221. ))
  52222. characterMakers.push(() => makeCharacter(
  52223. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52224. {
  52225. front: {
  52226. height: math.unit(2.69, "meters"),
  52227. weight: math.unit(132, "kg"),
  52228. name: "Front",
  52229. image: {
  52230. source: "./media/characters/aarkus/front.svg",
  52231. extra: 1400/1231,
  52232. bottom: 34/1434
  52233. }
  52234. },
  52235. back: {
  52236. height: math.unit(2.69, "meters"),
  52237. weight: math.unit(132, "kg"),
  52238. name: "Back",
  52239. image: {
  52240. source: "./media/characters/aarkus/back.svg",
  52241. extra: 1381/1218,
  52242. bottom: 30/1411
  52243. }
  52244. },
  52245. frontNsfw: {
  52246. height: math.unit(2.69, "meters"),
  52247. weight: math.unit(132, "kg"),
  52248. name: "Front (NSFW)",
  52249. image: {
  52250. source: "./media/characters/aarkus/front-nsfw.svg",
  52251. extra: 1400/1231,
  52252. bottom: 34/1434
  52253. }
  52254. },
  52255. foot: {
  52256. height: math.unit(1.45, "feet"),
  52257. name: "Foot",
  52258. image: {
  52259. source: "./media/characters/aarkus/foot.svg"
  52260. }
  52261. },
  52262. head: {
  52263. height: math.unit(2.85, "feet"),
  52264. name: "Head",
  52265. image: {
  52266. source: "./media/characters/aarkus/head.svg"
  52267. }
  52268. },
  52269. headAlt: {
  52270. height: math.unit(3.07, "feet"),
  52271. name: "Head (Alt)",
  52272. image: {
  52273. source: "./media/characters/aarkus/head-alt.svg"
  52274. }
  52275. },
  52276. mouth: {
  52277. height: math.unit(1.25, "feet"),
  52278. name: "Mouth",
  52279. image: {
  52280. source: "./media/characters/aarkus/mouth.svg"
  52281. }
  52282. },
  52283. dick: {
  52284. height: math.unit(1.77, "feet"),
  52285. name: "Dick",
  52286. image: {
  52287. source: "./media/characters/aarkus/dick.svg"
  52288. }
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Normal",
  52294. height: math.unit(2.69, "meters"),
  52295. default: true
  52296. },
  52297. {
  52298. name: "Macro",
  52299. height: math.unit(269, "meters")
  52300. },
  52301. {
  52302. name: "Macro+",
  52303. height: math.unit(672.5, "meters")
  52304. },
  52305. {
  52306. name: "Megamacro",
  52307. height: math.unit(2.017, "km")
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52313. {
  52314. front: {
  52315. height: math.unit(23.47, "cm"),
  52316. weight: math.unit(600, "grams"),
  52317. name: "Front",
  52318. image: {
  52319. source: "./media/characters/diode/front.svg",
  52320. extra: 1778/1396,
  52321. bottom: 95/1873
  52322. }
  52323. },
  52324. side: {
  52325. height: math.unit(23.47, "cm"),
  52326. weight: math.unit(600, "grams"),
  52327. name: "Side",
  52328. image: {
  52329. source: "./media/characters/diode/side.svg",
  52330. extra: 1831/1404,
  52331. bottom: 86/1917
  52332. }
  52333. },
  52334. wings: {
  52335. height: math.unit(0.683, "feet"),
  52336. name: "Wings",
  52337. image: {
  52338. source: "./media/characters/diode/wings.svg"
  52339. }
  52340. },
  52341. },
  52342. [
  52343. {
  52344. name: "Normal",
  52345. height: math.unit(23.47, "cm"),
  52346. default: true
  52347. },
  52348. ]
  52349. ))
  52350. characterMakers.push(() => makeCharacter(
  52351. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52352. {
  52353. front: {
  52354. height: math.unit(6 + 3/12, "feet"),
  52355. weight: math.unit(250, "lb"),
  52356. name: "Front",
  52357. image: {
  52358. source: "./media/characters/reika/front.svg",
  52359. extra: 1120/1078,
  52360. bottom: 86/1206
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(6 + 3/12, "feet"),
  52368. default: true
  52369. },
  52370. ]
  52371. ))
  52372. characterMakers.push(() => makeCharacter(
  52373. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52374. {
  52375. front: {
  52376. height: math.unit(16 + 8/12, "feet"),
  52377. weight: math.unit(9000, "lb"),
  52378. name: "Front",
  52379. image: {
  52380. source: "./media/characters/lokuto-takama/front.svg",
  52381. extra: 1774/1632,
  52382. bottom: 147/1921
  52383. },
  52384. extraAttributes: {
  52385. "bustWidth": {
  52386. name: "Bust Width",
  52387. power: 1,
  52388. type: "length",
  52389. base: math.unit(2.4, "meters")
  52390. },
  52391. "breastWeight": {
  52392. name: "Breast Weight",
  52393. power: 3,
  52394. type: "mass",
  52395. base: math.unit(1000, "kg")
  52396. },
  52397. }
  52398. },
  52399. },
  52400. [
  52401. {
  52402. name: "Normal",
  52403. height: math.unit(16 + 8/12, "feet"),
  52404. default: true
  52405. },
  52406. ]
  52407. ))
  52408. characterMakers.push(() => makeCharacter(
  52409. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52410. {
  52411. front: {
  52412. height: math.unit(10, "cm"),
  52413. weight: math.unit(850, "grams"),
  52414. name: "Front",
  52415. image: {
  52416. source: "./media/characters/owak-bone/front.svg",
  52417. extra: 1965/1801,
  52418. bottom: 31/1996
  52419. }
  52420. },
  52421. },
  52422. [
  52423. {
  52424. name: "Normal",
  52425. height: math.unit(10, "cm"),
  52426. default: true
  52427. },
  52428. ]
  52429. ))
  52430. characterMakers.push(() => makeCharacter(
  52431. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52432. {
  52433. front: {
  52434. height: math.unit(2 + 6/12, "feet"),
  52435. weight: math.unit(9, "lb"),
  52436. name: "Front",
  52437. image: {
  52438. source: "./media/characters/muffin/front.svg",
  52439. extra: 1220/1195,
  52440. bottom: 84/1304
  52441. }
  52442. },
  52443. },
  52444. [
  52445. {
  52446. name: "Normal",
  52447. height: math.unit(2 + 6/12, "feet"),
  52448. default: true
  52449. },
  52450. ]
  52451. ))
  52452. characterMakers.push(() => makeCharacter(
  52453. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52454. {
  52455. front: {
  52456. height: math.unit(7, "feet"),
  52457. name: "Front",
  52458. image: {
  52459. source: "./media/characters/chimera/front.svg",
  52460. extra: 1752/1614,
  52461. bottom: 68/1820
  52462. }
  52463. },
  52464. },
  52465. [
  52466. {
  52467. name: "Normal",
  52468. height: math.unit(7, "feet")
  52469. },
  52470. {
  52471. name: "Gigamacro",
  52472. height: math.unit(2.9, "gigameters"),
  52473. default: true
  52474. },
  52475. {
  52476. name: "Universal",
  52477. height: math.unit(1.56e26, "yottameters")
  52478. },
  52479. ]
  52480. ))
  52481. characterMakers.push(() => makeCharacter(
  52482. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52483. {
  52484. front: {
  52485. height: math.unit(3, "feet"),
  52486. weight: math.unit(20, "lb"),
  52487. name: "Front",
  52488. image: {
  52489. source: "./media/characters/kit-fennec-fox/front.svg",
  52490. extra: 1027/932,
  52491. bottom: 16/1043
  52492. }
  52493. },
  52494. back: {
  52495. height: math.unit(3, "feet"),
  52496. weight: math.unit(20, "lb"),
  52497. name: "Back",
  52498. image: {
  52499. source: "./media/characters/kit-fennec-fox/back.svg",
  52500. extra: 1027/932,
  52501. bottom: 16/1043
  52502. }
  52503. },
  52504. },
  52505. [
  52506. {
  52507. name: "Normal",
  52508. height: math.unit(3, "feet"),
  52509. default: true
  52510. },
  52511. ]
  52512. ))
  52513. characterMakers.push(() => makeCharacter(
  52514. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52515. {
  52516. front: {
  52517. height: math.unit(167, "cm"),
  52518. name: "Front",
  52519. image: {
  52520. source: "./media/characters/blue-otter/front.svg",
  52521. extra: 1951/1920,
  52522. bottom: 31/1982
  52523. }
  52524. },
  52525. },
  52526. [
  52527. {
  52528. name: "Otter-Sized",
  52529. height: math.unit(100, "cm")
  52530. },
  52531. {
  52532. name: "Normal",
  52533. height: math.unit(167, "cm"),
  52534. default: true
  52535. },
  52536. ]
  52537. ))
  52538. characterMakers.push(() => makeCharacter(
  52539. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52540. {
  52541. front: {
  52542. height: math.unit(4 + 4/12, "feet"),
  52543. name: "Front",
  52544. image: {
  52545. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52546. extra: 1072/1067,
  52547. bottom: 117/1189
  52548. }
  52549. },
  52550. back: {
  52551. height: math.unit(4 + 4/12, "feet"),
  52552. name: "Back",
  52553. image: {
  52554. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52555. extra: 1135/1129,
  52556. bottom: 57/1192
  52557. }
  52558. },
  52559. head: {
  52560. height: math.unit(1.77, "feet"),
  52561. name: "Head",
  52562. image: {
  52563. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52564. }
  52565. },
  52566. },
  52567. [
  52568. {
  52569. name: "Normal",
  52570. height: math.unit(4 + 4/12, "feet"),
  52571. default: true
  52572. },
  52573. ]
  52574. ))
  52575. characterMakers.push(() => makeCharacter(
  52576. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52577. {
  52578. front: {
  52579. height: math.unit(2, "inches"),
  52580. name: "Front",
  52581. image: {
  52582. source: "./media/characters/carley-hartford/front.svg",
  52583. extra: 1035/988,
  52584. bottom: 23/1058
  52585. }
  52586. },
  52587. back: {
  52588. height: math.unit(2, "inches"),
  52589. name: "Back",
  52590. image: {
  52591. source: "./media/characters/carley-hartford/back.svg",
  52592. extra: 1035/988,
  52593. bottom: 23/1058
  52594. }
  52595. },
  52596. dressed: {
  52597. height: math.unit(2, "inches"),
  52598. name: "Dressed",
  52599. image: {
  52600. source: "./media/characters/carley-hartford/dressed.svg",
  52601. extra: 651/620,
  52602. bottom: 0/651
  52603. }
  52604. },
  52605. },
  52606. [
  52607. {
  52608. name: "Micro",
  52609. height: math.unit(2, "inches"),
  52610. default: true
  52611. },
  52612. {
  52613. name: "Macro",
  52614. height: math.unit(6 + 3/12, "feet")
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52620. {
  52621. front: {
  52622. height: math.unit(2 + 3/12, "feet"),
  52623. weight: math.unit(15 + 7/16, "lb"),
  52624. name: "Front",
  52625. image: {
  52626. source: "./media/characters/duke/front.svg",
  52627. extra: 910/815,
  52628. bottom: 30/940
  52629. }
  52630. },
  52631. },
  52632. [
  52633. {
  52634. name: "Normal",
  52635. height: math.unit(2 + 3/12, "feet"),
  52636. default: true
  52637. },
  52638. ]
  52639. ))
  52640. characterMakers.push(() => makeCharacter(
  52641. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52642. {
  52643. front: {
  52644. height: math.unit(5 + 4/12, "feet"),
  52645. weight: math.unit(156, "lb"),
  52646. name: "Front",
  52647. image: {
  52648. source: "./media/characters/dein/front.svg",
  52649. extra: 855/815,
  52650. bottom: 48/903
  52651. }
  52652. },
  52653. side: {
  52654. height: math.unit(5 + 4/12, "feet"),
  52655. weight: math.unit(156, "lb"),
  52656. name: "side",
  52657. image: {
  52658. source: "./media/characters/dein/side.svg",
  52659. extra: 846/803,
  52660. bottom: 25/871
  52661. }
  52662. },
  52663. maw: {
  52664. height: math.unit(1.45, "feet"),
  52665. name: "Maw",
  52666. image: {
  52667. source: "./media/characters/dein/maw.svg"
  52668. }
  52669. },
  52670. },
  52671. [
  52672. {
  52673. name: "Ferret Sized",
  52674. height: math.unit(2 + 5/12, "feet")
  52675. },
  52676. {
  52677. name: "Normal",
  52678. height: math.unit(5 + 4/12, "feet"),
  52679. default: true
  52680. },
  52681. ]
  52682. ))
  52683. characterMakers.push(() => makeCharacter(
  52684. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52685. {
  52686. front: {
  52687. height: math.unit(84 + 8/12, "feet"),
  52688. weight: math.unit(942180, "lb"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/daurine-arima/front.svg",
  52692. extra: 1989/1782,
  52693. bottom: 37/2026
  52694. }
  52695. },
  52696. side: {
  52697. height: math.unit(84 + 8/12, "feet"),
  52698. weight: math.unit(942180, "lb"),
  52699. name: "Side",
  52700. image: {
  52701. source: "./media/characters/daurine-arima/side.svg",
  52702. extra: 1997/1790,
  52703. bottom: 21/2018
  52704. }
  52705. },
  52706. back: {
  52707. height: math.unit(84 + 8/12, "feet"),
  52708. weight: math.unit(942180, "lb"),
  52709. name: "Back",
  52710. image: {
  52711. source: "./media/characters/daurine-arima/back.svg",
  52712. extra: 1992/1800,
  52713. bottom: 12/2004
  52714. }
  52715. },
  52716. head: {
  52717. height: math.unit(15.5, "feet"),
  52718. name: "Head",
  52719. image: {
  52720. source: "./media/characters/daurine-arima/head.svg"
  52721. }
  52722. },
  52723. headAlt: {
  52724. height: math.unit(19.19, "feet"),
  52725. name: "Head (Alt)",
  52726. image: {
  52727. source: "./media/characters/daurine-arima/head-alt.svg"
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Minimum height",
  52734. height: math.unit(8 + 10/12, "feet")
  52735. },
  52736. {
  52737. name: "Comfort height",
  52738. height: math.unit(19 + 6 /12, "feet")
  52739. },
  52740. {
  52741. name: "\"Normal\" height",
  52742. height: math.unit(28 + 10/12, "feet")
  52743. },
  52744. {
  52745. name: "Base height",
  52746. height: math.unit(84 + 8/12, "feet"),
  52747. default: true
  52748. },
  52749. {
  52750. name: "Mini-macro",
  52751. height: math.unit(2360, "feet")
  52752. },
  52753. {
  52754. name: "Macro",
  52755. height: math.unit(10, "miles")
  52756. },
  52757. {
  52758. name: "Goddess",
  52759. height: math.unit(9.99e40, "yottameters")
  52760. },
  52761. ]
  52762. ))
  52763. characterMakers.push(() => makeCharacter(
  52764. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52765. {
  52766. front: {
  52767. height: math.unit(2.3, "meters"),
  52768. name: "Front",
  52769. image: {
  52770. source: "./media/characters/cilenomon/front.svg",
  52771. extra: 1963/1778,
  52772. bottom: 54/2017
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(2.3, "meters"),
  52780. default: true
  52781. },
  52782. {
  52783. name: "Big",
  52784. height: math.unit(5, "meters")
  52785. },
  52786. {
  52787. name: "Macro",
  52788. height: math.unit(30, "meters")
  52789. },
  52790. {
  52791. name: "True",
  52792. height: math.unit(1, "universe")
  52793. },
  52794. ]
  52795. ))
  52796. characterMakers.push(() => makeCharacter(
  52797. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52798. {
  52799. front: {
  52800. height: math.unit(5, "feet"),
  52801. name: "Front",
  52802. image: {
  52803. source: "./media/characters/sen-mink/front.svg",
  52804. extra: 1727/1675,
  52805. bottom: 35/1762
  52806. }
  52807. },
  52808. },
  52809. [
  52810. {
  52811. name: "Normal",
  52812. height: math.unit(5, "feet"),
  52813. default: true
  52814. },
  52815. ]
  52816. ))
  52817. characterMakers.push(() => makeCharacter(
  52818. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52819. {
  52820. front: {
  52821. height: math.unit(5.42999, "feet"),
  52822. weight: math.unit(100, "lb"),
  52823. name: "Front",
  52824. image: {
  52825. source: "./media/characters/ophois/front.svg",
  52826. extra: 1429/1286,
  52827. bottom: 60/1489
  52828. }
  52829. },
  52830. },
  52831. [
  52832. {
  52833. name: "Normal",
  52834. height: math.unit(5.42999, "feet"),
  52835. default: true
  52836. },
  52837. ]
  52838. ))
  52839. characterMakers.push(() => makeCharacter(
  52840. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52841. {
  52842. front: {
  52843. height: math.unit(2, "meters"),
  52844. name: "Front",
  52845. image: {
  52846. source: "./media/characters/riley/front.svg",
  52847. extra: 1779/1754,
  52848. bottom: 139/1918
  52849. }
  52850. },
  52851. },
  52852. [
  52853. {
  52854. name: "Normal",
  52855. height: math.unit(2, "meters"),
  52856. default: true
  52857. },
  52858. ]
  52859. ))
  52860. characterMakers.push(() => makeCharacter(
  52861. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52862. {
  52863. front: {
  52864. height: math.unit(6 + 2/12, "feet"),
  52865. weight: math.unit(195, "lb"),
  52866. preyCapacity: math.unit(6, "people"),
  52867. name: "Front",
  52868. image: {
  52869. source: "./media/characters/shuken-flash/front.svg",
  52870. extra: 1905/1739,
  52871. bottom: 65/1970
  52872. }
  52873. },
  52874. back: {
  52875. height: math.unit(6 + 2/12, "feet"),
  52876. weight: math.unit(195, "lb"),
  52877. preyCapacity: math.unit(6, "people"),
  52878. name: "Back",
  52879. image: {
  52880. source: "./media/characters/shuken-flash/back.svg",
  52881. extra: 1912/1751,
  52882. bottom: 13/1925
  52883. }
  52884. },
  52885. },
  52886. [
  52887. {
  52888. name: "Normal",
  52889. height: math.unit(6 + 2/12, "feet"),
  52890. default: true
  52891. },
  52892. ]
  52893. ))
  52894. characterMakers.push(() => makeCharacter(
  52895. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52896. {
  52897. front: {
  52898. height: math.unit(5 + 9/12, "feet"),
  52899. weight: math.unit(150, "lb"),
  52900. name: "Front",
  52901. image: {
  52902. source: "./media/characters/plat/front.svg",
  52903. extra: 1816/1703,
  52904. bottom: 43/1859
  52905. }
  52906. },
  52907. side: {
  52908. height: math.unit(5 + 9/12, "feet"),
  52909. weight: math.unit(300, "lb"),
  52910. name: "Side",
  52911. image: {
  52912. source: "./media/characters/plat/side.svg",
  52913. extra: 1824/1699,
  52914. bottom: 18/1842
  52915. }
  52916. },
  52917. },
  52918. [
  52919. {
  52920. name: "Normal",
  52921. height: math.unit(5 + 9/12, "feet"),
  52922. default: true
  52923. },
  52924. ]
  52925. ))
  52926. characterMakers.push(() => makeCharacter(
  52927. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52928. {
  52929. front: {
  52930. height: math.unit(9, "feet"),
  52931. weight: math.unit(1800, "lb"),
  52932. name: "Front",
  52933. image: {
  52934. source: "./media/characters/elaine/front.svg",
  52935. extra: 1833/1354,
  52936. bottom: 25/1858
  52937. }
  52938. },
  52939. back: {
  52940. height: math.unit(8.8, "feet"),
  52941. weight: math.unit(1800, "lb"),
  52942. name: "Back",
  52943. image: {
  52944. source: "./media/characters/elaine/back.svg",
  52945. extra: 1641/1233,
  52946. bottom: 53/1694
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(9, "feet"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52960. {
  52961. front: {
  52962. height: math.unit(17 + 9/12, "feet"),
  52963. weight: math.unit(8000, "lb"),
  52964. name: "Front",
  52965. image: {
  52966. source: "./media/characters/vera-raven/front.svg",
  52967. extra: 1457/1412,
  52968. bottom: 121/1578
  52969. }
  52970. },
  52971. side: {
  52972. height: math.unit(17 + 9/12, "feet"),
  52973. weight: math.unit(8000, "lb"),
  52974. name: "Side",
  52975. image: {
  52976. source: "./media/characters/vera-raven/side.svg",
  52977. extra: 1510/1464,
  52978. bottom: 54/1564
  52979. }
  52980. },
  52981. },
  52982. [
  52983. {
  52984. name: "Normal",
  52985. height: math.unit(17 + 9/12, "feet"),
  52986. default: true
  52987. },
  52988. ]
  52989. ))
  52990. characterMakers.push(() => makeCharacter(
  52991. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52992. {
  52993. dressed: {
  52994. height: math.unit(6 + 9/12, "feet"),
  52995. name: "Dressed",
  52996. image: {
  52997. source: "./media/characters/nakisha/dressed.svg",
  52998. extra: 1909/1757,
  52999. bottom: 48/1957
  53000. }
  53001. },
  53002. nude: {
  53003. height: math.unit(6 + 9/12, "feet"),
  53004. name: "Nude",
  53005. image: {
  53006. source: "./media/characters/nakisha/nude.svg",
  53007. extra: 1917/1765,
  53008. bottom: 34/1951
  53009. }
  53010. },
  53011. },
  53012. [
  53013. {
  53014. name: "Normal",
  53015. height: math.unit(6 + 9/12, "feet"),
  53016. default: true
  53017. },
  53018. ]
  53019. ))
  53020. characterMakers.push(() => makeCharacter(
  53021. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53022. {
  53023. front: {
  53024. height: math.unit(87, "meters"),
  53025. name: "Front",
  53026. image: {
  53027. source: "./media/characters/serafin/front.svg",
  53028. extra: 1919/1776,
  53029. bottom: 65/1984
  53030. }
  53031. },
  53032. },
  53033. [
  53034. {
  53035. name: "Normal",
  53036. height: math.unit(87, "meters"),
  53037. default: true
  53038. },
  53039. ]
  53040. ))
  53041. characterMakers.push(() => makeCharacter(
  53042. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53043. {
  53044. front: {
  53045. height: math.unit(6, "feet"),
  53046. weight: math.unit(200, "lb"),
  53047. name: "Front",
  53048. image: {
  53049. source: "./media/characters/poptart/front.svg",
  53050. extra: 615/583,
  53051. bottom: 23/638
  53052. }
  53053. },
  53054. back: {
  53055. height: math.unit(6, "feet"),
  53056. weight: math.unit(200, "lb"),
  53057. name: "Back",
  53058. image: {
  53059. source: "./media/characters/poptart/back.svg",
  53060. extra: 617/584,
  53061. bottom: 22/639
  53062. }
  53063. },
  53064. frontNsfw: {
  53065. height: math.unit(6, "feet"),
  53066. weight: math.unit(200, "lb"),
  53067. name: "Front (NSFW)",
  53068. image: {
  53069. source: "./media/characters/poptart/front-nsfw.svg",
  53070. extra: 615/583,
  53071. bottom: 23/638
  53072. }
  53073. },
  53074. backNsfw: {
  53075. height: math.unit(6, "feet"),
  53076. weight: math.unit(200, "lb"),
  53077. name: "Back (NSFW)",
  53078. image: {
  53079. source: "./media/characters/poptart/back-nsfw.svg",
  53080. extra: 617/584,
  53081. bottom: 22/639
  53082. }
  53083. },
  53084. hand: {
  53085. height: math.unit(1.14, "feet"),
  53086. name: "Hand",
  53087. image: {
  53088. source: "./media/characters/poptart/hand.svg"
  53089. }
  53090. },
  53091. foot: {
  53092. height: math.unit(1.5, "feet"),
  53093. name: "Foot",
  53094. image: {
  53095. source: "./media/characters/poptart/foot.svg"
  53096. }
  53097. },
  53098. },
  53099. [
  53100. {
  53101. name: "Normal",
  53102. height: math.unit(6, "feet"),
  53103. default: true
  53104. },
  53105. {
  53106. name: "Grande",
  53107. height: math.unit(350, "feet")
  53108. },
  53109. {
  53110. name: "Massif",
  53111. height: math.unit(967, "feet")
  53112. },
  53113. ]
  53114. ))
  53115. characterMakers.push(() => makeCharacter(
  53116. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53117. {
  53118. hyenaSide: {
  53119. height: math.unit(120, "cm"),
  53120. weight: math.unit(120, "lb"),
  53121. name: "Side",
  53122. image: {
  53123. source: "./media/characters/trance/hyena-side.svg",
  53124. extra: 998/904,
  53125. bottom: 76/1074
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(120, "cm"),
  53133. default: true
  53134. },
  53135. {
  53136. name: "Dire",
  53137. height: math.unit(230, "cm")
  53138. },
  53139. {
  53140. name: "Macro",
  53141. height: math.unit(37, "feet")
  53142. },
  53143. ]
  53144. ))
  53145. characterMakers.push(() => makeCharacter(
  53146. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53147. {
  53148. front: {
  53149. height: math.unit(6 + 3/12, "feet"),
  53150. name: "Front",
  53151. image: {
  53152. source: "./media/characters/michael-berretta/front.svg",
  53153. extra: 515/494,
  53154. bottom: 20/535
  53155. }
  53156. },
  53157. back: {
  53158. height: math.unit(6 + 3/12, "feet"),
  53159. name: "Back",
  53160. image: {
  53161. source: "./media/characters/michael-berretta/back.svg",
  53162. extra: 520/497,
  53163. bottom: 21/541
  53164. }
  53165. },
  53166. frontNsfw: {
  53167. height: math.unit(6 + 3/12, "feet"),
  53168. name: "Front (NSFW)",
  53169. image: {
  53170. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53171. extra: 515/494,
  53172. bottom: 20/535
  53173. }
  53174. },
  53175. dick: {
  53176. height: math.unit(1, "feet"),
  53177. name: "Dick",
  53178. image: {
  53179. source: "./media/characters/michael-berretta/dick.svg"
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Normal",
  53186. height: math.unit(6 + 3/12, "feet"),
  53187. default: true
  53188. },
  53189. {
  53190. name: "Big",
  53191. height: math.unit(12, "feet")
  53192. },
  53193. {
  53194. name: "Macro",
  53195. height: math.unit(187.5, "feet")
  53196. },
  53197. ]
  53198. ))
  53199. characterMakers.push(() => makeCharacter(
  53200. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53201. {
  53202. front: {
  53203. height: math.unit(9 + 9/12, "feet"),
  53204. weight: math.unit(1244, "lb"),
  53205. name: "Front",
  53206. image: {
  53207. source: "./media/characters/stella-edgecomb/front.svg",
  53208. extra: 1835/1706,
  53209. bottom: 49/1884
  53210. }
  53211. },
  53212. pen: {
  53213. height: math.unit(0.95, "feet"),
  53214. name: "Pen",
  53215. image: {
  53216. source: "./media/characters/stella-edgecomb/pen.svg"
  53217. }
  53218. },
  53219. },
  53220. [
  53221. {
  53222. name: "Cozy Bear",
  53223. height: math.unit(0.5, "inches")
  53224. },
  53225. {
  53226. name: "Normal",
  53227. height: math.unit(9 + 9/12, "feet"),
  53228. default: true
  53229. },
  53230. {
  53231. name: "Giga Bear",
  53232. height: math.unit(1, "mile")
  53233. },
  53234. {
  53235. name: "Great Bear",
  53236. height: math.unit(53, "miles")
  53237. },
  53238. {
  53239. name: "Goddess Bear",
  53240. height: math.unit(40000, "miles")
  53241. },
  53242. {
  53243. name: "Sun Bear",
  53244. height: math.unit(900000, "miles")
  53245. },
  53246. ]
  53247. ))
  53248. characterMakers.push(() => makeCharacter(
  53249. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53250. {
  53251. anthroFront: {
  53252. height: math.unit(556, "cm"),
  53253. weight: math.unit(2650, "kg"),
  53254. preyCapacity: math.unit(3, "people"),
  53255. name: "Front",
  53256. image: {
  53257. source: "./media/characters/ash´iika/front.svg",
  53258. extra: 710/673,
  53259. bottom: 15/725
  53260. },
  53261. form: "anthro",
  53262. default: true
  53263. },
  53264. anthroSide: {
  53265. height: math.unit(556, "cm"),
  53266. weight: math.unit(2650, "kg"),
  53267. preyCapacity: math.unit(3, "people"),
  53268. name: "Side",
  53269. image: {
  53270. source: "./media/characters/ash´iika/side.svg",
  53271. extra: 696/676,
  53272. bottom: 13/709
  53273. },
  53274. form: "anthro"
  53275. },
  53276. anthroDressed: {
  53277. height: math.unit(556, "cm"),
  53278. weight: math.unit(2650, "kg"),
  53279. preyCapacity: math.unit(3, "people"),
  53280. name: "Dressed",
  53281. image: {
  53282. source: "./media/characters/ash´iika/dressed.svg",
  53283. extra: 710/673,
  53284. bottom: 15/725
  53285. },
  53286. form: "anthro"
  53287. },
  53288. anthroHead: {
  53289. height: math.unit(3.5, "feet"),
  53290. name: "Head",
  53291. image: {
  53292. source: "./media/characters/ash´iika/head.svg",
  53293. extra: 348/291,
  53294. bottom: 45/393
  53295. },
  53296. form: "anthro"
  53297. },
  53298. feralSide: {
  53299. height: math.unit(870, "cm"),
  53300. weight: math.unit(17500, "kg"),
  53301. preyCapacity: math.unit(15, "people"),
  53302. name: "Side",
  53303. image: {
  53304. source: "./media/characters/ash´iika/feral.svg",
  53305. extra: 595/199,
  53306. bottom: 7/602
  53307. },
  53308. form: "feral",
  53309. default: true,
  53310. },
  53311. },
  53312. [
  53313. {
  53314. name: "Normal",
  53315. height: math.unit(556, "cm"),
  53316. default: true,
  53317. form: "anthro"
  53318. },
  53319. {
  53320. name: "Macro",
  53321. height: math.unit(88, "meters"),
  53322. form: "anthro"
  53323. },
  53324. {
  53325. name: "Normal",
  53326. height: math.unit(870, "cm"),
  53327. default: true,
  53328. form: "feral"
  53329. },
  53330. {
  53331. name: "Large",
  53332. height: math.unit(25, "meters"),
  53333. form: "feral"
  53334. },
  53335. ],
  53336. {
  53337. "anthro": {
  53338. name: "Anthro",
  53339. default: true
  53340. },
  53341. "feral": {
  53342. name: "Feral",
  53343. },
  53344. }
  53345. ))
  53346. characterMakers.push(() => makeCharacter(
  53347. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53348. {
  53349. front: {
  53350. height: math.unit(10, "feet"),
  53351. weight: math.unit(800, "lb"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/yen/front.svg",
  53355. extra: 443/411,
  53356. bottom: 6/449
  53357. }
  53358. },
  53359. sleeping: {
  53360. height: math.unit(10, "feet"),
  53361. weight: math.unit(800, "lb"),
  53362. name: "Sleeping",
  53363. image: {
  53364. source: "./media/characters/yen/sleeping.svg",
  53365. extra: 470/422,
  53366. bottom: 0/470
  53367. }
  53368. },
  53369. head: {
  53370. height: math.unit(2.2, "feet"),
  53371. name: "Head",
  53372. image: {
  53373. source: "./media/characters/yen/head.svg"
  53374. }
  53375. },
  53376. headAlt: {
  53377. height: math.unit(2.1, "feet"),
  53378. name: "Head (Alt)",
  53379. image: {
  53380. source: "./media/characters/yen/head-alt.svg"
  53381. }
  53382. },
  53383. },
  53384. [
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(10, "feet"),
  53388. default: true
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53394. {
  53395. front: {
  53396. height: math.unit(12, "feet"),
  53397. name: "Front",
  53398. image: {
  53399. source: "./media/characters/citra/front.svg",
  53400. extra: 1950/1710,
  53401. bottom: 47/1997
  53402. }
  53403. },
  53404. },
  53405. [
  53406. {
  53407. name: "Normal",
  53408. height: math.unit(12, "feet"),
  53409. default: true
  53410. },
  53411. ]
  53412. ))
  53413. characterMakers.push(() => makeCharacter(
  53414. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53415. {
  53416. side: {
  53417. height: math.unit(7 + 10/12, "feet"),
  53418. name: "Side",
  53419. image: {
  53420. source: "./media/characters/sholstim/side.svg",
  53421. extra: 786/682,
  53422. bottom: 40/826
  53423. }
  53424. },
  53425. },
  53426. [
  53427. {
  53428. name: "Normal",
  53429. height: math.unit(7 + 10/12, "feet"),
  53430. default: true
  53431. },
  53432. ]
  53433. ))
  53434. characterMakers.push(() => makeCharacter(
  53435. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53436. {
  53437. front: {
  53438. height: math.unit(3.10, "meters"),
  53439. name: "Front",
  53440. image: {
  53441. source: "./media/characters/aggyn/front.svg",
  53442. extra: 1188/963,
  53443. bottom: 24/1212
  53444. }
  53445. },
  53446. },
  53447. [
  53448. {
  53449. name: "Normal",
  53450. height: math.unit(3.10, "meters"),
  53451. default: true
  53452. },
  53453. ]
  53454. ))
  53455. characterMakers.push(() => makeCharacter(
  53456. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53457. {
  53458. front: {
  53459. height: math.unit(7 + 5/12, "feet"),
  53460. weight: math.unit(687, "lb"),
  53461. name: "Front",
  53462. image: {
  53463. source: "./media/characters/alsandair-hergenroether/front.svg",
  53464. extra: 1251/1186,
  53465. bottom: 75/1326
  53466. }
  53467. },
  53468. back: {
  53469. height: math.unit(7 + 5/12, "feet"),
  53470. weight: math.unit(687, "lb"),
  53471. name: "Back",
  53472. image: {
  53473. source: "./media/characters/alsandair-hergenroether/back.svg",
  53474. extra: 1290/1229,
  53475. bottom: 17/1307
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Max Compression",
  53482. height: math.unit(7 + 5/12, "feet"),
  53483. default: true
  53484. },
  53485. {
  53486. name: "\"Normal\"",
  53487. height: math.unit(2, "universes")
  53488. },
  53489. ]
  53490. ))
  53491. characterMakers.push(() => makeCharacter(
  53492. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53493. {
  53494. front: {
  53495. height: math.unit(4 + 1/12, "feet"),
  53496. weight: math.unit(92, "lb"),
  53497. name: "Front",
  53498. image: {
  53499. source: "./media/characters/ie/front.svg",
  53500. extra: 1585/1352,
  53501. bottom: 91/1676
  53502. }
  53503. },
  53504. },
  53505. [
  53506. {
  53507. name: "Normal",
  53508. height: math.unit(4 + 1/12, "feet"),
  53509. default: true
  53510. },
  53511. ]
  53512. ))
  53513. characterMakers.push(() => makeCharacter(
  53514. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53515. {
  53516. anthro: {
  53517. height: math.unit(6, "feet"),
  53518. weight: math.unit(150, "lb"),
  53519. name: "Front",
  53520. image: {
  53521. source: "./media/characters/willow/anthro.svg",
  53522. extra: 1073/986,
  53523. bottom: 34/1107
  53524. },
  53525. form: "anthro",
  53526. default: true
  53527. },
  53528. taur: {
  53529. height: math.unit(6, "feet"),
  53530. weight: math.unit(150, "lb"),
  53531. name: "Side",
  53532. image: {
  53533. source: "./media/characters/willow/taur.svg",
  53534. extra: 647/512,
  53535. bottom: 136/783
  53536. },
  53537. form: "taur",
  53538. default: true
  53539. },
  53540. },
  53541. [
  53542. {
  53543. name: "Humanoid",
  53544. height: math.unit(2.7, "meters"),
  53545. form: "anthro"
  53546. },
  53547. {
  53548. name: "Normal",
  53549. height: math.unit(9, "meters"),
  53550. form: "anthro",
  53551. default: true
  53552. },
  53553. {
  53554. name: "Humanoid",
  53555. height: math.unit(2.1, "meters"),
  53556. form: "taur"
  53557. },
  53558. {
  53559. name: "Normal",
  53560. height: math.unit(7, "meters"),
  53561. form: "taur",
  53562. default: true
  53563. },
  53564. ],
  53565. {
  53566. "anthro": {
  53567. name: "Anthro",
  53568. default: true
  53569. },
  53570. "taur": {
  53571. name: "Taur",
  53572. },
  53573. }
  53574. ))
  53575. characterMakers.push(() => makeCharacter(
  53576. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53577. {
  53578. front: {
  53579. height: math.unit(2 + 5/12, "feet"),
  53580. name: "Front",
  53581. image: {
  53582. source: "./media/characters/kyan/front.svg",
  53583. extra: 460/334,
  53584. bottom: 23/483
  53585. },
  53586. extraAttributes: {
  53587. "toeLength": {
  53588. name: "Toe Length",
  53589. power: 1,
  53590. type: "length",
  53591. base: math.unit(7, "cm")
  53592. },
  53593. "toeclawLength": {
  53594. name: "Toeclaw Length",
  53595. power: 1,
  53596. type: "length",
  53597. base: math.unit(4.7, "cm")
  53598. },
  53599. "earHeight": {
  53600. name: "Ear Height",
  53601. power: 1,
  53602. type: "length",
  53603. base: math.unit(14.1, "cm")
  53604. },
  53605. }
  53606. },
  53607. paws: {
  53608. height: math.unit(0.45, "feet"),
  53609. name: "Paws",
  53610. image: {
  53611. source: "./media/characters/kyan/paws.svg",
  53612. extra: 581/581,
  53613. bottom: 114/695
  53614. }
  53615. },
  53616. },
  53617. [
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(2 + 5/12, "feet"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(2 + 2/3, "feet"),
  53630. name: "Front",
  53631. image: {
  53632. source: "./media/characters/xazzon/front.svg",
  53633. extra: 1109/984,
  53634. bottom: 42/1151
  53635. }
  53636. },
  53637. back: {
  53638. height: math.unit(2 + 2/3, "feet"),
  53639. name: "Back",
  53640. image: {
  53641. source: "./media/characters/xazzon/back.svg",
  53642. extra: 1095/971,
  53643. bottom: 23/1118
  53644. }
  53645. },
  53646. },
  53647. [
  53648. {
  53649. name: "Normal",
  53650. height: math.unit(2 + 2/3, "feet"),
  53651. default: true
  53652. },
  53653. ]
  53654. ))
  53655. characterMakers.push(() => makeCharacter(
  53656. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53657. {
  53658. dressed: {
  53659. height: math.unit(5 + 7/12, "feet"),
  53660. weight: math.unit(173, "lb"),
  53661. name: "Dressed",
  53662. image: {
  53663. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53664. extra: 3262/2862,
  53665. bottom: 188/3450
  53666. }
  53667. },
  53668. undressed: {
  53669. height: math.unit(5 + 7/12, "feet"),
  53670. weight: math.unit(173, "lb"),
  53671. name: "Undressed",
  53672. image: {
  53673. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53674. extra: 3262/2862,
  53675. bottom: 188/3450
  53676. }
  53677. },
  53678. },
  53679. [
  53680. {
  53681. name: "The void",
  53682. height: math.unit(7.29193e-34, "angstroms")
  53683. },
  53684. {
  53685. name: "Uh-Oh.",
  53686. height: math.unit(5.734e-7, "angstroms")
  53687. },
  53688. {
  53689. name: "Pico",
  53690. height: math.unit(0.876, "angstroms")
  53691. },
  53692. {
  53693. name: "Nano",
  53694. height: math.unit(0.000134200, "mm")
  53695. },
  53696. {
  53697. name: "Micro",
  53698. height: math.unit(0.0673020, "mm")
  53699. },
  53700. {
  53701. name: "Tiny",
  53702. height: math.unit(2.4, "mm")
  53703. },
  53704. {
  53705. name: "Actual Normal",
  53706. height: math.unit(3, "inches"),
  53707. default: true
  53708. },
  53709. {
  53710. name: "Normal",
  53711. height: math.unit(5 + 8/12, "feet")
  53712. },
  53713. {
  53714. name: "Giant",
  53715. height: math.unit(12, "feet")
  53716. },
  53717. {
  53718. name: "City Ruler",
  53719. height: math.unit(270, "meters")
  53720. },
  53721. {
  53722. name: "Giga",
  53723. height: math.unit(1117.6, "km")
  53724. },
  53725. {
  53726. name: "All-Powerful Queen",
  53727. height: math.unit(70.8, "gigameters")
  53728. },
  53729. {
  53730. name: "'Goddess'",
  53731. height: math.unit(600, "yottameters")
  53732. },
  53733. {
  53734. name: "Biggest!",
  53735. height: math.unit(4.23e5, "yottameters")
  53736. },
  53737. ]
  53738. ))
  53739. characterMakers.push(() => makeCharacter(
  53740. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53741. {
  53742. front: {
  53743. height: math.unit(8, "feet"),
  53744. weight: math.unit(300, "lb"),
  53745. name: "Front",
  53746. image: {
  53747. source: "./media/characters/khyla-shadowsong/front.svg",
  53748. extra: 861/798,
  53749. bottom: 32/893
  53750. }
  53751. },
  53752. side: {
  53753. height: math.unit(8, "feet"),
  53754. weight: math.unit(300, "lb"),
  53755. name: "Side",
  53756. image: {
  53757. source: "./media/characters/khyla-shadowsong/side.svg",
  53758. extra: 790/750,
  53759. bottom: 87/877
  53760. }
  53761. },
  53762. back: {
  53763. height: math.unit(8, "feet"),
  53764. weight: math.unit(300, "lb"),
  53765. name: "Back",
  53766. image: {
  53767. source: "./media/characters/khyla-shadowsong/back.svg",
  53768. extra: 855/808,
  53769. bottom: 14/869
  53770. }
  53771. },
  53772. head: {
  53773. height: math.unit(2.7, "feet"),
  53774. name: "Head",
  53775. image: {
  53776. source: "./media/characters/khyla-shadowsong/head.svg"
  53777. }
  53778. },
  53779. },
  53780. [
  53781. {
  53782. name: "Micro",
  53783. height: math.unit(6, "inches")
  53784. },
  53785. {
  53786. name: "Normal",
  53787. height: math.unit(8, "feet"),
  53788. default: true
  53789. },
  53790. ]
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53794. {
  53795. hyperFront: {
  53796. height: math.unit(9 + 4/12, "feet"),
  53797. weight: math.unit(2000, "lb"),
  53798. name: "Front",
  53799. image: {
  53800. source: "./media/characters/tiden/hyper-front.svg",
  53801. extra: 400/382,
  53802. bottom: 6/406
  53803. },
  53804. form: "hyper",
  53805. },
  53806. regularFront: {
  53807. height: math.unit(7 + 10/12, "feet"),
  53808. weight: math.unit(470, "lb"),
  53809. name: "Front",
  53810. image: {
  53811. source: "./media/characters/tiden/regular-front.svg",
  53812. extra: 468/442,
  53813. bottom: 6/474
  53814. },
  53815. form: "regular",
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Normal",
  53821. height: math.unit(9 + 4/12, "feet"),
  53822. default: true,
  53823. form: "hyper"
  53824. },
  53825. {
  53826. name: "Normal",
  53827. height: math.unit(7 + 10/12, "feet"),
  53828. default: true,
  53829. form: "regular"
  53830. },
  53831. ],
  53832. {
  53833. "hyper": {
  53834. name: "Hyper",
  53835. default: true
  53836. },
  53837. "regular": {
  53838. name: "Regular",
  53839. },
  53840. }
  53841. ))
  53842. characterMakers.push(() => makeCharacter(
  53843. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53844. {
  53845. side: {
  53846. height: math.unit(6, "feet"),
  53847. weight: math.unit(150, "lb"),
  53848. name: "Side",
  53849. image: {
  53850. source: "./media/characters/jason-crowe/side.svg",
  53851. extra: 1771/766,
  53852. bottom: 219/1990
  53853. }
  53854. },
  53855. },
  53856. [
  53857. {
  53858. name: "Pocket Gryphon",
  53859. height: math.unit(6, "cm")
  53860. },
  53861. {
  53862. name: "Raven",
  53863. height: math.unit(60, "cm")
  53864. },
  53865. {
  53866. name: "Normal",
  53867. height: math.unit(1, "meter"),
  53868. default: true
  53869. },
  53870. ]
  53871. ))
  53872. characterMakers.push(() => makeCharacter(
  53873. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53874. {
  53875. front: {
  53876. height: math.unit(9 + 6/12, "feet"),
  53877. weight: math.unit(1100, "lb"),
  53878. name: "Front",
  53879. image: {
  53880. source: "./media/characters/django/front.svg",
  53881. extra: 1231/1136,
  53882. bottom: 34/1265
  53883. }
  53884. },
  53885. side: {
  53886. height: math.unit(9 + 6/12, "feet"),
  53887. weight: math.unit(1100, "lb"),
  53888. name: "Side",
  53889. image: {
  53890. source: "./media/characters/django/side.svg",
  53891. extra: 1267/1174,
  53892. bottom: 9/1276
  53893. }
  53894. },
  53895. },
  53896. [
  53897. {
  53898. name: "Normal",
  53899. height: math.unit(9 + 6/12, "feet"),
  53900. default: true
  53901. },
  53902. {
  53903. name: "Macro 1",
  53904. height: math.unit(50, "feet")
  53905. },
  53906. {
  53907. name: "Macro 2",
  53908. height: math.unit(500, "feet")
  53909. },
  53910. {
  53911. name: "Mega Macro",
  53912. height: math.unit(5300, "feet")
  53913. },
  53914. ]
  53915. ))
  53916. characterMakers.push(() => makeCharacter(
  53917. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53918. {
  53919. frontSfw: {
  53920. height: math.unit(120, "cm"),
  53921. weight: math.unit(15, "kg"),
  53922. name: "Front (SFW)",
  53923. image: {
  53924. source: "./media/characters/eri/front-sfw.svg",
  53925. extra: 1014/939,
  53926. bottom: 37/1051
  53927. },
  53928. form: "moth",
  53929. },
  53930. frontNsfw: {
  53931. height: math.unit(120, "cm"),
  53932. weight: math.unit(15, "kg"),
  53933. name: "Front (NSFW)",
  53934. image: {
  53935. source: "./media/characters/eri/front-nsfw.svg",
  53936. extra: 1014/939,
  53937. bottom: 37/1051
  53938. },
  53939. form: "moth",
  53940. default: true
  53941. },
  53942. egg: {
  53943. height: math.unit(10, "cm"),
  53944. name: "Egg",
  53945. image: {
  53946. source: "./media/characters/eri/egg.svg"
  53947. },
  53948. form: "egg",
  53949. default: true
  53950. },
  53951. },
  53952. [
  53953. {
  53954. name: "Normal",
  53955. height: math.unit(120, "cm"),
  53956. default: true,
  53957. form: "moth"
  53958. },
  53959. {
  53960. name: "Normal",
  53961. height: math.unit(10, "cm"),
  53962. default: true,
  53963. form: "egg"
  53964. },
  53965. ],
  53966. {
  53967. "moth": {
  53968. name: "Moth",
  53969. default: true
  53970. },
  53971. "egg": {
  53972. name: "Egg",
  53973. },
  53974. }
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53978. {
  53979. front: {
  53980. height: math.unit(200, "feet"),
  53981. name: "Front",
  53982. image: {
  53983. source: "./media/characters/bishop-dowser/front.svg",
  53984. extra: 933/868,
  53985. bottom: 106/1039
  53986. }
  53987. },
  53988. },
  53989. [
  53990. {
  53991. name: "Giant",
  53992. height: math.unit(200, "feet"),
  53993. default: true
  53994. },
  53995. ]
  53996. ))
  53997. characterMakers.push(() => makeCharacter(
  53998. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53999. {
  54000. front: {
  54001. height: math.unit(2, "meters"),
  54002. preyCapacity: math.unit(3, "people"),
  54003. name: "Front",
  54004. image: {
  54005. source: "./media/characters/fryra/front.svg",
  54006. extra: 1025/948,
  54007. bottom: 30/1055
  54008. },
  54009. extraAttributes: {
  54010. "breastVolume": {
  54011. name: "Breast Volume",
  54012. power: 3,
  54013. type: "volume",
  54014. base: math.unit(8, "liters")
  54015. },
  54016. }
  54017. },
  54018. back: {
  54019. height: math.unit(2, "meters"),
  54020. preyCapacity: math.unit(3, "people"),
  54021. name: "Back",
  54022. image: {
  54023. source: "./media/characters/fryra/back.svg",
  54024. extra: 993/938,
  54025. bottom: 38/1031
  54026. },
  54027. extraAttributes: {
  54028. "breastVolume": {
  54029. name: "Breast Volume",
  54030. power: 3,
  54031. type: "volume",
  54032. base: math.unit(8, "liters")
  54033. },
  54034. }
  54035. },
  54036. head: {
  54037. height: math.unit(1.33, "feet"),
  54038. name: "Head",
  54039. image: {
  54040. source: "./media/characters/fryra/head.svg"
  54041. }
  54042. },
  54043. maw: {
  54044. height: math.unit(0.56, "feet"),
  54045. name: "Maw",
  54046. image: {
  54047. source: "./media/characters/fryra/maw.svg"
  54048. }
  54049. },
  54050. },
  54051. [
  54052. {
  54053. name: "Micro",
  54054. height: math.unit(5, "cm")
  54055. },
  54056. {
  54057. name: "Normal",
  54058. height: math.unit(2, "meters"),
  54059. default: true
  54060. },
  54061. {
  54062. name: "Small Macro",
  54063. height: math.unit(8, "meters")
  54064. },
  54065. {
  54066. name: "Macro",
  54067. height: math.unit(50, "meters")
  54068. },
  54069. {
  54070. name: "Megamacro",
  54071. height: math.unit(1, "km")
  54072. },
  54073. {
  54074. name: "Planetary",
  54075. height: math.unit(300000, "km")
  54076. },
  54077. {
  54078. name: "Universal",
  54079. height: math.unit(250, "lightyears")
  54080. },
  54081. {
  54082. name: "Fabric of Reality",
  54083. height: math.unit(1000, "multiverses")
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54089. {
  54090. frontDressed: {
  54091. height: math.unit(6 + 2/12, "feet"),
  54092. name: "Front (Dressed)",
  54093. image: {
  54094. source: "./media/characters/fiera/front-dressed.svg",
  54095. extra: 1883/1793,
  54096. bottom: 70/1953
  54097. }
  54098. },
  54099. backDressed: {
  54100. height: math.unit(6 + 2/12, "feet"),
  54101. name: "Back (Dressed)",
  54102. image: {
  54103. source: "./media/characters/fiera/back-dressed.svg",
  54104. extra: 1847/1780,
  54105. bottom: 70/1917
  54106. }
  54107. },
  54108. frontNude: {
  54109. height: math.unit(6 + 2/12, "feet"),
  54110. name: "Front (Nude)",
  54111. image: {
  54112. source: "./media/characters/fiera/front-nude.svg",
  54113. extra: 1875/1785,
  54114. bottom: 66/1941
  54115. }
  54116. },
  54117. backNude: {
  54118. height: math.unit(6 + 2/12, "feet"),
  54119. name: "Back (Nude)",
  54120. image: {
  54121. source: "./media/characters/fiera/back-nude.svg",
  54122. extra: 1855/1788,
  54123. bottom: 44/1899
  54124. }
  54125. },
  54126. maw: {
  54127. height: math.unit(1.3, "feet"),
  54128. name: "Maw",
  54129. image: {
  54130. source: "./media/characters/fiera/maw.svg"
  54131. }
  54132. },
  54133. paw: {
  54134. height: math.unit(1, "feet"),
  54135. name: "Paw",
  54136. image: {
  54137. source: "./media/characters/fiera/paw.svg"
  54138. }
  54139. },
  54140. shoe: {
  54141. height: math.unit(1.05, "feet"),
  54142. name: "Shoe",
  54143. image: {
  54144. source: "./media/characters/fiera/shoe.svg"
  54145. }
  54146. },
  54147. },
  54148. [
  54149. {
  54150. name: "Normal",
  54151. height: math.unit(6 + 2/12, "feet"),
  54152. default: true
  54153. },
  54154. {
  54155. name: "Size Difference",
  54156. height: math.unit(13, "feet")
  54157. },
  54158. {
  54159. name: "Macro",
  54160. height: math.unit(60, "feet")
  54161. },
  54162. {
  54163. name: "Mega Macro",
  54164. height: math.unit(200, "feet")
  54165. },
  54166. ]
  54167. ))
  54168. characterMakers.push(() => makeCharacter(
  54169. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54170. {
  54171. back: {
  54172. height: math.unit(6, "feet"),
  54173. name: "Back",
  54174. image: {
  54175. source: "./media/characters/flare/back.svg",
  54176. extra: 1883/1765,
  54177. bottom: 32/1915
  54178. }
  54179. },
  54180. },
  54181. [
  54182. {
  54183. name: "Normal",
  54184. height: math.unit(6 + 2/12, "feet"),
  54185. default: true
  54186. },
  54187. {
  54188. name: "Size Difference",
  54189. height: math.unit(13, "feet")
  54190. },
  54191. {
  54192. name: "Macro",
  54193. height: math.unit(60, "feet")
  54194. },
  54195. {
  54196. name: "Macro 2",
  54197. height: math.unit(100, "feet")
  54198. },
  54199. {
  54200. name: "Mega Macro",
  54201. height: math.unit(200, "feet")
  54202. },
  54203. ]
  54204. ))
  54205. characterMakers.push(() => makeCharacter(
  54206. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54207. {
  54208. front: {
  54209. height: math.unit(2.2, "m"),
  54210. weight: math.unit(300, "kg"),
  54211. name: "Front",
  54212. image: {
  54213. source: "./media/characters/hanna/front.svg",
  54214. extra: 1696/1502,
  54215. bottom: 206/1902
  54216. }
  54217. },
  54218. },
  54219. [
  54220. {
  54221. name: "Humanoid",
  54222. height: math.unit(2.2, "meters")
  54223. },
  54224. {
  54225. name: "Normal",
  54226. height: math.unit(4.8, "meters"),
  54227. default: true
  54228. },
  54229. ]
  54230. ))
  54231. characterMakers.push(() => makeCharacter(
  54232. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54233. {
  54234. front: {
  54235. height: math.unit(2.8, "meters"),
  54236. name: "Front",
  54237. image: {
  54238. source: "./media/characters/argo/front.svg",
  54239. extra: 731/518,
  54240. bottom: 84/815
  54241. }
  54242. },
  54243. },
  54244. [
  54245. {
  54246. name: "Normal",
  54247. height: math.unit(3, "meters"),
  54248. default: true
  54249. },
  54250. ]
  54251. ))
  54252. characterMakers.push(() => makeCharacter(
  54253. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54254. {
  54255. side: {
  54256. height: math.unit(3.8, "meters"),
  54257. name: "Side",
  54258. image: {
  54259. source: "./media/characters/sybil/side.svg",
  54260. extra: 382/361,
  54261. bottom: 25/407
  54262. }
  54263. },
  54264. },
  54265. [
  54266. {
  54267. name: "Normal",
  54268. height: math.unit(3.8, "meters"),
  54269. default: true
  54270. },
  54271. ]
  54272. ))
  54273. characterMakers.push(() => makeCharacter(
  54274. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54275. {
  54276. side: {
  54277. height: math.unit(6, "meters"),
  54278. name: "Side",
  54279. image: {
  54280. source: "./media/characters/plum/side.svg",
  54281. extra: 858/755,
  54282. bottom: 45/903
  54283. },
  54284. form: "taur",
  54285. default: true
  54286. },
  54287. back: {
  54288. height: math.unit(6.3, "meters"),
  54289. name: "Back",
  54290. image: {
  54291. source: "./media/characters/plum/back.svg",
  54292. extra: 887/813,
  54293. bottom: 32/919
  54294. },
  54295. form: "taur",
  54296. },
  54297. feral: {
  54298. height: math.unit(5.5, "meter"),
  54299. name: "Front",
  54300. image: {
  54301. source: "./media/characters/plum/feral.svg",
  54302. extra: 568/403,
  54303. bottom: 51/619
  54304. },
  54305. form: "feral",
  54306. default: true
  54307. },
  54308. head: {
  54309. height: math.unit(1.46, "meter"),
  54310. name: "Head",
  54311. image: {
  54312. source: "./media/characters/plum/head.svg"
  54313. },
  54314. form: "taur"
  54315. },
  54316. tailTop: {
  54317. height: math.unit(5.6, "meter"),
  54318. name: "Tail (Top)",
  54319. image: {
  54320. source: "./media/characters/plum/tail-top.svg"
  54321. },
  54322. form: "taur",
  54323. },
  54324. tailBottom: {
  54325. height: math.unit(5.6, "meter"),
  54326. name: "Tail (Bottom)",
  54327. image: {
  54328. source: "./media/characters/plum/tail-bottom.svg"
  54329. },
  54330. form: "taur",
  54331. },
  54332. feralHead: {
  54333. height: math.unit(2.56549521, "meter"),
  54334. name: "Head",
  54335. image: {
  54336. source: "./media/characters/plum/head.svg"
  54337. },
  54338. form: "feral"
  54339. },
  54340. feralTailTop: {
  54341. height: math.unit(5.44728435, "meter"),
  54342. name: "Tail (Top)",
  54343. image: {
  54344. source: "./media/characters/plum/tail-top.svg"
  54345. },
  54346. form: "feral",
  54347. },
  54348. feralTailBottom: {
  54349. height: math.unit(5.44728435, "meter"),
  54350. name: "Tail (Bottom)",
  54351. image: {
  54352. source: "./media/characters/plum/tail-bottom.svg"
  54353. },
  54354. form: "feral",
  54355. },
  54356. },
  54357. [
  54358. {
  54359. name: "Normal",
  54360. height: math.unit(6, "meters"),
  54361. default: true,
  54362. form: "taur"
  54363. },
  54364. {
  54365. name: "Normal",
  54366. height: math.unit(5.5, "meters"),
  54367. default: true,
  54368. form: "feral"
  54369. },
  54370. ],
  54371. {
  54372. "taur": {
  54373. name: "Taur",
  54374. default: true
  54375. },
  54376. "feral": {
  54377. name: "Feral",
  54378. },
  54379. }
  54380. ))
  54381. characterMakers.push(() => makeCharacter(
  54382. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54383. {
  54384. front: {
  54385. height: math.unit(6, "feet"),
  54386. weight: math.unit(115, "lb"),
  54387. name: "Front",
  54388. image: {
  54389. source: "./media/characters/celeste-kitsune/front.svg",
  54390. extra: 393/366,
  54391. bottom: 7/400
  54392. }
  54393. },
  54394. side: {
  54395. height: math.unit(6, "feet"),
  54396. weight: math.unit(115, "lb"),
  54397. name: "Side",
  54398. image: {
  54399. source: "./media/characters/celeste-kitsune/side.svg",
  54400. extra: 818/765,
  54401. bottom: 40/858
  54402. }
  54403. },
  54404. },
  54405. [
  54406. {
  54407. name: "Megamacro",
  54408. height: math.unit(1500, "miles"),
  54409. default: true
  54410. },
  54411. ]
  54412. ))
  54413. //characters
  54414. function makeCharacters() {
  54415. const results = [];
  54416. characterMakers.forEach(character => {
  54417. results.push(character());
  54418. });
  54419. return results;
  54420. }