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

54806 строки
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. }
  2075. //species
  2076. function getSpeciesInfo(speciesList) {
  2077. let result = new Set();
  2078. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2079. result.add(entry)
  2080. });
  2081. return Array.from(result);
  2082. };
  2083. function getSpeciesInfoHelper(species) {
  2084. if (!speciesData[species]) {
  2085. console.warn(species + " doesn't exist");
  2086. return [];
  2087. }
  2088. if (speciesData[species].parents) {
  2089. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2090. } else {
  2091. return [species];
  2092. }
  2093. }
  2094. characterMakers.push(() => makeCharacter(
  2095. {
  2096. name: "Fen",
  2097. species: ["crux"],
  2098. description: {
  2099. title: "Bio",
  2100. text: "Very furry. Sheds on everything."
  2101. },
  2102. tags: [
  2103. "anthro",
  2104. "goo"
  2105. ]
  2106. },
  2107. {
  2108. front: {
  2109. height: math.unit(12, "feet"),
  2110. weight: math.unit(2400, "lb"),
  2111. name: "Front",
  2112. image: {
  2113. source: "./media/characters/fen/front.svg",
  2114. extra: 1804/1562,
  2115. bottom: 205/2009
  2116. },
  2117. extraAttributes: {
  2118. pawSize: {
  2119. name: "Paw Size",
  2120. power: 2,
  2121. type: "area",
  2122. base: math.unit(0.35, "m^2")
  2123. }
  2124. }
  2125. },
  2126. diving: {
  2127. height: math.unit(4.9, "meters"),
  2128. weight: math.unit(2400, "lb"),
  2129. name: "Diving",
  2130. image: {
  2131. source: "./media/characters/fen/diving.svg"
  2132. }
  2133. },
  2134. goo: {
  2135. height: math.unit(12, "feet"),
  2136. weight: math.unit(3600, "lb"),
  2137. volume: math.unit(1000, "liters"),
  2138. preyCapacity: math.unit(6, "people"),
  2139. name: "Goo",
  2140. image: {
  2141. source: "./media/characters/fen/goo.svg",
  2142. extra: 1307/1071,
  2143. bottom: 134/1441
  2144. }
  2145. },
  2146. gooNsfw: {
  2147. height: math.unit(12, "feet"),
  2148. weight: math.unit(3750, "lb"),
  2149. volume: math.unit(1000, "liters"),
  2150. preyCapacity: math.unit(6, "people"),
  2151. name: "Goo (NSFW)",
  2152. image: {
  2153. source: "./media/characters/fen/goo-nsfw.svg",
  2154. extra: 1875/1734,
  2155. bottom: 122/1997
  2156. }
  2157. },
  2158. maw: {
  2159. height: math.unit(5.03, "feet"),
  2160. name: "Maw",
  2161. image: {
  2162. source: "./media/characters/fen/maw.svg"
  2163. }
  2164. },
  2165. gooCeiling: {
  2166. height: math.unit(6.6, "feet"),
  2167. weight: math.unit(3000, "lb"),
  2168. volume: math.unit(1000, "liters"),
  2169. preyCapacity: math.unit(6, "people"),
  2170. name: "Goo (Ceiling)",
  2171. image: {
  2172. source: "./media/characters/fen/goo-ceiling.svg"
  2173. }
  2174. },
  2175. paw: {
  2176. height: math.unit(3.77, "feet"),
  2177. name: "Paw",
  2178. image: {
  2179. source: "./media/characters/fen/paw.svg"
  2180. },
  2181. extraAttributes: {
  2182. "toeSize": {
  2183. name: "Toe Size",
  2184. power: 2,
  2185. type: "area",
  2186. base: math.unit(0.02875, "m^2")
  2187. },
  2188. "pawSize": {
  2189. name: "Paw Size",
  2190. power: 2,
  2191. type: "area",
  2192. base: math.unit(0.378, "m^2")
  2193. },
  2194. }
  2195. },
  2196. tail: {
  2197. height: math.unit(12.1, "feet"),
  2198. name: "Tail",
  2199. image: {
  2200. source: "./media/characters/fen/tail.svg"
  2201. }
  2202. },
  2203. tailFull: {
  2204. height: math.unit(12.1, "feet"),
  2205. name: "Full Tail",
  2206. image: {
  2207. source: "./media/characters/fen/tail-full.svg"
  2208. }
  2209. },
  2210. back: {
  2211. height: math.unit(12, "feet"),
  2212. weight: math.unit(2400, "lb"),
  2213. name: "Back",
  2214. image: {
  2215. source: "./media/characters/fen/back.svg",
  2216. },
  2217. info: {
  2218. description: {
  2219. mode: "append",
  2220. text: "\n\nHe is not currently looking at you."
  2221. }
  2222. }
  2223. },
  2224. full: {
  2225. height: math.unit(1.85, "meter"),
  2226. weight: math.unit(3200, "lb"),
  2227. name: "Full",
  2228. image: {
  2229. source: "./media/characters/fen/full.svg",
  2230. extra: 1133/859,
  2231. bottom: 145/1278
  2232. },
  2233. info: {
  2234. description: {
  2235. mode: "append",
  2236. text: "\n\nMunch."
  2237. }
  2238. }
  2239. },
  2240. gooLounging: {
  2241. height: math.unit(4.53, "feet"),
  2242. weight: math.unit(3000, "lb"),
  2243. preyCapacity: math.unit(6, "people"),
  2244. name: "Goo (Lounging)",
  2245. image: {
  2246. source: "./media/characters/fen/goo-lounging.svg",
  2247. bottom: 116 / 613
  2248. }
  2249. },
  2250. lounging: {
  2251. height: math.unit(10.52, "feet"),
  2252. weight: math.unit(2400, "lb"),
  2253. name: "Lounging",
  2254. image: {
  2255. source: "./media/characters/fen/lounging.svg"
  2256. }
  2257. },
  2258. },
  2259. [
  2260. {
  2261. name: "Small",
  2262. height: math.unit(2.2428, "meter")
  2263. },
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(12, "feet"),
  2267. default: true,
  2268. },
  2269. {
  2270. name: "Big",
  2271. height: math.unit(20, "feet")
  2272. },
  2273. {
  2274. name: "Minimacro",
  2275. height: math.unit(40, "feet"),
  2276. info: {
  2277. description: {
  2278. mode: "append",
  2279. text: "\n\nTOO DAMN BIG"
  2280. }
  2281. }
  2282. },
  2283. {
  2284. name: "Macro",
  2285. height: math.unit(100, "feet"),
  2286. info: {
  2287. description: {
  2288. mode: "append",
  2289. text: "\n\nTOO DAMN BIG"
  2290. }
  2291. }
  2292. },
  2293. {
  2294. name: "Megamacro",
  2295. height: math.unit(2, "miles")
  2296. },
  2297. {
  2298. name: "Gigamacro",
  2299. height: math.unit(10, "earths")
  2300. },
  2301. ]
  2302. ))
  2303. characterMakers.push(() => makeCharacter(
  2304. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2305. {
  2306. front: {
  2307. height: math.unit(183, "cm"),
  2308. weight: math.unit(80, "kg"),
  2309. name: "Front",
  2310. image: {
  2311. source: "./media/characters/sofia-fluttertail/front.svg",
  2312. bottom: 0.01,
  2313. extra: 2154 / 2081
  2314. }
  2315. },
  2316. frontAlt: {
  2317. height: math.unit(183, "cm"),
  2318. weight: math.unit(80, "kg"),
  2319. name: "Front (alt)",
  2320. image: {
  2321. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2322. }
  2323. },
  2324. back: {
  2325. height: math.unit(183, "cm"),
  2326. weight: math.unit(80, "kg"),
  2327. name: "Back",
  2328. image: {
  2329. source: "./media/characters/sofia-fluttertail/back.svg"
  2330. }
  2331. },
  2332. kneeling: {
  2333. height: math.unit(125, "cm"),
  2334. weight: math.unit(80, "kg"),
  2335. name: "Kneeling",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2338. extra: 1033 / 977,
  2339. bottom: 23.7 / 1057
  2340. }
  2341. },
  2342. maw: {
  2343. height: math.unit(183 / 5, "cm"),
  2344. name: "Maw",
  2345. image: {
  2346. source: "./media/characters/sofia-fluttertail/maw.svg"
  2347. }
  2348. },
  2349. mawcloseup: {
  2350. height: math.unit(183 / 5 * 0.41, "cm"),
  2351. name: "Maw (Closeup)",
  2352. image: {
  2353. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2354. }
  2355. },
  2356. paws: {
  2357. height: math.unit(1.17, "feet"),
  2358. name: "Paws",
  2359. image: {
  2360. source: "./media/characters/sofia-fluttertail/paws.svg",
  2361. extra: 851 / 851,
  2362. bottom: 17 / 868
  2363. }
  2364. },
  2365. },
  2366. [
  2367. {
  2368. name: "Normal",
  2369. height: math.unit(1.83, "meter")
  2370. },
  2371. {
  2372. name: "Size Thief",
  2373. height: math.unit(18, "feet")
  2374. },
  2375. {
  2376. name: "50 Foot Collie",
  2377. height: math.unit(50, "feet")
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(96, "feet"),
  2382. default: true
  2383. },
  2384. {
  2385. name: "Megamerger",
  2386. height: math.unit(650, "feet")
  2387. },
  2388. ]
  2389. ))
  2390. characterMakers.push(() => makeCharacter(
  2391. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2392. {
  2393. front: {
  2394. height: math.unit(7, "feet"),
  2395. weight: math.unit(100, "kg"),
  2396. name: "Front",
  2397. image: {
  2398. source: "./media/characters/march/front.svg",
  2399. extra: 1992/1851,
  2400. bottom: 39/2031
  2401. }
  2402. },
  2403. foot: {
  2404. height: math.unit(0.9, "feet"),
  2405. name: "Foot",
  2406. image: {
  2407. source: "./media/characters/march/foot.svg"
  2408. }
  2409. },
  2410. },
  2411. [
  2412. {
  2413. name: "Normal",
  2414. height: math.unit(7.9, "feet")
  2415. },
  2416. {
  2417. name: "Macro",
  2418. height: math.unit(220, "meters")
  2419. },
  2420. {
  2421. name: "Megamacro",
  2422. height: math.unit(2.98, "km"),
  2423. default: true
  2424. },
  2425. {
  2426. name: "Gigamacro",
  2427. height: math.unit(15963, "km")
  2428. },
  2429. {
  2430. name: "Teramacro",
  2431. height: math.unit(2980000000, "km")
  2432. },
  2433. {
  2434. name: "Examacro",
  2435. height: math.unit(250, "parsecs")
  2436. },
  2437. ]
  2438. ))
  2439. characterMakers.push(() => makeCharacter(
  2440. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2441. {
  2442. front: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(60, "kg"),
  2445. name: "Front",
  2446. image: {
  2447. source: "./media/characters/noir/front.svg",
  2448. extra: 1,
  2449. bottom: 0.032
  2450. }
  2451. },
  2452. },
  2453. [
  2454. {
  2455. name: "Normal",
  2456. height: math.unit(6.6, "feet")
  2457. },
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(500, "feet")
  2461. },
  2462. {
  2463. name: "Megamacro",
  2464. height: math.unit(2.5, "km"),
  2465. default: true
  2466. },
  2467. {
  2468. name: "Gigamacro",
  2469. height: math.unit(22500, "km")
  2470. },
  2471. {
  2472. name: "Teramacro",
  2473. height: math.unit(2500000000, "km")
  2474. },
  2475. {
  2476. name: "Examacro",
  2477. height: math.unit(200, "parsecs")
  2478. },
  2479. ]
  2480. ))
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2483. {
  2484. front: {
  2485. height: math.unit(7, "feet"),
  2486. weight: math.unit(100, "kg"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/okuri/front.svg",
  2490. extra: 739/665,
  2491. bottom: 39/778
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(7, "feet"),
  2496. weight: math.unit(100, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/okuri/back.svg",
  2500. extra: 734/653,
  2501. bottom: 13/747
  2502. }
  2503. },
  2504. sitting: {
  2505. height: math.unit(2.95, "feet"),
  2506. weight: math.unit(100, "kg"),
  2507. name: "Sitting",
  2508. image: {
  2509. source: "./media/characters/okuri/sitting.svg",
  2510. extra: 370/318,
  2511. bottom: 99/469
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Smallest",
  2518. height: math.unit(5 + 2/12, "feet")
  2519. },
  2520. {
  2521. name: "Smaller",
  2522. height: math.unit(300, "feet")
  2523. },
  2524. {
  2525. name: "Small",
  2526. height: math.unit(1000, "feet")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(1, "mile")
  2531. },
  2532. {
  2533. name: "Mega Macro (Small)",
  2534. height: math.unit(20, "km")
  2535. },
  2536. {
  2537. name: "Mega Macro (Large)",
  2538. height: math.unit(600, "km")
  2539. },
  2540. {
  2541. name: "Giga Macro",
  2542. height: math.unit(10000, "km")
  2543. },
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(577560, "km"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Large",
  2551. height: math.unit(4, "galaxies")
  2552. },
  2553. {
  2554. name: "Largest",
  2555. height: math.unit(15, "multiverses")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(7, "feet"),
  2564. weight: math.unit(100, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/manny/front.svg",
  2568. extra: 1,
  2569. bottom: 0.06
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(7, "feet"),
  2574. weight: math.unit(100, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/manny/back.svg",
  2578. extra: 1,
  2579. bottom: 0.014
  2580. }
  2581. },
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(7, "feet"),
  2587. },
  2588. {
  2589. name: "Macro",
  2590. height: math.unit(78, "feet"),
  2591. default: true
  2592. },
  2593. {
  2594. name: "Macro+",
  2595. height: math.unit(300, "meters")
  2596. },
  2597. {
  2598. name: "Macro++",
  2599. height: math.unit(2400, "meters")
  2600. },
  2601. {
  2602. name: "Megamacro",
  2603. height: math.unit(5167, "meters")
  2604. },
  2605. {
  2606. name: "Gigamacro",
  2607. height: math.unit(41769, "miles")
  2608. },
  2609. ]
  2610. ))
  2611. characterMakers.push(() => makeCharacter(
  2612. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2613. {
  2614. front: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Front",
  2618. image: {
  2619. source: "./media/characters/adake/front-1.svg"
  2620. }
  2621. },
  2622. frontAlt: {
  2623. height: math.unit(7, "feet"),
  2624. weight: math.unit(100, "kg"),
  2625. name: "Front (Alt)",
  2626. image: {
  2627. source: "./media/characters/adake/front-2.svg",
  2628. extra: 1,
  2629. bottom: 0.01
  2630. }
  2631. },
  2632. back: {
  2633. height: math.unit(7, "feet"),
  2634. weight: math.unit(100, "kg"),
  2635. name: "Back",
  2636. image: {
  2637. source: "./media/characters/adake/back.svg",
  2638. }
  2639. },
  2640. kneel: {
  2641. height: math.unit(5.385, "feet"),
  2642. weight: math.unit(100, "kg"),
  2643. name: "Kneeling",
  2644. image: {
  2645. source: "./media/characters/adake/kneel.svg",
  2646. bottom: 0.052
  2647. }
  2648. },
  2649. },
  2650. [
  2651. {
  2652. name: "Normal",
  2653. height: math.unit(7, "feet"),
  2654. },
  2655. {
  2656. name: "Macro",
  2657. height: math.unit(78, "feet"),
  2658. default: true
  2659. },
  2660. {
  2661. name: "Macro+",
  2662. height: math.unit(300, "meters")
  2663. },
  2664. {
  2665. name: "Macro++",
  2666. height: math.unit(2400, "meters")
  2667. },
  2668. {
  2669. name: "Megamacro",
  2670. height: math.unit(5167, "meters")
  2671. },
  2672. {
  2673. name: "Gigamacro",
  2674. height: math.unit(41769, "miles")
  2675. },
  2676. ]
  2677. ))
  2678. characterMakers.push(() => makeCharacter(
  2679. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2680. {
  2681. front: {
  2682. height: math.unit(1.65, "meters"),
  2683. weight: math.unit(50, "kg"),
  2684. name: "Front",
  2685. image: {
  2686. source: "./media/characters/elijah/front.svg",
  2687. extra: 858 / 830,
  2688. bottom: 95.5 / 953.8559
  2689. }
  2690. },
  2691. back: {
  2692. height: math.unit(1.65, "meters"),
  2693. weight: math.unit(50, "kg"),
  2694. name: "Back",
  2695. image: {
  2696. source: "./media/characters/elijah/back.svg",
  2697. extra: 895 / 850,
  2698. bottom: 5.3 / 897.956
  2699. }
  2700. },
  2701. frontNsfw: {
  2702. height: math.unit(1.65, "meters"),
  2703. weight: math.unit(50, "kg"),
  2704. name: "Front (NSFW)",
  2705. image: {
  2706. source: "./media/characters/elijah/front-nsfw.svg",
  2707. extra: 858 / 830,
  2708. bottom: 95.5 / 953.8559
  2709. }
  2710. },
  2711. backNsfw: {
  2712. height: math.unit(1.65, "meters"),
  2713. weight: math.unit(50, "kg"),
  2714. name: "Back (NSFW)",
  2715. image: {
  2716. source: "./media/characters/elijah/back-nsfw.svg",
  2717. extra: 895 / 850,
  2718. bottom: 5.3 / 897.956
  2719. }
  2720. },
  2721. dick: {
  2722. height: math.unit(1, "feet"),
  2723. name: "Dick",
  2724. image: {
  2725. source: "./media/characters/elijah/dick.svg"
  2726. }
  2727. },
  2728. beakOpen: {
  2729. height: math.unit(1.25, "feet"),
  2730. name: "Beak (Open)",
  2731. image: {
  2732. source: "./media/characters/elijah/beak-open.svg"
  2733. }
  2734. },
  2735. beakShut: {
  2736. height: math.unit(1.25, "feet"),
  2737. name: "Beak (Shut)",
  2738. image: {
  2739. source: "./media/characters/elijah/beak-shut.svg"
  2740. }
  2741. },
  2742. footFlexing: {
  2743. height: math.unit(1.61, "feet"),
  2744. name: "Foot (Flexing)",
  2745. image: {
  2746. source: "./media/characters/elijah/foot-flexing.svg"
  2747. }
  2748. },
  2749. footStepping: {
  2750. height: math.unit(1.44, "feet"),
  2751. name: "Foot (Stepping)",
  2752. image: {
  2753. source: "./media/characters/elijah/foot-stepping.svg"
  2754. }
  2755. },
  2756. plantigradeLeg: {
  2757. height: math.unit(2.34, "feet"),
  2758. name: "Plantigrade Leg",
  2759. image: {
  2760. source: "./media/characters/elijah/plantigrade-leg.svg"
  2761. }
  2762. },
  2763. plantigradeFootLeft: {
  2764. height: math.unit(0.9, "feet"),
  2765. name: "Plantigrade Foot (Left)",
  2766. image: {
  2767. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2768. }
  2769. },
  2770. plantigradeFootRight: {
  2771. height: math.unit(0.9, "feet"),
  2772. name: "Plantigrade Foot (Right)",
  2773. image: {
  2774. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Normal",
  2781. height: math.unit(1.65, "meters")
  2782. },
  2783. {
  2784. name: "Macro",
  2785. height: math.unit(55, "meters"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Macro+",
  2790. height: math.unit(105, "meters")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7 + 2/12, "feet"),
  2799. weight: math.unit(320, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/rai/front.svg",
  2803. extra: 1802/1696,
  2804. bottom: 68/1870
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(7 + 2/12, "feet"),
  2809. weight: math.unit(320, "kg"),
  2810. name: "Front (Dressed)",
  2811. image: {
  2812. source: "./media/characters/rai/front-dressed.svg",
  2813. extra: 1802/1696,
  2814. bottom: 68/1870
  2815. }
  2816. },
  2817. side: {
  2818. height: math.unit(7 + 2/12, "feet"),
  2819. weight: math.unit(320, "kg"),
  2820. name: "Side",
  2821. image: {
  2822. source: "./media/characters/rai/side.svg",
  2823. extra: 1789/1710,
  2824. bottom: 115/1904
  2825. }
  2826. },
  2827. back: {
  2828. height: math.unit(7 + 2/12, "feet"),
  2829. weight: math.unit(320, "kg"),
  2830. name: "Back",
  2831. image: {
  2832. source: "./media/characters/rai/back.svg",
  2833. extra: 1770/1707,
  2834. bottom: 28/1798
  2835. }
  2836. },
  2837. feral: {
  2838. height: math.unit(9.5, "feet"),
  2839. weight: math.unit(640, "kg"),
  2840. name: "Feral",
  2841. image: {
  2842. source: "./media/characters/rai/feral.svg",
  2843. extra: 945/553,
  2844. bottom: 176/1121
  2845. }
  2846. },
  2847. dragon: {
  2848. height: math.unit(23, "feet"),
  2849. weight: math.unit(50000, "lb"),
  2850. name: "Dragon",
  2851. image: {
  2852. source: "./media/characters/rai/dragon.svg",
  2853. extra: 2498 / 2030,
  2854. bottom: 85.2 / 2584
  2855. }
  2856. },
  2857. maw: {
  2858. height: math.unit(1.69, "feet"),
  2859. name: "Maw",
  2860. image: {
  2861. source: "./media/characters/rai/maw.svg"
  2862. }
  2863. },
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(7 + 2/12, "feet")
  2869. },
  2870. {
  2871. name: "Big",
  2872. height: math.unit(11, "feet")
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(302, "feet"),
  2877. default: true
  2878. },
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2883. {
  2884. frontDressed: {
  2885. height: math.unit(216, "feet"),
  2886. weight: math.unit(7000000, "lb"),
  2887. name: "Front (Dressed)",
  2888. image: {
  2889. source: "./media/characters/jazzy/front-dressed.svg",
  2890. extra: 2738 / 2651,
  2891. bottom: 41.8 / 2786
  2892. }
  2893. },
  2894. backDressed: {
  2895. height: math.unit(216, "feet"),
  2896. weight: math.unit(7000000, "lb"),
  2897. name: "Back (Dressed)",
  2898. image: {
  2899. source: "./media/characters/jazzy/back-dressed.svg",
  2900. extra: 2775 / 2673,
  2901. bottom: 36.8 / 2817
  2902. }
  2903. },
  2904. front: {
  2905. height: math.unit(216, "feet"),
  2906. weight: math.unit(7000000, "lb"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/jazzy/front.svg",
  2910. extra: 2738 / 2651,
  2911. bottom: 41.8 / 2786
  2912. }
  2913. },
  2914. back: {
  2915. height: math.unit(216, "feet"),
  2916. weight: math.unit(7000000, "lb"),
  2917. name: "Back",
  2918. image: {
  2919. source: "./media/characters/jazzy/back.svg",
  2920. extra: 2775 / 2673,
  2921. bottom: 36.8 / 2817
  2922. }
  2923. },
  2924. maw: {
  2925. height: math.unit(20, "feet"),
  2926. name: "Maw",
  2927. image: {
  2928. source: "./media/characters/jazzy/maw.svg"
  2929. }
  2930. },
  2931. paws: {
  2932. height: math.unit(27.5, "feet"),
  2933. name: "Paws",
  2934. image: {
  2935. source: "./media/characters/jazzy/paws.svg"
  2936. }
  2937. },
  2938. eye: {
  2939. height: math.unit(4.4, "feet"),
  2940. name: "Eye",
  2941. image: {
  2942. source: "./media/characters/jazzy/eye.svg"
  2943. }
  2944. },
  2945. droneOffense: {
  2946. height: math.unit(9.5, "inches"),
  2947. name: "Drone (Offense)",
  2948. image: {
  2949. source: "./media/characters/jazzy/drone-offense.svg"
  2950. }
  2951. },
  2952. droneRecon: {
  2953. height: math.unit(9.5, "inches"),
  2954. name: "Drone (Recon)",
  2955. image: {
  2956. source: "./media/characters/jazzy/drone-recon.svg"
  2957. }
  2958. },
  2959. droneDefense: {
  2960. height: math.unit(9.5, "inches"),
  2961. name: "Drone (Defense)",
  2962. image: {
  2963. source: "./media/characters/jazzy/drone-defense.svg"
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(216, "feet"),
  2971. default: true
  2972. },
  2973. ]
  2974. ))
  2975. characterMakers.push(() => makeCharacter(
  2976. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2977. {
  2978. front: {
  2979. height: math.unit(9 + 6/12, "feet"),
  2980. weight: math.unit(700, "lb"),
  2981. name: "Front",
  2982. image: {
  2983. source: "./media/characters/flamm/front.svg",
  2984. extra: 1751/1632,
  2985. bottom: 46/1797
  2986. }
  2987. },
  2988. buff: {
  2989. height: math.unit(9 + 6/12, "feet"),
  2990. weight: math.unit(950, "lb"),
  2991. name: "Buff",
  2992. image: {
  2993. source: "./media/characters/flamm/buff.svg",
  2994. extra: 3018/2874,
  2995. bottom: 221/3239
  2996. }
  2997. },
  2998. },
  2999. [
  3000. {
  3001. name: "Normal",
  3002. height: math.unit(9.5, "feet")
  3003. },
  3004. {
  3005. name: "Macro",
  3006. height: math.unit(200, "feet"),
  3007. default: true
  3008. },
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3013. {
  3014. front: {
  3015. height: math.unit(5 + 3/12, "feet"),
  3016. weight: math.unit(60, "kg"),
  3017. name: "Front",
  3018. image: {
  3019. source: "./media/characters/zephiro/front.svg",
  3020. extra: 1873/1761,
  3021. bottom: 147/2020
  3022. }
  3023. },
  3024. side: {
  3025. height: math.unit(5 + 3/12, "feet"),
  3026. weight: math.unit(60, "kg"),
  3027. name: "Side",
  3028. image: {
  3029. source: "./media/characters/zephiro/side.svg",
  3030. extra: 1929/1827,
  3031. bottom: 65/1994
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(5 + 3/12, "feet"),
  3036. weight: math.unit(60, "kg"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/zephiro/back.svg",
  3040. extra: 1926/1816,
  3041. bottom: 41/1967
  3042. }
  3043. },
  3044. hand: {
  3045. height: math.unit(0.68, "feet"),
  3046. name: "Hand",
  3047. image: {
  3048. source: "./media/characters/zephiro/hand.svg"
  3049. }
  3050. },
  3051. paw: {
  3052. height: math.unit(1, "feet"),
  3053. name: "Paw",
  3054. image: {
  3055. source: "./media/characters/zephiro/paw.svg"
  3056. }
  3057. },
  3058. beans: {
  3059. height: math.unit(0.93, "feet"),
  3060. name: "Beans",
  3061. image: {
  3062. source: "./media/characters/zephiro/beans.svg"
  3063. }
  3064. },
  3065. },
  3066. [
  3067. {
  3068. name: "Micro",
  3069. height: math.unit(3, "inches")
  3070. },
  3071. {
  3072. name: "Normal",
  3073. height: math.unit(5 + 3 / 12, "feet"),
  3074. default: true
  3075. },
  3076. {
  3077. name: "Macro",
  3078. height: math.unit(118, "feet")
  3079. },
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(5, "feet"),
  3087. weight: math.unit(90, "kg"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/fory/front.svg",
  3091. extra: 2862 / 2674,
  3092. bottom: 180 / 3043.8
  3093. }
  3094. },
  3095. back: {
  3096. height: math.unit(5, "feet"),
  3097. weight: math.unit(90, "kg"),
  3098. name: "Back",
  3099. image: {
  3100. source: "./media/characters/fory/back.svg",
  3101. extra: 2962 / 2791,
  3102. bottom: 106 / 3071.8
  3103. }
  3104. },
  3105. foot: {
  3106. height: math.unit(2.14, "feet"),
  3107. name: "Foot",
  3108. image: {
  3109. source: "./media/characters/fory/foot.svg"
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Normal",
  3116. height: math.unit(5, "feet")
  3117. },
  3118. {
  3119. name: "Macro",
  3120. height: math.unit(50, "feet"),
  3121. default: true
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(10, "miles")
  3126. },
  3127. {
  3128. name: "Gigamacro",
  3129. height: math.unit(5, "earths")
  3130. },
  3131. ]
  3132. ))
  3133. characterMakers.push(() => makeCharacter(
  3134. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3135. {
  3136. front: {
  3137. height: math.unit(7, "feet"),
  3138. weight: math.unit(90, "kg"),
  3139. name: "Front",
  3140. image: {
  3141. source: "./media/characters/kurrikage/front.svg",
  3142. extra: 1845/1733,
  3143. bottom: 119/1964
  3144. }
  3145. },
  3146. back: {
  3147. height: math.unit(7, "feet"),
  3148. weight: math.unit(90, "kg"),
  3149. name: "Back",
  3150. image: {
  3151. source: "./media/characters/kurrikage/back.svg",
  3152. extra: 1790/1677,
  3153. bottom: 61/1851
  3154. }
  3155. },
  3156. dressed: {
  3157. height: math.unit(7, "feet"),
  3158. weight: math.unit(90, "kg"),
  3159. name: "Dressed",
  3160. image: {
  3161. source: "./media/characters/kurrikage/dressed.svg",
  3162. extra: 1845/1733,
  3163. bottom: 119/1964
  3164. }
  3165. },
  3166. foot: {
  3167. height: math.unit(1.5, "feet"),
  3168. name: "Foot",
  3169. image: {
  3170. source: "./media/characters/kurrikage/foot.svg"
  3171. }
  3172. },
  3173. staff: {
  3174. height: math.unit(6.7, "feet"),
  3175. name: "Staff",
  3176. image: {
  3177. source: "./media/characters/kurrikage/staff.svg"
  3178. }
  3179. },
  3180. peek: {
  3181. height: math.unit(1.05, "feet"),
  3182. name: "Peeking",
  3183. image: {
  3184. source: "./media/characters/kurrikage/peek.svg",
  3185. bottom: 0.08
  3186. }
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(12, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Big",
  3197. height: math.unit(20, "feet")
  3198. },
  3199. {
  3200. name: "Macro",
  3201. height: math.unit(500, "feet")
  3202. },
  3203. {
  3204. name: "Megamacro",
  3205. height: math.unit(20, "miles")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/shingo/front.svg",
  3218. extra: 1900/1825,
  3219. bottom: 82/1982
  3220. }
  3221. },
  3222. side: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(75, "kg"),
  3225. name: "Side",
  3226. image: {
  3227. source: "./media/characters/shingo/side.svg",
  3228. extra: 1930/1865,
  3229. bottom: 16/1946
  3230. }
  3231. },
  3232. back: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(75, "kg"),
  3235. name: "Back",
  3236. image: {
  3237. source: "./media/characters/shingo/back.svg",
  3238. extra: 1922/1852,
  3239. bottom: 16/1938
  3240. }
  3241. },
  3242. frontDressed: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(150, "lb"),
  3245. name: "Front-dressed",
  3246. image: {
  3247. source: "./media/characters/shingo/front-dressed.svg",
  3248. extra: 1900/1825,
  3249. bottom: 82/1982
  3250. }
  3251. },
  3252. paw: {
  3253. height: math.unit(1.29, "feet"),
  3254. name: "Paw",
  3255. image: {
  3256. source: "./media/characters/shingo/paw.svg"
  3257. }
  3258. },
  3259. hand: {
  3260. height: math.unit(1.07, "feet"),
  3261. name: "Hand",
  3262. image: {
  3263. source: "./media/characters/shingo/hand.svg"
  3264. }
  3265. },
  3266. frontAlt: {
  3267. height: math.unit(6, "feet"),
  3268. weight: math.unit(75, "kg"),
  3269. name: "Front (Alt)",
  3270. image: {
  3271. source: "./media/characters/shingo/front-alt.svg",
  3272. extra: 3511 / 3338,
  3273. bottom: 0.005
  3274. }
  3275. },
  3276. frontAlt2: {
  3277. height: math.unit(6, "feet"),
  3278. weight: math.unit(75, "kg"),
  3279. name: "Front (Alt 2)",
  3280. image: {
  3281. source: "./media/characters/shingo/front-alt-2.svg",
  3282. extra: 706/681,
  3283. bottom: 11/717
  3284. }
  3285. },
  3286. pawAlt: {
  3287. height: math.unit(1, "feet"),
  3288. name: "Paw (Alt)",
  3289. image: {
  3290. source: "./media/characters/shingo/paw-alt.svg"
  3291. }
  3292. },
  3293. },
  3294. [
  3295. {
  3296. name: "Micro",
  3297. height: math.unit(4, "inches")
  3298. },
  3299. {
  3300. name: "Normal",
  3301. height: math.unit(6, "feet"),
  3302. default: true
  3303. },
  3304. {
  3305. name: "Macro",
  3306. height: math.unit(108, "feet")
  3307. },
  3308. {
  3309. name: "Macro+",
  3310. height: math.unit(1500, "feet")
  3311. },
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3316. {
  3317. side: {
  3318. height: math.unit(6, "feet"),
  3319. weight: math.unit(75, "kg"),
  3320. name: "Side",
  3321. image: {
  3322. source: "./media/characters/aigey/side.svg"
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(200, "feet"),
  3330. default: true
  3331. },
  3332. {
  3333. name: "Megamacro",
  3334. height: math.unit(100, "miles")
  3335. },
  3336. ]
  3337. )
  3338. )
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/natasha/front.svg",
  3348. extra: 859 / 824,
  3349. bottom: 23 / 879.6
  3350. }
  3351. },
  3352. frontNsfw: {
  3353. height: math.unit(5 + 5 / 12, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Front (NSFW)",
  3356. image: {
  3357. source: "./media/characters/natasha/front-nsfw.svg",
  3358. extra: 859 / 824,
  3359. bottom: 23 / 879.6
  3360. }
  3361. },
  3362. frontErect: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Front (Erect)",
  3366. image: {
  3367. source: "./media/characters/natasha/front-erect.svg",
  3368. extra: 859 / 824,
  3369. bottom: 23 / 879.6
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(5 + 5 / 12, "feet"),
  3374. weight: math.unit(75, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/natasha/back.svg",
  3378. extra: 887.9 / 852.6,
  3379. bottom: 9.7 / 896.4
  3380. }
  3381. },
  3382. backAlt: {
  3383. height: math.unit(5 + 5 / 12, "feet"),
  3384. weight: math.unit(75, "kg"),
  3385. name: "Back (Alt)",
  3386. image: {
  3387. source: "./media/characters/natasha/back-alt.svg",
  3388. extra: 1236.7 / 1192,
  3389. bottom: 22.3 / 1258.2
  3390. }
  3391. },
  3392. dick: {
  3393. height: math.unit(1.772, "feet"),
  3394. name: "Dick",
  3395. image: {
  3396. source: "./media/characters/natasha/dick.svg"
  3397. }
  3398. },
  3399. paw: {
  3400. height: math.unit(0.250, "meters"),
  3401. name: "Paw",
  3402. image: {
  3403. source: "./media/characters/natasha/paw.svg"
  3404. },
  3405. extraAttributes: {
  3406. "toeSize": {
  3407. name: "Toe Size",
  3408. power: 2,
  3409. type: "area",
  3410. base: math.unit(0.0024, "m^2")
  3411. },
  3412. "padSize": {
  3413. name: "Pad Size",
  3414. power: 2,
  3415. type: "area",
  3416. base: math.unit(0.00889, "m^2")
  3417. },
  3418. "pawSize": {
  3419. name: "Paw Size",
  3420. power: 2,
  3421. type: "area",
  3422. base: math.unit(0.023667, "m^2")
  3423. },
  3424. }
  3425. },
  3426. },
  3427. [
  3428. {
  3429. name: "Shortstack",
  3430. height: math.unit(3, "feet"),
  3431. default: true
  3432. },
  3433. {
  3434. name: "Normal",
  3435. height: math.unit(5 + 5 / 12, "feet")
  3436. },
  3437. {
  3438. name: "Large",
  3439. height: math.unit(12, "feet")
  3440. },
  3441. {
  3442. name: "Macro",
  3443. height: math.unit(100, "feet")
  3444. },
  3445. {
  3446. name: "Macro+",
  3447. height: math.unit(260, "feet")
  3448. },
  3449. {
  3450. name: "Macro++",
  3451. height: math.unit(1, "mile")
  3452. },
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(75, "kg"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/malik/front.svg",
  3464. extra: 1750/1561,
  3465. bottom: 80/1830
  3466. },
  3467. extraAttributes: {
  3468. "toeSize": {
  3469. name: "Toe Size",
  3470. power: 2,
  3471. type: "area",
  3472. base: math.unit(0.0159, "m^2")
  3473. },
  3474. "pawSize": {
  3475. name: "Paw Size",
  3476. power: 2,
  3477. type: "area",
  3478. base: math.unit(0.09834, "m^2")
  3479. },
  3480. }
  3481. },
  3482. side: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Side",
  3486. image: {
  3487. source: "./media/characters/malik/side.svg",
  3488. extra: 1802/1685,
  3489. bottom: 42/1844
  3490. },
  3491. extraAttributes: {
  3492. "toeSize": {
  3493. name: "Toe Size",
  3494. power: 2,
  3495. type: "area",
  3496. base: math.unit(0.0159, "m^2")
  3497. },
  3498. "pawSize": {
  3499. name: "Paw Size",
  3500. power: 2,
  3501. type: "area",
  3502. base: math.unit(0.09834, "m^2")
  3503. },
  3504. }
  3505. },
  3506. back: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(75, "kg"),
  3509. name: "Back",
  3510. image: {
  3511. source: "./media/characters/malik/back.svg",
  3512. extra: 1803/1607,
  3513. bottom: 33/1836
  3514. },
  3515. extraAttributes: {
  3516. "toeSize": {
  3517. name: "Toe Size",
  3518. power: 2,
  3519. type: "area",
  3520. base: math.unit(0.0159, "m^2")
  3521. },
  3522. "pawSize": {
  3523. name: "Paw Size",
  3524. power: 2,
  3525. type: "area",
  3526. base: math.unit(0.09834, "m^2")
  3527. },
  3528. }
  3529. },
  3530. },
  3531. [
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(156, "feet"),
  3535. default: true
  3536. },
  3537. {
  3538. name: "Macro+",
  3539. height: math.unit(1188, "feet")
  3540. },
  3541. ]
  3542. ))
  3543. characterMakers.push(() => makeCharacter(
  3544. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3545. {
  3546. front: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front",
  3550. image: {
  3551. source: "./media/characters/sefer/front.svg",
  3552. extra: 848 / 659,
  3553. bottom: 28.3 / 876.442
  3554. }
  3555. },
  3556. back: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Back",
  3560. image: {
  3561. source: "./media/characters/sefer/back.svg",
  3562. extra: 864 / 695,
  3563. bottom: 10 / 871
  3564. }
  3565. },
  3566. frontDressed: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(75, "kg"),
  3569. name: "Dressed",
  3570. image: {
  3571. source: "./media/characters/sefer/dressed.svg",
  3572. extra: 839 / 653,
  3573. bottom: 37.6 / 878
  3574. }
  3575. },
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(6, "feet"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Big",
  3585. height: math.unit(8, "meters")
  3586. },
  3587. ]
  3588. ))
  3589. characterMakers.push(() => makeCharacter(
  3590. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3591. {
  3592. body: {
  3593. height: math.unit(2.2428, "meter"),
  3594. weight: math.unit(124.738, "kg"),
  3595. name: "Body",
  3596. image: {
  3597. extra: 1225 / 1050,
  3598. source: "./media/characters/north/front.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Micro",
  3605. height: math.unit(4, "inches")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(63, "meters")
  3610. },
  3611. {
  3612. name: "Megamacro",
  3613. height: math.unit(101, "miles"),
  3614. default: true
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3620. {
  3621. angled: {
  3622. height: math.unit(4, "meter"),
  3623. weight: math.unit(150, "kg"),
  3624. name: "Angled",
  3625. image: {
  3626. source: "./media/characters/talan/angled-sfw.svg",
  3627. bottom: 29 / 3734
  3628. }
  3629. },
  3630. angledNsfw: {
  3631. height: math.unit(4, "meter"),
  3632. weight: math.unit(150, "kg"),
  3633. name: "Angled (NSFW)",
  3634. image: {
  3635. source: "./media/characters/talan/angled-nsfw.svg",
  3636. bottom: 29 / 3734
  3637. }
  3638. },
  3639. frontNsfw: {
  3640. height: math.unit(4, "meter"),
  3641. weight: math.unit(150, "kg"),
  3642. name: "Front (NSFW)",
  3643. image: {
  3644. source: "./media/characters/talan/front-nsfw.svg",
  3645. bottom: 29 / 3734
  3646. }
  3647. },
  3648. sideNsfw: {
  3649. height: math.unit(4, "meter"),
  3650. weight: math.unit(150, "kg"),
  3651. name: "Side (NSFW)",
  3652. image: {
  3653. source: "./media/characters/talan/side-nsfw.svg",
  3654. bottom: 29 / 3734
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(4, "meter"),
  3659. weight: math.unit(150, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/talan/back.svg"
  3663. }
  3664. },
  3665. dickBottom: {
  3666. height: math.unit(0.621, "meter"),
  3667. name: "Dick (Bottom)",
  3668. image: {
  3669. source: "./media/characters/talan/dick-bottom.svg"
  3670. }
  3671. },
  3672. dickTop: {
  3673. height: math.unit(0.621, "meter"),
  3674. name: "Dick (Top)",
  3675. image: {
  3676. source: "./media/characters/talan/dick-top.svg"
  3677. }
  3678. },
  3679. dickSide: {
  3680. height: math.unit(0.305, "meter"),
  3681. name: "Dick (Side)",
  3682. image: {
  3683. source: "./media/characters/talan/dick-side.svg"
  3684. }
  3685. },
  3686. dickFront: {
  3687. height: math.unit(0.305, "meter"),
  3688. name: "Dick (Front)",
  3689. image: {
  3690. source: "./media/characters/talan/dick-front.svg"
  3691. }
  3692. },
  3693. },
  3694. [
  3695. {
  3696. name: "Normal",
  3697. height: math.unit(4, "meters")
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(100, "meters")
  3702. },
  3703. {
  3704. name: "Megamacro",
  3705. height: math.unit(2, "miles"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(5000, "miles")
  3711. },
  3712. {
  3713. name: "Teramacro",
  3714. height: math.unit(100, "parsecs")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/gael'rathus/front.svg"
  3727. }
  3728. },
  3729. frontAlt: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(90, "kg"),
  3732. name: "Front (alt)",
  3733. image: {
  3734. source: "./media/characters/gael'rathus/front-alt.svg"
  3735. }
  3736. },
  3737. frontAlt2: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Front (alt 2)",
  3741. image: {
  3742. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3743. }
  3744. }
  3745. },
  3746. [
  3747. {
  3748. name: "Normal",
  3749. height: math.unit(9, "feet"),
  3750. default: true
  3751. },
  3752. {
  3753. name: "Large",
  3754. height: math.unit(25, "feet")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(0.25, "miles")
  3759. },
  3760. {
  3761. name: "Megamacro",
  3762. height: math.unit(10, "miles")
  3763. }
  3764. ]
  3765. ))
  3766. characterMakers.push(() => makeCharacter(
  3767. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3768. {
  3769. side: {
  3770. height: math.unit(2, "meter"),
  3771. weight: math.unit(140, "kg"),
  3772. name: "Side",
  3773. image: {
  3774. source: "./media/characters/sosha/side.svg",
  3775. extra: 1170/1006,
  3776. bottom: 94/1264
  3777. }
  3778. },
  3779. maw: {
  3780. height: math.unit(2.87, "feet"),
  3781. name: "Maw",
  3782. image: {
  3783. source: "./media/characters/sosha/maw.svg",
  3784. extra: 966/865,
  3785. bottom: 0/966
  3786. }
  3787. },
  3788. cooch: {
  3789. height: math.unit(5.6, "feet"),
  3790. name: "Cooch",
  3791. image: {
  3792. source: "./media/characters/sosha/cooch.svg"
  3793. }
  3794. },
  3795. },
  3796. [
  3797. {
  3798. name: "Normal",
  3799. height: math.unit(12, "feet"),
  3800. default: true
  3801. }
  3802. ]
  3803. ))
  3804. characterMakers.push(() => makeCharacter(
  3805. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3806. {
  3807. side: {
  3808. height: math.unit(5 + 5 / 12, "feet"),
  3809. weight: math.unit(170, "kg"),
  3810. name: "Side",
  3811. image: {
  3812. source: "./media/characters/runnola/side.svg",
  3813. extra: 741 / 448,
  3814. bottom: 0.05
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Small",
  3821. height: math.unit(3, "feet")
  3822. },
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(5 + 5 / 12, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Big",
  3830. height: math.unit(10, "feet")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(2, "meter"),
  3839. weight: math.unit(50, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/kurribird/front.svg",
  3843. bottom: 0.015
  3844. }
  3845. },
  3846. frontAlt: {
  3847. height: math.unit(1.5, "meter"),
  3848. weight: math.unit(50, "kg"),
  3849. name: "Front (Alt)",
  3850. image: {
  3851. source: "./media/characters/kurribird/front-alt.svg",
  3852. extra: 1.45
  3853. }
  3854. },
  3855. },
  3856. [
  3857. {
  3858. name: "Normal",
  3859. height: math.unit(7, "feet")
  3860. },
  3861. {
  3862. name: "Big",
  3863. height: math.unit(12, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(1500, "feet")
  3869. },
  3870. {
  3871. name: "Megamacro",
  3872. height: math.unit(2, "miles")
  3873. }
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3878. {
  3879. front: {
  3880. height: math.unit(2, "meter"),
  3881. weight: math.unit(80, "kg"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/elbial/front.svg",
  3885. extra: 1643 / 1556,
  3886. bottom: 60.2 / 1696
  3887. }
  3888. },
  3889. side: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(80, "kg"),
  3892. name: "Side",
  3893. image: {
  3894. source: "./media/characters/elbial/side.svg",
  3895. extra: 1601/1528,
  3896. bottom: 97/1698
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(2, "meter"),
  3901. weight: math.unit(80, "kg"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/elbial/back.svg",
  3905. extra: 1653/1569,
  3906. bottom: 20/1673
  3907. }
  3908. },
  3909. frontDressed: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(80, "kg"),
  3912. name: "Front (Dressed)",
  3913. image: {
  3914. source: "./media/characters/elbial/front-dressed.svg",
  3915. extra: 1638/1569,
  3916. bottom: 70/1708
  3917. }
  3918. },
  3919. genitals: {
  3920. height: math.unit(2 / 3.367, "meter"),
  3921. name: "Genitals",
  3922. image: {
  3923. source: "./media/characters/elbial/genitals.svg"
  3924. }
  3925. },
  3926. },
  3927. [
  3928. {
  3929. name: "Large",
  3930. height: math.unit(100, "feet")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(500, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(10, "miles")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(25000, "miles")
  3944. },
  3945. {
  3946. name: "Full-Size",
  3947. height: math.unit(8000000, "gigaparsecs")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3953. {
  3954. front: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(60, "kg"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/noah/front.svg"
  3960. }
  3961. },
  3962. talons: {
  3963. height: math.unit(0.315, "meter"),
  3964. name: "Talons",
  3965. image: {
  3966. source: "./media/characters/noah/talons.svg"
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Large",
  3973. height: math.unit(50, "feet")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(750, "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Megamacro",
  3982. height: math.unit(50, "miles")
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(100000, "miles")
  3987. },
  3988. {
  3989. name: "Full-Size",
  3990. height: math.unit(3000000000, "miles")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(80, "kg"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/natalya/front.svg"
  4003. }
  4004. },
  4005. back: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(80, "kg"),
  4008. name: "Back",
  4009. image: {
  4010. source: "./media/characters/natalya/back.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Normal",
  4017. height: math.unit(150, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(5, "miles")
  4023. },
  4024. {
  4025. name: "Full-Size",
  4026. height: math.unit(600, "kiloparsecs")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(50, "kg"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/erestrebah/front.svg",
  4039. extra: 1262/1162,
  4040. bottom: 96/1358
  4041. }
  4042. },
  4043. back: {
  4044. height: math.unit(2, "meter"),
  4045. weight: math.unit(50, "kg"),
  4046. name: "Back",
  4047. image: {
  4048. source: "./media/characters/erestrebah/back.svg",
  4049. extra: 1257/1139,
  4050. bottom: 13/1270
  4051. }
  4052. },
  4053. wing: {
  4054. height: math.unit(2, "meter"),
  4055. weight: math.unit(50, "kg"),
  4056. name: "Wing",
  4057. image: {
  4058. source: "./media/characters/erestrebah/wing.svg",
  4059. extra: 1262/1162,
  4060. bottom: 96/1358
  4061. }
  4062. },
  4063. mouth: {
  4064. height: math.unit(0.39, "feet"),
  4065. name: "Mouth",
  4066. image: {
  4067. source: "./media/characters/erestrebah/mouth.svg"
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(10, "feet")
  4075. },
  4076. {
  4077. name: "Large",
  4078. height: math.unit(50, "feet"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(300, "feet")
  4084. },
  4085. {
  4086. name: "Macro+",
  4087. height: math.unit(750, "feet")
  4088. },
  4089. {
  4090. name: "Megamacro",
  4091. height: math.unit(3, "miles")
  4092. }
  4093. ]
  4094. ))
  4095. characterMakers.push(() => makeCharacter(
  4096. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4097. {
  4098. front: {
  4099. height: math.unit(2, "meter"),
  4100. weight: math.unit(80, "kg"),
  4101. name: "Front",
  4102. image: {
  4103. source: "./media/characters/jennifer/front.svg",
  4104. bottom: 0.11,
  4105. extra: 1.16
  4106. }
  4107. },
  4108. frontAlt: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(80, "kg"),
  4111. name: "Front (Alt)",
  4112. image: {
  4113. source: "./media/characters/jennifer/front-alt.svg"
  4114. }
  4115. }
  4116. },
  4117. [
  4118. {
  4119. name: "Canon Height",
  4120. height: math.unit(120, "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Macro+",
  4125. height: math.unit(300, "feet")
  4126. },
  4127. {
  4128. name: "Megamacro",
  4129. height: math.unit(20000, "feet")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(2, "meter"),
  4138. weight: math.unit(50, "kg"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/kalista/front.svg",
  4142. extra: 1314/1145,
  4143. bottom: 101/1415
  4144. }
  4145. },
  4146. back: {
  4147. height: math.unit(2, "meter"),
  4148. weight: math.unit(50, "kg"),
  4149. name: "Back",
  4150. image: {
  4151. source: "./media/characters/kalista/back.svg",
  4152. extra: 1366 / 1156,
  4153. bottom: 33.9 / 1362.78
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Uncomfortably Small",
  4160. height: math.unit(10, "feet")
  4161. },
  4162. {
  4163. name: "Small",
  4164. height: math.unit(30, "feet")
  4165. },
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(100, "feet"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Macro+",
  4173. height: math.unit(2000, "feet")
  4174. },
  4175. {
  4176. name: "True Form",
  4177. height: math.unit(8924, "miles")
  4178. }
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(120, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/ggv/front.svg"
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(120, "kg"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/ggv/side.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Extremely Puny",
  4204. height: math.unit(9 + 5 / 12, "feet")
  4205. },
  4206. {
  4207. name: "Horribly Small",
  4208. height: math.unit(47.7, "miles"),
  4209. default: true
  4210. },
  4211. {
  4212. name: "Reasonably Sized",
  4213. height: math.unit(25000, "parsecs")
  4214. },
  4215. {
  4216. name: "Slightly Uncompressed",
  4217. height: math.unit(7.77e31, "parsecs")
  4218. },
  4219. {
  4220. name: "Omniversal",
  4221. height: math.unit(1e300, "meters")
  4222. },
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(2, "meter"),
  4230. weight: math.unit(75, "lb"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/napalm/front.svg"
  4234. }
  4235. },
  4236. back: {
  4237. height: math.unit(2, "meter"),
  4238. weight: math.unit(75, "lb"),
  4239. name: "Back",
  4240. image: {
  4241. source: "./media/characters/napalm/back.svg"
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Standard",
  4248. height: math.unit(55, "feet"),
  4249. default: true
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(7 + 5 / 6, "feet"),
  4258. weight: math.unit(325, "lb"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/asana/front.svg",
  4262. extra: 1133 / 1060,
  4263. bottom: 15.2 / 1148.6
  4264. }
  4265. },
  4266. back: {
  4267. height: math.unit(7 + 5 / 6, "feet"),
  4268. weight: math.unit(325, "lb"),
  4269. name: "Back",
  4270. image: {
  4271. source: "./media/characters/asana/back.svg",
  4272. extra: 1114 / 1043,
  4273. bottom: 5 / 1120
  4274. }
  4275. },
  4276. dressedDark: {
  4277. height: math.unit(7 + 5 / 6, "feet"),
  4278. weight: math.unit(325, "lb"),
  4279. name: "Dressed (Dark)",
  4280. image: {
  4281. source: "./media/characters/asana/dressed-dark.svg",
  4282. extra: 1133 / 1060,
  4283. bottom: 15.2 / 1148.6
  4284. }
  4285. },
  4286. dressedLight: {
  4287. height: math.unit(7 + 5 / 6, "feet"),
  4288. weight: math.unit(325, "lb"),
  4289. name: "Dressed (Light)",
  4290. image: {
  4291. source: "./media/characters/asana/dressed-light.svg",
  4292. extra: 1133 / 1060,
  4293. bottom: 15.2 / 1148.6
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Standard",
  4300. height: math.unit(7 + 5 / 6, "feet"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Large",
  4305. height: math.unit(10, "meters")
  4306. },
  4307. {
  4308. name: "Macro",
  4309. height: math.unit(2500, "meters")
  4310. },
  4311. {
  4312. name: "Megamacro",
  4313. height: math.unit(5e6, "meters")
  4314. },
  4315. {
  4316. name: "Examacro",
  4317. height: math.unit(5e12, "lightyears")
  4318. },
  4319. {
  4320. name: "Max Size",
  4321. height: math.unit(1e31, "lightyears")
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(60, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/ebony/front.svg",
  4334. bottom: 0.03,
  4335. extra: 1045 / 810 + 0.03
  4336. }
  4337. },
  4338. side: {
  4339. height: math.unit(2, "meter"),
  4340. weight: math.unit(60, "kg"),
  4341. name: "Side",
  4342. image: {
  4343. source: "./media/characters/ebony/side.svg",
  4344. bottom: 0.03,
  4345. extra: 1045 / 810 + 0.03
  4346. }
  4347. },
  4348. back: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(60, "kg"),
  4351. name: "Back",
  4352. image: {
  4353. source: "./media/characters/ebony/back.svg",
  4354. bottom: 0.01,
  4355. extra: 1045 / 810 + 0.01
  4356. }
  4357. },
  4358. },
  4359. [
  4360. // TODO check why I did this lol
  4361. {
  4362. name: "Standard",
  4363. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4364. default: true
  4365. },
  4366. {
  4367. name: "Macro",
  4368. height: math.unit(200, "feet")
  4369. },
  4370. {
  4371. name: "Gigamacro",
  4372. height: math.unit(13000, "km")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(6, "feet"),
  4381. weight: math.unit(175, "lb"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/mountain/front.svg",
  4385. extra: 972 / 955,
  4386. bottom: 64 / 1036.6
  4387. }
  4388. },
  4389. back: {
  4390. height: math.unit(6, "feet"),
  4391. weight: math.unit(175, "lb"),
  4392. name: "Back",
  4393. image: {
  4394. source: "./media/characters/mountain/back.svg",
  4395. extra: 970 / 950,
  4396. bottom: 28.25 / 999
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(20, "meters")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(300, "meters")
  4408. },
  4409. {
  4410. name: "Gigamacro",
  4411. height: math.unit(10000, "km"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Examacro",
  4416. height: math.unit(10e9, "lightyears")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4422. {
  4423. front: {
  4424. height: math.unit(8, "feet"),
  4425. weight: math.unit(500, "lb"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/rick/front.svg"
  4429. }
  4430. }
  4431. },
  4432. [
  4433. {
  4434. name: "Normal",
  4435. height: math.unit(8, "feet"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(5, "km")
  4441. }
  4442. ]
  4443. ))
  4444. characterMakers.push(() => makeCharacter(
  4445. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4446. {
  4447. front: {
  4448. height: math.unit(8, "feet"),
  4449. weight: math.unit(120, "lb"),
  4450. name: "Front",
  4451. image: {
  4452. source: "./media/characters/ona/front.svg"
  4453. }
  4454. },
  4455. frontAlt: {
  4456. height: math.unit(8, "feet"),
  4457. weight: math.unit(120, "lb"),
  4458. name: "Front (Alt)",
  4459. image: {
  4460. source: "./media/characters/ona/front-alt.svg"
  4461. }
  4462. },
  4463. back: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(120, "lb"),
  4466. name: "Back",
  4467. image: {
  4468. source: "./media/characters/ona/back.svg"
  4469. }
  4470. },
  4471. foot: {
  4472. height: math.unit(1.1, "feet"),
  4473. name: "Foot",
  4474. image: {
  4475. source: "./media/characters/ona/foot.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Megamacro",
  4482. height: math.unit(70, "km"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(681818, "miles")
  4488. },
  4489. {
  4490. name: "Examacro",
  4491. height: math.unit(3800000, "lightyears")
  4492. },
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(12, "feet"),
  4500. weight: math.unit(3000, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mech/front.svg",
  4504. extra: 2900 / 2770,
  4505. bottom: 110 / 3010
  4506. }
  4507. },
  4508. back: {
  4509. height: math.unit(12, "feet"),
  4510. weight: math.unit(3000, "lb"),
  4511. name: "Back",
  4512. image: {
  4513. source: "./media/characters/mech/back.svg",
  4514. extra: 3011 / 2890,
  4515. bottom: 94 / 3105
  4516. }
  4517. },
  4518. maw: {
  4519. height: math.unit(3.07, "feet"),
  4520. name: "Maw",
  4521. image: {
  4522. source: "./media/characters/mech/maw.svg"
  4523. }
  4524. },
  4525. head: {
  4526. height: math.unit(3.07, "feet"),
  4527. name: "Head",
  4528. image: {
  4529. source: "./media/characters/mech/head.svg"
  4530. }
  4531. },
  4532. dick: {
  4533. height: math.unit(1.43, "feet"),
  4534. name: "Dick",
  4535. image: {
  4536. source: "./media/characters/mech/dick.svg"
  4537. }
  4538. },
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(12, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(300, "feet"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro+",
  4552. height: math.unit(1500, "feet")
  4553. },
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(1.3, "meter"),
  4561. weight: math.unit(30, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/gregory/front.svg",
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(1.3, "meter"),
  4572. default: true
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(20, "meter")
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4582. {
  4583. front: {
  4584. height: math.unit(2.8, "meter"),
  4585. weight: math.unit(200, "kg"),
  4586. name: "Front",
  4587. image: {
  4588. source: "./media/characters/elory/front.svg",
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(2.8, "meter"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(38, "meter")
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(470, "feet"),
  4609. weight: math.unit(924, "tons"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/angelpatamon/front.svg",
  4613. }
  4614. }
  4615. },
  4616. [
  4617. {
  4618. name: "Normal",
  4619. height: math.unit(470, "feet"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Deity Size I",
  4624. height: math.unit(28651.2, "km")
  4625. },
  4626. {
  4627. name: "Deity Size II",
  4628. height: math.unit(171907.2, "km")
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4634. {
  4635. side: {
  4636. height: math.unit(7.2, "meter"),
  4637. weight: math.unit(8.2, "tons"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/cryae/side.svg",
  4641. extra: 3500 / 1500
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Normal",
  4648. height: math.unit(7.2, "meter"),
  4649. default: true
  4650. }
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4655. {
  4656. front: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(175, "lb"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/xera/front.svg",
  4662. extra: 2377 / 1972,
  4663. bottom: 75.5 / 2452
  4664. }
  4665. },
  4666. side: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(175, "lb"),
  4669. name: "Side",
  4670. image: {
  4671. source: "./media/characters/xera/side.svg",
  4672. extra: 2345 / 2019,
  4673. bottom: 39.7 / 2384
  4674. }
  4675. },
  4676. back: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(175, "lb"),
  4679. name: "Back",
  4680. image: {
  4681. source: "./media/characters/xera/back.svg",
  4682. extra: 2095 / 1984,
  4683. bottom: 67 / 2166
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Small",
  4690. height: math.unit(10, "feet")
  4691. },
  4692. {
  4693. name: "Macro",
  4694. height: math.unit(500, "meters"),
  4695. default: true
  4696. },
  4697. {
  4698. name: "Macro+",
  4699. height: math.unit(10, "km")
  4700. },
  4701. {
  4702. name: "Gigamacro",
  4703. height: math.unit(25000, "km")
  4704. },
  4705. {
  4706. name: "Teramacro",
  4707. height: math.unit(3e6, "km")
  4708. }
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4713. {
  4714. front: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(175, "lb"),
  4717. name: "Front",
  4718. image: {
  4719. source: "./media/characters/nebula/front.svg",
  4720. extra: 2566 / 2362,
  4721. bottom: 81 / 2644
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Small",
  4728. height: math.unit(4.5, "meters")
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(1500, "meters"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Megamacro",
  4737. height: math.unit(150, "km")
  4738. },
  4739. {
  4740. name: "Gigamacro",
  4741. height: math.unit(27000, "km")
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4747. {
  4748. front: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(225, "lb"),
  4751. name: "Front",
  4752. image: {
  4753. source: "./media/characters/abysgar/front.svg",
  4754. extra: 1739/1614,
  4755. bottom: 71/1810
  4756. }
  4757. },
  4758. frontNsfw: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(225, "lb"),
  4761. name: "Front (NSFW)",
  4762. image: {
  4763. source: "./media/characters/abysgar/front-nsfw.svg",
  4764. extra: 1739/1614,
  4765. bottom: 71/1810
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(4.6, "feet"),
  4770. weight: math.unit(225, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/abysgar/back.svg",
  4774. extra: 1384/1327,
  4775. bottom: 0/1384
  4776. }
  4777. },
  4778. head: {
  4779. height: math.unit(1.25, "feet"),
  4780. name: "Head",
  4781. image: {
  4782. source: "./media/characters/abysgar/head.svg",
  4783. extra: 669/569,
  4784. bottom: 0/669
  4785. }
  4786. },
  4787. },
  4788. [
  4789. {
  4790. name: "Small",
  4791. height: math.unit(4.5, "meters")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(1250, "meters"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Megamacro",
  4800. height: math.unit(125, "km")
  4801. },
  4802. {
  4803. name: "Gigamacro",
  4804. height: math.unit(26000, "km")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(180, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/yakuz/front.svg"
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Small",
  4823. height: math.unit(5, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(1500, "meters"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Megamacro",
  4832. height: math.unit(200, "km")
  4833. },
  4834. {
  4835. name: "Gigamacro",
  4836. height: math.unit(100000, "km")
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4842. {
  4843. front: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(175, "lb"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/mirova/front.svg",
  4849. extra: 3334 / 3071,
  4850. bottom: 42 / 3375.6
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Small",
  4857. height: math.unit(5, "meters")
  4858. },
  4859. {
  4860. name: "Macro",
  4861. height: math.unit(900, "meters"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Megamacro",
  4866. height: math.unit(135, "km")
  4867. },
  4868. {
  4869. name: "Gigamacro",
  4870. height: math.unit(20000, "km")
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4876. {
  4877. side: {
  4878. height: math.unit(28.35, "feet"),
  4879. weight: math.unit(99.75, "tons"),
  4880. name: "Side",
  4881. image: {
  4882. source: "./media/characters/asana-mech/side.svg",
  4883. extra: 923 / 699,
  4884. bottom: 50 / 975
  4885. }
  4886. },
  4887. chaingun: {
  4888. height: math.unit(7, "feet"),
  4889. weight: math.unit(2400, "lb"),
  4890. name: "Chaingun",
  4891. image: {
  4892. source: "./media/characters/asana-mech/chaingun.svg"
  4893. }
  4894. },
  4895. laser: {
  4896. height: math.unit(7.12, "feet"),
  4897. weight: math.unit(2000, "lb"),
  4898. name: "Laser",
  4899. image: {
  4900. source: "./media/characters/asana-mech/laser.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(28.35, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(2500, "feet")
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(25, "miles")
  4917. },
  4918. {
  4919. name: "Examacro",
  4920. height: math.unit(6e8, "lightyears")
  4921. },
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(5, "meters"),
  4929. weight: math.unit(1000, "kg"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/asche/front.svg",
  4933. extra: 1258 / 1190,
  4934. bottom: 47 / 1305
  4935. }
  4936. },
  4937. frontUnderwear: {
  4938. height: math.unit(5, "meters"),
  4939. weight: math.unit(1000, "kg"),
  4940. name: "Front (Underwear)",
  4941. image: {
  4942. source: "./media/characters/asche/front-underwear.svg",
  4943. extra: 1258 / 1190,
  4944. bottom: 47 / 1305
  4945. }
  4946. },
  4947. frontDressed: {
  4948. height: math.unit(5, "meters"),
  4949. weight: math.unit(1000, "kg"),
  4950. name: "Front (Dressed)",
  4951. image: {
  4952. source: "./media/characters/asche/front-dressed.svg",
  4953. extra: 1258 / 1190,
  4954. bottom: 47 / 1305
  4955. }
  4956. },
  4957. frontArmor: {
  4958. height: math.unit(5, "meters"),
  4959. weight: math.unit(1000, "kg"),
  4960. name: "Front (Armored)",
  4961. image: {
  4962. source: "./media/characters/asche/front-armored.svg",
  4963. extra: 1374 / 1308,
  4964. bottom: 23 / 1397
  4965. }
  4966. },
  4967. mp724: {
  4968. height: math.unit(0.96, "meters"),
  4969. weight: math.unit(38, "kg"),
  4970. name: "H&K MP724",
  4971. image: {
  4972. source: "./media/characters/asche/h&k-mp724.svg"
  4973. }
  4974. },
  4975. side: {
  4976. height: math.unit(5, "meters"),
  4977. weight: math.unit(1000, "kg"),
  4978. name: "Side",
  4979. image: {
  4980. source: "./media/characters/asche/side.svg",
  4981. extra: 1717 / 1609,
  4982. bottom: 0.005
  4983. }
  4984. },
  4985. back: {
  4986. height: math.unit(5, "meters"),
  4987. weight: math.unit(1000, "kg"),
  4988. name: "Back",
  4989. image: {
  4990. source: "./media/characters/asche/back.svg",
  4991. extra: 1570 / 1501
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "DEFCON 5",
  4998. height: math.unit(5, "meters")
  4999. },
  5000. {
  5001. name: "DEFCON 4",
  5002. height: math.unit(500, "meters"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "DEFCON 3",
  5007. height: math.unit(5, "km")
  5008. },
  5009. {
  5010. name: "DEFCON 2",
  5011. height: math.unit(500, "km")
  5012. },
  5013. {
  5014. name: "DEFCON 1",
  5015. height: math.unit(500000, "km")
  5016. },
  5017. {
  5018. name: "DEFCON 0",
  5019. height: math.unit(3, "gigaparsecs")
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(2, "meters"),
  5028. weight: math.unit(76, "kg"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/gale/front.svg"
  5032. }
  5033. },
  5034. frontAlt1: {
  5035. height: math.unit(2, "meters"),
  5036. weight: math.unit(76, "kg"),
  5037. name: "Front (Alt 1)",
  5038. image: {
  5039. source: "./media/characters/gale/front-alt-1.svg"
  5040. }
  5041. },
  5042. frontAlt2: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(76, "kg"),
  5045. name: "Front (Alt 2)",
  5046. image: {
  5047. source: "./media/characters/gale/front-alt-2.svg"
  5048. }
  5049. },
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(7, "feet")
  5055. },
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(150, "feet"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Macro+",
  5063. height: math.unit(300, "feet")
  5064. },
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5069. {
  5070. front: {
  5071. height: math.unit(5 + 10/12, "feet"),
  5072. weight: math.unit(67, "kg"),
  5073. name: "Front",
  5074. image: {
  5075. source: "./media/characters/draylen/front.svg",
  5076. extra: 832/777,
  5077. bottom: 85/917
  5078. }
  5079. }
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(5 + 10/12, "feet")
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(150, "feet"),
  5089. default: true
  5090. }
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(7 + 9 / 12, "feet"),
  5098. weight: math.unit(379, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/chez/front.svg"
  5102. }
  5103. },
  5104. side: {
  5105. height: math.unit(7 + 9 / 12, "feet"),
  5106. weight: math.unit(379, "lbs"),
  5107. name: "Side",
  5108. image: {
  5109. source: "./media/characters/chez/side.svg"
  5110. }
  5111. }
  5112. },
  5113. [
  5114. {
  5115. name: "Normal",
  5116. height: math.unit(7 + 9 / 12, "feet"),
  5117. default: true
  5118. },
  5119. {
  5120. name: "God King",
  5121. height: math.unit(9750000, "meters")
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(275, "lbs"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/kaylum/front.svg",
  5134. bottom: 0.01,
  5135. extra: 1166 / 1031
  5136. }
  5137. },
  5138. frontWingless: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(275, "lbs"),
  5141. name: "Front (Wingless)",
  5142. image: {
  5143. source: "./media/characters/kaylum/front-wingless.svg",
  5144. bottom: 0.01,
  5145. extra: 1117 / 1031
  5146. }
  5147. }
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(3.05, "meters")
  5153. },
  5154. {
  5155. name: "Master",
  5156. height: math.unit(5.5, "meters")
  5157. },
  5158. {
  5159. name: "Rampage",
  5160. height: math.unit(19, "meters")
  5161. },
  5162. {
  5163. name: "Macro Lite",
  5164. height: math.unit(37, "meters")
  5165. },
  5166. {
  5167. name: "Hyper Predator",
  5168. height: math.unit(61, "meters")
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(138, "meters"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(5 + 5 / 12, "feet"),
  5182. weight: math.unit(120, "lbs"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/geta/front.svg",
  5186. extra: 1003/933,
  5187. bottom: 21/1024
  5188. }
  5189. },
  5190. paw: {
  5191. height: math.unit(0.35, "feet"),
  5192. name: "Paw",
  5193. image: {
  5194. source: "./media/characters/geta/paw.svg"
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Micro",
  5201. height: math.unit(3, "inches"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Normal",
  5206. height: math.unit(5 + 5 / 12, "feet")
  5207. }
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/tyrnn/front.svg"
  5219. }
  5220. }
  5221. },
  5222. [
  5223. {
  5224. name: "Main Height",
  5225. height: math.unit(355, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Fave. Height",
  5230. height: math.unit(2400, "feet")
  5231. }
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(300, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/appledectomy/front.svg"
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(2500, "feet")
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(50, "miles"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Gigamacro",
  5258. height: math.unit(5000, "miles")
  5259. },
  5260. {
  5261. name: "Teramacro",
  5262. height: math.unit(250000, "miles")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(200, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/vulpes/front.svg",
  5275. extra: 573 / 543,
  5276. bottom: 0.033
  5277. }
  5278. },
  5279. side: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(200, "lbs"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/vulpes/side.svg",
  5285. extra: 577 / 549,
  5286. bottom: 11 / 588
  5287. }
  5288. },
  5289. back: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(200, "lbs"),
  5292. name: "Back",
  5293. image: {
  5294. source: "./media/characters/vulpes/back.svg",
  5295. extra: 573 / 549,
  5296. bottom: 20 / 593
  5297. }
  5298. },
  5299. feet: {
  5300. height: math.unit(1.276, "feet"),
  5301. name: "Feet",
  5302. image: {
  5303. source: "./media/characters/vulpes/feet.svg"
  5304. }
  5305. },
  5306. maw: {
  5307. height: math.unit(1.18, "feet"),
  5308. name: "Maw",
  5309. image: {
  5310. source: "./media/characters/vulpes/maw.svg"
  5311. }
  5312. },
  5313. },
  5314. [
  5315. {
  5316. name: "Micro",
  5317. height: math.unit(2, "inches")
  5318. },
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(6.3, "feet")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(850, "feet")
  5326. },
  5327. {
  5328. name: "Megamacro",
  5329. height: math.unit(7500, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(570000, "miles")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(210, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/rain-fallen/front.svg"
  5347. }
  5348. },
  5349. side: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(210, "lbs"),
  5352. name: "Side",
  5353. image: {
  5354. source: "./media/characters/rain-fallen/side.svg"
  5355. }
  5356. },
  5357. back: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(210, "lbs"),
  5360. name: "Back",
  5361. image: {
  5362. source: "./media/characters/rain-fallen/back.svg"
  5363. }
  5364. },
  5365. feral: {
  5366. height: math.unit(9, "feet"),
  5367. weight: math.unit(700, "lbs"),
  5368. name: "Feral",
  5369. image: {
  5370. source: "./media/characters/rain-fallen/feral.svg"
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Meddling with Mortals",
  5377. height: math.unit(8 + 8/12, "feet")
  5378. },
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(5, "meter")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(150, "meter"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(278e6, "meter")
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(2e9, "meter")
  5395. },
  5396. {
  5397. name: "Teramacro",
  5398. height: math.unit(8e12, "meter")
  5399. },
  5400. {
  5401. name: "Devourer",
  5402. height: math.unit(14, "zettameters")
  5403. },
  5404. {
  5405. name: "Scarlet King",
  5406. height: math.unit(18, "yottameters")
  5407. },
  5408. {
  5409. name: "Void",
  5410. height: math.unit(1e88, "yottameters")
  5411. }
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5416. {
  5417. standing: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Standing",
  5421. image: {
  5422. source: "./media/characters/zaakira/standing.svg",
  5423. extra: 1599/1504,
  5424. bottom: 39/1638
  5425. }
  5426. },
  5427. laying: {
  5428. height: math.unit(3.3, "feet"),
  5429. weight: math.unit(180, "lbs"),
  5430. name: "Laying",
  5431. image: {
  5432. source: "./media/characters/zaakira/laying.svg"
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(12, "feet")
  5440. },
  5441. {
  5442. name: "Macro",
  5443. height: math.unit(279, "feet"),
  5444. default: true
  5445. }
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5450. {
  5451. femSfw: {
  5452. height: math.unit(8, "feet"),
  5453. weight: math.unit(350, "lb"),
  5454. name: "Fem",
  5455. image: {
  5456. source: "./media/characters/sigvald/fem-sfw.svg",
  5457. extra: 182 / 164,
  5458. bottom: 8.7 / 190.5
  5459. }
  5460. },
  5461. femNsfw: {
  5462. height: math.unit(8, "feet"),
  5463. weight: math.unit(350, "lb"),
  5464. name: "Fem (NSFW)",
  5465. image: {
  5466. source: "./media/characters/sigvald/fem-nsfw.svg",
  5467. extra: 182 / 164,
  5468. bottom: 8.7 / 190.5
  5469. }
  5470. },
  5471. maleNsfw: {
  5472. height: math.unit(8, "feet"),
  5473. weight: math.unit(350, "lb"),
  5474. name: "Male (NSFW)",
  5475. image: {
  5476. source: "./media/characters/sigvald/male-nsfw.svg",
  5477. extra: 182 / 164,
  5478. bottom: 8.7 / 190.5
  5479. }
  5480. },
  5481. hermNsfw: {
  5482. height: math.unit(8, "feet"),
  5483. weight: math.unit(350, "lb"),
  5484. name: "Herm (NSFW)",
  5485. image: {
  5486. source: "./media/characters/sigvald/herm-nsfw.svg",
  5487. extra: 182 / 164,
  5488. bottom: 8.7 / 190.5
  5489. }
  5490. },
  5491. dick: {
  5492. height: math.unit(2.36, "feet"),
  5493. name: "Dick",
  5494. image: {
  5495. source: "./media/characters/sigvald/dick.svg"
  5496. }
  5497. },
  5498. eye: {
  5499. height: math.unit(0.31, "feet"),
  5500. name: "Eye",
  5501. image: {
  5502. source: "./media/characters/sigvald/eye.svg"
  5503. }
  5504. },
  5505. mouth: {
  5506. height: math.unit(0.92, "feet"),
  5507. name: "Mouth",
  5508. image: {
  5509. source: "./media/characters/sigvald/mouth.svg"
  5510. }
  5511. },
  5512. paws: {
  5513. height: math.unit(2.2, "feet"),
  5514. name: "Paws",
  5515. image: {
  5516. source: "./media/characters/sigvald/paws.svg"
  5517. }
  5518. }
  5519. },
  5520. [
  5521. {
  5522. name: "Normal",
  5523. height: math.unit(8, "feet")
  5524. },
  5525. {
  5526. name: "Large",
  5527. height: math.unit(12, "feet")
  5528. },
  5529. {
  5530. name: "Larger",
  5531. height: math.unit(20, "feet")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(150, "feet")
  5536. },
  5537. {
  5538. name: "Macro+",
  5539. height: math.unit(200, "feet"),
  5540. default: true
  5541. },
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5546. {
  5547. side: {
  5548. height: math.unit(12, "feet"),
  5549. weight: math.unit(2000, "kg"),
  5550. name: "Side",
  5551. image: {
  5552. source: "./media/characters/scott/side.svg",
  5553. extra: 754 / 724,
  5554. bottom: 0.069
  5555. }
  5556. },
  5557. upright: {
  5558. height: math.unit(12, "feet"),
  5559. weight: math.unit(2000, "kg"),
  5560. name: "Upright",
  5561. image: {
  5562. source: "./media/characters/scott/upright.svg",
  5563. extra: 3881 / 3722,
  5564. bottom: 0.05
  5565. }
  5566. },
  5567. },
  5568. [
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(12, "feet"),
  5572. default: true
  5573. },
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5578. {
  5579. side: {
  5580. height: math.unit(8, "meters"),
  5581. weight: math.unit(84755, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/tobias/side.svg",
  5585. extra: 1474 / 1096,
  5586. bottom: 38.9 / 1513.1235
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "Normal",
  5593. height: math.unit(8, "meters"),
  5594. default: true
  5595. },
  5596. ]
  5597. ))
  5598. characterMakers.push(() => makeCharacter(
  5599. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5600. {
  5601. front: {
  5602. height: math.unit(5.5, "feet"),
  5603. weight: math.unit(400, "lbs"),
  5604. name: "Front",
  5605. image: {
  5606. source: "./media/characters/kieran/front.svg",
  5607. extra: 2694 / 2364,
  5608. bottom: 217 / 2908
  5609. }
  5610. },
  5611. side: {
  5612. height: math.unit(5.5, "feet"),
  5613. weight: math.unit(400, "lbs"),
  5614. name: "Side",
  5615. image: {
  5616. source: "./media/characters/kieran/side.svg",
  5617. extra: 875 / 777,
  5618. bottom: 84.6 / 959
  5619. }
  5620. },
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(5.5, "feet"),
  5626. default: true
  5627. },
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5632. {
  5633. side: {
  5634. height: math.unit(2, "meters"),
  5635. weight: math.unit(70, "kg"),
  5636. name: "Side",
  5637. image: {
  5638. source: "./media/characters/sanya/side.svg",
  5639. bottom: 0.02,
  5640. extra: 1.02
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Small",
  5647. height: math.unit(2, "meters")
  5648. },
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(3, "meters")
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(16, "meters"),
  5656. default: true
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(2, "meters"),
  5665. weight: math.unit(120, "kg"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/miranda/front.svg",
  5669. extra: 195 / 185,
  5670. bottom: 10.9 / 206.5
  5671. }
  5672. },
  5673. back: {
  5674. height: math.unit(2, "meters"),
  5675. weight: math.unit(120, "kg"),
  5676. name: "Back",
  5677. image: {
  5678. source: "./media/characters/miranda/back.svg",
  5679. extra: 201 / 193,
  5680. bottom: 2.3 / 203.7
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(10, "feet"),
  5688. default: true
  5689. }
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "James", species: ["deer"], tags: ["anthro"] },
  5694. {
  5695. side: {
  5696. height: math.unit(2, "meters"),
  5697. weight: math.unit(100, "kg"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/james/front.svg",
  5701. extra: 10 / 8.5
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Normal",
  5708. height: math.unit(8.5, "feet"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5715. {
  5716. side: {
  5717. height: math.unit(9.5, "feet"),
  5718. weight: math.unit(2500, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/heather/side.svg"
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(9.5, "feet"),
  5729. default: true
  5730. }
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5735. {
  5736. side: {
  5737. height: math.unit(6.5, "feet"),
  5738. weight: math.unit(400, "lbs"),
  5739. name: "Side",
  5740. image: {
  5741. source: "./media/characters/lukas/side.svg",
  5742. extra: 7.25 / 6.5
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(6.5, "feet"),
  5750. default: true
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5756. {
  5757. side: {
  5758. height: math.unit(5, "feet"),
  5759. weight: math.unit(3000, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/louise/side.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(5, "feet"),
  5770. default: true
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5776. {
  5777. side: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(150, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/ramona/side.svg",
  5783. extra: 871/854,
  5784. bottom: 41/912
  5785. }
  5786. },
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(6 + 4/12, "feet")
  5792. },
  5793. {
  5794. name: "Minimacro",
  5795. height: math.unit(5.3, "meters"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(20, "stories")
  5801. },
  5802. {
  5803. name: "Macro+",
  5804. height: math.unit(50, "stories")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5810. {
  5811. standing: {
  5812. height: math.unit(5.75, "feet"),
  5813. weight: math.unit(160, "lbs"),
  5814. name: "Standing",
  5815. image: {
  5816. source: "./media/characters/deerpuff/standing.svg",
  5817. extra: 682 / 624
  5818. }
  5819. },
  5820. sitting: {
  5821. height: math.unit(5.75 / 1.79, "feet"),
  5822. weight: math.unit(160, "lbs"),
  5823. name: "Sitting",
  5824. image: {
  5825. source: "./media/characters/deerpuff/sitting.svg",
  5826. bottom: 44 / 400,
  5827. extra: 1
  5828. }
  5829. },
  5830. taurLaying: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(400, "lbs"),
  5833. name: "Taur (Laying)",
  5834. image: {
  5835. source: "./media/characters/deerpuff/taur-laying.svg"
  5836. }
  5837. },
  5838. },
  5839. [
  5840. {
  5841. name: "Puffball",
  5842. height: math.unit(6, "inches")
  5843. },
  5844. {
  5845. name: "Normalpuff",
  5846. height: math.unit(5.75, "feet")
  5847. },
  5848. {
  5849. name: "Macropuff",
  5850. height: math.unit(1500, "feet"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Megapuff",
  5855. height: math.unit(500, "miles")
  5856. },
  5857. {
  5858. name: "Gigapuff",
  5859. height: math.unit(250000, "miles")
  5860. },
  5861. {
  5862. name: "Omegapuff",
  5863. height: math.unit(1000, "lightyears")
  5864. },
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5869. {
  5870. stomping: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(170, "lbs"),
  5873. name: "Stomping",
  5874. image: {
  5875. source: "./media/characters/vivian/stomping.svg"
  5876. }
  5877. },
  5878. sitting: {
  5879. height: math.unit(6 / 1.75, "feet"),
  5880. weight: math.unit(170, "lbs"),
  5881. name: "Sitting",
  5882. image: {
  5883. source: "./media/characters/vivian/sitting.svg",
  5884. bottom: 1 / 6.4,
  5885. extra: 1,
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(7, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(10, "stories")
  5898. },
  5899. {
  5900. name: "Macro+",
  5901. height: math.unit(30, "stories")
  5902. },
  5903. {
  5904. name: "Megamacro",
  5905. height: math.unit(10, "miles")
  5906. },
  5907. {
  5908. name: "Megamacro+",
  5909. height: math.unit(2750000, "meters")
  5910. },
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5915. {
  5916. front: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(160, "lbs"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/prince/front.svg",
  5922. extra: 3400 / 3000
  5923. }
  5924. },
  5925. jumping: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(160, "lbs"),
  5928. name: "Jumping",
  5929. image: {
  5930. source: "./media/characters/prince/jump.svg",
  5931. extra: 2555 / 2134
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(7.75, "feet"),
  5939. default: true
  5940. },
  5941. {
  5942. name: "Not cute",
  5943. height: math.unit(17, "feet")
  5944. },
  5945. {
  5946. name: "I said NOT",
  5947. height: math.unit(91, "feet")
  5948. },
  5949. {
  5950. name: "Please stop",
  5951. height: math.unit(560, "feet")
  5952. },
  5953. {
  5954. name: "What have you done",
  5955. height: math.unit(2200, "feet")
  5956. },
  5957. {
  5958. name: "Deer God",
  5959. height: math.unit(3.6, "miles")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5965. {
  5966. standing: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(300, "lbs"),
  5969. name: "Standing",
  5970. image: {
  5971. source: "./media/characters/psymon/standing.svg",
  5972. extra: 1888 / 1810,
  5973. bottom: 0.05
  5974. }
  5975. },
  5976. slithering: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(300, "lbs"),
  5979. name: "Slithering",
  5980. image: {
  5981. source: "./media/characters/psymon/slithering.svg",
  5982. extra: 1330 / 1224
  5983. }
  5984. },
  5985. slitheringAlt: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(300, "lbs"),
  5988. name: "Slithering (Alt)",
  5989. image: {
  5990. source: "./media/characters/psymon/slithering-alt.svg",
  5991. extra: 1330 / 1224
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(11.25, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Large",
  6003. height: math.unit(27, "feet")
  6004. },
  6005. {
  6006. name: "Giant",
  6007. height: math.unit(87, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(365, "feet")
  6012. },
  6013. {
  6014. name: "Megamacro",
  6015. height: math.unit(3, "miles")
  6016. },
  6017. {
  6018. name: "World Serpent",
  6019. height: math.unit(8000, "miles")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6, "feet"),
  6028. weight: math.unit(180, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/daimos/front.svg",
  6032. extra: 4160 / 3897,
  6033. bottom: 0.021
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(8, "feet"),
  6041. default: true
  6042. },
  6043. {
  6044. name: "Big Dog",
  6045. height: math.unit(22, "feet")
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(127, "feet")
  6050. },
  6051. {
  6052. name: "Megamacro",
  6053. height: math.unit(3600, "feet")
  6054. },
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6059. {
  6060. side: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(180, "lbs"),
  6063. name: "Side",
  6064. image: {
  6065. source: "./media/characters/blake/side.svg",
  6066. extra: 1212 / 1120,
  6067. bottom: 0.05
  6068. }
  6069. },
  6070. crouched: {
  6071. height: math.unit(6 * 0.57, "feet"),
  6072. weight: math.unit(180, "lbs"),
  6073. name: "Crouched",
  6074. image: {
  6075. source: "./media/characters/blake/crouched.svg",
  6076. extra: 840 / 587,
  6077. bottom: 0.04
  6078. }
  6079. },
  6080. bent: {
  6081. height: math.unit(6 * 0.75, "feet"),
  6082. weight: math.unit(180, "lbs"),
  6083. name: "Bent",
  6084. image: {
  6085. source: "./media/characters/blake/bent.svg",
  6086. extra: 592 / 544,
  6087. bottom: 0.035
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(8 + 1 / 6, "feet"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Big Backside",
  6099. height: math.unit(37, "feet")
  6100. },
  6101. {
  6102. name: "Subway Shredder",
  6103. height: math.unit(72, "feet")
  6104. },
  6105. {
  6106. name: "City Carver",
  6107. height: math.unit(1675, "feet")
  6108. },
  6109. {
  6110. name: "Tectonic Tweaker",
  6111. height: math.unit(2300, "miles")
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(6, "feet"),
  6120. weight: math.unit(180, "lbs"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/guisetto/front.svg",
  6124. extra: 856 / 817,
  6125. bottom: 0.06
  6126. }
  6127. },
  6128. airborne: {
  6129. height: math.unit(6, "feet"),
  6130. weight: math.unit(180, "lbs"),
  6131. name: "Airborne",
  6132. image: {
  6133. source: "./media/characters/guisetto/airborne.svg",
  6134. extra: 584 / 525
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(10 + 11 / 12, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Large",
  6146. height: math.unit(35, "feet")
  6147. },
  6148. {
  6149. name: "Macro",
  6150. height: math.unit(475, "feet")
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6156. {
  6157. front: {
  6158. height: math.unit(6, "feet"),
  6159. weight: math.unit(180, "lbs"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/luxor/front.svg",
  6163. extra: 2940 / 2152
  6164. }
  6165. },
  6166. back: {
  6167. height: math.unit(6, "feet"),
  6168. weight: math.unit(180, "lbs"),
  6169. name: "Back",
  6170. image: {
  6171. source: "./media/characters/luxor/back.svg",
  6172. extra: 1083 / 960
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(5 + 5 / 6, "feet"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Lamp",
  6184. height: math.unit(50, "feet")
  6185. },
  6186. {
  6187. name: "Lämp",
  6188. height: math.unit(300, "feet")
  6189. },
  6190. {
  6191. name: "The sun is a lamp",
  6192. height: math.unit(250000, "miles")
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(50, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/huoyan/front.svg"
  6205. }
  6206. },
  6207. side: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(180, "lbs"),
  6210. name: "Side",
  6211. image: {
  6212. source: "./media/characters/huoyan/side.svg"
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Chef",
  6219. height: math.unit(9, "feet")
  6220. },
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(65, "feet"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Macro",
  6228. height: math.unit(780, "feet")
  6229. },
  6230. {
  6231. name: "Flaming Mountain",
  6232. height: math.unit(4.8, "miles")
  6233. },
  6234. {
  6235. name: "Celestial",
  6236. height: math.unit(765000, "miles")
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(5 + 3 / 4, "feet"),
  6245. weight: math.unit(120, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/tails/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Normal",
  6255. height: math.unit(5 + 3 / 4, "feet"),
  6256. default: true
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(4, "feet"),
  6265. weight: math.unit(50, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/rainy/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Macro",
  6275. height: math.unit(800, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(150, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/rainier/front.svg"
  6289. }
  6290. }
  6291. },
  6292. [
  6293. {
  6294. name: "Micro",
  6295. height: math.unit(2, "mm"),
  6296. default: true
  6297. }
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6302. {
  6303. front: {
  6304. height: math.unit(8 + 4/12, "feet"),
  6305. weight: math.unit(450, "kilograms"),
  6306. volume: math.unit(5, "cups"),
  6307. name: "Front",
  6308. image: {
  6309. source: "./media/characters/andy-renard/front.svg",
  6310. extra: 1839/1726,
  6311. bottom: 134/1973
  6312. }
  6313. },
  6314. back: {
  6315. height: math.unit(8 + 4/12, "feet"),
  6316. weight: math.unit(450, "kilograms"),
  6317. volume: math.unit(5, "cups"),
  6318. name: "Back",
  6319. image: {
  6320. source: "./media/characters/andy-renard/back.svg",
  6321. extra: 1838/1710,
  6322. bottom: 105/1943
  6323. }
  6324. },
  6325. },
  6326. [
  6327. {
  6328. name: "Tall",
  6329. height: math.unit(8 + 4/12, "feet")
  6330. },
  6331. {
  6332. name: "Mini Macro",
  6333. height: math.unit(15, "feet"),
  6334. default: true
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(100, "feet")
  6339. },
  6340. {
  6341. name: "Mega Macro",
  6342. height: math.unit(1000, "feet")
  6343. },
  6344. {
  6345. name: "Giga Macro",
  6346. height: math.unit(10, "miles")
  6347. },
  6348. {
  6349. name: "God Macro",
  6350. height: math.unit(1, "multiverse")
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6356. {
  6357. front: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(210, "lbs"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/cimmaron/front-sfw.svg",
  6363. extra: 701 / 676,
  6364. bottom: 0.046
  6365. }
  6366. },
  6367. back: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(210, "lbs"),
  6370. name: "Back",
  6371. image: {
  6372. source: "./media/characters/cimmaron/back-sfw.svg",
  6373. extra: 701 / 676,
  6374. bottom: 0.046
  6375. }
  6376. },
  6377. frontNsfw: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(210, "lbs"),
  6380. name: "Front (NSFW)",
  6381. image: {
  6382. source: "./media/characters/cimmaron/front-nsfw.svg",
  6383. extra: 701 / 676,
  6384. bottom: 0.046
  6385. }
  6386. },
  6387. backNsfw: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(210, "lbs"),
  6390. name: "Back (NSFW)",
  6391. image: {
  6392. source: "./media/characters/cimmaron/back-nsfw.svg",
  6393. extra: 701 / 676,
  6394. bottom: 0.046
  6395. }
  6396. },
  6397. dick: {
  6398. height: math.unit(1.714, "feet"),
  6399. name: "Dick",
  6400. image: {
  6401. source: "./media/characters/cimmaron/dick.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Normal",
  6408. height: math.unit(6, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Macro Mayor",
  6413. height: math.unit(350, "meters")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(200, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/akari/front.svg",
  6426. extra: 962 / 901,
  6427. bottom: 0.04
  6428. }
  6429. }
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(5, "inches"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(7, "feet")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(140, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/cynosura/front.svg",
  6452. extra: 896 / 847
  6453. }
  6454. },
  6455. back: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(140, "lbs"),
  6458. name: "Back",
  6459. image: {
  6460. source: "./media/characters/cynosura/back.svg",
  6461. extra: 1365 / 1250
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Micro",
  6468. height: math.unit(4, "inches")
  6469. },
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(5.75, "feet"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "Tall",
  6477. height: math.unit(10, "feet")
  6478. },
  6479. {
  6480. name: "Big",
  6481. height: math.unit(20, "feet")
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(50, "feet")
  6486. },
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6491. {
  6492. front: {
  6493. height: math.unit(13 + 2/12, "feet"),
  6494. weight: math.unit(800, "kg"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/gin/front.svg",
  6498. extra: 1312/1191,
  6499. bottom: 45/1357
  6500. }
  6501. },
  6502. mouth: {
  6503. height: math.unit(2.39 * 1.8, "feet"),
  6504. name: "Mouth",
  6505. image: {
  6506. source: "./media/characters/gin/mouth.svg"
  6507. }
  6508. },
  6509. hand: {
  6510. height: math.unit(1.57 * 2.19, "feet"),
  6511. name: "Hand",
  6512. image: {
  6513. source: "./media/characters/gin/hand.svg"
  6514. }
  6515. },
  6516. foot: {
  6517. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6518. name: "Foot",
  6519. image: {
  6520. source: "./media/characters/gin/foot.svg"
  6521. }
  6522. },
  6523. sole: {
  6524. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6525. name: "Sole",
  6526. image: {
  6527. source: "./media/characters/gin/sole.svg"
  6528. }
  6529. },
  6530. },
  6531. [
  6532. {
  6533. name: "Very Small",
  6534. height: math.unit(13 + 2 / 12, "feet")
  6535. },
  6536. {
  6537. name: "Micro",
  6538. height: math.unit(600, "miles")
  6539. },
  6540. {
  6541. name: "Regular",
  6542. height: math.unit(20, "earths"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(2.2, "solarradii")
  6548. },
  6549. {
  6550. name: "Teramacro",
  6551. height: math.unit(1.2, "galaxies")
  6552. },
  6553. {
  6554. name: "Omegamacro",
  6555. height: math.unit(200, "universes")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6561. {
  6562. front: {
  6563. height: math.unit(6 + 1 / 6, "feet"),
  6564. weight: math.unit(178, "lbs"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/guy/front.svg"
  6568. }
  6569. }
  6570. },
  6571. [
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(6 + 1 / 6, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Large",
  6579. height: math.unit(25 + 7 / 12, "feet")
  6580. },
  6581. {
  6582. name: "Macro",
  6583. height: math.unit(60 + 9 / 12, "feet")
  6584. },
  6585. {
  6586. name: "Macro+",
  6587. height: math.unit(246, "feet")
  6588. },
  6589. {
  6590. name: "Macro++",
  6591. height: math.unit(878, "feet")
  6592. }
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(9, "feet"),
  6600. weight: math.unit(800, "lbs"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/tiberius/front.svg",
  6604. extra: 2295 / 2071
  6605. }
  6606. },
  6607. back: {
  6608. height: math.unit(9, "feet"),
  6609. weight: math.unit(800, "lbs"),
  6610. name: "Back",
  6611. image: {
  6612. source: "./media/characters/tiberius/back.svg",
  6613. extra: 2373 / 2160
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(9, "feet"),
  6621. default: true
  6622. }
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6627. {
  6628. front: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(600, "lbs"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/surgo/front.svg",
  6634. extra: 3591 / 2227
  6635. }
  6636. },
  6637. back: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(600, "lbs"),
  6640. name: "Back",
  6641. image: {
  6642. source: "./media/characters/surgo/back.svg",
  6643. extra: 3557 / 2228
  6644. }
  6645. },
  6646. laying: {
  6647. height: math.unit(6 * 0.85, "feet"),
  6648. weight: math.unit(600, "lbs"),
  6649. name: "Laying",
  6650. image: {
  6651. source: "./media/characters/surgo/laying.svg"
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(6, "feet"),
  6659. default: true
  6660. }
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6665. {
  6666. side: {
  6667. height: math.unit(6, "feet"),
  6668. weight: math.unit(150, "lbs"),
  6669. name: "Side",
  6670. image: {
  6671. source: "./media/characters/cibus/side.svg",
  6672. extra: 800 / 400
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(6, "feet"),
  6680. default: true
  6681. }
  6682. ]
  6683. ))
  6684. characterMakers.push(() => makeCharacter(
  6685. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6686. {
  6687. front: {
  6688. height: math.unit(6, "feet"),
  6689. weight: math.unit(240, "lbs"),
  6690. name: "Front",
  6691. image: {
  6692. source: "./media/characters/nibbles/front.svg"
  6693. }
  6694. },
  6695. side: {
  6696. height: math.unit(6, "feet"),
  6697. weight: math.unit(240, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/nibbles/side.svg"
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(9, "feet"),
  6708. default: true
  6709. }
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6714. {
  6715. side: {
  6716. height: math.unit(5 + 1 / 6, "feet"),
  6717. weight: math.unit(130, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/rikky/side.svg",
  6721. extra: 851 / 801
  6722. }
  6723. },
  6724. },
  6725. [
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(5 + 1 / 6, "feet")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(152, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Megamacro",
  6737. height: math.unit(7, "miles")
  6738. }
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6743. {
  6744. side: {
  6745. height: math.unit(370, "cm"),
  6746. weight: math.unit(350, "lbs"),
  6747. name: "Side",
  6748. image: {
  6749. source: "./media/characters/malfressa/side.svg"
  6750. }
  6751. },
  6752. walking: {
  6753. height: math.unit(370, "cm"),
  6754. weight: math.unit(350, "lbs"),
  6755. name: "Walking",
  6756. image: {
  6757. source: "./media/characters/malfressa/walking.svg"
  6758. }
  6759. },
  6760. feral: {
  6761. height: math.unit(2500, "cm"),
  6762. weight: math.unit(100000, "lbs"),
  6763. name: "Feral",
  6764. image: {
  6765. source: "./media/characters/malfressa/feral.svg",
  6766. extra: 2108 / 837,
  6767. bottom: 0.02
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(370, "cm")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(300, "meters"),
  6779. default: true
  6780. }
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(60, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/jaro/front.svg",
  6792. extra: 845/817,
  6793. bottom: 45/890
  6794. }
  6795. },
  6796. back: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(60, "kg"),
  6799. name: "Back",
  6800. image: {
  6801. source: "./media/characters/jaro/back.svg",
  6802. extra: 847/817,
  6803. bottom: 34/881
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Micro",
  6810. height: math.unit(7, "inches")
  6811. },
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(5.5, "feet"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Minimacro",
  6819. height: math.unit(20, "feet")
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(200, "meters")
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(195, "lb"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/rogue/front.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(90, "feet"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6849. {
  6850. standing: {
  6851. height: math.unit(5 + 8 / 12, "feet"),
  6852. weight: math.unit(140, "lb"),
  6853. name: "Standing",
  6854. image: {
  6855. source: "./media/characters/piper/standing.svg",
  6856. extra: 1440/1284,
  6857. bottom: 66/1506
  6858. }
  6859. },
  6860. running: {
  6861. height: math.unit(5 + 8 / 12, "feet"),
  6862. weight: math.unit(140, "lb"),
  6863. name: "Running",
  6864. image: {
  6865. source: "./media/characters/piper/running.svg",
  6866. extra: 3948/3655,
  6867. bottom: 0/3948
  6868. }
  6869. },
  6870. sole: {
  6871. height: math.unit(0.81, "feet"),
  6872. weight: math.unit(2, "kg"),
  6873. name: "Sole",
  6874. image: {
  6875. source: "./media/characters/piper/sole.svg"
  6876. }
  6877. },
  6878. nipple: {
  6879. height: math.unit(0.25, "feet"),
  6880. weight: math.unit(1.5, "lb"),
  6881. name: "Nipple",
  6882. image: {
  6883. source: "./media/characters/piper/nipple.svg"
  6884. }
  6885. },
  6886. head: {
  6887. height: math.unit(1.1, "feet"),
  6888. name: "Head",
  6889. image: {
  6890. source: "./media/characters/piper/head.svg"
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Micro",
  6897. height: math.unit(2, "inches")
  6898. },
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(5 + 8 / 12, "feet")
  6902. },
  6903. {
  6904. name: "Macro",
  6905. height: math.unit(250, "feet"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Megamacro",
  6910. height: math.unit(7, "miles")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(220, "lb"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/gemini/front.svg"
  6923. }
  6924. },
  6925. back: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(220, "lb"),
  6928. name: "Back",
  6929. image: {
  6930. source: "./media/characters/gemini/back.svg"
  6931. }
  6932. },
  6933. kneeling: {
  6934. height: math.unit(6 / 1.5, "feet"),
  6935. weight: math.unit(220, "lb"),
  6936. name: "Kneeling",
  6937. image: {
  6938. source: "./media/characters/gemini/kneeling.svg",
  6939. bottom: 0.02
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(300, "meters"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(6900, "meters")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6957. {
  6958. anthro: {
  6959. height: math.unit(2.35, "meters"),
  6960. weight: math.unit(73, "kg"),
  6961. name: "Anthro",
  6962. image: {
  6963. source: "./media/characters/alicia/anthro.svg",
  6964. extra: 2571 / 2385,
  6965. bottom: 75 / 2648
  6966. }
  6967. },
  6968. paw: {
  6969. height: math.unit(1.32, "feet"),
  6970. name: "Paw",
  6971. image: {
  6972. source: "./media/characters/alicia/paw.svg"
  6973. }
  6974. },
  6975. feral: {
  6976. height: math.unit(1.69, "meters"),
  6977. weight: math.unit(73, "kg"),
  6978. name: "Feral",
  6979. image: {
  6980. source: "./media/characters/alicia/feral.svg",
  6981. extra: 2123 / 1715,
  6982. bottom: 222 / 2349
  6983. }
  6984. },
  6985. },
  6986. [
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(2.35, "meters")
  6990. },
  6991. {
  6992. name: "Macro",
  6993. height: math.unit(60, "meters"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Megamacro",
  6998. height: math.unit(10000, "kilometers")
  6999. },
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(7, "feet"),
  7007. weight: math.unit(250, "lbs"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/archy/front.svg"
  7011. }
  7012. }
  7013. },
  7014. [
  7015. {
  7016. name: "Micro",
  7017. height: math.unit(1, "inch")
  7018. },
  7019. {
  7020. name: "Shorty",
  7021. height: math.unit(5, "feet")
  7022. },
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(7, "feet")
  7026. },
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(600, "meters"),
  7030. default: true
  7031. },
  7032. {
  7033. name: "Megamacro",
  7034. height: math.unit(1, "mile")
  7035. },
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(1.65, "meters"),
  7043. weight: math.unit(74, "kg"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/berri/front.svg",
  7047. extra: 857 / 837,
  7048. bottom: 18 / 877
  7049. }
  7050. },
  7051. bum: {
  7052. height: math.unit(1.46, "feet"),
  7053. name: "Bum",
  7054. image: {
  7055. source: "./media/characters/berri/bum.svg"
  7056. }
  7057. },
  7058. mouth: {
  7059. height: math.unit(0.44, "feet"),
  7060. name: "Mouth",
  7061. image: {
  7062. source: "./media/characters/berri/mouth.svg"
  7063. }
  7064. },
  7065. paw: {
  7066. height: math.unit(0.826, "feet"),
  7067. name: "Paw",
  7068. image: {
  7069. source: "./media/characters/berri/paw.svg"
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(1.65, "meters")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(60, "m"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Megamacro",
  7085. height: math.unit(9.213, "km")
  7086. },
  7087. {
  7088. name: "Planet Eater",
  7089. height: math.unit(489, "megameters")
  7090. },
  7091. {
  7092. name: "Teramacro",
  7093. height: math.unit(2471635000000, "meters")
  7094. },
  7095. {
  7096. name: "Examacro",
  7097. height: math.unit(8.0624e+26, "meters")
  7098. }
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(1.72, "meters"),
  7106. weight: math.unit(68, "kg"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/lexi/front.svg"
  7110. }
  7111. }
  7112. },
  7113. [
  7114. {
  7115. name: "Very Smol",
  7116. height: math.unit(10, "mm")
  7117. },
  7118. {
  7119. name: "Micro",
  7120. height: math.unit(6.8, "cm"),
  7121. default: true
  7122. },
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(1.72, "m")
  7126. }
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(1.69, "meters"),
  7134. weight: math.unit(68, "kg"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/martin/front.svg",
  7138. extra: 596 / 581
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Micro",
  7145. height: math.unit(6.85, "cm"),
  7146. default: true
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(1.69, "m")
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(1.69, "meters"),
  7159. weight: math.unit(68, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/juno/front.svg"
  7163. }
  7164. }
  7165. },
  7166. [
  7167. {
  7168. name: "Micro",
  7169. height: math.unit(7, "cm")
  7170. },
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(1.89, "m")
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(353, "meters"),
  7178. default: true
  7179. }
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(1.93, "meters"),
  7187. weight: math.unit(83, "kg"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/samantha/front.svg"
  7191. }
  7192. },
  7193. frontClothed: {
  7194. height: math.unit(1.93, "meters"),
  7195. weight: math.unit(83, "kg"),
  7196. name: "Front (Clothed)",
  7197. image: {
  7198. source: "./media/characters/samantha/front-clothed.svg"
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(1.93, "meters"),
  7203. weight: math.unit(83, "kg"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/samantha/back.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(1.93, "m")
  7214. },
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(74, "meters"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro+",
  7222. height: math.unit(223, "meters"),
  7223. },
  7224. {
  7225. name: "Megamacro",
  7226. height: math.unit(8381, "meters"),
  7227. },
  7228. {
  7229. name: "Megamacro+",
  7230. height: math.unit(12000, "kilometers")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(1.92, "meters"),
  7239. weight: math.unit(80, "kg"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/dr-clay/front.svg"
  7243. }
  7244. },
  7245. frontClothed: {
  7246. height: math.unit(1.92, "meters"),
  7247. weight: math.unit(80, "kg"),
  7248. name: "Front (Clothed)",
  7249. image: {
  7250. source: "./media/characters/dr-clay/front-clothed.svg"
  7251. }
  7252. }
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(1.92, "m")
  7258. },
  7259. {
  7260. name: "Macro",
  7261. height: math.unit(214, "meters"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Macro+",
  7266. height: math.unit(12.237, "meters"),
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(557, "megameters"),
  7271. },
  7272. {
  7273. name: "Unimaginable",
  7274. height: math.unit(120e9, "lightyears")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(2, "meters"),
  7283. weight: math.unit(80, "kg"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7287. }
  7288. }
  7289. },
  7290. [
  7291. {
  7292. name: "Teramacro",
  7293. height: math.unit(500000, "lightyears"),
  7294. default: true
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7300. {
  7301. crux: {
  7302. height: math.unit(2, "meters"),
  7303. weight: math.unit(150, "kg"),
  7304. name: "Crux",
  7305. image: {
  7306. source: "./media/characters/vemus/crux.svg",
  7307. extra: 1074/936,
  7308. bottom: 23/1097
  7309. }
  7310. },
  7311. skunkTanuki: {
  7312. height: math.unit(2, "meters"),
  7313. weight: math.unit(150, "kg"),
  7314. name: "Skunk-Tanuki",
  7315. image: {
  7316. source: "./media/characters/vemus/skunk-tanuki.svg",
  7317. extra: 926/893,
  7318. bottom: 20/946
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(4, "meters"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Big",
  7330. height: math.unit(8, "meters")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(100, "meters")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(1500, "meters")
  7339. },
  7340. {
  7341. name: "Stellar",
  7342. height: math.unit(14e8, "meters")
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(2, "meters"),
  7351. weight: math.unit(70, "kg"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/beherit/front.svg",
  7355. extra: 1234/1109,
  7356. bottom: 55/1289
  7357. }
  7358. }
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(6, "feet")
  7364. },
  7365. {
  7366. name: "Lorg",
  7367. height: math.unit(25, "feet"),
  7368. default: true
  7369. },
  7370. {
  7371. name: "Lorger",
  7372. height: math.unit(75, "feet")
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(200, "meters")
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7382. {
  7383. front: {
  7384. height: math.unit(2, "meters"),
  7385. weight: math.unit(150, "kg"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/everett/front.svg",
  7389. extra: 1017/866,
  7390. bottom: 86/1103
  7391. }
  7392. },
  7393. paw: {
  7394. height: math.unit(2 / 3.6, "meters"),
  7395. name: "Paw",
  7396. image: {
  7397. source: "./media/characters/everett/paw.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(15, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Lorg",
  7409. height: math.unit(70, "feet"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Lorger",
  7414. height: math.unit(250, "feet")
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(500, "meters")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(2, "meters"),
  7427. weight: math.unit(86, "kg"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/rose/front.svg",
  7431. extra: 1785/1636,
  7432. bottom: 30/1815
  7433. },
  7434. form: "liom",
  7435. default: true
  7436. },
  7437. frontSporty: {
  7438. height: math.unit(2, "meters"),
  7439. weight: math.unit(86, "kg"),
  7440. name: "Front (Sporty)",
  7441. image: {
  7442. source: "./media/characters/rose/front-sporty.svg",
  7443. extra: 350/335,
  7444. bottom: 10/360
  7445. },
  7446. form: "liom"
  7447. },
  7448. frontAlt: {
  7449. height: math.unit(1.6, "meters"),
  7450. weight: math.unit(86, "kg"),
  7451. name: "Front (Alt)",
  7452. image: {
  7453. source: "./media/characters/rose/front-alt.svg",
  7454. extra: 299/283,
  7455. bottom: 3/302
  7456. },
  7457. form: "liom"
  7458. },
  7459. plush: {
  7460. height: math.unit(2, "meters"),
  7461. weight: math.unit(86/3, "kg"),
  7462. name: "Plush",
  7463. image: {
  7464. source: "./media/characters/rose/plush.svg",
  7465. extra: 361/337,
  7466. bottom: 11/372
  7467. },
  7468. form: "plush",
  7469. default: true
  7470. },
  7471. faeStanding: {
  7472. height: math.unit(10, "cm"),
  7473. weight: math.unit(10, "grams"),
  7474. name: "Standing",
  7475. image: {
  7476. source: "./media/characters/rose/fae-standing.svg",
  7477. extra: 1189/1060,
  7478. bottom: 27/1216
  7479. },
  7480. form: "fae",
  7481. default: true
  7482. },
  7483. faeSitting: {
  7484. height: math.unit(5, "cm"),
  7485. weight: math.unit(10, "grams"),
  7486. name: "Sitting",
  7487. image: {
  7488. source: "./media/characters/rose/fae-sitting.svg",
  7489. extra: 737/577,
  7490. bottom: 356/1093
  7491. },
  7492. form: "fae"
  7493. },
  7494. faePaw: {
  7495. height: math.unit(1.35, "cm"),
  7496. name: "Paw",
  7497. image: {
  7498. source: "./media/characters/rose/fae-paw.svg"
  7499. },
  7500. form: "fae"
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "True Micro",
  7506. height: math.unit(9, "cm"),
  7507. form: "liom"
  7508. },
  7509. {
  7510. name: "Micro",
  7511. height: math.unit(16, "cm"),
  7512. form: "liom"
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(1.85, "meters"),
  7517. default: true,
  7518. form: "liom"
  7519. },
  7520. {
  7521. name: "Mini-Macro",
  7522. height: math.unit(5, "meters"),
  7523. form: "liom"
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(15, "meters"),
  7528. form: "liom"
  7529. },
  7530. {
  7531. name: "True Macro",
  7532. height: math.unit(40, "meters"),
  7533. form: "liom"
  7534. },
  7535. {
  7536. name: "City Scale",
  7537. height: math.unit(1, "km"),
  7538. form: "liom"
  7539. },
  7540. {
  7541. name: "Plushie",
  7542. height: math.unit(9, "cm"),
  7543. form: "plush",
  7544. default: true
  7545. },
  7546. {
  7547. name: "Fae",
  7548. height: math.unit(10, "cm"),
  7549. form: "fae",
  7550. default: true
  7551. },
  7552. ],
  7553. {
  7554. "liom": {
  7555. name: "Liom"
  7556. },
  7557. "plush": {
  7558. name: "Plush"
  7559. },
  7560. "fae": {
  7561. name: "Fae Fox",
  7562. default: true
  7563. }
  7564. }
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7568. {
  7569. front: {
  7570. height: math.unit(2, "meters"),
  7571. weight: math.unit(350, "lbs"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/regal/front.svg"
  7575. }
  7576. },
  7577. back: {
  7578. height: math.unit(2, "meters"),
  7579. weight: math.unit(350, "lbs"),
  7580. name: "Back",
  7581. image: {
  7582. source: "./media/characters/regal/back.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(350, "feet"),
  7590. default: true
  7591. }
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(4 + 11 / 12, "feet"),
  7599. weight: math.unit(100, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/opal/front.svg"
  7603. }
  7604. },
  7605. frontAlt: {
  7606. height: math.unit(4 + 11 / 12, "feet"),
  7607. weight: math.unit(100, "lbs"),
  7608. name: "Front (Alt)",
  7609. image: {
  7610. source: "./media/characters/opal/front-alt.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Small",
  7617. height: math.unit(4 + 11 / 12, "feet")
  7618. },
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(20, "feet"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(120, "feet")
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(80, "miles")
  7631. },
  7632. {
  7633. name: "True Size",
  7634. height: math.unit(100000, "lightyears")
  7635. },
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(6, "feet"),
  7643. weight: math.unit(200, "lbs"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/vector-wuff/front.svg"
  7647. }
  7648. }
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(2.8, "meters")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(450, "meters"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(15, "kilometers")
  7663. }
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(256, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/dannik/front.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(69.57, "meters"),
  7682. default: true
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(120, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/azura-saharah/front.svg"
  7695. }
  7696. },
  7697. back: {
  7698. height: math.unit(6, "feet"),
  7699. weight: math.unit(120, "lbs"),
  7700. name: "Back",
  7701. image: {
  7702. source: "./media/characters/azura-saharah/back.svg"
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(100, "feet"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7716. {
  7717. side: {
  7718. height: math.unit(5 + 4 / 12, "feet"),
  7719. weight: math.unit(163, "lbs"),
  7720. name: "Side",
  7721. image: {
  7722. source: "./media/characters/kennedy/side.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Standard Doggo",
  7729. height: math.unit(5 + 4 / 12, "feet")
  7730. },
  7731. {
  7732. name: "Big Doggo",
  7733. height: math.unit(25 + 3 / 12, "feet"),
  7734. default: true
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(5 + 5/12, "feet"),
  7743. weight: math.unit(100, "lbs"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/odios-de-lunar/front.svg",
  7747. extra: 1468/1323,
  7748. bottom: 22/1490
  7749. }
  7750. }
  7751. },
  7752. [
  7753. {
  7754. name: "Micro",
  7755. height: math.unit(3, "inches")
  7756. },
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(5.5, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(100, "feet")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7770. {
  7771. back: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(220, "lbs"),
  7774. name: "Back",
  7775. image: {
  7776. source: "./media/characters/mandake/back.svg"
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(7, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(78, "feet")
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(300, "meters")
  7793. },
  7794. {
  7795. name: "Macro++",
  7796. height: math.unit(2400, "feet")
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(5167, "meters")
  7801. },
  7802. {
  7803. name: "Gigamacro",
  7804. height: math.unit(41769, "miles")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(120, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/yozey/front.svg"
  7817. }
  7818. },
  7819. frontAlt: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(120, "lbs"),
  7822. name: "Front (Alt)",
  7823. image: {
  7824. source: "./media/characters/yozey/front-alt.svg"
  7825. }
  7826. },
  7827. side: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(120, "lbs"),
  7830. name: "Side",
  7831. image: {
  7832. source: "./media/characters/yozey/side.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(3, "inches"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(6, "feet")
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(103, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/valeska-voss/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Mini-Sized Sub",
  7863. height: math.unit(3.1, "inches")
  7864. },
  7865. {
  7866. name: "Mid-Sized Sub",
  7867. height: math.unit(6.2, "inches")
  7868. },
  7869. {
  7870. name: "Full-Sized Sub",
  7871. height: math.unit(9.3, "inches")
  7872. },
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(5 + 2 / 12, "foot"),
  7876. default: true
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(160, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/gene-zeta/front.svg",
  7889. extra: 3006 / 2826,
  7890. bottom: 182 / 3188
  7891. }
  7892. }
  7893. },
  7894. [
  7895. {
  7896. name: "Micro",
  7897. height: math.unit(6, "inches")
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(5 + 11 / 12, "foot"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(140, "feet")
  7907. },
  7908. {
  7909. name: "Supercharged",
  7910. height: math.unit(2500, "feet")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(350, "lbs"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/razinox/front.svg",
  7923. extra: 1686 / 1548,
  7924. bottom: 28.2 / 1868
  7925. }
  7926. },
  7927. back: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(350, "lbs"),
  7930. name: "Back",
  7931. image: {
  7932. source: "./media/characters/razinox/back.svg",
  7933. extra: 1660 / 1590,
  7934. bottom: 15 / 1665
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(10 + 8 / 12, "foot")
  7942. },
  7943. {
  7944. name: "Minimacro",
  7945. height: math.unit(15, "foot")
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(60, "foot"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Megamacro",
  7954. height: math.unit(5, "miles")
  7955. },
  7956. {
  7957. name: "Gigamacro",
  7958. height: math.unit(6000, "miles")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(6, "feet"),
  7967. weight: math.unit(150, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/cobalt/front.svg"
  7971. }
  7972. }
  7973. },
  7974. [
  7975. {
  7976. name: "Normal",
  7977. height: math.unit(8 + 1 / 12, "foot")
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(111, "foot"),
  7982. default: true
  7983. },
  7984. {
  7985. name: "Supracosmic",
  7986. height: math.unit(1e42, "feet")
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(5, "inches"),
  7995. name: "Front",
  7996. image: {
  7997. source: "./media/characters/amanda/front.svg",
  7998. extra: 926/791,
  7999. bottom: 38/964
  8000. }
  8001. },
  8002. back: {
  8003. height: math.unit(5, "inches"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/amanda/back.svg",
  8007. extra: 909/805,
  8008. bottom: 43/952
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(5, "inches"),
  8016. default: true
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(2.75, "meters"),
  8025. weight: math.unit(1200, "lb"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/teal/front.svg",
  8029. extra: 2463 / 2320,
  8030. bottom: 166 / 2629
  8031. }
  8032. },
  8033. back: {
  8034. height: math.unit(2.75, "meters"),
  8035. weight: math.unit(1200, "lb"),
  8036. name: "Back",
  8037. image: {
  8038. source: "./media/characters/teal/back.svg",
  8039. extra: 2580 / 2489,
  8040. bottom: 151 / 2731
  8041. }
  8042. },
  8043. sitting: {
  8044. height: math.unit(1.9, "meters"),
  8045. weight: math.unit(1200, "lb"),
  8046. name: "Sitting",
  8047. image: {
  8048. source: "./media/characters/teal/sitting.svg",
  8049. extra: 623 / 590,
  8050. bottom: 121 / 744
  8051. }
  8052. },
  8053. standing: {
  8054. height: math.unit(2.75, "meters"),
  8055. weight: math.unit(1200, "lb"),
  8056. name: "Standing",
  8057. image: {
  8058. source: "./media/characters/teal/standing.svg",
  8059. extra: 923 / 893,
  8060. bottom: 60 / 983
  8061. }
  8062. },
  8063. stretching: {
  8064. height: math.unit(3.65, "meters"),
  8065. weight: math.unit(1200, "lb"),
  8066. name: "Stretching",
  8067. image: {
  8068. source: "./media/characters/teal/stretching.svg",
  8069. extra: 1276 / 1244,
  8070. bottom: 0 / 1276
  8071. }
  8072. },
  8073. legged: {
  8074. height: math.unit(1.3, "meters"),
  8075. weight: math.unit(100, "lb"),
  8076. name: "Legged",
  8077. image: {
  8078. source: "./media/characters/teal/legged.svg",
  8079. extra: 462 / 437,
  8080. bottom: 24 / 486
  8081. }
  8082. },
  8083. naga: {
  8084. height: math.unit(5.4, "meters"),
  8085. weight: math.unit(4000, "lb"),
  8086. name: "Naga",
  8087. image: {
  8088. source: "./media/characters/teal/naga.svg",
  8089. extra: 1902 / 1858,
  8090. bottom: 0 / 1902
  8091. }
  8092. },
  8093. hand: {
  8094. height: math.unit(0.52, "meters"),
  8095. name: "Hand",
  8096. image: {
  8097. source: "./media/characters/teal/hand.svg"
  8098. }
  8099. },
  8100. maw: {
  8101. height: math.unit(0.43, "meters"),
  8102. name: "Maw",
  8103. image: {
  8104. source: "./media/characters/teal/maw.svg"
  8105. }
  8106. },
  8107. slit: {
  8108. height: math.unit(0.25, "meters"),
  8109. name: "Slit",
  8110. image: {
  8111. source: "./media/characters/teal/slit.svg"
  8112. }
  8113. },
  8114. },
  8115. [
  8116. {
  8117. name: "Normal",
  8118. height: math.unit(2.75, "meters"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(300, "feet")
  8124. },
  8125. {
  8126. name: "Macro+",
  8127. height: math.unit(2000, "feet")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8133. {
  8134. frontCat: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(180, "lbs"),
  8137. name: "Front (Cat)",
  8138. image: {
  8139. source: "./media/characters/ravin-amulet/front-cat.svg"
  8140. }
  8141. },
  8142. frontCatAlt: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(180, "lbs"),
  8145. name: "Front (Alt, Cat)",
  8146. image: {
  8147. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8148. }
  8149. },
  8150. frontWerewolf: {
  8151. height: math.unit(6 * 1.2, "feet"),
  8152. weight: math.unit(225, "lbs"),
  8153. name: "Front (Werewolf)",
  8154. image: {
  8155. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8156. }
  8157. },
  8158. backWerewolf: {
  8159. height: math.unit(6 * 1.2, "feet"),
  8160. weight: math.unit(225, "lbs"),
  8161. name: "Back (Werewolf)",
  8162. image: {
  8163. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8164. }
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "Nano",
  8170. height: math.unit(1, "micrometer")
  8171. },
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(1, "inch")
  8175. },
  8176. {
  8177. name: "Normal",
  8178. height: math.unit(6, "feet"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(60, "feet")
  8184. }
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(165, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/fluoresce/front.svg"
  8196. }
  8197. }
  8198. },
  8199. [
  8200. {
  8201. name: "Micro",
  8202. height: math.unit(6, "cm")
  8203. },
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 7 / 12, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(56, "feet")
  8212. },
  8213. {
  8214. name: "Megamacro",
  8215. height: math.unit(1.9, "miles")
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(9 + 6 / 12, "feet"),
  8224. weight: math.unit(523, "lbs"),
  8225. name: "Side",
  8226. image: {
  8227. source: "./media/characters/aurora/side.svg"
  8228. }
  8229. }
  8230. },
  8231. [
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(9 + 6 / 12, "feet")
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(96, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro+",
  8243. height: math.unit(243, "feet")
  8244. },
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(194, "cm"),
  8252. weight: math.unit(90, "kg"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/ranek/front.svg",
  8256. extra: 1862/1791,
  8257. bottom: 80/1942
  8258. }
  8259. },
  8260. back: {
  8261. height: math.unit(194, "cm"),
  8262. weight: math.unit(90, "kg"),
  8263. name: "Back",
  8264. image: {
  8265. source: "./media/characters/ranek/back.svg",
  8266. extra: 1853/1787,
  8267. bottom: 74/1927
  8268. }
  8269. },
  8270. feral: {
  8271. height: math.unit(30, "cm"),
  8272. weight: math.unit(1.6, "lbs"),
  8273. name: "Feral",
  8274. image: {
  8275. source: "./media/characters/ranek/feral.svg",
  8276. extra: 990/631,
  8277. bottom: 29/1019
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(194, "cm"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(100, "meters")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(5 + 6 / 12, "feet"),
  8298. weight: math.unit(153, "lbs"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/andrew-cooper/front.svg"
  8302. }
  8303. },
  8304. },
  8305. [
  8306. {
  8307. name: "Nano",
  8308. height: math.unit(1, "mm")
  8309. },
  8310. {
  8311. name: "Micro",
  8312. height: math.unit(2, "inches")
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(5 + 6 / 12, "feet"),
  8317. default: true
  8318. }
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(6, "feet"),
  8326. weight: math.unit(180, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/akane-sato/front.svg",
  8330. extra: 1219 / 1140
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(180, "lbs"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/akane-sato/back.svg",
  8339. extra: 1219 / 1170
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(2.5, "meters")
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(250, "meters"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(25, "km")
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(65, "kg"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/rook/front.svg",
  8368. extra: 960 / 950
  8369. }
  8370. }
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(8.8, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(88, "feet"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Megamacro",
  8384. height: math.unit(8, "miles")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(12 + 2 / 12, "feet"),
  8393. weight: math.unit(808, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/prodigy/front.svg"
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(12 + 2 / 12, "feet"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(143, "feet")
  8409. },
  8410. {
  8411. name: "Macro+",
  8412. height: math.unit(400, "feet")
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(225, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/daniel/front.svg"
  8425. }
  8426. },
  8427. leaning: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(225, "lbs"),
  8430. name: "Leaning",
  8431. image: {
  8432. source: "./media/characters/daniel/leaning.svg"
  8433. }
  8434. },
  8435. },
  8436. [
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(1000, "feet"),
  8440. default: true
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(88, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/chiros/front.svg",
  8453. extra: 306 / 226
  8454. }
  8455. },
  8456. side: {
  8457. height: math.unit(6, "feet"),
  8458. weight: math.unit(88, "lbs"),
  8459. name: "Side",
  8460. image: {
  8461. source: "./media/characters/chiros/side.svg",
  8462. extra: 306 / 226
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(6, "cm"),
  8470. default: true
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8476. {
  8477. front: {
  8478. height: math.unit(6, "feet"),
  8479. weight: math.unit(100, "lbs"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/selka/front.svg",
  8483. extra: 947 / 887
  8484. }
  8485. }
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5, "cm"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(8 + 3 / 12, "feet"),
  8500. weight: math.unit(424, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/verin/front.svg",
  8504. extra: 1845 / 1550
  8505. }
  8506. },
  8507. frontArmored: {
  8508. height: math.unit(8 + 3 / 12, "feet"),
  8509. weight: math.unit(424, "lbs"),
  8510. name: "Front (Armored)",
  8511. image: {
  8512. source: "./media/characters/verin/front-armor.svg",
  8513. extra: 1845 / 1550,
  8514. bottom: 0.01
  8515. }
  8516. },
  8517. back: {
  8518. height: math.unit(8 + 3 / 12, "feet"),
  8519. weight: math.unit(424, "lbs"),
  8520. name: "Back",
  8521. image: {
  8522. source: "./media/characters/verin/back.svg",
  8523. bottom: 0.1,
  8524. extra: 1
  8525. }
  8526. },
  8527. foot: {
  8528. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8529. name: "Foot",
  8530. image: {
  8531. source: "./media/characters/verin/foot.svg"
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(8 + 3 / 12, "feet")
  8539. },
  8540. {
  8541. name: "Minimacro",
  8542. height: math.unit(21, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Macro",
  8547. height: math.unit(626, "feet")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(2.718, "meters"),
  8556. weight: math.unit(150, "lbs"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/sovrim-terraquian/front.svg",
  8560. extra: 1752/1689,
  8561. bottom: 36/1788
  8562. }
  8563. },
  8564. back: {
  8565. height: math.unit(2.718, "meters"),
  8566. weight: math.unit(150, "lbs"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/sovrim-terraquian/back.svg",
  8570. extra: 1698/1657,
  8571. bottom: 58/1756
  8572. }
  8573. },
  8574. tongue: {
  8575. height: math.unit(2.865, "feet"),
  8576. name: "Tongue",
  8577. image: {
  8578. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8579. }
  8580. },
  8581. hand: {
  8582. height: math.unit(1.61, "feet"),
  8583. name: "Hand",
  8584. image: {
  8585. source: "./media/characters/sovrim-terraquian/hand.svg"
  8586. }
  8587. },
  8588. foot: {
  8589. height: math.unit(1.05, "feet"),
  8590. name: "Foot",
  8591. image: {
  8592. source: "./media/characters/sovrim-terraquian/foot.svg"
  8593. }
  8594. },
  8595. footAlt: {
  8596. height: math.unit(0.88, "feet"),
  8597. name: "Foot (Alt)",
  8598. image: {
  8599. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Micro",
  8606. height: math.unit(2, "inches")
  8607. },
  8608. {
  8609. name: "Small",
  8610. height: math.unit(1, "meter")
  8611. },
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(Math.E, "meters"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(20, "meters")
  8620. },
  8621. {
  8622. name: "Macro+",
  8623. height: math.unit(400, "meters")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(7, "feet"),
  8632. weight: math.unit(489, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/reece-silvermane/front.svg",
  8636. bottom: 0.02,
  8637. extra: 1
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(1.5, "miles"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(78, "kg"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/kane/front.svg",
  8658. extra: 978 / 899
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(2.1, "m"),
  8666. },
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(1, "km"),
  8670. default: true
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(200, "kg"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/tegon/front.svg",
  8683. bottom: 0.01,
  8684. extra: 1
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Micro",
  8691. height: math.unit(1, "inch")
  8692. },
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(6 + 3 / 12, "feet"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Macro",
  8700. height: math.unit(300, "feet")
  8701. },
  8702. {
  8703. name: "Megamacro",
  8704. height: math.unit(69, "miles")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8710. {
  8711. side: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(2304, "lbs"),
  8714. name: "Side",
  8715. image: {
  8716. source: "./media/characters/arcturax/side.svg",
  8717. extra: 790 / 376,
  8718. bottom: 0.01
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Micro",
  8725. height: math.unit(2, "inch")
  8726. },
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(6, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(39, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Megamacro",
  8738. height: math.unit(7, "miles")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(50, "lbs"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/sentri/front.svg",
  8751. extra: 1750 / 1570,
  8752. bottom: 0.025
  8753. }
  8754. },
  8755. frontAlt: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(50, "lbs"),
  8758. name: "Front (Alt)",
  8759. image: {
  8760. source: "./media/characters/sentri/front-alt.svg",
  8761. extra: 1750 / 1570,
  8762. bottom: 0.025
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(15, "feet"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(2500, "feet")
  8775. }
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(5 + 8 / 12, "feet"),
  8783. weight: math.unit(130, "lbs"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/corvin/front.svg",
  8787. extra: 1803 / 1629
  8788. }
  8789. },
  8790. frontShirt: {
  8791. height: math.unit(5 + 8 / 12, "feet"),
  8792. weight: math.unit(130, "lbs"),
  8793. name: "Front (Shirt)",
  8794. image: {
  8795. source: "./media/characters/corvin/front-shirt.svg",
  8796. extra: 1803 / 1629
  8797. }
  8798. },
  8799. frontPoncho: {
  8800. height: math.unit(5 + 8 / 12, "feet"),
  8801. weight: math.unit(130, "lbs"),
  8802. name: "Front (Poncho)",
  8803. image: {
  8804. source: "./media/characters/corvin/front-poncho.svg",
  8805. extra: 1803 / 1629
  8806. }
  8807. },
  8808. side: {
  8809. height: math.unit(5 + 8 / 12, "feet"),
  8810. weight: math.unit(130, "lbs"),
  8811. name: "Side",
  8812. image: {
  8813. source: "./media/characters/corvin/side.svg",
  8814. extra: 1012 / 945
  8815. }
  8816. },
  8817. back: {
  8818. height: math.unit(5 + 8 / 12, "feet"),
  8819. weight: math.unit(130, "lbs"),
  8820. name: "Back",
  8821. image: {
  8822. source: "./media/characters/corvin/back.svg",
  8823. extra: 1803 / 1629
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(3, "inches")
  8831. },
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 8 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(300, "feet"),
  8839. default: true
  8840. },
  8841. {
  8842. name: "Megamacro",
  8843. height: math.unit(500, "miles")
  8844. }
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(135, "lbs"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/q/front.svg",
  8856. extra: 854 / 752,
  8857. bottom: 0.005
  8858. }
  8859. },
  8860. back: {
  8861. height: math.unit(6, "feet"),
  8862. weight: math.unit(130, "lbs"),
  8863. name: "Back",
  8864. image: {
  8865. source: "./media/characters/q/back.svg",
  8866. extra: 854 / 752
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Macro",
  8873. height: math.unit(90, "feet"),
  8874. default: true
  8875. },
  8876. {
  8877. name: "Extra Macro",
  8878. height: math.unit(300, "feet"),
  8879. },
  8880. {
  8881. name: "BIG WALF",
  8882. height: math.unit(750, "feet"),
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8888. {
  8889. front: {
  8890. height: math.unit(3, "feet"),
  8891. weight: math.unit(28, "lbs"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/citrine/front.svg"
  8895. }
  8896. }
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(3, "feet"),
  8902. default: true
  8903. }
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8908. {
  8909. front: {
  8910. height: math.unit(14, "feet"),
  8911. weight: math.unit(1450, "kg"),
  8912. preyCapacity: math.unit(15, "people"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/aura-starwind/front.svg",
  8916. extra: 1440/1327,
  8917. bottom: 11/1451
  8918. }
  8919. },
  8920. side: {
  8921. height: math.unit(14, "feet"),
  8922. weight: math.unit(1450, "kg"),
  8923. preyCapacity: math.unit(15, "people"),
  8924. name: "Side",
  8925. image: {
  8926. source: "./media/characters/aura-starwind/side.svg",
  8927. extra: 1654 / 1497
  8928. }
  8929. },
  8930. taur: {
  8931. height: math.unit(18, "feet"),
  8932. weight: math.unit(5500, "kg"),
  8933. preyCapacity: math.unit(50, "people"),
  8934. name: "Taur",
  8935. image: {
  8936. source: "./media/characters/aura-starwind/taur.svg",
  8937. extra: 1760 / 1650
  8938. }
  8939. },
  8940. feral: {
  8941. height: math.unit(46, "feet"),
  8942. weight: math.unit(25000, "kg"),
  8943. preyCapacity: math.unit(120, "people"),
  8944. name: "Feral",
  8945. image: {
  8946. source: "./media/characters/aura-starwind/feral.svg"
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(14, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(50, "meters")
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(5000, "meters")
  8963. },
  8964. {
  8965. name: "Gigamacro",
  8966. height: math.unit(100000, "kilometers")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(2 + 7 / 12, "feet"),
  8975. weight: math.unit(32, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/rivet/front.svg",
  8979. extra: 1716 / 1658,
  8980. bottom: 0.03
  8981. }
  8982. },
  8983. foot: {
  8984. height: math.unit(0.551, "feet"),
  8985. name: "Rivet's Foot",
  8986. image: {
  8987. source: "./media/characters/rivet/foot.svg"
  8988. },
  8989. rename: true
  8990. }
  8991. },
  8992. [
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(1.5, "inches"),
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(2 + 7 / 12, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(85, "feet")
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(2.2, "km")
  9009. }
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(5 + 9 / 12, "feet"),
  9017. weight: math.unit(150, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/coffee/front.svg",
  9021. extra: 946/880,
  9022. bottom: 66/1012
  9023. }
  9024. },
  9025. foot: {
  9026. height: math.unit(1.29, "feet"),
  9027. name: "Foot",
  9028. image: {
  9029. source: "./media/characters/coffee/foot.svg"
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Micro",
  9036. height: math.unit(2, "inches"),
  9037. },
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(5 + 9 / 12, "feet"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(800, "feet")
  9046. },
  9047. {
  9048. name: "Megamacro",
  9049. height: math.unit(25, "miles")
  9050. }
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(200, "lbs"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/chari-gal/front.svg",
  9062. extra: 1568 / 1385,
  9063. bottom: 0.047
  9064. }
  9065. },
  9066. gigantamax: {
  9067. height: math.unit(6 * 16, "feet"),
  9068. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9069. name: "Gigantamax",
  9070. image: {
  9071. source: "./media/characters/chari-gal/gigantamax.svg",
  9072. extra: 1124 / 888,
  9073. bottom: 0.03
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(5 + 7 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(200, "feet"),
  9085. default: true
  9086. }
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(150, "lbs"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/nova/front.svg",
  9098. extra: 5000 / 4722,
  9099. bottom: 0.02
  9100. }
  9101. }
  9102. },
  9103. [
  9104. {
  9105. name: "Micro-",
  9106. height: math.unit(0.8, "inches")
  9107. },
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(2, "inches"),
  9111. default: true
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9117. {
  9118. koboldFront: {
  9119. height: math.unit(3 + 1 / 12, "feet"),
  9120. weight: math.unit(21.7, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/argent/kobold-front.svg",
  9124. extra: 1471 / 1331,
  9125. bottom: 100.8 / 1575.5
  9126. },
  9127. form: "kobold",
  9128. default: true
  9129. },
  9130. dragonFront: {
  9131. height: math.unit(75, "inches"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/argent/dragon-front.svg",
  9135. extra: 1389/1248,
  9136. bottom: 54/1443
  9137. },
  9138. form: "dragon",
  9139. },
  9140. dragonBack: {
  9141. height: math.unit(75, "inches"),
  9142. name: "Back",
  9143. image: {
  9144. source: "./media/characters/argent/dragon-back.svg",
  9145. extra: 1399/1271,
  9146. bottom: 23/1422
  9147. },
  9148. form: "dragon",
  9149. },
  9150. dragonDressed: {
  9151. height: math.unit(75, "inches"),
  9152. name: "Dressed",
  9153. image: {
  9154. source: "./media/characters/argent/dragon-dressed.svg",
  9155. extra: 1350/1215,
  9156. bottom: 26/1376
  9157. },
  9158. form: "dragon"
  9159. },
  9160. dragonHead: {
  9161. height: math.unit(23.5, "inches"),
  9162. name: "Head",
  9163. image: {
  9164. source: "./media/characters/argent/dragon-head.svg"
  9165. },
  9166. form: "dragon",
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(2, "inches"),
  9173. form: "kobold",
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(3 + 1 / 12, "feet"),
  9178. form: "kobold",
  9179. default: true
  9180. },
  9181. {
  9182. name: "Macro",
  9183. height: math.unit(120, "feet"),
  9184. form: "kobold",
  9185. },
  9186. {
  9187. name: "Speck",
  9188. height: math.unit(1, "mm"),
  9189. form: "dragon",
  9190. },
  9191. {
  9192. name: "Tiny",
  9193. height: math.unit(1, "cm"),
  9194. form: "dragon",
  9195. },
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(5, "cm"),
  9199. form: "dragon",
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(75, "inches"),
  9204. form: "dragon",
  9205. default: true
  9206. },
  9207. {
  9208. name: "Extra Tall",
  9209. height: math.unit(9, "feet"),
  9210. form: "dragon",
  9211. },
  9212. {
  9213. name: "Inconvenient",
  9214. height: math.unit(5, "meters"),
  9215. form: "dragon",
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(70, "meters"),
  9220. form: "dragon",
  9221. },
  9222. {
  9223. name: "Macro+",
  9224. height: math.unit(250, "meters"),
  9225. form: "dragon",
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(20, "km"),
  9230. form: "dragon",
  9231. },
  9232. {
  9233. name: "Mountainous",
  9234. height: math.unit(100, "km"),
  9235. form: "dragon",
  9236. },
  9237. {
  9238. name: "Continental",
  9239. height: math.unit(2, "megameters"),
  9240. form: "dragon",
  9241. },
  9242. {
  9243. name: "Too Big",
  9244. height: math.unit(900, "megameters"),
  9245. form: "dragon",
  9246. },
  9247. ],
  9248. {
  9249. "kobold": {
  9250. name: "Kobold",
  9251. default: true
  9252. },
  9253. "dragon": {
  9254. name: "Dragon",
  9255. },
  9256. }
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9260. {
  9261. lamp: {
  9262. height: math.unit(7 * 1559 / 989, "feet"),
  9263. name: "Magic Lamp",
  9264. image: {
  9265. source: "./media/characters/mira-al-cul/lamp.svg",
  9266. extra: 1617 / 1559
  9267. }
  9268. },
  9269. front: {
  9270. height: math.unit(7, "feet"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/mira-al-cul/front.svg",
  9274. extra: 1044 / 990
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Heavily Restricted",
  9281. height: math.unit(7 * 1559 / 989, "feet")
  9282. },
  9283. {
  9284. name: "Freshly Freed",
  9285. height: math.unit(50 * 1559 / 989, "feet")
  9286. },
  9287. {
  9288. name: "World Encompassing",
  9289. height: math.unit(10000 * 1559 / 989, "miles")
  9290. },
  9291. {
  9292. name: "Galactic",
  9293. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9294. },
  9295. {
  9296. name: "Palmed Universe",
  9297. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Multiversal Matriarch",
  9302. height: math.unit(8.87e10, "yottameters")
  9303. },
  9304. {
  9305. name: "Void Mother",
  9306. height: math.unit(3.14e110, "yottaparsecs")
  9307. },
  9308. {
  9309. name: "Toying with Transcendence",
  9310. height: math.unit(1e307, "meters")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9316. {
  9317. front: {
  9318. height: math.unit(17 + 1 / 12, "feet"),
  9319. weight: math.unit(476.2 * 5, "lbs"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/kuro-shi-uchū/front.svg",
  9323. extra: 2329 / 1835,
  9324. bottom: 0.02
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Micro",
  9331. height: math.unit(2, "inches")
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(12, "meters")
  9336. },
  9337. {
  9338. name: "Planetary",
  9339. height: math.unit(0.00929, "AU"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Universal",
  9344. height: math.unit(20, "gigaparsecs")
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(5 + 2 / 12, "feet"),
  9353. weight: math.unit(120, "lbs"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/katherine/front.svg",
  9357. extra: 2075 / 1969
  9358. }
  9359. },
  9360. dress: {
  9361. height: math.unit(5 + 2 / 12, "feet"),
  9362. weight: math.unit(120, "lbs"),
  9363. name: "Dress",
  9364. image: {
  9365. source: "./media/characters/katherine/dress.svg",
  9366. extra: 2258 / 2064
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(1, "inches"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Normal",
  9378. height: math.unit(5 + 2 / 12, "feet")
  9379. },
  9380. {
  9381. name: "Macro",
  9382. height: math.unit(100, "meters")
  9383. },
  9384. {
  9385. name: "Megamacro",
  9386. height: math.unit(80, "miles")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(7 + 8 / 12, "feet"),
  9395. weight: math.unit(250, "lbs"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/yevis/front.svg",
  9399. extra: 1938 / 1755
  9400. }
  9401. }
  9402. },
  9403. [
  9404. {
  9405. name: "Mortal",
  9406. height: math.unit(7 + 8 / 12, "feet")
  9407. },
  9408. {
  9409. name: "Battle",
  9410. height: math.unit(25 + 11 / 12, "feet")
  9411. },
  9412. {
  9413. name: "Wrath",
  9414. height: math.unit(1654 + 11 / 12, "feet")
  9415. },
  9416. {
  9417. name: "Planet Destroyer",
  9418. height: math.unit(12000, "miles")
  9419. },
  9420. {
  9421. name: "Galaxy Conqueror",
  9422. height: math.unit(1.45, "zettameters"),
  9423. default: true
  9424. },
  9425. {
  9426. name: "Universal War",
  9427. height: math.unit(184, "gigaparsecs")
  9428. },
  9429. {
  9430. name: "Eternity War",
  9431. height: math.unit(1.98e55, "yottaparsecs")
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(5 + 8 / 12, "feet"),
  9440. weight: math.unit(63, "kg"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/xavier/front.svg",
  9444. extra: 944 / 883
  9445. }
  9446. },
  9447. frontStretch: {
  9448. height: math.unit(5 + 8 / 12, "feet"),
  9449. weight: math.unit(63, "kg"),
  9450. name: "Stretching",
  9451. image: {
  9452. source: "./media/characters/xavier/front-stretch.svg",
  9453. extra: 962 / 820
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Normal",
  9460. height: math.unit(5 + 8 / 12, "feet")
  9461. },
  9462. {
  9463. name: "Macro",
  9464. height: math.unit(100, "meters"),
  9465. default: true
  9466. },
  9467. {
  9468. name: "McLargeHuge",
  9469. height: math.unit(10, "miles")
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9475. {
  9476. front: {
  9477. height: math.unit(5 + 5 / 12, "feet"),
  9478. weight: math.unit(150, "lb"),
  9479. name: "Front",
  9480. image: {
  9481. source: "./media/characters/joshii/front.svg",
  9482. extra: 765 / 653,
  9483. bottom: 51 / 816
  9484. }
  9485. },
  9486. foot: {
  9487. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9488. name: "Foot",
  9489. image: {
  9490. source: "./media/characters/joshii/foot.svg"
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Micro",
  9497. height: math.unit(2, "inches")
  9498. },
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(5 + 5 / 12, "feet")
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(785, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Megamacro",
  9510. height: math.unit(24.5, "miles")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/goddess-elizabeth/front.svg",
  9523. extra: 1800 / 1525,
  9524. bottom: 0.005
  9525. }
  9526. },
  9527. foot: {
  9528. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9529. name: "Foot",
  9530. image: {
  9531. source: "./media/characters/goddess-elizabeth/foot.svg"
  9532. }
  9533. },
  9534. mouth: {
  9535. height: math.unit(6, "feet"),
  9536. name: "Mouth",
  9537. image: {
  9538. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(12, "feet")
  9546. },
  9547. {
  9548. name: "Normal",
  9549. height: math.unit(80, "miles"),
  9550. default: true
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(15000, "parsecs")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9560. {
  9561. front: {
  9562. height: math.unit(5 + 9 / 12, "feet"),
  9563. weight: math.unit(144, "lb"),
  9564. name: "Front",
  9565. image: {
  9566. source: "./media/characters/kara/front.svg"
  9567. }
  9568. },
  9569. feet: {
  9570. height: math.unit(6 / 6.765, "feet"),
  9571. name: "Kara's Feet",
  9572. rename: true,
  9573. image: {
  9574. source: "./media/characters/kara/feet.svg"
  9575. }
  9576. },
  9577. },
  9578. [
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(5 + 9 / 12, "feet")
  9582. },
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(174, "feet"),
  9586. default: true
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9592. {
  9593. front: {
  9594. height: math.unit(18, "feet"),
  9595. weight: math.unit(4050, "lb"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/tyrone/front.svg",
  9599. extra: 2405 / 2270,
  9600. bottom: 182 / 2587
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(18, "feet"),
  9608. default: true
  9609. },
  9610. {
  9611. name: "Macro",
  9612. height: math.unit(300, "feet")
  9613. },
  9614. {
  9615. name: "Megamacro",
  9616. height: math.unit(15, "km")
  9617. },
  9618. {
  9619. name: "Gigamacro",
  9620. height: math.unit(500, "km")
  9621. },
  9622. {
  9623. name: "Teramacro",
  9624. height: math.unit(0.5, "gigameters")
  9625. },
  9626. {
  9627. name: "Omnimacro",
  9628. height: math.unit(1e252, "yottauniverse")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(7 + 8 / 12, "feet"),
  9637. weight: math.unit(120, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/danny/front.svg",
  9641. extra: 1490 / 1350
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(7 + 8 / 12, "feet"),
  9646. weight: math.unit(120, "lb"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/danny/back.svg",
  9650. extra: 1490 / 1350
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Normal",
  9657. height: math.unit(7 + 8 / 12, "feet"),
  9658. default: true
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(3.5, "inches"),
  9667. weight: math.unit(19, "grams"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/mallow/front.svg",
  9671. extra: 471 / 431
  9672. }
  9673. },
  9674. back: {
  9675. height: math.unit(3.5, "inches"),
  9676. weight: math.unit(19, "grams"),
  9677. name: "Back",
  9678. image: {
  9679. source: "./media/characters/mallow/back.svg",
  9680. extra: 471 / 431
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(3.5, "inches"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(9, "feet"),
  9697. weight: math.unit(230, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/starry-aqua/front.svg"
  9701. }
  9702. },
  9703. back: {
  9704. height: math.unit(9, "feet"),
  9705. weight: math.unit(230, "kg"),
  9706. name: "Back",
  9707. image: {
  9708. source: "./media/characters/starry-aqua/back.svg"
  9709. }
  9710. },
  9711. hand: {
  9712. height: math.unit(9 * 0.1168, "feet"),
  9713. name: "Hand",
  9714. image: {
  9715. source: "./media/characters/starry-aqua/hand.svg"
  9716. }
  9717. },
  9718. foot: {
  9719. height: math.unit(9 * 0.18, "feet"),
  9720. name: "Foot",
  9721. image: {
  9722. source: "./media/characters/starry-aqua/foot.svg"
  9723. }
  9724. }
  9725. },
  9726. [
  9727. {
  9728. name: "Micro",
  9729. height: math.unit(3, "inches")
  9730. },
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(9, "feet")
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(300, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(3200, "feet")
  9743. }
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(15, "feet"),
  9751. weight: math.unit(5026, "lb"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/luka-towers/front.svg",
  9755. extra: 1269/1133,
  9756. bottom: 51/1320
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(15, "feet"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Minimacro",
  9768. height: math.unit(25, "feet")
  9769. },
  9770. {
  9771. name: "Macro",
  9772. height: math.unit(320, "feet")
  9773. },
  9774. {
  9775. name: "Megamacro",
  9776. height: math.unit(35000, "feet")
  9777. },
  9778. {
  9779. name: "Gigamacro",
  9780. height: math.unit(4000, "miles")
  9781. },
  9782. {
  9783. name: "Teramacro",
  9784. height: math.unit(15000, "miles")
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9790. {
  9791. front: {
  9792. height: math.unit(6, "feet"),
  9793. weight: math.unit(150, "lb"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/natalie-nightring/front.svg",
  9797. extra: 1,
  9798. bottom: 0.06
  9799. }
  9800. },
  9801. },
  9802. [
  9803. {
  9804. name: "Uh Oh",
  9805. height: math.unit(0.1, "mm")
  9806. },
  9807. {
  9808. name: "Small",
  9809. height: math.unit(3, "inches")
  9810. },
  9811. {
  9812. name: "Human Scale",
  9813. height: math.unit(6, "feet")
  9814. },
  9815. {
  9816. name: "Librarian",
  9817. height: math.unit(50, "feet"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Immense",
  9822. height: math.unit(200, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(180, "lbs"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/danni-rosie/front.svg",
  9835. extra: 1260 / 1128,
  9836. bottom: 0.022
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Micro",
  9843. height: math.unit(2, "inches"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(5 + 9 / 12, "feet"),
  9853. weight: math.unit(220, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/samantha-kruse/front.svg",
  9857. extra: (985 / 935),
  9858. bottom: 0.03
  9859. }
  9860. },
  9861. frontUndressed: {
  9862. height: math.unit(5 + 9 / 12, "feet"),
  9863. weight: math.unit(220, "lb"),
  9864. name: "Front (Undressed)",
  9865. image: {
  9866. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9867. extra: (973 / 923),
  9868. bottom: 0.025
  9869. }
  9870. },
  9871. fat: {
  9872. height: math.unit(5 + 9 / 12, "feet"),
  9873. weight: math.unit(900, "lb"),
  9874. name: "Front (Fat)",
  9875. image: {
  9876. source: "./media/characters/samantha-kruse/fat.svg",
  9877. extra: 2688 / 2561
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(5 + 9 / 12, "feet"),
  9885. default: true
  9886. }
  9887. ]
  9888. ))
  9889. characterMakers.push(() => makeCharacter(
  9890. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9891. {
  9892. back: {
  9893. height: math.unit(5 + 4 / 12, "feet"),
  9894. weight: math.unit(4963, "lb"),
  9895. name: "Back",
  9896. image: {
  9897. source: "./media/characters/amelia-rosie/back.svg",
  9898. extra: 1113 / 963,
  9899. bottom: 0.01
  9900. }
  9901. },
  9902. },
  9903. [
  9904. {
  9905. name: "Level 0",
  9906. height: math.unit(5 + 4 / 12, "feet")
  9907. },
  9908. {
  9909. name: "Level 1",
  9910. height: math.unit(164597, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Level 2",
  9915. height: math.unit(956243, "miles")
  9916. },
  9917. {
  9918. name: "Level 3",
  9919. height: math.unit(29421709423, "miles")
  9920. },
  9921. {
  9922. name: "Level 4",
  9923. height: math.unit(154, "lightyears")
  9924. },
  9925. {
  9926. name: "Level 5",
  9927. height: math.unit(4738272, "lightyears")
  9928. },
  9929. {
  9930. name: "Level 6",
  9931. height: math.unit(145787152896, "lightyears")
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(5 + 11 / 12, "feet"),
  9940. weight: math.unit(65, "kg"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/rook-kitara/front.svg",
  9944. extra: 1347 / 1274,
  9945. bottom: 0.005
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Totally Unfair",
  9952. height: math.unit(1.8, "mm")
  9953. },
  9954. {
  9955. name: "Lap Rookie",
  9956. height: math.unit(1.4, "feet")
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(5 + 11 / 12, "feet"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "How Did This Happen",
  9965. height: math.unit(80, "miles")
  9966. }
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(7, "feet"),
  9974. weight: math.unit(300, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/pisces/front.svg",
  9978. extra: 2255 / 2115,
  9979. bottom: 0.03
  9980. }
  9981. },
  9982. back: {
  9983. height: math.unit(7, "feet"),
  9984. weight: math.unit(300, "lb"),
  9985. name: "Back",
  9986. image: {
  9987. source: "./media/characters/pisces/back.svg",
  9988. extra: 2146 / 2055,
  9989. bottom: 0.04
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(7, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Swimming Pool",
  10001. height: math.unit(12.2, "meters")
  10002. },
  10003. {
  10004. name: "Olympic Swimming Pool",
  10005. height: math.unit(56.3, "meters")
  10006. },
  10007. {
  10008. name: "Lake Superior",
  10009. height: math.unit(93900, "meters")
  10010. },
  10011. {
  10012. name: "Mediterranean Sea",
  10013. height: math.unit(644457, "meters")
  10014. },
  10015. {
  10016. name: "World's Oceans",
  10017. height: math.unit(4567491, "meters")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(2.3, "meters"),
  10026. weight: math.unit(120, "kg"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/zelas/front.svg"
  10030. }
  10031. },
  10032. side: {
  10033. height: math.unit(2.3, "meters"),
  10034. weight: math.unit(120, "kg"),
  10035. name: "Side",
  10036. image: {
  10037. source: "./media/characters/zelas/side.svg"
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(2.3, "meters"),
  10042. weight: math.unit(120, "kg"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/zelas/back.svg"
  10046. }
  10047. },
  10048. foot: {
  10049. height: math.unit(1.116, "feet"),
  10050. name: "Foot",
  10051. image: {
  10052. source: "./media/characters/zelas/foot.svg"
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(2.3, "meters")
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(30, "meters"),
  10064. default: true
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(1, "inch"),
  10073. weight: math.unit(0.21, "grams"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/talbot/front.svg",
  10077. extra: 594 / 544
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Micro",
  10084. height: math.unit(1, "inch"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10091. {
  10092. front: {
  10093. height: math.unit(3 + 3 / 12, "feet"),
  10094. weight: math.unit(51.8, "lb"),
  10095. name: "Front",
  10096. image: {
  10097. source: "./media/characters/fliss/front.svg",
  10098. extra: 840 / 640
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Teeny Tiny",
  10105. height: math.unit(1, "mm")
  10106. },
  10107. {
  10108. name: "Small",
  10109. height: math.unit(1, "inch"),
  10110. default: true
  10111. },
  10112. {
  10113. name: "Standard Sylveon",
  10114. height: math.unit(3 + 3 / 12, "feet")
  10115. },
  10116. {
  10117. name: "Large Nuisance",
  10118. height: math.unit(33, "feet")
  10119. },
  10120. {
  10121. name: "City Filler",
  10122. height: math.unit(3000, "feet")
  10123. },
  10124. {
  10125. name: "New Horizon",
  10126. height: math.unit(6000, "miles")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(5, "cm"),
  10135. weight: math.unit(1.94, "g"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/fleta/front.svg",
  10139. extra: 835 / 803
  10140. }
  10141. },
  10142. back: {
  10143. height: math.unit(5, "cm"),
  10144. weight: math.unit(1.94, "g"),
  10145. name: "Back",
  10146. image: {
  10147. source: "./media/characters/fleta/back.svg",
  10148. extra: 835 / 803
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(5, "cm"),
  10156. default: true
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(6, "feet"),
  10165. weight: math.unit(225, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/dominic/front.svg",
  10169. extra: 1770 / 1620,
  10170. bottom: 0.025
  10171. }
  10172. },
  10173. back: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(225, "lb"),
  10176. name: "Back",
  10177. image: {
  10178. source: "./media/characters/dominic/back.svg",
  10179. extra: 1745 / 1620,
  10180. bottom: 0.065
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Nano",
  10187. height: math.unit(0.1, "mm")
  10188. },
  10189. {
  10190. name: "Micro-",
  10191. height: math.unit(1, "mm")
  10192. },
  10193. {
  10194. name: "Micro",
  10195. height: math.unit(4, "inches")
  10196. },
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(6 + 4 / 12, "feet"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(115, "feet")
  10205. },
  10206. {
  10207. name: "Macro+",
  10208. height: math.unit(955, "feet")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(8990, "feet")
  10213. },
  10214. {
  10215. name: "Gigmacro",
  10216. height: math.unit(9310, "miles")
  10217. },
  10218. {
  10219. name: "Teramacro",
  10220. height: math.unit(1567005010, "miles")
  10221. },
  10222. {
  10223. name: "Examacro",
  10224. height: math.unit(1425, "parsecs")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(400, "feet"),
  10233. weight: math.unit(44444444, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/major-colonel/front.svg"
  10237. }
  10238. },
  10239. back: {
  10240. height: math.unit(400, "feet"),
  10241. weight: math.unit(44444444, "lb"),
  10242. name: "Back",
  10243. image: {
  10244. source: "./media/characters/major-colonel/back.svg"
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(400, "feet"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10258. {
  10259. catFront: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(120, "lb"),
  10262. name: "Front (Cat Side)",
  10263. image: {
  10264. source: "./media/characters/axel-lycan/cat-front.svg",
  10265. extra: 430 / 402,
  10266. bottom: 43 / 472.35
  10267. }
  10268. },
  10269. catBack: {
  10270. height: math.unit(6, "feet"),
  10271. weight: math.unit(120, "lb"),
  10272. name: "Back (Cat Side)",
  10273. image: {
  10274. source: "./media/characters/axel-lycan/cat-back.svg",
  10275. extra: 447 / 419,
  10276. bottom: 23.3 / 469
  10277. }
  10278. },
  10279. wolfFront: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(120, "lb"),
  10282. name: "Front (Wolf Side)",
  10283. image: {
  10284. source: "./media/characters/axel-lycan/wolf-front.svg",
  10285. extra: 485 / 456,
  10286. bottom: 19 / 504
  10287. }
  10288. },
  10289. wolfBack: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(120, "lb"),
  10292. name: "Back (Wolf Side)",
  10293. image: {
  10294. source: "./media/characters/axel-lycan/wolf-back.svg",
  10295. extra: 475 / 438,
  10296. bottom: 39.2 / 514
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Macro",
  10303. height: math.unit(1, "km"),
  10304. default: true
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(5 + 9 / 12, "feet"),
  10313. weight: math.unit(175, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/vanrel-hyena/front.svg",
  10317. extra: 1086 / 1010,
  10318. bottom: 0.04
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(5 + 9 / 12, "feet"),
  10326. default: true
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(103, "lb"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/abbott-absol/front.svg",
  10339. extra: 2010 / 1842
  10340. }
  10341. },
  10342. },
  10343. [
  10344. {
  10345. name: "Megamicro",
  10346. height: math.unit(0.1, "mm")
  10347. },
  10348. {
  10349. name: "Micro",
  10350. height: math.unit(1, "inch")
  10351. },
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(6, "feet"),
  10355. default: true
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(264, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/hector/front.svg",
  10368. extra: 2280 / 2130,
  10369. bottom: 0.07
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(12.25, "foot"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(160, "feet")
  10382. },
  10383. ]
  10384. ))
  10385. characterMakers.push(() => makeCharacter(
  10386. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10387. {
  10388. front: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(150, "lb"),
  10391. name: "Front",
  10392. image: {
  10393. source: "./media/characters/sal/front.svg",
  10394. extra: 1846 / 1699,
  10395. bottom: 0.04
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Megamacro",
  10402. height: math.unit(10, "miles"),
  10403. default: true
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10409. {
  10410. front: {
  10411. height: math.unit(3, "meters"),
  10412. weight: math.unit(450, "kg"),
  10413. name: "front",
  10414. image: {
  10415. source: "./media/characters/ranger/front.svg",
  10416. extra: 2401 / 2243,
  10417. bottom: 0.05
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Normal",
  10424. height: math.unit(3, "meters"),
  10425. default: true
  10426. },
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(14, "feet"),
  10434. weight: math.unit(800, "kg"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/theresa/front.svg",
  10438. extra: 3575 / 3346,
  10439. bottom: 0.03
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Normal",
  10446. height: math.unit(14, "feet"),
  10447. default: true
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10453. {
  10454. front: {
  10455. height: math.unit(6, "feet"),
  10456. weight: math.unit(3, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/ine/front.svg",
  10460. extra: 678 / 539,
  10461. bottom: 0.023
  10462. }
  10463. },
  10464. },
  10465. [
  10466. {
  10467. name: "Normal",
  10468. height: math.unit(2.265, "feet"),
  10469. default: true
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10475. {
  10476. front: {
  10477. height: math.unit(5, "feet"),
  10478. weight: math.unit(30, "kg"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/vial/front.svg",
  10482. extra: 1365 / 1277,
  10483. bottom: 0.04
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(5, "feet"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10497. {
  10498. side: {
  10499. height: math.unit(3.4, "meters"),
  10500. weight: math.unit(1000, "lb"),
  10501. name: "Side",
  10502. image: {
  10503. source: "./media/characters/rovoska/side.svg",
  10504. extra: 4403 / 1515
  10505. }
  10506. },
  10507. },
  10508. [
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(3.4, "meters"),
  10512. default: true
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(8, "feet"),
  10521. weight: math.unit(315, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/gunner-rotthbauer/front.svg"
  10525. }
  10526. },
  10527. back: {
  10528. height: math.unit(8, "feet"),
  10529. weight: math.unit(315, "lb"),
  10530. name: "Back",
  10531. image: {
  10532. source: "./media/characters/gunner-rotthbauer/back.svg"
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Micro",
  10539. height: math.unit(3.5, "inches")
  10540. },
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(8, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(250, "feet")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(1, "AU")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(5 + 5 / 12, "feet"),
  10561. weight: math.unit(140, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/allatia/front.svg",
  10565. extra: 1227 / 1180,
  10566. bottom: 0.027
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(5 + 5 / 12, "feet")
  10574. },
  10575. {
  10576. name: "Macro",
  10577. height: math.unit(250, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(8, "miles")
  10583. }
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(6, "feet"),
  10591. weight: math.unit(120, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/tene/front.svg",
  10595. extra: 814/750,
  10596. bottom: 36/850
  10597. }
  10598. },
  10599. stomping: {
  10600. height: math.unit(2.025, "meters"),
  10601. weight: math.unit(120, "lb"),
  10602. name: "Stomping",
  10603. image: {
  10604. source: "./media/characters/tene/stomping.svg",
  10605. extra: 885/821,
  10606. bottom: 15/900
  10607. }
  10608. },
  10609. sitting: {
  10610. height: math.unit(1, "meter"),
  10611. weight: math.unit(120, "lb"),
  10612. name: "Sitting",
  10613. image: {
  10614. source: "./media/characters/tene/sitting.svg",
  10615. extra: 396/366,
  10616. bottom: 79/475
  10617. }
  10618. },
  10619. smiling: {
  10620. height: math.unit(1.2, "feet"),
  10621. name: "Smiling",
  10622. image: {
  10623. source: "./media/characters/tene/smiling.svg",
  10624. extra: 1364/1071,
  10625. bottom: 0/1364
  10626. }
  10627. },
  10628. smug: {
  10629. height: math.unit(1.3, "feet"),
  10630. name: "Smug",
  10631. image: {
  10632. source: "./media/characters/tene/smug.svg",
  10633. extra: 1323/1082,
  10634. bottom: 0/1323
  10635. }
  10636. },
  10637. feral: {
  10638. height: math.unit(3.9, "feet"),
  10639. weight: math.unit(250, "lb"),
  10640. name: "Feral",
  10641. image: {
  10642. source: "./media/characters/tene/feral.svg",
  10643. extra: 717 / 458,
  10644. bottom: 0.179
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(6, "feet")
  10652. },
  10653. {
  10654. name: "Macro",
  10655. height: math.unit(300, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(5, "miles")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10666. {
  10667. side: {
  10668. height: math.unit(6, "feet"),
  10669. name: "Side",
  10670. image: {
  10671. source: "./media/characters/evander/side.svg",
  10672. extra: 877 / 477
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(0.83, "meters"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(12, "feet"),
  10689. weight: math.unit(1000, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10693. extra: 1762 / 1611
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(12, "feet"),
  10698. weight: math.unit(1000, "lb"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10702. extra: 1762 / 1611
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(12, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Kaiju",
  10714. height: math.unit(150, "feet")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/zero-alurus/front.svg"
  10727. }
  10728. },
  10729. back: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Back",
  10733. image: {
  10734. source: "./media/characters/zero-alurus/back.svg"
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(5 + 10 / 12, "feet")
  10742. },
  10743. {
  10744. name: "Macro",
  10745. height: math.unit(60, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Macro+",
  10750. height: math.unit(450, "feet")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(200, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/mega-shi/front.svg",
  10763. extra: 1279 / 1250,
  10764. bottom: 0.02
  10765. }
  10766. },
  10767. back: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(200, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/mega-shi/back.svg",
  10773. extra: 1279 / 1250,
  10774. bottom: 0.02
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Micro",
  10781. height: math.unit(16 + 6 / 12, "feet")
  10782. },
  10783. {
  10784. name: "Third Dimension",
  10785. height: math.unit(40, "meters")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(660, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(10, "miles")
  10795. },
  10796. {
  10797. name: "Planetary Launch",
  10798. height: math.unit(500, "miles")
  10799. },
  10800. {
  10801. name: "Interstellar",
  10802. height: math.unit(1e9, "miles")
  10803. },
  10804. {
  10805. name: "Leaving the Universe",
  10806. height: math.unit(1, "gigaparsec")
  10807. },
  10808. {
  10809. name: "Travelling Universes",
  10810. height: math.unit(30e15, "parsecs")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(5 + 4/12, "feet"),
  10819. weight: math.unit(120, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/odyssey/front.svg",
  10823. extra: 1747/1571,
  10824. bottom: 47/1794
  10825. }
  10826. },
  10827. side: {
  10828. height: math.unit(5.1, "feet"),
  10829. weight: math.unit(120, "lb"),
  10830. name: "Side",
  10831. image: {
  10832. source: "./media/characters/odyssey/side.svg",
  10833. extra: 1847/1619,
  10834. bottom: 47/1894
  10835. }
  10836. },
  10837. lounging: {
  10838. height: math.unit(1.464, "feet"),
  10839. weight: math.unit(120, "lb"),
  10840. name: "Lounging",
  10841. image: {
  10842. source: "./media/characters/odyssey/lounging.svg",
  10843. extra: 1235/837,
  10844. bottom: 551/1786
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(5 + 4 / 12, "feet")
  10852. },
  10853. {
  10854. name: "Macro",
  10855. height: math.unit(1, "km")
  10856. },
  10857. {
  10858. name: "Megamacro",
  10859. height: math.unit(3000, "km")
  10860. },
  10861. {
  10862. name: "Gigamacro",
  10863. height: math.unit(1, "AU"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Omniversal",
  10868. height: math.unit(100e14, "lightyears")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(300, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/mekuto/front.svg",
  10881. extra: 921 / 832,
  10882. bottom: 0.03
  10883. }
  10884. },
  10885. hand: {
  10886. height: math.unit(6 / 10.24, "feet"),
  10887. name: "Hand",
  10888. image: {
  10889. source: "./media/characters/mekuto/hand.svg"
  10890. }
  10891. },
  10892. foot: {
  10893. height: math.unit(6 / 5.05, "feet"),
  10894. name: "Foot",
  10895. image: {
  10896. source: "./media/characters/mekuto/foot.svg"
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Minimicro",
  10903. height: math.unit(0.2, "inches")
  10904. },
  10905. {
  10906. name: "Micro",
  10907. height: math.unit(1.5, "inches")
  10908. },
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(5 + 11 / 12, "feet"),
  10912. default: true
  10913. },
  10914. {
  10915. name: "Minimacro",
  10916. height: math.unit(17 + 9 / 12, "feet")
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(177.5, "feet")
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(152, "miles")
  10925. },
  10926. ]
  10927. ))
  10928. characterMakers.push(() => makeCharacter(
  10929. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10930. {
  10931. front: {
  10932. height: math.unit(6.5, "inches"),
  10933. weight: math.unit(13, "oz"),
  10934. name: "Front",
  10935. image: {
  10936. source: "./media/characters/dafydd-tomos/front.svg",
  10937. extra: 2990 / 2603,
  10938. bottom: 0.03
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Micro",
  10945. height: math.unit(6.5, "inches"),
  10946. default: true
  10947. },
  10948. ]
  10949. ))
  10950. characterMakers.push(() => makeCharacter(
  10951. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10952. {
  10953. front: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Front",
  10957. image: {
  10958. source: "./media/characters/splinter/front.svg",
  10959. extra: 2990 / 2882,
  10960. bottom: 0.04
  10961. }
  10962. },
  10963. back: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Back",
  10967. image: {
  10968. source: "./media/characters/splinter/back.svg",
  10969. extra: 2990 / 2882,
  10970. bottom: 0.04
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(6, "feet")
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(230, "meters"),
  10982. default: true
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(4 + 10 / 12, "feet"),
  10991. weight: math.unit(480, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/snow-gabumon/front.svg",
  10995. extra: 1140 / 963,
  10996. bottom: 0.058
  10997. }
  10998. },
  10999. back: {
  11000. height: math.unit(4 + 10 / 12, "feet"),
  11001. weight: math.unit(480, "lb"),
  11002. name: "Back",
  11003. image: {
  11004. source: "./media/characters/snow-gabumon/back.svg",
  11005. extra: 1115 / 962,
  11006. bottom: 0.041
  11007. }
  11008. },
  11009. frontUndresed: {
  11010. height: math.unit(4 + 10 / 12, "feet"),
  11011. weight: math.unit(480, "lb"),
  11012. name: "Front (Undressed)",
  11013. image: {
  11014. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11015. extra: 1061 / 960,
  11016. bottom: 0.045
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(1, "inch")
  11024. },
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(4 + 10 / 12, "feet"),
  11028. default: true
  11029. },
  11030. {
  11031. name: "Macro",
  11032. height: math.unit(200, "feet")
  11033. },
  11034. {
  11035. name: "Megamacro",
  11036. height: math.unit(120, "miles")
  11037. },
  11038. {
  11039. name: "Gigamacro",
  11040. height: math.unit(9800, "miles")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11046. {
  11047. front: {
  11048. height: math.unit(1.7, "meters"),
  11049. weight: math.unit(140, "lb"),
  11050. name: "Front",
  11051. image: {
  11052. source: "./media/characters/moody/front.svg",
  11053. extra: 3226 / 3007,
  11054. bottom: 0.087
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(1, "mm")
  11062. },
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(1.7, "meters"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Macro",
  11070. height: math.unit(80, "meters")
  11071. },
  11072. {
  11073. name: "Macro+",
  11074. height: math.unit(500, "meters")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(150, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/zyas/front.svg",
  11087. extra: 1180 / 1120,
  11088. bottom: 0.045
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(10, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(500, "feet")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(5, "miles")
  11105. },
  11106. {
  11107. name: "Teramacro",
  11108. height: math.unit(150000, "miles")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/cuon/front.svg",
  11121. extra: 1390 / 1320,
  11122. bottom: 0.008
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Micro",
  11129. height: math.unit(3, "inches")
  11130. },
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(18 + 9 / 12, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Macro",
  11138. height: math.unit(360, "feet")
  11139. },
  11140. {
  11141. name: "Megamacro",
  11142. height: math.unit(360, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(2.4, "meters"),
  11151. weight: math.unit(70, "kg"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/nyanuxk/front.svg",
  11155. extra: 1172 / 1084,
  11156. bottom: 0.065
  11157. }
  11158. },
  11159. side: {
  11160. height: math.unit(2.4, "meters"),
  11161. weight: math.unit(70, "kg"),
  11162. name: "Side",
  11163. image: {
  11164. source: "./media/characters/nyanuxk/side.svg",
  11165. extra: 1190 / 1132,
  11166. bottom: 0.007
  11167. }
  11168. },
  11169. back: {
  11170. height: math.unit(2.4, "meters"),
  11171. weight: math.unit(70, "kg"),
  11172. name: "Back",
  11173. image: {
  11174. source: "./media/characters/nyanuxk/back.svg",
  11175. extra: 1200 / 1141,
  11176. bottom: 0.015
  11177. }
  11178. },
  11179. foot: {
  11180. height: math.unit(0.52, "meters"),
  11181. name: "Foot",
  11182. image: {
  11183. source: "./media/characters/nyanuxk/foot.svg"
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Micro",
  11190. height: math.unit(2, "cm")
  11191. },
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(2.4, "meters"),
  11195. default: true
  11196. },
  11197. {
  11198. name: "Smaller Macro",
  11199. height: math.unit(120, "meters")
  11200. },
  11201. {
  11202. name: "Bigger Macro",
  11203. height: math.unit(1.2, "km")
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(15, "kilometers")
  11208. },
  11209. {
  11210. name: "Gigamacro",
  11211. height: math.unit(2000, "km")
  11212. },
  11213. {
  11214. name: "Teramacro",
  11215. height: math.unit(500000, "km")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11221. {
  11222. side: {
  11223. height: math.unit(6, "feet"),
  11224. name: "Side",
  11225. image: {
  11226. source: "./media/characters/ailbhe/side.svg",
  11227. extra: 757 / 464,
  11228. bottom: 0.041
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(1.07, "meters"),
  11236. default: true
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(120, "kg"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/zevulfius/front.svg",
  11249. extra: 965 / 903
  11250. }
  11251. },
  11252. side: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(120, "kg"),
  11255. name: "Side",
  11256. image: {
  11257. source: "./media/characters/zevulfius/side.svg",
  11258. extra: 939 / 900
  11259. }
  11260. },
  11261. back: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(120, "kg"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/zevulfius/back.svg",
  11267. extra: 918 / 854,
  11268. bottom: 0.005
  11269. }
  11270. },
  11271. foot: {
  11272. height: math.unit(6 / 3.72, "feet"),
  11273. name: "Foot",
  11274. image: {
  11275. source: "./media/characters/zevulfius/foot.svg"
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(750, "meters")
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(20, "km"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Gigamacro",
  11291. height: math.unit(2000, "km")
  11292. },
  11293. {
  11294. name: "Teramacro",
  11295. height: math.unit(250000, "km")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11301. {
  11302. front: {
  11303. height: math.unit(100, "feet"),
  11304. weight: math.unit(350, "kg"),
  11305. name: "Front",
  11306. image: {
  11307. source: "./media/characters/rikes/front.svg",
  11308. extra: 1565 / 1483,
  11309. bottom: 0.017
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(100, "feet"),
  11317. default: true
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(8, "feet"),
  11326. weight: math.unit(356, "lb"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/adam-silver-mane/front.svg",
  11330. extra: 1036/937,
  11331. bottom: 63/1099
  11332. }
  11333. },
  11334. side: {
  11335. height: math.unit(8, "feet"),
  11336. weight: math.unit(356, "lb"),
  11337. name: "Side",
  11338. image: {
  11339. source: "./media/characters/adam-silver-mane/side.svg",
  11340. extra: 997/901,
  11341. bottom: 59/1056
  11342. }
  11343. },
  11344. frontNsfw: {
  11345. height: math.unit(8, "feet"),
  11346. weight: math.unit(356, "lb"),
  11347. name: "Front (NSFW)",
  11348. image: {
  11349. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11350. extra: 1036/937,
  11351. bottom: 63/1099
  11352. }
  11353. },
  11354. sideNsfw: {
  11355. height: math.unit(8, "feet"),
  11356. weight: math.unit(356, "lb"),
  11357. name: "Side (NSFW)",
  11358. image: {
  11359. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11360. extra: 997/901,
  11361. bottom: 59/1056
  11362. }
  11363. },
  11364. dick: {
  11365. height: math.unit(2.1, "feet"),
  11366. name: "Dick",
  11367. image: {
  11368. source: "./media/characters/adam-silver-mane/dick.svg"
  11369. }
  11370. },
  11371. taur: {
  11372. height: math.unit(16, "feet"),
  11373. weight: math.unit(1500, "kg"),
  11374. name: "Taur",
  11375. image: {
  11376. source: "./media/characters/adam-silver-mane/taur.svg",
  11377. extra: 1713 / 1571,
  11378. bottom: 0.01
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(8, "feet")
  11386. },
  11387. {
  11388. name: "Minimacro",
  11389. height: math.unit(80, "feet")
  11390. },
  11391. {
  11392. name: "MDA",
  11393. height: math.unit(80, "meters")
  11394. },
  11395. {
  11396. name: "Macro",
  11397. height: math.unit(800, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Megamacro",
  11402. height: math.unit(8000, "feet")
  11403. },
  11404. {
  11405. name: "Gigamacro",
  11406. height: math.unit(800, "miles")
  11407. },
  11408. {
  11409. name: "Teramacro",
  11410. height: math.unit(80000, "miles")
  11411. },
  11412. {
  11413. name: "Celestial",
  11414. height: math.unit(8e6, "miles")
  11415. },
  11416. {
  11417. name: "Star Dragon",
  11418. height: math.unit(800000, "parsecs")
  11419. },
  11420. {
  11421. name: "Godly",
  11422. height: math.unit(800, "teraparsecs")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/ky'owin/front.svg",
  11435. extra: 3888 / 3068,
  11436. bottom: 0.015
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(6 + 8 / 12, "feet")
  11444. },
  11445. {
  11446. name: "Large",
  11447. height: math.unit(68, "feet")
  11448. },
  11449. {
  11450. name: "Macro",
  11451. height: math.unit(132, "feet")
  11452. },
  11453. {
  11454. name: "Macro+",
  11455. height: math.unit(340, "feet")
  11456. },
  11457. {
  11458. name: "Macro++",
  11459. height: math.unit(680, "feet"),
  11460. default: true
  11461. },
  11462. {
  11463. name: "Megamacro",
  11464. height: math.unit(1, "mile")
  11465. },
  11466. {
  11467. name: "Megamacro+",
  11468. height: math.unit(10, "miles")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(4, "feet"),
  11477. weight: math.unit(50, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/mal/front.svg",
  11481. extra: 785 / 724,
  11482. bottom: 0.07
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Micro",
  11489. height: math.unit(4, "inches")
  11490. },
  11491. {
  11492. name: "Normal",
  11493. height: math.unit(4, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(200, "feet")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11504. {
  11505. front: {
  11506. height: math.unit(6, "feet"),
  11507. weight: math.unit(150, "lb"),
  11508. name: "Front",
  11509. image: {
  11510. source: "./media/characters/jordan-deware/front.svg",
  11511. extra: 1191 / 1012
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Nano",
  11518. height: math.unit(0.01, "mm")
  11519. },
  11520. {
  11521. name: "Minimicro",
  11522. height: math.unit(1, "mm")
  11523. },
  11524. {
  11525. name: "Micro",
  11526. height: math.unit(0.5, "inches")
  11527. },
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(4, "feet"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Minimacro",
  11535. height: math.unit(40, "meters")
  11536. },
  11537. {
  11538. name: "Small Macro",
  11539. height: math.unit(400, "meters")
  11540. },
  11541. {
  11542. name: "Macro",
  11543. height: math.unit(4, "miles")
  11544. },
  11545. {
  11546. name: "Megamacro",
  11547. height: math.unit(40, "miles")
  11548. },
  11549. {
  11550. name: "Megamacro+",
  11551. height: math.unit(400, "miles")
  11552. },
  11553. {
  11554. name: "Gigamacro",
  11555. height: math.unit(400000, "miles")
  11556. },
  11557. ]
  11558. ))
  11559. characterMakers.push(() => makeCharacter(
  11560. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11561. {
  11562. side: {
  11563. height: math.unit(6, "feet"),
  11564. weight: math.unit(150, "lb"),
  11565. name: "Side",
  11566. image: {
  11567. source: "./media/characters/kimiko/side.svg",
  11568. extra: 600 / 358
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(15, "feet"),
  11576. default: true
  11577. },
  11578. {
  11579. name: "Macro",
  11580. height: math.unit(220, "feet")
  11581. },
  11582. {
  11583. name: "Macro+",
  11584. height: math.unit(1450, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(11500, "feet")
  11589. },
  11590. {
  11591. name: "Gigamacro",
  11592. height: math.unit(9500, "miles")
  11593. },
  11594. {
  11595. name: "Teramacro",
  11596. height: math.unit(2208005005, "miles")
  11597. },
  11598. {
  11599. name: "Examacro",
  11600. height: math.unit(2750, "parsecs")
  11601. },
  11602. {
  11603. name: "Zettamacro",
  11604. height: math.unit(101500, "parsecs")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(6, "feet"),
  11613. weight: math.unit(70, "kg"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/andrew-sleepy/front.svg"
  11617. }
  11618. },
  11619. side: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(70, "kg"),
  11622. name: "Side",
  11623. image: {
  11624. source: "./media/characters/andrew-sleepy/side.svg"
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(1, "mm"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/judio/front.svg",
  11645. extra: 1258 / 1110
  11646. }
  11647. },
  11648. },
  11649. [
  11650. {
  11651. name: "Normal",
  11652. height: math.unit(5 + 6 / 12, "feet")
  11653. },
  11654. {
  11655. name: "Macro",
  11656. height: math.unit(1000, "feet"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Megamacro",
  11661. height: math.unit(10, "miles")
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11667. {
  11668. frontDressed: {
  11669. height: math.unit(6, "feet"),
  11670. weight: math.unit(68, "kg"),
  11671. name: "Front (Dressed)",
  11672. image: {
  11673. source: "./media/characters/nomaxice/front-dressed.svg",
  11674. extra: 1137/824,
  11675. bottom: 74/1211
  11676. }
  11677. },
  11678. frontShorts: {
  11679. height: math.unit(6, "feet"),
  11680. weight: math.unit(68, "kg"),
  11681. name: "Front (Shorts)",
  11682. image: {
  11683. source: "./media/characters/nomaxice/front-shorts.svg",
  11684. extra: 1137/824,
  11685. bottom: 74/1211
  11686. }
  11687. },
  11688. back: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(68, "kg"),
  11691. name: "Back",
  11692. image: {
  11693. source: "./media/characters/nomaxice/back.svg",
  11694. extra: 822/786,
  11695. bottom: 39/861
  11696. }
  11697. },
  11698. hand: {
  11699. height: math.unit(0.565, "feet"),
  11700. name: "Hand",
  11701. image: {
  11702. source: "./media/characters/nomaxice/hand.svg"
  11703. }
  11704. },
  11705. foot: {
  11706. height: math.unit(1, "feet"),
  11707. name: "Foot",
  11708. image: {
  11709. source: "./media/characters/nomaxice/foot.svg"
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Micro",
  11716. height: math.unit(8, "cm")
  11717. },
  11718. {
  11719. name: "Norm",
  11720. height: math.unit(1.82, "m")
  11721. },
  11722. {
  11723. name: "Norm+",
  11724. height: math.unit(8.8, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Big",
  11729. height: math.unit(8, "meters")
  11730. },
  11731. {
  11732. name: "Macro",
  11733. height: math.unit(18, "meters")
  11734. },
  11735. {
  11736. name: "Macro+",
  11737. height: math.unit(88, "meters")
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(12, "feet"),
  11746. weight: math.unit(1.5, "tons"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/dydros/front.svg",
  11750. extra: 863 / 800,
  11751. bottom: 0.015
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(12, "feet"),
  11756. weight: math.unit(1.5, "tons"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/dydros/back.svg",
  11760. extra: 900 / 843,
  11761. bottom: 0.005
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(12, "feet"),
  11769. default: true
  11770. },
  11771. ]
  11772. ))
  11773. characterMakers.push(() => makeCharacter(
  11774. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11775. {
  11776. front: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(100, "kg"),
  11779. name: "Front",
  11780. image: {
  11781. source: "./media/characters/riggi/front.svg",
  11782. extra: 5787 / 5303
  11783. }
  11784. },
  11785. hyper: {
  11786. height: math.unit(6 * 5 / 3, "feet"),
  11787. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11788. name: "Hyper",
  11789. image: {
  11790. source: "./media/characters/riggi/hyper.svg",
  11791. extra: 3595 / 3485
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Small Macro",
  11798. height: math.unit(50, "feet")
  11799. },
  11800. {
  11801. name: "Default",
  11802. height: math.unit(200, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Loom",
  11807. height: math.unit(10000, "feet")
  11808. },
  11809. {
  11810. name: "Cruising Altitude",
  11811. height: math.unit(30000, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(100, "miles")
  11816. },
  11817. {
  11818. name: "Continent Sized",
  11819. height: math.unit(2800, "miles")
  11820. },
  11821. {
  11822. name: "Earth Sized",
  11823. height: math.unit(8000, "miles")
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(250, "lb"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/alexi/front.svg",
  11836. extra: 3483 / 3291,
  11837. bottom: 0.04
  11838. }
  11839. },
  11840. back: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(250, "lb"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/alexi/back.svg",
  11846. extra: 3533 / 3356,
  11847. bottom: 0.021
  11848. }
  11849. },
  11850. frontTransforming: {
  11851. height: math.unit(8.58, "feet"),
  11852. weight: math.unit(1300, "lb"),
  11853. name: "Transforming",
  11854. image: {
  11855. source: "./media/characters/alexi/front-transforming.svg",
  11856. extra: 437 / 409,
  11857. bottom: 19 / 458.66
  11858. }
  11859. },
  11860. frontTransformed: {
  11861. height: math.unit(12.5, "feet"),
  11862. weight: math.unit(4000, "lb"),
  11863. name: "Transformed",
  11864. image: {
  11865. source: "./media/characters/alexi/front-transformed.svg",
  11866. extra: 639 / 614,
  11867. bottom: 30.55 / 671
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Normal",
  11874. height: math.unit(14, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Minimacro",
  11879. height: math.unit(30, "meters")
  11880. },
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(500, "meters")
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(9000, "km")
  11888. },
  11889. {
  11890. name: "Teramacro",
  11891. height: math.unit(384000, "km")
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11897. {
  11898. front: {
  11899. height: math.unit(6, "feet"),
  11900. weight: math.unit(150, "lb"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/kayroo/front.svg",
  11904. extra: 1153 / 1038,
  11905. bottom: 0.06
  11906. }
  11907. },
  11908. foot: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Foot",
  11912. image: {
  11913. source: "./media/characters/kayroo/foot.svg"
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(8, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Minimacro",
  11925. height: math.unit(250, "feet")
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(2800, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(5200, "feet")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(27000, "feet")
  11938. },
  11939. {
  11940. name: "Omega",
  11941. height: math.unit(45000, "feet")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(18, "feet"),
  11950. weight: math.unit(5800, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/rhys/front.svg",
  11954. extra: 3386 / 3090,
  11955. bottom: 0.07
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(18, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Working Size",
  11967. height: math.unit(200, "feet")
  11968. },
  11969. {
  11970. name: "Demolition Size",
  11971. height: math.unit(2000, "feet")
  11972. },
  11973. {
  11974. name: "Maximum Licensed Size",
  11975. height: math.unit(5, "miles")
  11976. },
  11977. {
  11978. name: "Maximum Observed Size",
  11979. height: math.unit(10, "yottameters")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(250, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/toto/front.svg",
  11992. extra: 527 / 479,
  11993. bottom: 0.05
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Micro",
  12000. height: math.unit(3, "feet")
  12001. },
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(10, "feet")
  12005. },
  12006. {
  12007. name: "Macro",
  12008. height: math.unit(150, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(1200, "feet")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "King", species: ["lion"], tags: ["anthro"] },
  12019. {
  12020. back: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Back",
  12024. image: {
  12025. source: "./media/characters/king/back.svg"
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Micro",
  12032. height: math.unit(2, "inches")
  12033. },
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(8, "feet")
  12037. },
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(200, "feet"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Megamacro",
  12045. height: math.unit(50, "miles")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(11, "feet"),
  12054. weight: math.unit(1400, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/cordite/front.svg",
  12058. extra: 1919/1827,
  12059. bottom: 40/1959
  12060. }
  12061. },
  12062. side: {
  12063. height: math.unit(11, "feet"),
  12064. weight: math.unit(1400, "lb"),
  12065. name: "Side",
  12066. image: {
  12067. source: "./media/characters/cordite/side.svg",
  12068. extra: 1908/1793,
  12069. bottom: 38/1946
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(11, "feet"),
  12074. weight: math.unit(1400, "lb"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/cordite/back.svg",
  12078. extra: 1938/1837,
  12079. bottom: 10/1948
  12080. }
  12081. },
  12082. feral: {
  12083. height: math.unit(2, "feet"),
  12084. weight: math.unit(90, "lb"),
  12085. name: "Feral",
  12086. image: {
  12087. source: "./media/characters/cordite/feral.svg",
  12088. extra: 1260 / 755,
  12089. bottom: 0.05
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(11, "feet"),
  12097. default: true
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/pianostrong/front.svg",
  12110. extra: 6577 / 6254,
  12111. bottom: 0.02
  12112. }
  12113. },
  12114. side: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(150, "lb"),
  12117. name: "Side",
  12118. image: {
  12119. source: "./media/characters/pianostrong/side.svg",
  12120. extra: 6106 / 5730
  12121. }
  12122. },
  12123. back: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(150, "lb"),
  12126. name: "Back",
  12127. image: {
  12128. source: "./media/characters/pianostrong/back.svg",
  12129. extra: 6085 / 5733,
  12130. bottom: 0.01
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Macro",
  12137. height: math.unit(100, "feet")
  12138. },
  12139. {
  12140. name: "Macro+",
  12141. height: math.unit(300, "feet"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Macro++",
  12146. height: math.unit(1000, "feet")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/kona/front.svg",
  12159. extra: 2960 / 2629,
  12160. bottom: 0.005
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(11 + 8 / 12, "feet")
  12168. },
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(850, "feet"),
  12172. default: true
  12173. },
  12174. {
  12175. name: "Macro+",
  12176. height: math.unit(1.5, "km"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Megamacro",
  12181. height: math.unit(80, "miles")
  12182. },
  12183. {
  12184. name: "Gigamacro",
  12185. height: math.unit(3500, "miles")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12191. {
  12192. side: {
  12193. height: math.unit(1.9, "meters"),
  12194. weight: math.unit(326, "kg"),
  12195. name: "Side",
  12196. image: {
  12197. source: "./media/characters/levi/side.svg",
  12198. extra: 1704 / 1334,
  12199. bottom: 0.02
  12200. }
  12201. },
  12202. },
  12203. [
  12204. {
  12205. name: "Normal",
  12206. height: math.unit(1.9, "meters"),
  12207. default: true
  12208. },
  12209. {
  12210. name: "Macro",
  12211. height: math.unit(20, "meters")
  12212. },
  12213. {
  12214. name: "Macro+",
  12215. height: math.unit(200, "meters")
  12216. },
  12217. {
  12218. name: "Megamacro",
  12219. height: math.unit(2, "km")
  12220. },
  12221. {
  12222. name: "Megamacro+",
  12223. height: math.unit(20, "km")
  12224. },
  12225. {
  12226. name: "Gigamacro",
  12227. height: math.unit(2500, "km")
  12228. },
  12229. {
  12230. name: "Gigamacro+",
  12231. height: math.unit(120000, "km")
  12232. },
  12233. {
  12234. name: "Teramacro",
  12235. height: math.unit(7.77e6, "km")
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(6 + 4/12, "feet"),
  12244. weight: math.unit(190, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/bmc/front.svg",
  12248. extra: 1626/1472,
  12249. bottom: 79/1705
  12250. }
  12251. },
  12252. back: {
  12253. height: math.unit(6 + 4/12, "feet"),
  12254. weight: math.unit(190, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/bmc/back.svg",
  12258. extra: 1640/1479,
  12259. bottom: 45/1685
  12260. }
  12261. },
  12262. frontArmor: {
  12263. height: math.unit(6 + 4/12, "feet"),
  12264. weight: math.unit(190, "lb"),
  12265. name: "Front-armor",
  12266. image: {
  12267. source: "./media/characters/bmc/front-armor.svg",
  12268. extra: 1538/1468,
  12269. bottom: 79/1617
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Human-sized",
  12276. height: math.unit(6 + 4 / 12, "feet")
  12277. },
  12278. {
  12279. name: "Interactive Size",
  12280. height: math.unit(25, "feet")
  12281. },
  12282. {
  12283. name: "Small",
  12284. height: math.unit(250, "feet")
  12285. },
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(1250, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Good Day",
  12293. height: math.unit(88, "miles")
  12294. },
  12295. {
  12296. name: "Largest Measured Size",
  12297. height: math.unit(105.960, "galaxies")
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(20, "feet"),
  12306. weight: math.unit(2016, "kg"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/sven-the-kaiju/front.svg",
  12310. extra: 1277/1250,
  12311. bottom: 35/1312
  12312. }
  12313. },
  12314. mouth: {
  12315. height: math.unit(1.85, "feet"),
  12316. name: "Mouth",
  12317. image: {
  12318. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Fairy",
  12325. height: math.unit(6, "inches")
  12326. },
  12327. {
  12328. name: "Normal",
  12329. height: math.unit(20, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Rampage",
  12334. height: math.unit(200, "feet")
  12335. },
  12336. {
  12337. name: "Archfey Forest Guardian",
  12338. height: math.unit(1, "mile")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(4, "meters"),
  12347. weight: math.unit(2, "tons"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/marik/front.svg",
  12351. extra: 1057 / 1003,
  12352. bottom: 0.08
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(4, "meters"),
  12360. default: true
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(20, "meters")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(50, "km")
  12369. },
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(100, "km")
  12373. },
  12374. {
  12375. name: "Alpha Macro",
  12376. height: math.unit(7.88e7, "yottameters")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(110, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/mel/front.svg",
  12389. extra: 736 / 617,
  12390. bottom: 0.017
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Pico",
  12397. height: math.unit(3, "pm")
  12398. },
  12399. {
  12400. name: "Nano",
  12401. height: math.unit(3, "nm")
  12402. },
  12403. {
  12404. name: "Micro",
  12405. height: math.unit(0.3, "mm"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Micro+",
  12410. height: math.unit(3, "mm")
  12411. },
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(5 + 10.5 / 12, "feet")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12420. {
  12421. kaiju: {
  12422. height: math.unit(1.75, "meters"),
  12423. weight: math.unit(55, "kg"),
  12424. name: "Kaiju",
  12425. image: {
  12426. source: "./media/characters/lykonous/kaiju.svg",
  12427. extra: 1055 / 946,
  12428. bottom: 0.135
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(2.5, "meters"),
  12436. default: true
  12437. },
  12438. {
  12439. name: "Kaiju Dragon",
  12440. height: math.unit(60, "meters")
  12441. },
  12442. {
  12443. name: "Mega Kaiju",
  12444. height: math.unit(120, "km")
  12445. },
  12446. {
  12447. name: "Giga Kaiju",
  12448. height: math.unit(200, "megameters")
  12449. },
  12450. {
  12451. name: "Terra Kaiju",
  12452. height: math.unit(400, "gigameters")
  12453. },
  12454. {
  12455. name: "Kaiju Dragon God",
  12456. height: math.unit(13000, "exaparsecs")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(150, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/blü/front.svg",
  12469. extra: 1883 / 1564,
  12470. bottom: 0.031
  12471. }
  12472. },
  12473. },
  12474. [
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(13, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Big Boi",
  12482. height: math.unit(150, "meters")
  12483. },
  12484. {
  12485. name: "Mini Stomper",
  12486. height: math.unit(300, "meters")
  12487. },
  12488. {
  12489. name: "Macro",
  12490. height: math.unit(1000, "meters")
  12491. },
  12492. {
  12493. name: "Megamacro",
  12494. height: math.unit(11000, "meters")
  12495. },
  12496. {
  12497. name: "Gigamacro",
  12498. height: math.unit(11000, "km")
  12499. },
  12500. {
  12501. name: "Teramacro",
  12502. height: math.unit(420000, "km")
  12503. },
  12504. {
  12505. name: "Examacro",
  12506. height: math.unit(120, "parsecs")
  12507. },
  12508. {
  12509. name: "God Tho",
  12510. height: math.unit(98000000000, "parsecs")
  12511. },
  12512. ]
  12513. ))
  12514. characterMakers.push(() => makeCharacter(
  12515. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12516. {
  12517. taurFront: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(200, "lb"),
  12520. name: "Taur (Front)",
  12521. image: {
  12522. source: "./media/characters/scales/taur-front.svg",
  12523. extra: 1,
  12524. bottom: 0.05
  12525. }
  12526. },
  12527. taurBack: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(200, "lb"),
  12530. name: "Taur (Back)",
  12531. image: {
  12532. source: "./media/characters/scales/taur-back.svg",
  12533. extra: 1,
  12534. bottom: 0.08
  12535. }
  12536. },
  12537. anthro: {
  12538. height: math.unit(6 * 7 / 12, "feet"),
  12539. weight: math.unit(100, "lb"),
  12540. name: "Anthro",
  12541. image: {
  12542. source: "./media/characters/scales/anthro.svg",
  12543. extra: 1,
  12544. bottom: 0.06
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(12, "feet"),
  12552. default: true
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12558. {
  12559. front: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/koragos/front.svg",
  12565. extra: 841 / 794,
  12566. bottom: 0.035
  12567. }
  12568. },
  12569. back: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(150, "lb"),
  12572. name: "Back",
  12573. image: {
  12574. source: "./media/characters/koragos/back.svg",
  12575. extra: 841 / 810,
  12576. bottom: 0.022
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(6 + 11 / 12, "feet"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Macro",
  12588. height: math.unit(490, "feet")
  12589. },
  12590. {
  12591. name: "Megamacro",
  12592. height: math.unit(10, "miles")
  12593. },
  12594. {
  12595. name: "Gigamacro",
  12596. height: math.unit(50, "miles")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(250, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/xylrem/front.svg",
  12609. extra: 3323 / 3050,
  12610. bottom: 0.065
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Micro",
  12617. height: math.unit(4, "feet")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(16, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(2720, "feet")
  12627. },
  12628. {
  12629. name: "Megamacro",
  12630. height: math.unit(25000, "miles")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(8, "feet"),
  12639. weight: math.unit(250, "kg"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/ikideru/front.svg",
  12643. extra: 930 / 870,
  12644. bottom: 0.087
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(8, "feet"),
  12649. weight: math.unit(250, "kg"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/ikideru/back.svg",
  12653. extra: 919 / 852,
  12654. bottom: 0.055
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Rare",
  12661. height: math.unit(8, "feet"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Playful Loom",
  12666. height: math.unit(80, "feet")
  12667. },
  12668. {
  12669. name: "City Leaner",
  12670. height: math.unit(230, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(2500, "feet")
  12675. },
  12676. {
  12677. name: "Gigamacro",
  12678. height: math.unit(26400, "feet")
  12679. },
  12680. {
  12681. name: "Tectonic Shifter",
  12682. height: math.unit(1.7, "megameters")
  12683. },
  12684. {
  12685. name: "Planet Carer",
  12686. height: math.unit(21, "megameters")
  12687. },
  12688. {
  12689. name: "God",
  12690. height: math.unit(11157.22, "parsecs")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(120, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/neo/front.svg"
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Micro",
  12709. height: math.unit(2, "inches"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Human Size",
  12714. height: math.unit(5 + 8 / 12, "feet")
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12720. {
  12721. front: {
  12722. height: math.unit(13 + 10 / 12, "feet"),
  12723. weight: math.unit(5320, "lb"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/chauncey-chantz/front.svg",
  12727. extra: 1587 / 1435,
  12728. bottom: 0.02
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Normal",
  12735. height: math.unit(13 + 10 / 12, "feet"),
  12736. default: true
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(45, "feet")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(250, "miles")
  12745. },
  12746. {
  12747. name: "Planetary",
  12748. height: math.unit(10000, "miles")
  12749. },
  12750. {
  12751. name: "Galactic",
  12752. height: math.unit(40000, "parsecs")
  12753. },
  12754. {
  12755. name: "Universal",
  12756. height: math.unit(1, "yottameter")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12762. {
  12763. front: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Front",
  12767. image: {
  12768. source: "./media/characters/epifox/front.svg",
  12769. extra: 1,
  12770. bottom: 0.075
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Micro",
  12777. height: math.unit(6, "inches")
  12778. },
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(12, "feet"),
  12782. default: true
  12783. },
  12784. {
  12785. name: "Macro",
  12786. height: math.unit(3810, "feet")
  12787. },
  12788. {
  12789. name: "Megamacro",
  12790. height: math.unit(500, "miles")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(1.8796, "m"),
  12799. weight: math.unit(230, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/colin-t/front.svg",
  12803. extra: 1272 / 1193,
  12804. bottom: 0.07
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Micro",
  12811. height: math.unit(0.571, "meters")
  12812. },
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(1.8796, "meters"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Tall",
  12820. height: math.unit(4, "meters")
  12821. },
  12822. {
  12823. name: "Macro",
  12824. height: math.unit(67.241, "meters")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(371.856, "meters")
  12829. },
  12830. {
  12831. name: "Planetary",
  12832. height: math.unit(12631.5689, "km")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(1.85, "meters"),
  12841. weight: math.unit(80, "kg"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/matvei/front.svg",
  12845. extra: 614 / 594,
  12846. bottom: 0.01
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(1.85, "meters"),
  12854. default: true
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(5 + 9 / 12, "feet"),
  12863. weight: math.unit(70, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/quincy/front.svg",
  12867. extra: 3041 / 2751
  12868. }
  12869. },
  12870. back: {
  12871. height: math.unit(5 + 9 / 12, "feet"),
  12872. weight: math.unit(70, "lb"),
  12873. name: "Back",
  12874. image: {
  12875. source: "./media/characters/quincy/back.svg",
  12876. extra: 3041 / 2751
  12877. }
  12878. },
  12879. flying: {
  12880. height: math.unit(5 + 4 / 12, "feet"),
  12881. weight: math.unit(70, "lb"),
  12882. name: "Flying",
  12883. image: {
  12884. source: "./media/characters/quincy/flying.svg",
  12885. extra: 1044 / 930
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Micro",
  12892. height: math.unit(3, "cm")
  12893. },
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(5 + 9 / 12, "feet")
  12897. },
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(200, "meters"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(1000, "meters")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(3 + 11/12, "feet"),
  12914. weight: math.unit(50, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/vanrel/front.svg",
  12918. extra: 1104/949,
  12919. bottom: 52/1156
  12920. }
  12921. },
  12922. back: {
  12923. height: math.unit(3 + 11/12, "feet"),
  12924. weight: math.unit(50, "lb"),
  12925. name: "Back",
  12926. image: {
  12927. source: "./media/characters/vanrel/back.svg",
  12928. extra: 1119/976,
  12929. bottom: 37/1156
  12930. }
  12931. },
  12932. tome: {
  12933. height: math.unit(1.35, "feet"),
  12934. weight: math.unit(10, "lb"),
  12935. name: "Vanrel's Tome",
  12936. rename: true,
  12937. image: {
  12938. source: "./media/characters/vanrel/tome.svg"
  12939. }
  12940. },
  12941. beans: {
  12942. height: math.unit(0.89, "feet"),
  12943. name: "Beans",
  12944. image: {
  12945. source: "./media/characters/vanrel/beans.svg"
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(3 + 11/12, "feet"),
  12953. default: true
  12954. },
  12955. ]
  12956. ))
  12957. characterMakers.push(() => makeCharacter(
  12958. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12959. {
  12960. front: {
  12961. height: math.unit(7 + 5 / 12, "feet"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/kuiper-vanrel/front.svg",
  12965. extra: 1219/1169,
  12966. bottom: 69/1288
  12967. }
  12968. },
  12969. back: {
  12970. height: math.unit(7 + 5 / 12, "feet"),
  12971. name: "Back",
  12972. image: {
  12973. source: "./media/characters/kuiper-vanrel/back.svg",
  12974. extra: 1236/1193,
  12975. bottom: 27/1263
  12976. }
  12977. },
  12978. foot: {
  12979. height: math.unit(0.55, "meters"),
  12980. name: "Foot",
  12981. image: {
  12982. source: "./media/characters/kuiper-vanrel/foot.svg",
  12983. }
  12984. },
  12985. battle: {
  12986. height: math.unit(6.824, "feet"),
  12987. name: "Battle",
  12988. image: {
  12989. source: "./media/characters/kuiper-vanrel/battle.svg",
  12990. extra: 1466 / 1327,
  12991. bottom: 29 / 1492.5
  12992. }
  12993. },
  12994. meerkui: {
  12995. height: math.unit(18, "inches"),
  12996. name: "Meerkui",
  12997. image: {
  12998. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12999. extra: 1354/1289,
  13000. bottom: 69/1423
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(7 + 5 / 12, "feet"),
  13008. default: true
  13009. },
  13010. ]
  13011. ))
  13012. characterMakers.push(() => makeCharacter(
  13013. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13014. {
  13015. front: {
  13016. height: math.unit(8 + 5 / 12, "feet"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/keset-vanrel/front.svg",
  13020. extra: 1231/1148,
  13021. bottom: 82/1313
  13022. }
  13023. },
  13024. back: {
  13025. height: math.unit(8 + 5 / 12, "feet"),
  13026. name: "Back",
  13027. image: {
  13028. source: "./media/characters/keset-vanrel/back.svg",
  13029. extra: 1240/1174,
  13030. bottom: 33/1273
  13031. }
  13032. },
  13033. hand: {
  13034. height: math.unit(0.6, "meters"),
  13035. name: "Hand",
  13036. image: {
  13037. source: "./media/characters/keset-vanrel/hand.svg"
  13038. }
  13039. },
  13040. foot: {
  13041. height: math.unit(0.94978, "meters"),
  13042. name: "Foot",
  13043. image: {
  13044. source: "./media/characters/keset-vanrel/foot.svg"
  13045. }
  13046. },
  13047. battle: {
  13048. height: math.unit(7.408, "feet"),
  13049. name: "Battle",
  13050. image: {
  13051. source: "./media/characters/keset-vanrel/battle.svg",
  13052. extra: 1890 / 1386,
  13053. bottom: 73.28 / 1970
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(8 + 5 / 12, "feet"),
  13061. default: true
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/neos/front.svg",
  13074. extra: 1696 / 992,
  13075. bottom: 0.14
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(54, "cm"),
  13083. default: true
  13084. },
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(100, "m")
  13088. },
  13089. {
  13090. name: "Megamacro",
  13091. height: math.unit(10, "km")
  13092. },
  13093. {
  13094. name: "Megamacro+",
  13095. height: math.unit(100, "km")
  13096. },
  13097. {
  13098. name: "Gigamacro",
  13099. height: math.unit(100, "Mm")
  13100. },
  13101. {
  13102. name: "Teramacro",
  13103. height: math.unit(100, "Gm")
  13104. },
  13105. {
  13106. name: "Examacro",
  13107. height: math.unit(100, "Em")
  13108. },
  13109. {
  13110. name: "Godly",
  13111. height: math.unit(10000, "Ym")
  13112. },
  13113. {
  13114. name: "Beyond Godly",
  13115. height: math.unit(25, "multiverses")
  13116. },
  13117. ]
  13118. ))
  13119. characterMakers.push(() => makeCharacter(
  13120. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13121. {
  13122. feminine: {
  13123. height: math.unit(5, "feet"),
  13124. weight: math.unit(100, "lb"),
  13125. name: "Feminine",
  13126. image: {
  13127. source: "./media/characters/sammy-mouse/feminine.svg",
  13128. extra: 2526 / 2425,
  13129. bottom: 0.123
  13130. }
  13131. },
  13132. masculine: {
  13133. height: math.unit(5, "feet"),
  13134. weight: math.unit(100, "lb"),
  13135. name: "Masculine",
  13136. image: {
  13137. source: "./media/characters/sammy-mouse/masculine.svg",
  13138. extra: 2526 / 2425,
  13139. bottom: 0.123
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Micro",
  13146. height: math.unit(5, "inches")
  13147. },
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(5, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(60, "feet")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(4, "feet"),
  13164. weight: math.unit(50, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/kole/front.svg",
  13168. extra: 1423 / 1303,
  13169. bottom: 0.025
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(4, "feet"),
  13174. weight: math.unit(50, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/kole/back.svg",
  13178. extra: 1426 / 1280,
  13179. bottom: 0.02
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(4, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(2.5, "feet"),
  13196. weight: math.unit(32, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/rufran/front.svg",
  13200. extra: 1313/885,
  13201. bottom: 94/1407
  13202. }
  13203. },
  13204. side: {
  13205. height: math.unit(2.5, "feet"),
  13206. weight: math.unit(32, "lb"),
  13207. name: "Side",
  13208. image: {
  13209. source: "./media/characters/rufran/side.svg",
  13210. extra: 1109/852,
  13211. bottom: 118/1227
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(2.5, "feet"),
  13216. weight: math.unit(32, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/rufran/back.svg",
  13220. extra: 1280/878,
  13221. bottom: 131/1411
  13222. }
  13223. },
  13224. mouth: {
  13225. height: math.unit(1.13, "feet"),
  13226. name: "Mouth",
  13227. image: {
  13228. source: "./media/characters/rufran/mouth.svg"
  13229. }
  13230. },
  13231. foot: {
  13232. height: math.unit(1.33, "feet"),
  13233. name: "Foot",
  13234. image: {
  13235. source: "./media/characters/rufran/foot.svg"
  13236. }
  13237. },
  13238. koboldFront: {
  13239. height: math.unit(2 + 6 / 12, "feet"),
  13240. weight: math.unit(20, "lb"),
  13241. name: "Front (Kobold)",
  13242. image: {
  13243. source: "./media/characters/rufran/kobold-front.svg",
  13244. extra: 2041 / 1839,
  13245. bottom: 0.055
  13246. }
  13247. },
  13248. koboldBack: {
  13249. height: math.unit(2 + 6 / 12, "feet"),
  13250. weight: math.unit(20, "lb"),
  13251. name: "Back (Kobold)",
  13252. image: {
  13253. source: "./media/characters/rufran/kobold-back.svg",
  13254. extra: 2054 / 1839,
  13255. bottom: 0.01
  13256. }
  13257. },
  13258. koboldHand: {
  13259. height: math.unit(0.2166, "meters"),
  13260. name: "Hand (Kobold)",
  13261. image: {
  13262. source: "./media/characters/rufran/kobold-hand.svg"
  13263. }
  13264. },
  13265. koboldFoot: {
  13266. height: math.unit(0.185, "meters"),
  13267. name: "Foot (Kobold)",
  13268. image: {
  13269. source: "./media/characters/rufran/kobold-foot.svg"
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Micro",
  13276. height: math.unit(1, "inch")
  13277. },
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(2 + 6 / 12, "feet"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Big",
  13285. height: math.unit(60, "feet")
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(325, "feet")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(0.3, "meters"),
  13298. weight: math.unit(3.5, "kg"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/chip/front.svg",
  13302. extra: 748 / 674
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Micro",
  13309. height: math.unit(1, "inch"),
  13310. default: true
  13311. },
  13312. ]
  13313. ))
  13314. characterMakers.push(() => makeCharacter(
  13315. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13316. {
  13317. side: {
  13318. height: math.unit(2.3, "meters"),
  13319. weight: math.unit(3500, "lb"),
  13320. name: "Side",
  13321. image: {
  13322. source: "./media/characters/torvid/side.svg",
  13323. extra: 1972 / 722,
  13324. bottom: 0.035
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(2.3, "meters"),
  13332. default: true
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(2, "meters"),
  13341. weight: math.unit(150.5, "kg"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/susan/front.svg",
  13345. extra: 693 / 635,
  13346. bottom: 0.05
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(505, "miles"),
  13354. default: true
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/raindrops/front.svg",
  13367. extra: 2655 / 2461,
  13368. bottom: 49 / 2705
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/raindrops/back.svg",
  13377. extra: 2574 / 2400,
  13378. bottom: 65 / 2634
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Micro",
  13385. height: math.unit(6, "inches")
  13386. },
  13387. {
  13388. name: "Normal",
  13389. height: math.unit(6 + 2 / 12, "feet")
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(131, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Megamacro",
  13398. height: math.unit(15, "miles")
  13399. },
  13400. {
  13401. name: "Gigamacro",
  13402. height: math.unit(4000, "miles")
  13403. },
  13404. {
  13405. name: "Teramacro",
  13406. height: math.unit(315000, "miles")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(2.794, "meters"),
  13415. weight: math.unit(325, "kg"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/tezwa/front.svg",
  13419. extra: 2083 / 1906,
  13420. bottom: 0.031
  13421. }
  13422. },
  13423. foot: {
  13424. height: math.unit(0.687, "meters"),
  13425. name: "Foot",
  13426. image: {
  13427. source: "./media/characters/tezwa/foot.svg"
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(9 + 2 / 12, "feet"),
  13435. default: true
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(58, "feet"),
  13444. weight: math.unit(89000, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/typhus/front.svg",
  13448. extra: 816 / 800,
  13449. bottom: 0.065
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(58, "feet"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(12, "feet"),
  13466. weight: math.unit(6, "tonnes"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/lyra-von-wulf/front.svg",
  13470. extra: 1,
  13471. bottom: 0.10
  13472. }
  13473. },
  13474. frontMecha: {
  13475. height: math.unit(12, "feet"),
  13476. weight: math.unit(12, "tonnes"),
  13477. name: "Front (Mecha)",
  13478. image: {
  13479. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13480. extra: 1,
  13481. bottom: 0.042
  13482. }
  13483. },
  13484. maw: {
  13485. height: math.unit(2.2, "feet"),
  13486. name: "Maw",
  13487. image: {
  13488. source: "./media/characters/lyra-von-wulf/maw.svg"
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(12, "feet"),
  13496. default: true
  13497. },
  13498. {
  13499. name: "Classic",
  13500. height: math.unit(50, "feet")
  13501. },
  13502. {
  13503. name: "Macro",
  13504. height: math.unit(500, "feet")
  13505. },
  13506. {
  13507. name: "Megamacro",
  13508. height: math.unit(1, "mile")
  13509. },
  13510. {
  13511. name: "Gigamacro",
  13512. height: math.unit(400, "miles")
  13513. },
  13514. {
  13515. name: "Teramacro",
  13516. height: math.unit(22000, "miles")
  13517. },
  13518. {
  13519. name: "Solarmacro",
  13520. height: math.unit(8600000, "miles")
  13521. },
  13522. {
  13523. name: "Galactic",
  13524. height: math.unit(1057000, "lightyears")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6 + 10 / 12, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/dixon/front.svg",
  13537. extra: 3361 / 3209,
  13538. bottom: 0.01
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Normal",
  13545. height: math.unit(6 + 10 / 12, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Big",
  13550. height: math.unit(12, "meters")
  13551. },
  13552. {
  13553. name: "Macro",
  13554. height: math.unit(500, "meters")
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(2, "km")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(185, "cm"),
  13567. weight: math.unit(68, "kg"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/kauko/front.svg",
  13571. extra: 1455 / 1421,
  13572. bottom: 0.03
  13573. }
  13574. },
  13575. back: {
  13576. height: math.unit(185, "cm"),
  13577. weight: math.unit(68, "kg"),
  13578. name: "Back",
  13579. image: {
  13580. source: "./media/characters/kauko/back.svg",
  13581. extra: 1455 / 1421,
  13582. bottom: 0.004
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(185, "cm"),
  13590. default: true
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(150, "kg"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/varg/front.svg",
  13603. extra: 1108 / 1018,
  13604. bottom: 0.0375
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(5, "meters")
  13612. },
  13613. {
  13614. name: "Macro",
  13615. height: math.unit(200, "meters")
  13616. },
  13617. {
  13618. name: "Megamacro",
  13619. height: math.unit(20, "kilometers")
  13620. },
  13621. {
  13622. name: "True Size",
  13623. height: math.unit(211, "km"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Gigamacro",
  13628. height: math.unit(1000, "km")
  13629. },
  13630. {
  13631. name: "Gigamacro+",
  13632. height: math.unit(8000, "km")
  13633. },
  13634. {
  13635. name: "Teramacro",
  13636. height: math.unit(1000000, "km")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(7 + 7 / 12, "feet"),
  13645. weight: math.unit(267, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/dayza/front.svg",
  13649. extra: 1262 / 1200,
  13650. bottom: 0.035
  13651. }
  13652. },
  13653. side: {
  13654. height: math.unit(7 + 7 / 12, "feet"),
  13655. weight: math.unit(267, "lb"),
  13656. name: "Side",
  13657. image: {
  13658. source: "./media/characters/dayza/side.svg",
  13659. extra: 1295 / 1245,
  13660. bottom: 0.05
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(7 + 7 / 12, "feet"),
  13665. weight: math.unit(267, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/dayza/back.svg",
  13669. extra: 1241 / 1170
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Normal",
  13676. height: math.unit(7 + 7 / 12, "feet"),
  13677. default: true
  13678. },
  13679. {
  13680. name: "Macro",
  13681. height: math.unit(155, "feet")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6 + 5 / 12, "feet"),
  13690. weight: math.unit(160, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/xanthos/front.svg",
  13694. extra: 1,
  13695. bottom: 0.04
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(6 + 5 / 12, "feet"),
  13700. weight: math.unit(160, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/xanthos/back.svg",
  13704. extra: 1,
  13705. bottom: 0.03
  13706. }
  13707. },
  13708. hand: {
  13709. height: math.unit(0.928, "feet"),
  13710. name: "Hand",
  13711. image: {
  13712. source: "./media/characters/xanthos/hand.svg"
  13713. }
  13714. },
  13715. foot: {
  13716. height: math.unit(1.286, "feet"),
  13717. name: "Foot",
  13718. image: {
  13719. source: "./media/characters/xanthos/foot.svg"
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(6 + 5 / 12, "feet"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Normal+",
  13731. height: math.unit(6, "meters")
  13732. },
  13733. {
  13734. name: "Macro",
  13735. height: math.unit(40, "feet")
  13736. },
  13737. {
  13738. name: "Macro+",
  13739. height: math.unit(200, "meters")
  13740. },
  13741. {
  13742. name: "Megamacro",
  13743. height: math.unit(20, "km")
  13744. },
  13745. {
  13746. name: "Megamacro+",
  13747. height: math.unit(100, "km")
  13748. },
  13749. {
  13750. name: "Gigamacro",
  13751. height: math.unit(200, "megameters")
  13752. },
  13753. {
  13754. name: "Gigamacro+",
  13755. height: math.unit(1.5, "gigameters")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(6 + 3 / 12, "feet"),
  13764. weight: math.unit(215, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/grynn/front.svg",
  13768. extra: 4627 / 4209,
  13769. bottom: 0.047
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(6, "inches")
  13777. },
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(6 + 3 / 12, "feet"),
  13781. default: true
  13782. },
  13783. {
  13784. name: "Big",
  13785. height: math.unit(104, "feet")
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(944, "feet")
  13790. },
  13791. {
  13792. name: "Macro+",
  13793. height: math.unit(9480, "feet")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(78752, "feet")
  13798. },
  13799. {
  13800. name: "Megamacro+",
  13801. height: math.unit(630128, "feet")
  13802. },
  13803. {
  13804. name: "Megamacro++",
  13805. height: math.unit(3150695, "feet")
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(7 + 5 / 12, "feet"),
  13814. weight: math.unit(450, "lb"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/mocha-aura/front.svg",
  13818. extra: 1907 / 1817,
  13819. bottom: 0.04
  13820. }
  13821. },
  13822. back: {
  13823. height: math.unit(7 + 5 / 12, "feet"),
  13824. weight: math.unit(450, "lb"),
  13825. name: "Back",
  13826. image: {
  13827. source: "./media/characters/mocha-aura/back.svg",
  13828. extra: 1900 / 1825,
  13829. bottom: 0.045
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Nano",
  13836. height: math.unit(1, "nm")
  13837. },
  13838. {
  13839. name: "Megamicro",
  13840. height: math.unit(1, "mm")
  13841. },
  13842. {
  13843. name: "Micro",
  13844. height: math.unit(3, "inches")
  13845. },
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(7 + 5 / 12, "feet"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Macro",
  13853. height: math.unit(30, "feet")
  13854. },
  13855. {
  13856. name: "Megamacro",
  13857. height: math.unit(3500, "feet")
  13858. },
  13859. {
  13860. name: "Teramacro",
  13861. height: math.unit(500000, "miles")
  13862. },
  13863. {
  13864. name: "Petamacro",
  13865. height: math.unit(50000000000000000, "parsecs")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/ilisha-devya/front.svg",
  13878. extra: 1053/1049,
  13879. bottom: 270/1323
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/ilisha-devya/back.svg",
  13888. extra: 1131/1128,
  13889. bottom: 39/1170
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Macro",
  13896. height: math.unit(500, "feet"),
  13897. default: true
  13898. },
  13899. {
  13900. name: "Megamacro",
  13901. height: math.unit(10, "miles")
  13902. },
  13903. {
  13904. name: "Gigamacro",
  13905. height: math.unit(100000, "miles")
  13906. },
  13907. {
  13908. name: "Examacro",
  13909. height: math.unit(1e9, "lightyears")
  13910. },
  13911. {
  13912. name: "Omniversal",
  13913. height: math.unit(1e33, "lightyears")
  13914. },
  13915. {
  13916. name: "Beyond Infinite",
  13917. height: math.unit(1e100, "lightyears")
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13923. {
  13924. Side: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(150, "lb"),
  13927. name: "Side",
  13928. image: {
  13929. source: "./media/characters/mira/side.svg",
  13930. extra: 900 / 799,
  13931. bottom: 0.02
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Human Size",
  13938. height: math.unit(6, "feet")
  13939. },
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(100, "feet"),
  13943. default: true
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(10, "miles")
  13948. },
  13949. {
  13950. name: "Gigamacro",
  13951. height: math.unit(25000, "miles")
  13952. },
  13953. {
  13954. name: "Teramacro",
  13955. height: math.unit(300, "AU")
  13956. },
  13957. {
  13958. name: "Full Size",
  13959. height: math.unit(4.5e10, "lightyears")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(6, "feet"),
  13968. weight: math.unit(150, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/holly/front.svg",
  13972. extra: 639 / 606
  13973. }
  13974. },
  13975. back: {
  13976. height: math.unit(6, "feet"),
  13977. weight: math.unit(150, "lb"),
  13978. name: "Back",
  13979. image: {
  13980. source: "./media/characters/holly/back.svg",
  13981. extra: 623 / 598
  13982. }
  13983. },
  13984. frontWorking: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front (Working)",
  13988. image: {
  13989. source: "./media/characters/holly/front-working.svg",
  13990. extra: 607 / 577,
  13991. bottom: 0.048
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Normal",
  13998. height: math.unit(12 + 3 / 12, "feet"),
  13999. default: true
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(6, "feet"),
  14008. weight: math.unit(150, "lb"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/porter/front.svg",
  14012. extra: 1,
  14013. bottom: 0.01
  14014. }
  14015. },
  14016. frontRobes: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(150, "lb"),
  14019. name: "Front (Robes)",
  14020. image: {
  14021. source: "./media/characters/porter/front-robes.svg",
  14022. extra: 1.01,
  14023. bottom: 0.01
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Normal",
  14030. height: math.unit(11 + 9 / 12, "feet"),
  14031. default: true
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14037. {
  14038. legendary: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(150, "lb"),
  14041. name: "Legendary",
  14042. image: {
  14043. source: "./media/characters/lucy/legendary.svg",
  14044. extra: 1355 / 1100,
  14045. bottom: 0.045
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Legendary",
  14052. height: math.unit(86882 * 2, "miles"),
  14053. default: true
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/drusilla/front.svg",
  14066. extra: 678 / 635,
  14067. bottom: 0.03
  14068. }
  14069. },
  14070. back: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Back",
  14074. image: {
  14075. source: "./media/characters/drusilla/back.svg",
  14076. extra: 678 / 635,
  14077. bottom: 0.005
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(100, "feet")
  14085. },
  14086. {
  14087. name: "Canon Height",
  14088. height: math.unit(2000, "feet"),
  14089. default: true
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(180, "lb"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/renard-thatch/front.svg",
  14102. extra: 2411 / 2275,
  14103. bottom: 0.01
  14104. }
  14105. },
  14106. frontPosing: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(180, "lb"),
  14109. name: "Front (Posing)",
  14110. image: {
  14111. source: "./media/characters/renard-thatch/front-posing.svg",
  14112. extra: 2381 / 2261,
  14113. bottom: 0.01
  14114. }
  14115. },
  14116. back: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(180, "lb"),
  14119. name: "Back",
  14120. image: {
  14121. source: "./media/characters/renard-thatch/back.svg",
  14122. extra: 2428 / 2288
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Micro",
  14129. height: math.unit(3, "inches")
  14130. },
  14131. {
  14132. name: "Default",
  14133. height: math.unit(6, "feet"),
  14134. default: true
  14135. },
  14136. {
  14137. name: "Macro",
  14138. height: math.unit(75, "feet")
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(1450, "feet"),
  14147. weight: math.unit(1.21e6, "tons"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/sekvra/front.svg",
  14151. extra: 1193/1190,
  14152. bottom: 78/1271
  14153. }
  14154. },
  14155. side: {
  14156. height: math.unit(1450, "feet"),
  14157. weight: math.unit(1.21e6, "tons"),
  14158. name: "Side",
  14159. image: {
  14160. source: "./media/characters/sekvra/side.svg",
  14161. extra: 1193/1190,
  14162. bottom: 52/1245
  14163. }
  14164. },
  14165. back: {
  14166. height: math.unit(1450, "feet"),
  14167. weight: math.unit(1.21e6, "tons"),
  14168. name: "Back",
  14169. image: {
  14170. source: "./media/characters/sekvra/back.svg",
  14171. extra: 1219/1216,
  14172. bottom: 21/1240
  14173. }
  14174. },
  14175. frontClothed: {
  14176. height: math.unit(1450, "feet"),
  14177. weight: math.unit(1.21e6, "tons"),
  14178. name: "Front (Clothed)",
  14179. image: {
  14180. source: "./media/characters/sekvra/front-clothed.svg",
  14181. extra: 1192/1189,
  14182. bottom: 79/1271
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Macro",
  14189. height: math.unit(1450, "feet"),
  14190. default: true
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(15000, "feet")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(150, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/carmine/front.svg",
  14207. extra: 1,
  14208. bottom: 0.035
  14209. }
  14210. },
  14211. frontArmor: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front (Armor)",
  14215. image: {
  14216. source: "./media/characters/carmine/front-armor.svg",
  14217. extra: 1,
  14218. bottom: 0.035
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Large",
  14225. height: math.unit(1, "mile")
  14226. },
  14227. {
  14228. name: "Huge",
  14229. height: math.unit(40, "miles"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Colossal",
  14234. height: math.unit(2500, "miles")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(150, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/elyssia/front.svg",
  14247. extra: 2201 / 2035,
  14248. bottom: 0.05
  14249. }
  14250. },
  14251. frontClothed: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(150, "lb"),
  14254. name: "Front (Clothed)",
  14255. image: {
  14256. source: "./media/characters/elyssia/front-clothed.svg",
  14257. extra: 2201 / 2035,
  14258. bottom: 0.05
  14259. }
  14260. },
  14261. back: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Back",
  14265. image: {
  14266. source: "./media/characters/elyssia/back.svg",
  14267. extra: 2201 / 2035,
  14268. bottom: 0.013
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Smaller",
  14275. height: math.unit(150, "feet")
  14276. },
  14277. {
  14278. name: "Standard",
  14279. height: math.unit(1400, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Distracted",
  14284. height: math.unit(15000, "feet")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(7 + 4/12, "feet"),
  14293. weight: math.unit(690, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/geno-maxwell/front.svg",
  14297. extra: 984/856,
  14298. bottom: 87/1071
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(7 + 4/12, "feet"),
  14303. weight: math.unit(690, "lb"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/geno-maxwell/back.svg",
  14307. extra: 981/854,
  14308. bottom: 57/1038
  14309. }
  14310. },
  14311. frontCostume: {
  14312. height: math.unit(7 + 4/12, "feet"),
  14313. weight: math.unit(690, "lb"),
  14314. name: "Front (Costume)",
  14315. image: {
  14316. source: "./media/characters/geno-maxwell/front-costume.svg",
  14317. extra: 984/856,
  14318. bottom: 87/1071
  14319. }
  14320. },
  14321. backcostume: {
  14322. height: math.unit(7 + 4/12, "feet"),
  14323. weight: math.unit(690, "lb"),
  14324. name: "Back (Costume)",
  14325. image: {
  14326. source: "./media/characters/geno-maxwell/back-costume.svg",
  14327. extra: 981/854,
  14328. bottom: 57/1038
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Micro",
  14335. height: math.unit(3, "inches")
  14336. },
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(7 + 4 / 12, "feet"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Macro",
  14344. height: math.unit(220, "feet")
  14345. },
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(11, "miles")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(7 + 4/12, "feet"),
  14357. weight: math.unit(750, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/regena-maxwell/front.svg",
  14361. extra: 984/856,
  14362. bottom: 87/1071
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(7 + 4/12, "feet"),
  14367. weight: math.unit(750, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/regena-maxwell/back.svg",
  14371. extra: 981/854,
  14372. bottom: 57/1038
  14373. }
  14374. },
  14375. frontCostume: {
  14376. height: math.unit(7 + 4/12, "feet"),
  14377. weight: math.unit(750, "lb"),
  14378. name: "Front (Costume)",
  14379. image: {
  14380. source: "./media/characters/regena-maxwell/front-costume.svg",
  14381. extra: 984/856,
  14382. bottom: 87/1071
  14383. }
  14384. },
  14385. backcostume: {
  14386. height: math.unit(7 + 4/12, "feet"),
  14387. weight: math.unit(750, "lb"),
  14388. name: "Back (Costume)",
  14389. image: {
  14390. source: "./media/characters/regena-maxwell/back-costume.svg",
  14391. extra: 981/854,
  14392. bottom: 57/1038
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(7 + 4 / 12, "feet"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(220, "feet")
  14405. },
  14406. {
  14407. name: "Megamacro",
  14408. height: math.unit(11, "miles")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14421. extra: 860 / 690,
  14422. bottom: 0.03
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(1.7, "meters"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14436. {
  14437. front: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/quilly/front.svg",
  14443. extra: 890 / 776
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Gigamacro",
  14450. height: math.unit(404090, "miles"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(7 + 8 / 12, "feet"),
  14460. weight: math.unit(350, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/tempest/front.svg",
  14464. extra: 1175 / 1086,
  14465. bottom: 0.02
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(7 + 8 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14479. {
  14480. side: {
  14481. height: math.unit(4 + 5 / 12, "feet"),
  14482. weight: math.unit(80, "lb"),
  14483. name: "Side",
  14484. image: {
  14485. source: "./media/characters/rodger/side.svg",
  14486. extra: 1235 / 1118
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Micro",
  14493. height: math.unit(1, "inch")
  14494. },
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(4 + 5 / 12, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(120, "feet")
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14508. {
  14509. front: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(150, "lb"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/danyel/front.svg",
  14515. extra: 1185 / 1123,
  14516. bottom: 0.05
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Shrunken",
  14523. height: math.unit(0.5, "mm")
  14524. },
  14525. {
  14526. name: "Micro",
  14527. height: math.unit(1, "mm"),
  14528. default: true
  14529. },
  14530. {
  14531. name: "Upsized",
  14532. height: math.unit(5 + 5 / 12, "feet")
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(5 + 6 / 12, "feet"),
  14541. weight: math.unit(200, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/vivian-bijoux/front.svg",
  14545. extra: 1217/1209,
  14546. bottom: 76/1293
  14547. }
  14548. },
  14549. back: {
  14550. height: math.unit(5 + 6 / 12, "feet"),
  14551. weight: math.unit(200, "lb"),
  14552. name: "Back",
  14553. image: {
  14554. source: "./media/characters/vivian-bijoux/back.svg",
  14555. extra: 1214/1208,
  14556. bottom: 51/1265
  14557. }
  14558. },
  14559. dressed: {
  14560. height: math.unit(5 + 6 / 12, "feet"),
  14561. weight: math.unit(200, "lb"),
  14562. name: "Dressed",
  14563. image: {
  14564. source: "./media/characters/vivian-bijoux/dressed.svg",
  14565. extra: 1217/1209,
  14566. bottom: 76/1293
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(5 + 6 / 12, "feet"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Bad Dream",
  14578. height: math.unit(500, "feet")
  14579. },
  14580. {
  14581. name: "Nightmare",
  14582. height: math.unit(500, "miles")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6 + 1 / 12, "feet"),
  14591. weight: math.unit(260, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/zeta/front.svg",
  14595. extra: 1968 / 1889,
  14596. bottom: 0.06
  14597. }
  14598. },
  14599. back: {
  14600. height: math.unit(6 + 1 / 12, "feet"),
  14601. weight: math.unit(260, "lb"),
  14602. name: "Back",
  14603. image: {
  14604. source: "./media/characters/zeta/back.svg",
  14605. extra: 1944 / 1858,
  14606. bottom: 0.03
  14607. }
  14608. },
  14609. hand: {
  14610. height: math.unit(1.112, "feet"),
  14611. name: "Hand",
  14612. image: {
  14613. source: "./media/characters/zeta/hand.svg"
  14614. }
  14615. },
  14616. foot: {
  14617. height: math.unit(1.48, "feet"),
  14618. name: "Foot",
  14619. image: {
  14620. source: "./media/characters/zeta/foot.svg"
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Micro",
  14627. height: math.unit(6, "inches")
  14628. },
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6 + 1 / 12, "feet"),
  14632. default: true
  14633. },
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(20, "feet")
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(150, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/jamie-larsen/front.svg",
  14649. extra: 962 / 933,
  14650. bottom: 0.02
  14651. }
  14652. },
  14653. back: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(150, "lb"),
  14656. name: "Back",
  14657. image: {
  14658. source: "./media/characters/jamie-larsen/back.svg",
  14659. extra: 997 / 946
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(28 + 7 / 12, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Macro+",
  14671. height: math.unit(180, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(10, "miles")
  14676. },
  14677. {
  14678. name: "Gigamacro",
  14679. height: math.unit(200000, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(120, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/vance/front.svg",
  14692. extra: 1980 / 1890,
  14693. bottom: 0.09
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(120, "lb"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/vance/back.svg",
  14702. extra: 2081 / 1994,
  14703. bottom: 0.014
  14704. }
  14705. },
  14706. hand: {
  14707. height: math.unit(0.88, "feet"),
  14708. name: "Hand",
  14709. image: {
  14710. source: "./media/characters/vance/hand.svg"
  14711. }
  14712. },
  14713. foot: {
  14714. height: math.unit(0.64, "feet"),
  14715. name: "Foot",
  14716. image: {
  14717. source: "./media/characters/vance/foot.svg"
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Small",
  14724. height: math.unit(90, "feet"),
  14725. default: true
  14726. },
  14727. {
  14728. name: "Macro",
  14729. height: math.unit(100, "meters")
  14730. },
  14731. {
  14732. name: "Megamacro",
  14733. height: math.unit(15, "miles")
  14734. },
  14735. ]
  14736. ))
  14737. characterMakers.push(() => makeCharacter(
  14738. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14739. {
  14740. front: {
  14741. height: math.unit(6, "feet"),
  14742. weight: math.unit(180, "lb"),
  14743. name: "Front",
  14744. image: {
  14745. source: "./media/characters/xochitl/front.svg",
  14746. extra: 2297 / 2261,
  14747. bottom: 0.065
  14748. }
  14749. },
  14750. back: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(180, "lb"),
  14753. name: "Back",
  14754. image: {
  14755. source: "./media/characters/xochitl/back.svg",
  14756. extra: 2386 / 2354,
  14757. bottom: 0.01
  14758. }
  14759. },
  14760. foot: {
  14761. height: math.unit(6 / 5 * 1.15, "feet"),
  14762. weight: math.unit(150, "lb"),
  14763. name: "Foot",
  14764. image: {
  14765. source: "./media/characters/xochitl/foot.svg"
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Macro",
  14772. height: math.unit(80, "feet")
  14773. },
  14774. {
  14775. name: "Macro+",
  14776. height: math.unit(400, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Gigamacro",
  14781. height: math.unit(80000, "miles")
  14782. },
  14783. {
  14784. name: "Gigamacro+",
  14785. height: math.unit(400000, "miles")
  14786. },
  14787. {
  14788. name: "Teramacro",
  14789. height: math.unit(300, "AU")
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(150, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/vincent/front.svg",
  14802. extra: 1130 / 1080,
  14803. bottom: 0.055
  14804. }
  14805. },
  14806. beak: {
  14807. height: math.unit(6 * 0.1, "feet"),
  14808. name: "Beak",
  14809. image: {
  14810. source: "./media/characters/vincent/beak.svg"
  14811. }
  14812. },
  14813. hand: {
  14814. height: math.unit(6 * 0.85, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Hand",
  14817. image: {
  14818. source: "./media/characters/vincent/hand.svg"
  14819. }
  14820. },
  14821. foot: {
  14822. height: math.unit(6 * 0.19, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Foot",
  14825. image: {
  14826. source: "./media/characters/vincent/foot.svg"
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Base",
  14833. height: math.unit(6 + 5 / 12, "feet"),
  14834. default: true
  14835. },
  14836. {
  14837. name: "Macro",
  14838. height: math.unit(300, "feet")
  14839. },
  14840. {
  14841. name: "Megamacro",
  14842. height: math.unit(2, "miles")
  14843. },
  14844. {
  14845. name: "Gigamacro",
  14846. height: math.unit(1000, "miles")
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(2, "meters"),
  14855. weight: math.unit(500, "kg"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/coatl/front.svg",
  14859. extra: 3948 / 3500,
  14860. bottom: 0.082
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(4, "meters")
  14868. },
  14869. {
  14870. name: "Macro",
  14871. height: math.unit(100, "meters"),
  14872. default: true
  14873. },
  14874. {
  14875. name: "Macro+",
  14876. height: math.unit(300, "meters")
  14877. },
  14878. {
  14879. name: "Megamacro",
  14880. height: math.unit(3, "gigameters")
  14881. },
  14882. {
  14883. name: "Megamacro+",
  14884. height: math.unit(300, "terameters")
  14885. },
  14886. {
  14887. name: "Megamacro++",
  14888. height: math.unit(3, "lightyears")
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(6, "feet"),
  14897. weight: math.unit(50, "kg"),
  14898. name: "front",
  14899. image: {
  14900. source: "./media/characters/shiroryu/front.svg",
  14901. extra: 1990 / 1935
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Mortal Mingling",
  14908. height: math.unit(3, "meters")
  14909. },
  14910. {
  14911. name: "Kaiju-ish",
  14912. height: math.unit(250, "meters")
  14913. },
  14914. {
  14915. name: "Somewhat Godly",
  14916. height: math.unit(400, "km"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Planetary",
  14921. height: math.unit(300, "megameters")
  14922. },
  14923. {
  14924. name: "Galaxy-dwarfing",
  14925. height: math.unit(450, "kiloparsecs")
  14926. },
  14927. {
  14928. name: "Universe Eater",
  14929. height: math.unit(150, "gigaparsecs")
  14930. },
  14931. {
  14932. name: "Almost Immeasurable",
  14933. height: math.unit(1.3e266, "yottaparsecs")
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(150, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/umeko/front.svg",
  14946. extra: 1,
  14947. bottom: 0.019
  14948. }
  14949. },
  14950. frontArmored: {
  14951. height: math.unit(6, "feet"),
  14952. weight: math.unit(150, "lb"),
  14953. name: "Front (Armored)",
  14954. image: {
  14955. source: "./media/characters/umeko/front-armored.svg",
  14956. extra: 1,
  14957. bottom: 0.021
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(220, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Guardian Dragon",
  14969. height: math.unit(50, "miles")
  14970. },
  14971. {
  14972. name: "Cosmic",
  14973. height: math.unit(800000, "miles")
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14979. {
  14980. front: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/cassidy/front.svg",
  14986. extra: 810/808,
  14987. bottom: 41/851
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Canon Height",
  14994. height: math.unit(120, "feet"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Macro+",
  14999. height: math.unit(400, "feet")
  15000. },
  15001. {
  15002. name: "Macro++",
  15003. height: math.unit(4000, "feet")
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(3, "miles")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(150, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/isaac/front.svg",
  15020. extra: 896 / 815,
  15021. bottom: 0.11
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Human Size",
  15028. height: math.unit(8, "feet"),
  15029. default: true
  15030. },
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(400, "feet")
  15034. },
  15035. {
  15036. name: "Megamacro",
  15037. height: math.unit(50, "miles")
  15038. },
  15039. {
  15040. name: "Canon Height",
  15041. height: math.unit(200, "AU")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(72, "kg"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/sleekit/front.svg",
  15054. extra: 4693 / 4487,
  15055. bottom: 0.012
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Minimum Height",
  15062. height: math.unit(10, "meters")
  15063. },
  15064. {
  15065. name: "Smaller",
  15066. height: math.unit(25, "meters")
  15067. },
  15068. {
  15069. name: "Larger",
  15070. height: math.unit(38, "meters"),
  15071. default: true
  15072. },
  15073. {
  15074. name: "Maximum height",
  15075. height: math.unit(100, "meters")
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(150, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/nillia/front.svg",
  15088. extra: 2195 / 2037,
  15089. bottom: 0.005
  15090. }
  15091. },
  15092. back: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(150, "lb"),
  15095. name: "Back",
  15096. image: {
  15097. source: "./media/characters/nillia/back.svg",
  15098. extra: 2195 / 2037,
  15099. bottom: 0.005
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Canon Height",
  15106. height: math.unit(489, "feet"),
  15107. default: true
  15108. }
  15109. ]
  15110. ))
  15111. characterMakers.push(() => makeCharacter(
  15112. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15113. {
  15114. front: {
  15115. height: math.unit(6, "feet"),
  15116. weight: math.unit(150, "lb"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/mesmyriza/front.svg",
  15120. extra: 2067 / 1784,
  15121. bottom: 0.035
  15122. }
  15123. },
  15124. foot: {
  15125. height: math.unit(6 / (250 / 35), "feet"),
  15126. name: "Foot",
  15127. image: {
  15128. source: "./media/characters/mesmyriza/foot.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Macro",
  15135. height: math.unit(457, "meters"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Megamacro",
  15140. height: math.unit(8, "megameters")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(250, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/saudade/front.svg",
  15153. extra: 1172 / 1139,
  15154. bottom: 0.035
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Micro",
  15161. height: math.unit(3, "inches")
  15162. },
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(6, "feet"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Macro",
  15170. height: math.unit(50, "feet")
  15171. },
  15172. {
  15173. name: "Megamacro",
  15174. height: math.unit(2800, "feet")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(5 + 4 / 12, "feet"),
  15183. weight: math.unit(100, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/keireer/front.svg",
  15187. extra: 716 / 666,
  15188. bottom: 0.05
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(5 + 4 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(5.5, "feet"),
  15205. weight: math.unit(90, "kg"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/mirja/front.svg",
  15209. extra: 1452/1262,
  15210. bottom: 67/1519
  15211. }
  15212. },
  15213. frontDressed: {
  15214. height: math.unit(5.5, "feet"),
  15215. weight: math.unit(90, "lb"),
  15216. name: "Front (Dressed)",
  15217. image: {
  15218. source: "./media/characters/mirja/dressed.svg",
  15219. extra: 1452/1262,
  15220. bottom: 67/1519
  15221. }
  15222. },
  15223. back: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(90, "lb"),
  15226. name: "Back",
  15227. image: {
  15228. source: "./media/characters/mirja/back.svg",
  15229. extra: 1892/1795,
  15230. bottom: 48/1940
  15231. }
  15232. },
  15233. maw: {
  15234. height: math.unit(1.312, "feet"),
  15235. name: "Maw",
  15236. image: {
  15237. source: "./media/characters/mirja/maw.svg"
  15238. }
  15239. },
  15240. paw: {
  15241. height: math.unit(1.15, "feet"),
  15242. name: "Paw",
  15243. image: {
  15244. source: "./media/characters/mirja/paw.svg"
  15245. }
  15246. },
  15247. },
  15248. [
  15249. {
  15250. name: "\"Incognito\"",
  15251. height: math.unit(3, "meters")
  15252. },
  15253. {
  15254. name: "Strolling Size",
  15255. height: math.unit(15, "km")
  15256. },
  15257. {
  15258. name: "Larger Strolling Size",
  15259. height: math.unit(400, "km")
  15260. },
  15261. {
  15262. name: "Preferred Size",
  15263. height: math.unit(5000, "km"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "True Size",
  15268. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(15, "feet"),
  15277. weight: math.unit(880, "kg"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/nightraver/front.svg",
  15281. extra: 2444 / 2160,
  15282. bottom: 0.027
  15283. }
  15284. },
  15285. back: {
  15286. height: math.unit(15, "feet"),
  15287. weight: math.unit(880, "kg"),
  15288. name: "Back",
  15289. image: {
  15290. source: "./media/characters/nightraver/back.svg",
  15291. extra: 2309 / 2180,
  15292. bottom: 0.005
  15293. }
  15294. },
  15295. sole: {
  15296. height: math.unit(2.878, "feet"),
  15297. name: "Sole",
  15298. image: {
  15299. source: "./media/characters/nightraver/sole.svg"
  15300. }
  15301. },
  15302. foot: {
  15303. height: math.unit(2.285, "feet"),
  15304. name: "Foot",
  15305. image: {
  15306. source: "./media/characters/nightraver/foot.svg"
  15307. }
  15308. },
  15309. maw: {
  15310. height: math.unit(2.67, "feet"),
  15311. name: "Maw",
  15312. image: {
  15313. source: "./media/characters/nightraver/maw.svg"
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Micro",
  15320. height: math.unit(1, "cm")
  15321. },
  15322. {
  15323. name: "Normal",
  15324. height: math.unit(15, "feet"),
  15325. default: true
  15326. },
  15327. {
  15328. name: "Macro",
  15329. height: math.unit(300, "feet")
  15330. },
  15331. {
  15332. name: "Megamacro",
  15333. height: math.unit(300, "miles")
  15334. },
  15335. {
  15336. name: "Gigamacro",
  15337. height: math.unit(10000, "miles")
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15343. {
  15344. side: {
  15345. height: math.unit(2, "inches"),
  15346. weight: math.unit(5, "grams"),
  15347. name: "Side",
  15348. image: {
  15349. source: "./media/characters/arc/side.svg"
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Micro",
  15356. height: math.unit(2, "inches"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(1.1938, "meters"),
  15366. weight: math.unit(54, "kg"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/nebula-shahar/front.svg",
  15370. extra: 1642 / 1436,
  15371. bottom: 0.06
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Megamicro",
  15378. height: math.unit(0.3, "mm")
  15379. },
  15380. {
  15381. name: "Micro",
  15382. height: math.unit(3, "cm")
  15383. },
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(138, "cm"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Macro",
  15391. height: math.unit(30, "m")
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(5.24, "feet"),
  15400. weight: math.unit(150, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/shayla/front.svg",
  15404. extra: 1512 / 1414,
  15405. bottom: 0.01
  15406. }
  15407. },
  15408. back: {
  15409. height: math.unit(5.24, "feet"),
  15410. weight: math.unit(150, "lb"),
  15411. name: "Back",
  15412. image: {
  15413. source: "./media/characters/shayla/back.svg",
  15414. extra: 1512 / 1414
  15415. }
  15416. },
  15417. hand: {
  15418. height: math.unit(0.7781496062992126, "feet"),
  15419. name: "Hand",
  15420. image: {
  15421. source: "./media/characters/shayla/hand.svg"
  15422. }
  15423. },
  15424. foot: {
  15425. height: math.unit(1.4206036745406823, "feet"),
  15426. name: "Foot",
  15427. image: {
  15428. source: "./media/characters/shayla/foot.svg"
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Micro",
  15435. height: math.unit(0.32, "feet")
  15436. },
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(5.24, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(492.12, "feet")
  15445. },
  15446. {
  15447. name: "Megamacro",
  15448. height: math.unit(186.41, "miles")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(2.2, "m"),
  15457. weight: math.unit(120, "kg"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/pia-jr/front.svg",
  15461. extra: 1000 / 970,
  15462. bottom: 0.035
  15463. }
  15464. },
  15465. hand: {
  15466. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15467. name: "Hand",
  15468. image: {
  15469. source: "./media/characters/pia-jr/hand.svg"
  15470. }
  15471. },
  15472. paw: {
  15473. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15474. name: "Paw",
  15475. image: {
  15476. source: "./media/characters/pia-jr/paw.svg"
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Micro",
  15483. height: math.unit(1.2, "cm")
  15484. },
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(2.2, "m"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Macro",
  15492. height: math.unit(180, "m")
  15493. },
  15494. {
  15495. name: "Megamacro",
  15496. height: math.unit(420, "km")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(2, "m"),
  15505. weight: math.unit(115, "kg"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/pia-sr/front.svg",
  15509. extra: 760 / 730,
  15510. bottom: 0.015
  15511. }
  15512. },
  15513. back: {
  15514. height: math.unit(2, "m"),
  15515. weight: math.unit(115, "kg"),
  15516. name: "Back",
  15517. image: {
  15518. source: "./media/characters/pia-sr/back.svg",
  15519. extra: 760 / 730,
  15520. bottom: 0.01
  15521. }
  15522. },
  15523. hand: {
  15524. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15525. name: "Hand",
  15526. image: {
  15527. source: "./media/characters/pia-sr/hand.svg"
  15528. }
  15529. },
  15530. foot: {
  15531. height: math.unit(1.83, "feet"),
  15532. name: "Foot",
  15533. image: {
  15534. source: "./media/characters/pia-sr/foot.svg"
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Micro",
  15541. height: math.unit(88, "mm")
  15542. },
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(2, "m"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Macro",
  15550. height: math.unit(200, "m")
  15551. },
  15552. {
  15553. name: "Megamacro",
  15554. height: math.unit(420, "km")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(8 + 2 / 12, "feet"),
  15563. weight: math.unit(300, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/kibibyte/front.svg",
  15567. extra: 2221 / 2098,
  15568. bottom: 0.04
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(8 + 2 / 12, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Socialable Macro",
  15580. height: math.unit(50, "feet")
  15581. },
  15582. {
  15583. name: "Macro",
  15584. height: math.unit(300, "feet")
  15585. },
  15586. {
  15587. name: "Megamacro",
  15588. height: math.unit(500, "miles")
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(150, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/felix/front.svg",
  15601. extra: 762 / 722,
  15602. bottom: 0.02
  15603. }
  15604. },
  15605. frontClothed: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Front (Clothed)",
  15609. image: {
  15610. source: "./media/characters/felix/front-clothed.svg",
  15611. extra: 762 / 722,
  15612. bottom: 0.02
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(6 + 8 / 12, "feet"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(2600, "feet")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(450, "miles")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(6 + 1 / 12, "feet"),
  15637. weight: math.unit(250, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/tobo/front.svg",
  15641. extra: 608 / 586,
  15642. bottom: 0.023
  15643. }
  15644. },
  15645. back: {
  15646. height: math.unit(6 + 1 / 12, "feet"),
  15647. weight: math.unit(250, "lb"),
  15648. name: "Back",
  15649. image: {
  15650. source: "./media/characters/tobo/back.svg",
  15651. extra: 608 / 586
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Nano",
  15658. height: math.unit(2, "nm")
  15659. },
  15660. {
  15661. name: "Megamicro",
  15662. height: math.unit(0.1, "mm")
  15663. },
  15664. {
  15665. name: "Micro",
  15666. height: math.unit(1, "inch"),
  15667. default: true
  15668. },
  15669. {
  15670. name: "Human-sized",
  15671. height: math.unit(6 + 1 / 12, "feet")
  15672. },
  15673. {
  15674. name: "Macro",
  15675. height: math.unit(250, "feet")
  15676. },
  15677. {
  15678. name: "Megamacro",
  15679. height: math.unit(75, "miles")
  15680. },
  15681. {
  15682. name: "Texas-sized",
  15683. height: math.unit(750, "miles")
  15684. },
  15685. {
  15686. name: "Teramacro",
  15687. height: math.unit(50000, "miles")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(269, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/danny-kapowsky/front.svg",
  15700. extra: 766 / 736,
  15701. bottom: 0.044
  15702. }
  15703. },
  15704. back: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(269, "lb"),
  15707. name: "Back",
  15708. image: {
  15709. source: "./media/characters/danny-kapowsky/back.svg",
  15710. extra: 797 / 760,
  15711. bottom: 0.025
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(150, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro+",
  15723. height: math.unit(200, "feet")
  15724. },
  15725. {
  15726. name: "Macro++",
  15727. height: math.unit(300, "feet")
  15728. },
  15729. {
  15730. name: "Macro+++",
  15731. height: math.unit(400, "feet")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15737. {
  15738. side: {
  15739. height: math.unit(6, "feet"),
  15740. weight: math.unit(170, "lb"),
  15741. name: "Side",
  15742. image: {
  15743. source: "./media/characters/finn/side.svg",
  15744. extra: 1953 / 1807,
  15745. bottom: 0.057
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Megamacro",
  15752. height: math.unit(14445, "feet"),
  15753. default: true
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(5 + 6 / 12, "feet"),
  15762. weight: math.unit(125, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/roy/front.svg",
  15766. extra: 1,
  15767. bottom: 0.11
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Micro",
  15774. height: math.unit(3, "inches"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(5 + 6 / 12, "feet")
  15780. },
  15781. {
  15782. name: "Lesser Macro",
  15783. height: math.unit(60, "feet")
  15784. },
  15785. {
  15786. name: "Greater Macro",
  15787. height: math.unit(120, "feet")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6, "feet"),
  15796. weight: math.unit(100, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/aevsivs/front.svg",
  15800. extra: 1,
  15801. bottom: 0.03
  15802. }
  15803. },
  15804. back: {
  15805. height: math.unit(6, "feet"),
  15806. weight: math.unit(100, "lb"),
  15807. name: "Back",
  15808. image: {
  15809. source: "./media/characters/aevsivs/back.svg"
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Micro",
  15816. height: math.unit(2, "inches"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(5, "feet")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(5 + 7 / 12, "feet"),
  15830. weight: math.unit(159, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/hildegard/front.svg",
  15834. extra: 289 / 269,
  15835. bottom: 7.63 / 297.8
  15836. }
  15837. },
  15838. back: {
  15839. height: math.unit(5 + 7 / 12, "feet"),
  15840. weight: math.unit(159, "lb"),
  15841. name: "Back",
  15842. image: {
  15843. source: "./media/characters/hildegard/back.svg",
  15844. extra: 280 / 260,
  15845. bottom: 2.3 / 282
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(5 + 7 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15859. {
  15860. bernard: {
  15861. height: math.unit(2 + 7 / 12, "feet"),
  15862. weight: math.unit(66, "lb"),
  15863. name: "Bernard",
  15864. rename: true,
  15865. image: {
  15866. source: "./media/characters/bernard-wilder/bernard.svg",
  15867. extra: 192 / 128,
  15868. bottom: 0.05
  15869. }
  15870. },
  15871. wilder: {
  15872. height: math.unit(5 + 8 / 12, "feet"),
  15873. weight: math.unit(143, "lb"),
  15874. name: "Wilder",
  15875. rename: true,
  15876. image: {
  15877. source: "./media/characters/bernard-wilder/wilder.svg",
  15878. extra: 361 / 312,
  15879. bottom: 0.02
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(2 + 7 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15893. {
  15894. anthro: {
  15895. height: math.unit(6 + 1 / 12, "feet"),
  15896. weight: math.unit(155, "lb"),
  15897. name: "Anthro",
  15898. image: {
  15899. source: "./media/characters/hearth/anthro.svg",
  15900. extra: 1178/1136,
  15901. bottom: 28/1206
  15902. }
  15903. },
  15904. feral: {
  15905. height: math.unit(3.78, "feet"),
  15906. weight: math.unit(35, "kg"),
  15907. name: "Feral",
  15908. image: {
  15909. source: "./media/characters/hearth/feral.svg",
  15910. extra: 153 / 135,
  15911. bottom: 0.03
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(6 + 1 / 12, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(6, "feet"),
  15928. weight: math.unit(182, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/ingrid/front.svg",
  15932. extra: 294 / 268,
  15933. bottom: 0.027
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(6, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15947. {
  15948. eevee: {
  15949. height: math.unit(2 + 10 / 12, "feet"),
  15950. weight: math.unit(86, "lb"),
  15951. name: "Malgam",
  15952. image: {
  15953. source: "./media/characters/malgam/eevee.svg",
  15954. extra: 952/784,
  15955. bottom: 38/990
  15956. }
  15957. },
  15958. sylveon: {
  15959. height: math.unit(4, "feet"),
  15960. weight: math.unit(101, "lb"),
  15961. name: "Future Malgam",
  15962. rename: true,
  15963. image: {
  15964. source: "./media/characters/malgam/sylveon.svg",
  15965. extra: 371 / 325,
  15966. bottom: 0.015
  15967. }
  15968. },
  15969. gigantamax: {
  15970. height: math.unit(50, "feet"),
  15971. name: "Gigantamax Malgam",
  15972. rename: true,
  15973. image: {
  15974. source: "./media/characters/malgam/gigantamax.svg"
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(2 + 10 / 12, "feet"),
  15982. default: true
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15988. {
  15989. front: {
  15990. height: math.unit(5 + 11 / 12, "feet"),
  15991. weight: math.unit(188, "lb"),
  15992. name: "Front",
  15993. image: {
  15994. source: "./media/characters/fleur/front.svg",
  15995. extra: 309 / 283,
  15996. bottom: 0.007
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(5 + 11 / 12, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(5 + 4 / 12, "feet"),
  16013. weight: math.unit(122, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/jude/front.svg",
  16017. extra: 288 / 273,
  16018. bottom: 0.03
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(5 + 4 / 12, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(5 + 11 / 12, "feet"),
  16035. weight: math.unit(190, "lb"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/seara/front.svg",
  16039. extra: 1,
  16040. bottom: 0.05
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(5 + 11 / 12, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(16 + 5 / 12, "feet"),
  16057. weight: math.unit(524, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/caspian-lugia/front.svg",
  16061. extra: 1,
  16062. bottom: 0.04
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(16 + 5 / 12, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(5 + 7 / 12, "feet"),
  16079. weight: math.unit(170, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/mika/front.svg",
  16083. extra: 1,
  16084. bottom: 0.016
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(5 + 7 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(6 + 2 / 12, "feet"),
  16101. weight: math.unit(268, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/sol/front.svg",
  16105. extra: 247 / 231,
  16106. bottom: 0.05
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(6 + 2 / 12, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16120. {
  16121. buizel: {
  16122. height: math.unit(2 + 5 / 12, "feet"),
  16123. weight: math.unit(87, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/umiko/buizel.svg",
  16127. extra: 172 / 157,
  16128. bottom: 0.01
  16129. },
  16130. form: "buizel",
  16131. default: true
  16132. },
  16133. floatzel: {
  16134. height: math.unit(5 + 9 / 12, "feet"),
  16135. weight: math.unit(250, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/umiko/floatzel.svg",
  16139. extra: 1076/1006,
  16140. bottom: 15/1091
  16141. },
  16142. form: "floatzel",
  16143. default: true
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(2 + 5 / 12, "feet"),
  16150. form: "buizel",
  16151. default: true
  16152. },
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(5 + 9 / 12, "feet"),
  16156. form: "floatzel",
  16157. default: true
  16158. },
  16159. ],
  16160. {
  16161. "buizel": {
  16162. name: "Buizel"
  16163. },
  16164. "floatzel": {
  16165. name: "Floatzel",
  16166. default: true
  16167. }
  16168. }
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6 + 2 / 12, "feet"),
  16175. weight: math.unit(146, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/iliac/front.svg",
  16179. extra: 389 / 365,
  16180. bottom: 0.035
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Normal",
  16187. height: math.unit(6 + 2 / 12, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6, "feet"),
  16197. weight: math.unit(170, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/topaz/front.svg",
  16201. extra: 317 / 303,
  16202. bottom: 0.055
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(6, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(5 + 11 / 12, "feet"),
  16219. weight: math.unit(144, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/gabriel/front.svg",
  16223. extra: 285 / 262,
  16224. bottom: 0.004
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(5 + 11 / 12, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16238. {
  16239. side: {
  16240. height: math.unit(6 + 5 / 12, "feet"),
  16241. weight: math.unit(300, "lb"),
  16242. name: "Side",
  16243. image: {
  16244. source: "./media/characters/tempest-suicune/side.svg",
  16245. extra: 195 / 154,
  16246. bottom: 0.04
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(6 + 5 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(7 + 2 / 12, "feet"),
  16263. weight: math.unit(322, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/vulcan/front.svg",
  16267. extra: 154 / 147,
  16268. bottom: 0.04
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(7 + 2 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(5 + 10 / 12, "feet"),
  16285. weight: math.unit(264, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/gault/front.svg",
  16289. extra: 161 / 140,
  16290. bottom: 0.028
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(5 + 10 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/shard/front.svg",
  16311. extra: 273 / 238,
  16312. bottom: 0.02
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(3 + 6 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(5 + 11 / 12, "feet"),
  16329. weight: math.unit(146, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/ashe/front.svg",
  16333. extra: 400 / 373,
  16334. bottom: 0.01
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(5 + 11 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(5 + 5 / 12, "feet"),
  16351. weight: math.unit(135, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/beatrix/front.svg",
  16355. extra: 392 / 379,
  16356. bottom: 0.01
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(6, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(6 + 2/12, "feet"),
  16373. weight: math.unit(135, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/ignatius/front.svg",
  16377. extra: 1380/1259,
  16378. bottom: 27/1407
  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: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6 + 2 / 12, "feet"),
  16395. weight: math.unit(138, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/mei-li/front.svg",
  16399. extra: 237 / 229,
  16400. bottom: 0.03
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(6 + 2 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(2 + 4 / 12, "feet"),
  16417. weight: math.unit(62, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/puru/front.svg",
  16421. extra: 206 / 149,
  16422. bottom: 0.06
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(2 + 4 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16436. {
  16437. anthro: {
  16438. height: math.unit(5 + 8/12, "feet"),
  16439. weight: math.unit(200, "lb"),
  16440. energyNeed: math.unit(2000, "kcal"),
  16441. name: "Anthro",
  16442. image: {
  16443. source: "./media/characters/kee/anthro.svg",
  16444. extra: 3251/3184,
  16445. bottom: 250/3501
  16446. }
  16447. },
  16448. taur: {
  16449. height: math.unit(11, "feet"),
  16450. weight: math.unit(500, "lb"),
  16451. energyNeed: math.unit(5000, "kcal"),
  16452. name: "Taur",
  16453. image: {
  16454. source: "./media/characters/kee/taur.svg",
  16455. extra: 1362/1320,
  16456. bottom: 83/1445
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(5 + 8/12, "feet"),
  16464. default: true
  16465. },
  16466. {
  16467. name: "Macro",
  16468. height: math.unit(35, "feet")
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16474. {
  16475. anthro: {
  16476. height: math.unit(7, "feet"),
  16477. weight: math.unit(190, "lb"),
  16478. name: "Anthro",
  16479. image: {
  16480. source: "./media/characters/cobalt-dracha/anthro.svg",
  16481. extra: 231 / 225,
  16482. bottom: 0.04
  16483. }
  16484. },
  16485. feral: {
  16486. height: math.unit(9 + 7 / 12, "feet"),
  16487. weight: math.unit(294, "lb"),
  16488. name: "Feral",
  16489. image: {
  16490. source: "./media/characters/cobalt-dracha/feral.svg",
  16491. extra: 692 / 633,
  16492. bottom: 0.05
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(7, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16506. {
  16507. fallen: {
  16508. height: math.unit(11 + 8 / 12, "feet"),
  16509. weight: math.unit(485, "lb"),
  16510. name: "Java (Fallen)",
  16511. rename: true,
  16512. image: {
  16513. source: "./media/characters/java/fallen.svg",
  16514. extra: 226 / 208,
  16515. bottom: 0.005
  16516. }
  16517. },
  16518. godkin: {
  16519. height: math.unit(10 + 6 / 12, "feet"),
  16520. weight: math.unit(328, "lb"),
  16521. name: "Java (Godkin)",
  16522. rename: true,
  16523. image: {
  16524. source: "./media/characters/java/godkin.svg",
  16525. extra: 1104/1068,
  16526. bottom: 36/1140
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(11 + 8 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 9 / 12, "feet"),
  16543. weight: math.unit(170, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/purna/front.svg",
  16547. extra: 239 / 229,
  16548. bottom: 0.01
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 9 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5 + 9 / 12, "feet"),
  16565. weight: math.unit(142, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/kuva/front.svg",
  16569. extra: 281 / 271,
  16570. bottom: 0.006
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 9 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16584. {
  16585. anthro: {
  16586. height: math.unit(9 + 2 / 12, "feet"),
  16587. weight: math.unit(270, "lb"),
  16588. name: "Anthro",
  16589. image: {
  16590. source: "./media/characters/embra/anthro.svg",
  16591. extra: 200 / 187,
  16592. bottom: 0.02
  16593. }
  16594. },
  16595. feral: {
  16596. height: math.unit(18 + 8 / 12, "feet"),
  16597. weight: math.unit(576, "lb"),
  16598. name: "Feral",
  16599. image: {
  16600. source: "./media/characters/embra/feral.svg",
  16601. extra: 152 / 137,
  16602. bottom: 0.037
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(9 + 2 / 12, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16616. {
  16617. anthro: {
  16618. height: math.unit(10 + 9 / 12, "feet"),
  16619. weight: math.unit(224, "lb"),
  16620. name: "Anthro",
  16621. image: {
  16622. source: "./media/characters/grottos/anthro.svg",
  16623. extra: 350 / 332,
  16624. bottom: 0.045
  16625. }
  16626. },
  16627. feral: {
  16628. height: math.unit(20 + 7 / 12, "feet"),
  16629. weight: math.unit(629, "lb"),
  16630. name: "Feral",
  16631. image: {
  16632. source: "./media/characters/grottos/feral.svg",
  16633. extra: 207 / 190,
  16634. bottom: 0.05
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Normal",
  16641. height: math.unit(10 + 9 / 12, "feet"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16648. {
  16649. anthro: {
  16650. height: math.unit(9 + 6 / 12, "feet"),
  16651. weight: math.unit(298, "lb"),
  16652. name: "Anthro",
  16653. image: {
  16654. source: "./media/characters/frifna/anthro.svg",
  16655. extra: 282 / 269,
  16656. bottom: 0.015
  16657. }
  16658. },
  16659. feral: {
  16660. height: math.unit(16 + 2 / 12, "feet"),
  16661. weight: math.unit(624, "lb"),
  16662. name: "Feral",
  16663. image: {
  16664. source: "./media/characters/frifna/feral.svg"
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(9 + 6 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(6 + 2 / 12, "feet"),
  16681. weight: math.unit(168, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/elise/front.svg",
  16685. extra: 276 / 271
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(6 + 2 / 12, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(5 + 10 / 12, "feet"),
  16702. weight: math.unit(210, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/glade/front.svg",
  16706. extra: 258 / 247,
  16707. bottom: 0.008
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(5 + 10 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(5 + 10 / 12, "feet"),
  16724. weight: math.unit(129, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/rina/front.svg",
  16728. extra: 266 / 255,
  16729. bottom: 0.005
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(5 + 10 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(6 + 1 / 12, "feet"),
  16746. weight: math.unit(192, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/veronica/front.svg",
  16750. extra: 319 / 309,
  16751. bottom: 0.005
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(6 + 1 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(9 + 3 / 12, "feet"),
  16768. weight: math.unit(1100, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/braxton/front.svg",
  16772. extra: 1057 / 984,
  16773. bottom: 0.05
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(9 + 3 / 12, "feet")
  16781. },
  16782. {
  16783. name: "Giant",
  16784. height: math.unit(300, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(700, "feet")
  16790. },
  16791. {
  16792. name: "Megamacro",
  16793. height: math.unit(6000, "feet")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 7 / 12, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/blue-feyonics/front.svg",
  16806. extra: 1403 / 1306,
  16807. bottom: 0.047
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Normal",
  16814. height: math.unit(6 + 7 / 12, "feet"),
  16815. default: true
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(1.8, "meters"),
  16824. weight: math.unit(60, "kg"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/maxwell/front.svg",
  16828. extra: 2060 / 1873
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Micro",
  16835. height: math.unit(1, "mm")
  16836. },
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(1.8, "meter"),
  16840. default: true
  16841. },
  16842. {
  16843. name: "Macro",
  16844. height: math.unit(30, "meters")
  16845. },
  16846. {
  16847. name: "Megamacro",
  16848. height: math.unit(10, "km")
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(6, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/jack/front.svg",
  16861. extra: 1754 / 1640,
  16862. bottom: 0.01
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Normal",
  16869. height: math.unit(80000, "feet"),
  16870. default: true
  16871. },
  16872. {
  16873. name: "Max size",
  16874. height: math.unit(10, "lightyears")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16880. {
  16881. urban: {
  16882. height: math.unit(5, "feet"),
  16883. weight: math.unit(240, "lb"),
  16884. name: "Urban",
  16885. image: {
  16886. source: "./media/characters/cafat/urban.svg",
  16887. extra: 1223/1126,
  16888. bottom: 205/1428
  16889. }
  16890. },
  16891. summer: {
  16892. height: math.unit(5, "feet"),
  16893. weight: math.unit(240, "lb"),
  16894. name: "Summer",
  16895. image: {
  16896. source: "./media/characters/cafat/summer.svg",
  16897. extra: 1223/1126,
  16898. bottom: 205/1428
  16899. }
  16900. },
  16901. winter: {
  16902. height: math.unit(5, "feet"),
  16903. weight: math.unit(240, "lb"),
  16904. name: "Winter",
  16905. image: {
  16906. source: "./media/characters/cafat/winter.svg",
  16907. extra: 1223/1126,
  16908. bottom: 205/1428
  16909. }
  16910. },
  16911. lingerie: {
  16912. height: math.unit(5, "feet"),
  16913. weight: math.unit(240, "lb"),
  16914. name: "Lingerie",
  16915. image: {
  16916. source: "./media/characters/cafat/lingerie.svg",
  16917. extra: 1223/1126,
  16918. bottom: 205/1428
  16919. }
  16920. },
  16921. upright: {
  16922. height: math.unit(6.3, "feet"),
  16923. weight: math.unit(240, "lb"),
  16924. name: "Upright",
  16925. image: {
  16926. source: "./media/characters/cafat/upright.svg",
  16927. bottom: 0.01
  16928. }
  16929. },
  16930. uprightFull: {
  16931. height: math.unit(6.3, "feet"),
  16932. weight: math.unit(240, "lb"),
  16933. name: "Upright (Full)",
  16934. image: {
  16935. source: "./media/characters/cafat/upright-full.svg",
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Small",
  16943. height: math.unit(5, "feet"),
  16944. default: true
  16945. },
  16946. {
  16947. name: "Large",
  16948. height: math.unit(13, "feet")
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(6, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/verin-raharra/front.svg",
  16961. extra: 5019 / 4835,
  16962. bottom: 0.023
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(7 + 5 / 12, "feet"),
  16970. default: true
  16971. },
  16972. {
  16973. name: "Upsized",
  16974. height: math.unit(20, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(7, "feet"),
  16983. weight: math.unit(230, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/nakata/front.svg",
  16987. extra: 1.005,
  16988. bottom: 0.01
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(7, "feet"),
  16996. default: true
  16997. },
  16998. {
  16999. name: "Big",
  17000. height: math.unit(14, "feet")
  17001. },
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(400, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(4.91, "feet"),
  17013. weight: math.unit(100, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/lily/front.svg",
  17017. extra: 1585 / 1415,
  17018. bottom: 0.02
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(4.91, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17032. {
  17033. laying: {
  17034. height: math.unit(4 + 4 / 12, "feet"),
  17035. weight: math.unit(600, "lb"),
  17036. name: "Laying",
  17037. image: {
  17038. source: "./media/characters/sheila/laying.svg",
  17039. extra: 1333 / 1265,
  17040. bottom: 0.16
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(4 + 4 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(6, "feet"),
  17057. weight: math.unit(190, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/sax/front.svg",
  17061. extra: 1187 / 973,
  17062. bottom: 0.042
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Micro",
  17069. height: math.unit(4, "inches"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(150, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/pandora/front.svg",
  17083. extra: 2720 / 2556,
  17084. bottom: 0.015
  17085. }
  17086. },
  17087. back: {
  17088. height: math.unit(6, "feet"),
  17089. weight: math.unit(150, "lb"),
  17090. name: "Back",
  17091. image: {
  17092. source: "./media/characters/pandora/back.svg",
  17093. extra: 2720 / 2556,
  17094. bottom: 0.01
  17095. }
  17096. },
  17097. beans: {
  17098. height: math.unit(6 / 8, "feet"),
  17099. name: "Beans",
  17100. image: {
  17101. source: "./media/characters/pandora/beans.svg"
  17102. }
  17103. },
  17104. collar: {
  17105. height: math.unit(0.31, "feet"),
  17106. name: "Collar",
  17107. image: {
  17108. source: "./media/characters/pandora/collar.svg"
  17109. }
  17110. },
  17111. skirt: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(150, "lb"),
  17114. name: "Skirt",
  17115. image: {
  17116. source: "./media/characters/pandora/skirt.svg",
  17117. extra: 1622 / 1525,
  17118. bottom: 0.015
  17119. }
  17120. },
  17121. hoodie: {
  17122. height: math.unit(6, "feet"),
  17123. weight: math.unit(150, "lb"),
  17124. name: "Hoodie",
  17125. image: {
  17126. source: "./media/characters/pandora/hoodie.svg",
  17127. extra: 1622 / 1525,
  17128. bottom: 0.015
  17129. }
  17130. },
  17131. casual: {
  17132. height: math.unit(6, "feet"),
  17133. weight: math.unit(150, "lb"),
  17134. name: "Casual",
  17135. image: {
  17136. source: "./media/characters/pandora/casual.svg",
  17137. extra: 1622 / 1525,
  17138. bottom: 0.015
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Normal",
  17145. height: math.unit(6, "feet")
  17146. },
  17147. {
  17148. name: "Big Steppy",
  17149. height: math.unit(1, "km"),
  17150. default: true
  17151. },
  17152. {
  17153. name: "Galactic Steppy",
  17154. height: math.unit(2, "gigameters")
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17160. {
  17161. side: {
  17162. height: math.unit(10, "feet"),
  17163. weight: math.unit(800, "kg"),
  17164. name: "Side",
  17165. image: {
  17166. source: "./media/characters/venio-darcony/side.svg",
  17167. extra: 1373 / 1003,
  17168. bottom: 0.037
  17169. }
  17170. },
  17171. front: {
  17172. height: math.unit(19, "feet"),
  17173. weight: math.unit(800, "kg"),
  17174. name: "Front",
  17175. image: {
  17176. source: "./media/characters/venio-darcony/front.svg"
  17177. }
  17178. },
  17179. back: {
  17180. height: math.unit(19, "feet"),
  17181. weight: math.unit(800, "kg"),
  17182. name: "Back",
  17183. image: {
  17184. source: "./media/characters/venio-darcony/back.svg"
  17185. }
  17186. },
  17187. sideNsfw: {
  17188. height: math.unit(10, "feet"),
  17189. weight: math.unit(800, "kg"),
  17190. name: "Side (NSFW)",
  17191. image: {
  17192. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17193. extra: 1373 / 1003,
  17194. bottom: 0.037
  17195. }
  17196. },
  17197. frontNsfw: {
  17198. height: math.unit(19, "feet"),
  17199. weight: math.unit(800, "kg"),
  17200. name: "Front (NSFW)",
  17201. image: {
  17202. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17203. }
  17204. },
  17205. backNsfw: {
  17206. height: math.unit(19, "feet"),
  17207. weight: math.unit(800, "kg"),
  17208. name: "Back (NSFW)",
  17209. image: {
  17210. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17211. }
  17212. },
  17213. sideArmored: {
  17214. height: math.unit(10, "feet"),
  17215. weight: math.unit(800, "kg"),
  17216. name: "Side (Armored)",
  17217. image: {
  17218. source: "./media/characters/venio-darcony/side-armored.svg",
  17219. extra: 1373 / 1003,
  17220. bottom: 0.037
  17221. }
  17222. },
  17223. frontArmored: {
  17224. height: math.unit(19, "feet"),
  17225. weight: math.unit(900, "kg"),
  17226. name: "Front (Armored)",
  17227. image: {
  17228. source: "./media/characters/venio-darcony/front-armored.svg"
  17229. }
  17230. },
  17231. backArmored: {
  17232. height: math.unit(19, "feet"),
  17233. weight: math.unit(900, "kg"),
  17234. name: "Back (Armored)",
  17235. image: {
  17236. source: "./media/characters/venio-darcony/back-armored.svg"
  17237. }
  17238. },
  17239. sword: {
  17240. height: math.unit(10, "feet"),
  17241. weight: math.unit(50, "lb"),
  17242. name: "Sword",
  17243. image: {
  17244. source: "./media/characters/venio-darcony/sword.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(10, "feet")
  17252. },
  17253. {
  17254. name: "Macro",
  17255. height: math.unit(130, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro+",
  17260. height: math.unit(240, "feet")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/veski/front.svg",
  17273. extra: 1299 / 1225,
  17274. bottom: 0.04
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(6, "feet"),
  17279. weight: math.unit(150, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/veski/back.svg",
  17283. extra: 1299 / 1225,
  17284. bottom: 0.008
  17285. }
  17286. },
  17287. maw: {
  17288. height: math.unit(1.5 * 1.21, "feet"),
  17289. name: "Maw",
  17290. image: {
  17291. source: "./media/characters/veski/maw.svg"
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Macro",
  17298. height: math.unit(2, "km"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17305. {
  17306. front: {
  17307. height: math.unit(5 + 7 / 12, "feet"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/isabelle/front.svg",
  17311. extra: 2130 / 1976,
  17312. bottom: 0.05
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Supermicro",
  17319. height: math.unit(10, "micrometers")
  17320. },
  17321. {
  17322. name: "Micro",
  17323. height: math.unit(1, "inch")
  17324. },
  17325. {
  17326. name: "Tiny",
  17327. height: math.unit(5, "inches")
  17328. },
  17329. {
  17330. name: "Standard",
  17331. height: math.unit(5 + 7 / 12, "inches")
  17332. },
  17333. {
  17334. name: "Macro",
  17335. height: math.unit(80, "meters"),
  17336. default: true
  17337. },
  17338. {
  17339. name: "Megamacro",
  17340. height: math.unit(250, "meters")
  17341. },
  17342. {
  17343. name: "Gigamacro",
  17344. height: math.unit(5, "km")
  17345. },
  17346. {
  17347. name: "Cosmic",
  17348. height: math.unit(2.5e6, "miles")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(150, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/hanzo/front.svg",
  17361. extra: 374 / 344,
  17362. bottom: 0.02
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(8, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(7, "feet"),
  17379. weight: math.unit(130, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/anna/front.svg",
  17383. extra: 169 / 145,
  17384. bottom: 0.06
  17385. }
  17386. },
  17387. full: {
  17388. height: math.unit(4.96, "feet"),
  17389. weight: math.unit(220, "lb"),
  17390. name: "Full",
  17391. image: {
  17392. source: "./media/characters/anna/full.svg",
  17393. extra: 138 / 114,
  17394. bottom: 0.15
  17395. }
  17396. },
  17397. tongue: {
  17398. height: math.unit(2.53, "feet"),
  17399. name: "Tongue",
  17400. image: {
  17401. source: "./media/characters/anna/tongue.svg"
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(7, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(7, "feet"),
  17418. weight: math.unit(150, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/ian-corvid/front.svg",
  17422. extra: 150 / 142,
  17423. bottom: 0.02
  17424. }
  17425. },
  17426. back: {
  17427. height: math.unit(7, "feet"),
  17428. weight: math.unit(150, "lb"),
  17429. name: "Back",
  17430. image: {
  17431. source: "./media/characters/ian-corvid/back.svg",
  17432. extra: 150 / 143,
  17433. bottom: 0.01
  17434. }
  17435. },
  17436. stomping: {
  17437. height: math.unit(7, "feet"),
  17438. weight: math.unit(150, "lb"),
  17439. name: "Stomping",
  17440. image: {
  17441. source: "./media/characters/ian-corvid/stomping.svg",
  17442. extra: 76 / 72
  17443. }
  17444. },
  17445. sitting: {
  17446. height: math.unit(7 / 1.8, "feet"),
  17447. weight: math.unit(150, "lb"),
  17448. name: "Sitting",
  17449. image: {
  17450. source: "./media/characters/ian-corvid/sitting.svg",
  17451. extra: 1400 / 1269,
  17452. bottom: 0.15
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Tiny Microw",
  17459. height: math.unit(1, "inch")
  17460. },
  17461. {
  17462. name: "Microw",
  17463. height: math.unit(6, "inches")
  17464. },
  17465. {
  17466. name: "Crow",
  17467. height: math.unit(7 + 1 / 12, "feet"),
  17468. default: true
  17469. },
  17470. {
  17471. name: "Macrow",
  17472. height: math.unit(176, "feet")
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(5 + 7 / 12, "feet"),
  17481. weight: math.unit(147, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/natalie-kellon/front.svg",
  17485. extra: 1214 / 1141,
  17486. bottom: 0.02
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Micro",
  17493. height: math.unit(1 / 16, "inch")
  17494. },
  17495. {
  17496. name: "Tiny",
  17497. height: math.unit(4, "inches")
  17498. },
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(5 + 7 / 12, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Amazon",
  17506. height: math.unit(12, "feet")
  17507. },
  17508. {
  17509. name: "Giantess",
  17510. height: math.unit(160, "meters")
  17511. },
  17512. {
  17513. name: "Titaness",
  17514. height: math.unit(800, "meters")
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17520. {
  17521. front: {
  17522. height: math.unit(6, "feet"),
  17523. weight: math.unit(150, "lb"),
  17524. name: "Front",
  17525. image: {
  17526. source: "./media/characters/alluria/front.svg",
  17527. extra: 806 / 738,
  17528. bottom: 0.01
  17529. }
  17530. },
  17531. side: {
  17532. height: math.unit(6, "feet"),
  17533. weight: math.unit(150, "lb"),
  17534. name: "Side",
  17535. image: {
  17536. source: "./media/characters/alluria/side.svg",
  17537. extra: 800 / 750,
  17538. }
  17539. },
  17540. back: {
  17541. height: math.unit(6, "feet"),
  17542. weight: math.unit(150, "lb"),
  17543. name: "Back",
  17544. image: {
  17545. source: "./media/characters/alluria/back.svg",
  17546. extra: 806 / 738,
  17547. }
  17548. },
  17549. frontMaid: {
  17550. height: math.unit(6, "feet"),
  17551. weight: math.unit(150, "lb"),
  17552. name: "Front (Maid)",
  17553. image: {
  17554. source: "./media/characters/alluria/front-maid.svg",
  17555. extra: 806 / 738,
  17556. bottom: 0.01
  17557. }
  17558. },
  17559. sideMaid: {
  17560. height: math.unit(6, "feet"),
  17561. weight: math.unit(150, "lb"),
  17562. name: "Side (Maid)",
  17563. image: {
  17564. source: "./media/characters/alluria/side-maid.svg",
  17565. extra: 800 / 750,
  17566. bottom: 0.005
  17567. }
  17568. },
  17569. backMaid: {
  17570. height: math.unit(6, "feet"),
  17571. weight: math.unit(150, "lb"),
  17572. name: "Back (Maid)",
  17573. image: {
  17574. source: "./media/characters/alluria/back-maid.svg",
  17575. extra: 806 / 738,
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Micro",
  17582. height: math.unit(6, "inches"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/kyle/front.svg",
  17596. extra: 1069 / 962,
  17597. bottom: 77.228 / 1727.45
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(150, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(6, "feet"),
  17614. weight: math.unit(300, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/duncan/front.svg",
  17618. extra: 1650 / 1482,
  17619. bottom: 0.05
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Macro",
  17626. height: math.unit(100, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(5 + 4 / 12, "feet"),
  17636. weight: math.unit(220, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/memory/front.svg",
  17640. extra: 3641 / 3545,
  17641. bottom: 0.03
  17642. }
  17643. },
  17644. back: {
  17645. height: math.unit(5 + 4 / 12, "feet"),
  17646. weight: math.unit(220, "lb"),
  17647. name: "Back",
  17648. image: {
  17649. source: "./media/characters/memory/back.svg",
  17650. extra: 3641 / 3545,
  17651. bottom: 0.025
  17652. }
  17653. },
  17654. frontSkirt: {
  17655. height: math.unit(5 + 4 / 12, "feet"),
  17656. weight: math.unit(220, "lb"),
  17657. name: "Front (Skirt)",
  17658. image: {
  17659. source: "./media/characters/memory/front-skirt.svg",
  17660. extra: 3641 / 3545,
  17661. bottom: 0.03
  17662. }
  17663. },
  17664. frontDress: {
  17665. height: math.unit(5 + 4 / 12, "feet"),
  17666. weight: math.unit(220, "lb"),
  17667. name: "Front (Dress)",
  17668. image: {
  17669. source: "./media/characters/memory/front-dress.svg",
  17670. extra: 3641 / 3545,
  17671. bottom: 0.03
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Micro",
  17678. height: math.unit(6, "inches"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(5 + 4 / 12, "feet")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(4 + 11 / 12, "feet"),
  17692. weight: math.unit(100, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/luno/front.svg",
  17696. extra: 1535 / 1487,
  17697. bottom: 0.03
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Micro",
  17704. height: math.unit(3, "inches")
  17705. },
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(4 + 11 / 12, "feet"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "Macro",
  17713. height: math.unit(300, "feet")
  17714. },
  17715. {
  17716. name: "Megamacro",
  17717. height: math.unit(700, "miles")
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(6 + 2 / 12, "feet"),
  17726. weight: math.unit(170, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/jamesy/front.svg",
  17730. extra: 440 / 382,
  17731. bottom: 0.005
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(3, "inches")
  17739. },
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(6 + 2 / 12, "feet"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Macro",
  17747. height: math.unit(300, "feet")
  17748. },
  17749. {
  17750. name: "Megamacro",
  17751. height: math.unit(700, "miles")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(6, "feet"),
  17760. weight: math.unit(160, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/mark/front.svg",
  17764. extra: 3300 / 3100,
  17765. bottom: 136.42 / 3440.47
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Macro",
  17772. height: math.unit(120, "meters")
  17773. },
  17774. {
  17775. name: "Bigger Macro",
  17776. height: math.unit(350, "meters")
  17777. },
  17778. {
  17779. name: "Megamacro",
  17780. height: math.unit(8, "km"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Continental",
  17785. height: math.unit(4550, "km")
  17786. },
  17787. {
  17788. name: "Planetary",
  17789. height: math.unit(65000, "km")
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17795. {
  17796. front: {
  17797. height: math.unit(6, "feet"),
  17798. weight: math.unit(400, "lb"),
  17799. name: "Front",
  17800. image: {
  17801. source: "./media/characters/mac/front.svg",
  17802. extra: 1048 / 987.7,
  17803. bottom: 60 / 1107.6,
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Macro",
  17810. height: math.unit(500, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(5 + 2 / 12, "feet"),
  17820. weight: math.unit(190, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/bari/front.svg",
  17824. extra: 3156 / 2880,
  17825. bottom: 0.03
  17826. }
  17827. },
  17828. back: {
  17829. height: math.unit(5 + 2 / 12, "feet"),
  17830. weight: math.unit(190, "lb"),
  17831. name: "Back",
  17832. image: {
  17833. source: "./media/characters/bari/back.svg",
  17834. extra: 3260 / 2834,
  17835. bottom: 0.025
  17836. }
  17837. },
  17838. frontPlush: {
  17839. height: math.unit(5 + 2 / 12, "feet"),
  17840. weight: math.unit(190, "lb"),
  17841. name: "Front (Plush)",
  17842. image: {
  17843. source: "./media/characters/bari/front-plush.svg",
  17844. extra: 1112 / 1061,
  17845. bottom: 0.002
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Micro",
  17852. height: math.unit(3, "inches")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(5 + 2 / 12, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macro",
  17861. height: math.unit(20, "feet")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(6 + 1 / 12, "feet"),
  17870. weight: math.unit(275, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/hunter-misha-raven/front.svg"
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Mortal",
  17880. height: math.unit(6 + 1 / 12, "feet")
  17881. },
  17882. {
  17883. name: "Divine",
  17884. height: math.unit(1.12134e34, "parsecs"),
  17885. default: true
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(6 + 3 / 12, "feet"),
  17894. weight: math.unit(220, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/max-calore/front.svg",
  17898. extra: 1700 / 1648,
  17899. bottom: 0.01
  17900. }
  17901. },
  17902. back: {
  17903. height: math.unit(6 + 3 / 12, "feet"),
  17904. weight: math.unit(220, "lb"),
  17905. name: "Back",
  17906. image: {
  17907. source: "./media/characters/max-calore/back.svg",
  17908. extra: 1700 / 1648,
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(6 + 3 / 12, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17923. {
  17924. side: {
  17925. height: math.unit(2 + 8 / 12, "feet"),
  17926. weight: math.unit(99, "lb"),
  17927. name: "Side",
  17928. image: {
  17929. source: "./media/characters/aspen/side.svg",
  17930. extra: 152 / 138,
  17931. bottom: 0.032
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(2 + 8 / 12, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17945. {
  17946. side: {
  17947. height: math.unit(3 + 2 / 12, "feet"),
  17948. weight: math.unit(224, "lb"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/sheila-feral-wolf/side.svg",
  17952. extra: 179 / 166,
  17953. bottom: 0.03
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(3 + 2 / 12, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17967. {
  17968. side: {
  17969. height: math.unit(1 + 9 / 12, "feet"),
  17970. weight: math.unit(38, "lb"),
  17971. name: "Side",
  17972. image: {
  17973. source: "./media/characters/michelle/side.svg",
  17974. extra: 147 / 136.7,
  17975. bottom: 0.03
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Normal",
  17982. height: math.unit(1 + 9 / 12, "feet"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(1.54, "feet"),
  17992. weight: math.unit(50, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/nino/front.svg"
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(1.54, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(1.49, "feet"),
  18012. weight: math.unit(45, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/viola/front.svg"
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(1.49, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(6 + 5 / 12, "feet"),
  18032. weight: math.unit(580, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/atlas/front.svg",
  18036. extra: 298.5 / 290,
  18037. bottom: 0.015
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(6 + 5 / 12, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18051. {
  18052. side: {
  18053. height: math.unit(15.6, "inches"),
  18054. weight: math.unit(10, "lb"),
  18055. name: "Side",
  18056. image: {
  18057. source: "./media/characters/davy/side.svg",
  18058. extra: 200 / 170,
  18059. bottom: 0.01
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(15.6, "inches"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18073. {
  18074. side: {
  18075. height: math.unit(4 + 8 / 12, "feet"),
  18076. weight: math.unit(166, "lb"),
  18077. name: "Side",
  18078. image: {
  18079. source: "./media/characters/fiona/side.svg",
  18080. extra: 232 / 220,
  18081. bottom: 0.03
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(4 + 8 / 12, "feet"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18095. {
  18096. front: {
  18097. height: math.unit(26, "inches"),
  18098. weight: math.unit(35, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/lyla/front.svg",
  18102. bottom: 0.1
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(3, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18116. {
  18117. side: {
  18118. height: math.unit(1.8, "feet"),
  18119. weight: math.unit(44, "lb"),
  18120. name: "Side",
  18121. image: {
  18122. source: "./media/characters/perseus/side.svg",
  18123. bottom: 0.21
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(1.8, "feet"),
  18131. default: true
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18137. {
  18138. side: {
  18139. height: math.unit(4 + 2 / 12, "feet"),
  18140. weight: math.unit(20, "lb"),
  18141. name: "Side",
  18142. image: {
  18143. source: "./media/characters/remus/side.svg"
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(4 + 2 / 12, "feet"),
  18151. default: true
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(4 + 11 / 12, "feet"),
  18160. weight: math.unit(114, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/raf/front.svg",
  18164. extra: 1504/1339,
  18165. bottom: 26/1530
  18166. }
  18167. },
  18168. side: {
  18169. height: math.unit(4 + 11 / 12, "feet"),
  18170. weight: math.unit(114, "lb"),
  18171. name: "Side",
  18172. image: {
  18173. source: "./media/characters/raf/side.svg",
  18174. extra: 1466/1316,
  18175. bottom: 29/1495
  18176. }
  18177. },
  18178. paw: {
  18179. height: math.unit(1.45, "feet"),
  18180. name: "Paw",
  18181. image: {
  18182. source: "./media/characters/raf/paw.svg"
  18183. },
  18184. extraAttributes: {
  18185. "toeSize": {
  18186. name: "Toe Size",
  18187. power: 2,
  18188. type: "area",
  18189. base: math.unit(0.004, "m^2")
  18190. },
  18191. "padSize": {
  18192. name: "Pad Size",
  18193. power: 2,
  18194. type: "area",
  18195. base: math.unit(0.04, "m^2")
  18196. },
  18197. "footSize": {
  18198. name: "Foot Size",
  18199. power: 2,
  18200. type: "area",
  18201. base: math.unit(0.08, "m^2")
  18202. },
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Micro",
  18209. height: math.unit(2, "inches")
  18210. },
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(4 + 11 / 12, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Macro",
  18218. height: math.unit(70, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(1.5, "meters"),
  18227. weight: math.unit(68, "kg"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/liam-einarr/front.svg",
  18231. extra: 2822 / 2666
  18232. }
  18233. },
  18234. back: {
  18235. height: math.unit(1.5, "meters"),
  18236. weight: math.unit(68, "kg"),
  18237. name: "Back",
  18238. image: {
  18239. source: "./media/characters/liam-einarr/back.svg",
  18240. extra: 2822 / 2666,
  18241. bottom: 0.015
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(1.5, "meters"),
  18249. default: true
  18250. },
  18251. {
  18252. name: "Macro",
  18253. height: math.unit(150, "meters")
  18254. },
  18255. {
  18256. name: "Megamacro",
  18257. height: math.unit(35, "km")
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(75, "kg"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/linda/front.svg",
  18270. extra: 930 / 874,
  18271. bottom: 0.004
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(6, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(6 + 8 / 12, "feet"),
  18288. weight: math.unit(220, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/caylex/front.svg",
  18292. extra: 821 / 772,
  18293. bottom: 0.07
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(6 + 8 / 12, "feet"),
  18298. weight: math.unit(220, "lb"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/caylex/back.svg",
  18302. extra: 821 / 772,
  18303. bottom: 0.022
  18304. }
  18305. },
  18306. hand: {
  18307. height: math.unit(1.25, "feet"),
  18308. name: "Hand",
  18309. image: {
  18310. source: "./media/characters/caylex/hand.svg"
  18311. }
  18312. },
  18313. foot: {
  18314. height: math.unit(1.6, "feet"),
  18315. name: "Foot",
  18316. image: {
  18317. source: "./media/characters/caylex/foot.svg"
  18318. }
  18319. },
  18320. armored: {
  18321. height: math.unit(6 + 8 / 12, "feet"),
  18322. weight: math.unit(250, "lb"),
  18323. name: "Armored",
  18324. image: {
  18325. source: "./media/characters/caylex/armored.svg",
  18326. extra: 1420 / 1310,
  18327. bottom: 0.045
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(6 + 8 / 12, "feet"),
  18335. default: true
  18336. },
  18337. {
  18338. name: "Normal+",
  18339. height: math.unit(12, "feet")
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(7 + 6 / 12, "feet"),
  18348. weight: math.unit(288, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/alana/front.svg",
  18352. extra: 679 / 653,
  18353. bottom: 22.5 / 701
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(7 + 6 / 12, "feet")
  18361. },
  18362. {
  18363. name: "Large",
  18364. height: math.unit(50, "feet")
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(100, "feet"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Macro+",
  18373. height: math.unit(200, "feet")
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(6 + 1 / 12, "feet"),
  18382. weight: math.unit(210, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/hasani/front.svg",
  18386. extra: 244 / 232,
  18387. bottom: 0.01
  18388. }
  18389. },
  18390. back: {
  18391. height: math.unit(6 + 1 / 12, "feet"),
  18392. weight: math.unit(210, "lb"),
  18393. name: "Back",
  18394. image: {
  18395. source: "./media/characters/hasani/back.svg",
  18396. extra: 244 / 232,
  18397. bottom: 0.01
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Normal",
  18404. height: math.unit(6 + 1 / 12, "feet")
  18405. },
  18406. {
  18407. name: "Macro",
  18408. height: math.unit(175, "feet"),
  18409. default: true
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18415. {
  18416. front: {
  18417. height: math.unit(1.82, "meters"),
  18418. weight: math.unit(140, "lb"),
  18419. name: "Front",
  18420. image: {
  18421. source: "./media/characters/nita/front.svg",
  18422. extra: 2473 / 2363,
  18423. bottom: 0.01
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(1.82, "m")
  18431. },
  18432. {
  18433. name: "Macro",
  18434. height: math.unit(300, "m")
  18435. },
  18436. {
  18437. name: "Mistake Canon",
  18438. height: math.unit(0.5, "miles"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Big Mistake",
  18443. height: math.unit(13, "miles")
  18444. },
  18445. {
  18446. name: "Playing God",
  18447. height: math.unit(2450, "miles")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(4, "feet"),
  18456. weight: math.unit(120, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/shiriko/front.svg",
  18460. extra: 970/934,
  18461. bottom: 5/975
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(4, "feet"),
  18469. default: true
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(6, "feet"),
  18478. name: "front",
  18479. image: {
  18480. source: "./media/characters/deja/front.svg",
  18481. extra: 926 / 840,
  18482. bottom: 0.07
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Planck Length",
  18489. height: math.unit(1.6e-35, "meters")
  18490. },
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(30.48, "meters"),
  18494. default: true
  18495. },
  18496. {
  18497. name: "Universal",
  18498. height: math.unit(8.8e26, "meters")
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18504. {
  18505. side: {
  18506. height: math.unit(8, "feet"),
  18507. weight: math.unit(6300, "lb"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/anima/side.svg",
  18511. bottom: 0.035
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(8, "feet"),
  18519. default: true
  18520. },
  18521. ]
  18522. ))
  18523. characterMakers.push(() => makeCharacter(
  18524. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18525. {
  18526. front: {
  18527. height: math.unit(8, "feet"),
  18528. weight: math.unit(350, "lb"),
  18529. name: "Front",
  18530. image: {
  18531. source: "./media/characters/bianca/front.svg",
  18532. extra: 234 / 225,
  18533. bottom: 0.03
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Normal",
  18540. height: math.unit(8, "feet"),
  18541. default: true
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(11 + 5/12, "feet"),
  18550. weight: math.unit(1200, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/adinia/front.svg",
  18554. extra: 1767/1641,
  18555. bottom: 44/1811
  18556. },
  18557. extraAttributes: {
  18558. "energyIntake": {
  18559. name: "Energy Intake",
  18560. power: 3,
  18561. type: "energy",
  18562. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18563. },
  18564. }
  18565. },
  18566. back: {
  18567. height: math.unit(11 + 5/12, "feet"),
  18568. weight: math.unit(1200, "lb"),
  18569. name: "Back",
  18570. image: {
  18571. source: "./media/characters/adinia/back.svg",
  18572. extra: 1834/1684,
  18573. bottom: 14/1848
  18574. },
  18575. extraAttributes: {
  18576. "energyIntake": {
  18577. name: "Energy Intake",
  18578. power: 3,
  18579. type: "energy",
  18580. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18581. },
  18582. }
  18583. },
  18584. maw: {
  18585. height: math.unit(3.79, "feet"),
  18586. name: "Maw",
  18587. image: {
  18588. source: "./media/characters/adinia/maw.svg"
  18589. }
  18590. },
  18591. rump: {
  18592. height: math.unit(4.6, "feet"),
  18593. name: "Rump",
  18594. image: {
  18595. source: "./media/characters/adinia/rump.svg"
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(11 + 5 / 12, "feet"),
  18603. default: true
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(3, "meters"),
  18612. weight: math.unit(200, "kg"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/lykasa/front.svg",
  18616. extra: 1076 / 976,
  18617. bottom: 0.06
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(3, "meters")
  18625. },
  18626. {
  18627. name: "Kaiju",
  18628. height: math.unit(120, "meters"),
  18629. default: true
  18630. },
  18631. {
  18632. name: "Mega Kaiju",
  18633. height: math.unit(240, "km")
  18634. },
  18635. {
  18636. name: "Giga Kaiju",
  18637. height: math.unit(400, "megameters")
  18638. },
  18639. {
  18640. name: "Tera Kaiju",
  18641. height: math.unit(800, "gigameters")
  18642. },
  18643. {
  18644. name: "Kaiju Dragon Goddess",
  18645. height: math.unit(26, "zettaparsecs")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18651. {
  18652. side: {
  18653. height: math.unit(283 / 124 * 6, "feet"),
  18654. weight: math.unit(35000, "lb"),
  18655. name: "Side",
  18656. image: {
  18657. source: "./media/characters/malfaren/side.svg",
  18658. extra: 1310/529,
  18659. bottom: 24/1334
  18660. }
  18661. },
  18662. front: {
  18663. height: math.unit(22.36, "feet"),
  18664. weight: math.unit(35000, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/malfaren/front.svg",
  18668. extra: 1237/1115,
  18669. bottom: 32/1269
  18670. }
  18671. },
  18672. maw: {
  18673. height: math.unit(6.9, "feet"),
  18674. name: "Maw",
  18675. image: {
  18676. source: "./media/characters/malfaren/maw.svg"
  18677. }
  18678. },
  18679. dick: {
  18680. height: math.unit(6.19, "feet"),
  18681. name: "Dick",
  18682. image: {
  18683. source: "./media/characters/malfaren/dick.svg"
  18684. }
  18685. },
  18686. eye: {
  18687. height: math.unit(0.69, "feet"),
  18688. name: "Eye",
  18689. image: {
  18690. source: "./media/characters/malfaren/eye.svg"
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Big",
  18697. height: math.unit(283 / 162 * 6, "feet"),
  18698. },
  18699. {
  18700. name: "Bigger",
  18701. height: math.unit(283 / 124 * 6, "feet")
  18702. },
  18703. {
  18704. name: "Massive",
  18705. height: math.unit(283 / 92 * 6, "feet"),
  18706. default: true
  18707. },
  18708. {
  18709. name: "👀💦",
  18710. height: math.unit(283 / 73 * 6, "feet"),
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(1.7, "m"),
  18719. weight: math.unit(70, "kg"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/kernel/front.svg",
  18723. extra: 222 / 210,
  18724. bottom: 0.007
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Nano",
  18731. height: math.unit(17, "micrometers")
  18732. },
  18733. {
  18734. name: "Micro",
  18735. height: math.unit(1.7, "mm")
  18736. },
  18737. {
  18738. name: "Small",
  18739. height: math.unit(1.7, "cm")
  18740. },
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(1.7, "m"),
  18744. default: true
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(1.75, "meters"),
  18753. weight: math.unit(65, "kg"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/jayne-folest/front.svg",
  18757. extra: 2115 / 2007,
  18758. bottom: 0.02
  18759. }
  18760. },
  18761. back: {
  18762. height: math.unit(1.75, "meters"),
  18763. weight: math.unit(65, "kg"),
  18764. name: "Back",
  18765. image: {
  18766. source: "./media/characters/jayne-folest/back.svg",
  18767. extra: 2115 / 2007,
  18768. bottom: 0.005
  18769. }
  18770. },
  18771. frontClothed: {
  18772. height: math.unit(1.75, "meters"),
  18773. weight: math.unit(65, "kg"),
  18774. name: "Front (Clothed)",
  18775. image: {
  18776. source: "./media/characters/jayne-folest/front-clothed.svg",
  18777. extra: 2115 / 2007,
  18778. bottom: 0.035
  18779. }
  18780. },
  18781. hand: {
  18782. height: math.unit(1 / 1.260, "feet"),
  18783. name: "Hand",
  18784. image: {
  18785. source: "./media/characters/jayne-folest/hand.svg"
  18786. }
  18787. },
  18788. foot: {
  18789. height: math.unit(1 / 0.918, "feet"),
  18790. name: "Foot",
  18791. image: {
  18792. source: "./media/characters/jayne-folest/foot.svg"
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Micro",
  18799. height: math.unit(4, "cm")
  18800. },
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(1.75, "meters")
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(47.5, "meters"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(180, "cm"),
  18817. weight: math.unit(70, "kg"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/algier/front.svg",
  18821. extra: 596 / 572,
  18822. bottom: 0.04
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(180, "cm"),
  18827. weight: math.unit(70, "kg"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/algier/back.svg",
  18831. extra: 596 / 572,
  18832. bottom: 0.025
  18833. }
  18834. },
  18835. frontdressed: {
  18836. height: math.unit(180, "cm"),
  18837. weight: math.unit(150, "kg"),
  18838. name: "Front-dressed",
  18839. image: {
  18840. source: "./media/characters/algier/front-dressed.svg",
  18841. extra: 596 / 572,
  18842. bottom: 0.038
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Micro",
  18849. height: math.unit(5, "cm")
  18850. },
  18851. {
  18852. name: "Normal",
  18853. height: math.unit(180, "cm"),
  18854. default: true
  18855. },
  18856. {
  18857. name: "Macro",
  18858. height: math.unit(64, "m")
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18864. {
  18865. upright: {
  18866. height: math.unit(7, "feet"),
  18867. weight: math.unit(300, "lb"),
  18868. name: "Upright",
  18869. image: {
  18870. source: "./media/characters/pretzel/upright.svg",
  18871. extra: 534 / 522,
  18872. bottom: 0.065
  18873. }
  18874. },
  18875. sprawling: {
  18876. height: math.unit(3.75, "feet"),
  18877. weight: math.unit(300, "lb"),
  18878. name: "Sprawling",
  18879. image: {
  18880. source: "./media/characters/pretzel/sprawling.svg",
  18881. extra: 314 / 281,
  18882. bottom: 0.1
  18883. }
  18884. },
  18885. tongue: {
  18886. height: math.unit(2, "feet"),
  18887. name: "Tongue",
  18888. image: {
  18889. source: "./media/characters/pretzel/tongue.svg"
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(7, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Oversized",
  18901. height: math.unit(15, "feet")
  18902. },
  18903. {
  18904. name: "Huge",
  18905. height: math.unit(30, "feet")
  18906. },
  18907. {
  18908. name: "Macro",
  18909. height: math.unit(250, "feet")
  18910. },
  18911. ]
  18912. ))
  18913. characterMakers.push(() => makeCharacter(
  18914. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18915. {
  18916. sideFront: {
  18917. height: math.unit(5 + 2 / 12, "feet"),
  18918. weight: math.unit(120, "lb"),
  18919. name: "Front Side",
  18920. image: {
  18921. source: "./media/characters/roxi/side-front.svg",
  18922. extra: 2924 / 2717,
  18923. bottom: 0.08
  18924. }
  18925. },
  18926. sideBack: {
  18927. height: math.unit(5 + 2 / 12, "feet"),
  18928. weight: math.unit(120, "lb"),
  18929. name: "Back Side",
  18930. image: {
  18931. source: "./media/characters/roxi/side-back.svg",
  18932. extra: 2904 / 2693,
  18933. bottom: 0.06
  18934. }
  18935. },
  18936. front: {
  18937. height: math.unit(5 + 2 / 12, "feet"),
  18938. weight: math.unit(120, "lb"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/roxi/front.svg",
  18942. extra: 2028 / 1907,
  18943. bottom: 0.01
  18944. }
  18945. },
  18946. frontAlt: {
  18947. height: math.unit(5 + 2 / 12, "feet"),
  18948. weight: math.unit(120, "lb"),
  18949. name: "Front (Alt)",
  18950. image: {
  18951. source: "./media/characters/roxi/front-alt.svg",
  18952. extra: 1828 / 1798,
  18953. bottom: 0.01
  18954. }
  18955. },
  18956. sitting: {
  18957. height: math.unit(2.8, "feet"),
  18958. weight: math.unit(120, "lb"),
  18959. name: "Sitting",
  18960. image: {
  18961. source: "./media/characters/roxi/sitting.svg",
  18962. extra: 2660 / 2462,
  18963. bottom: 0.1
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(5 + 2 / 12, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18977. {
  18978. side: {
  18979. height: math.unit(55, "feet"),
  18980. weight: math.unit(153, "tons"),
  18981. name: "Side",
  18982. image: {
  18983. source: "./media/characters/shadow/side.svg",
  18984. extra: 701 / 628,
  18985. bottom: 0.02
  18986. }
  18987. },
  18988. flying: {
  18989. height: math.unit(145, "feet"),
  18990. weight: math.unit(153, "tons"),
  18991. name: "Flying",
  18992. image: {
  18993. source: "./media/characters/shadow/flying.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(55, "feet"),
  19001. default: true
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19007. {
  19008. front: {
  19009. height: math.unit(6, "feet"),
  19010. weight: math.unit(200, "lb"),
  19011. name: "Front",
  19012. image: {
  19013. source: "./media/characters/marcie/front.svg",
  19014. extra: 960 / 876,
  19015. bottom: 58 / 1017.87
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(1, "mile"),
  19023. default: true
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19029. {
  19030. front: {
  19031. height: math.unit(7, "feet"),
  19032. weight: math.unit(200, "lb"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/kachina/front.svg",
  19036. extra: 1290.68 / 1119,
  19037. bottom: 36.5 / 1327.18
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(7, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19051. {
  19052. looking: {
  19053. height: math.unit(2, "meters"),
  19054. weight: math.unit(300, "kg"),
  19055. name: "Looking",
  19056. image: {
  19057. source: "./media/characters/kash/looking.svg",
  19058. extra: 474 / 344,
  19059. bottom: 0.03
  19060. }
  19061. },
  19062. side: {
  19063. height: math.unit(2, "meters"),
  19064. weight: math.unit(300, "kg"),
  19065. name: "Side",
  19066. image: {
  19067. source: "./media/characters/kash/side.svg",
  19068. extra: 302 / 251,
  19069. bottom: 0.03
  19070. }
  19071. },
  19072. front: {
  19073. height: math.unit(2, "meters"),
  19074. weight: math.unit(300, "kg"),
  19075. name: "Front",
  19076. image: {
  19077. source: "./media/characters/kash/front.svg",
  19078. extra: 495 / 360,
  19079. bottom: 0.015
  19080. }
  19081. },
  19082. },
  19083. [
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(2, "meters"),
  19087. default: true
  19088. },
  19089. {
  19090. name: "Big",
  19091. height: math.unit(3, "meters")
  19092. },
  19093. {
  19094. name: "Large",
  19095. height: math.unit(5, "meters")
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19101. {
  19102. feeding: {
  19103. height: math.unit(6.7, "feet"),
  19104. weight: math.unit(350, "lb"),
  19105. name: "Feeding",
  19106. image: {
  19107. source: "./media/characters/lalim/feeding.svg",
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6.7, "feet"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19121. {
  19122. front: {
  19123. height: math.unit(9.5, "feet"),
  19124. weight: math.unit(600, "lb"),
  19125. name: "Front",
  19126. image: {
  19127. source: "./media/characters/de'vout/front.svg",
  19128. extra: 1443 / 1328,
  19129. bottom: 0.025
  19130. }
  19131. },
  19132. back: {
  19133. height: math.unit(9.5, "feet"),
  19134. weight: math.unit(600, "lb"),
  19135. name: "Back",
  19136. image: {
  19137. source: "./media/characters/de'vout/back.svg",
  19138. extra: 1443 / 1328
  19139. }
  19140. },
  19141. frontDressed: {
  19142. height: math.unit(9.5, "feet"),
  19143. weight: math.unit(600, "lb"),
  19144. name: "Front (Dressed",
  19145. image: {
  19146. source: "./media/characters/de'vout/front-dressed.svg",
  19147. extra: 1443 / 1328,
  19148. bottom: 0.025
  19149. }
  19150. },
  19151. backDressed: {
  19152. height: math.unit(9.5, "feet"),
  19153. weight: math.unit(600, "lb"),
  19154. name: "Back (Dressed",
  19155. image: {
  19156. source: "./media/characters/de'vout/back-dressed.svg",
  19157. extra: 1443 / 1328
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(9.5, "feet"),
  19165. default: true
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(8, "feet"),
  19174. weight: math.unit(225, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/talana/front.svg",
  19178. extra: 1410 / 1300,
  19179. bottom: 0.015
  19180. }
  19181. },
  19182. frontDressed: {
  19183. height: math.unit(8, "feet"),
  19184. weight: math.unit(225, "lb"),
  19185. name: "Front (Dressed",
  19186. image: {
  19187. source: "./media/characters/talana/front-dressed.svg",
  19188. extra: 1410 / 1300,
  19189. bottom: 0.015
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(8, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19203. {
  19204. side: {
  19205. height: math.unit(7.2, "feet"),
  19206. weight: math.unit(150, "lb"),
  19207. name: "Side",
  19208. image: {
  19209. source: "./media/characters/xeauvok/side.svg",
  19210. extra: 1975 / 1523,
  19211. bottom: 0.07
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(7.2, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19225. {
  19226. side: {
  19227. height: math.unit(4, "meters"),
  19228. weight: math.unit(2200, "kg"),
  19229. name: "Side",
  19230. image: {
  19231. source: "./media/characters/zara/side.svg",
  19232. extra: 765/744,
  19233. bottom: 156/921
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(4, "meters"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19247. {
  19248. side: {
  19249. height: math.unit(6, "feet"),
  19250. weight: math.unit(150, "lb"),
  19251. name: "Side",
  19252. image: {
  19253. source: "./media/characters/richard-dragon/side.svg",
  19254. extra: 845 / 340,
  19255. bottom: 0.017
  19256. }
  19257. },
  19258. maw: {
  19259. height: math.unit(2.97, "feet"),
  19260. name: "Maw",
  19261. image: {
  19262. source: "./media/characters/richard-dragon/maw.svg"
  19263. }
  19264. },
  19265. },
  19266. [
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(4, "feet"),
  19274. weight: math.unit(100, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/richard-smeargle/front.svg",
  19278. extra: 2952 / 2820,
  19279. bottom: 0.028
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(4, "feet"),
  19287. default: true
  19288. },
  19289. {
  19290. name: "Dynamax",
  19291. height: math.unit(20, "meters")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6, "feet"),
  19300. weight: math.unit(110, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/klay/front.svg",
  19304. extra: 962 / 883,
  19305. bottom: 0.04
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(6, "feet"),
  19310. weight: math.unit(110, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/klay/back.svg",
  19314. extra: 962 / 883
  19315. }
  19316. },
  19317. beans: {
  19318. height: math.unit(1.15, "feet"),
  19319. name: "Beans",
  19320. image: {
  19321. source: "./media/characters/klay/beans.svg"
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Micro",
  19328. height: math.unit(6, "inches")
  19329. },
  19330. {
  19331. name: "Mini",
  19332. height: math.unit(3, "feet")
  19333. },
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(6, "feet"),
  19337. default: true
  19338. },
  19339. {
  19340. name: "Big",
  19341. height: math.unit(25, "feet")
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(100, "feet")
  19346. },
  19347. {
  19348. name: "Megamacro",
  19349. height: math.unit(400, "feet")
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(6, "feet"),
  19358. weight: math.unit(160, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/marcus/front.svg",
  19362. extra: 734 / 676,
  19363. bottom: 0.03
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Little",
  19370. height: math.unit(6, "feet")
  19371. },
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(110, "feet"),
  19375. default: true
  19376. },
  19377. {
  19378. name: "Macro",
  19379. height: math.unit(250, "feet")
  19380. },
  19381. {
  19382. name: "Megamacro",
  19383. height: math.unit(1000, "feet")
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(7, "feet"),
  19392. weight: math.unit(275, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/claude-delroute/front.svg",
  19396. extra: 902/827,
  19397. bottom: 26/928
  19398. }
  19399. },
  19400. side: {
  19401. height: math.unit(7, "feet"),
  19402. weight: math.unit(275, "lb"),
  19403. name: "Side",
  19404. image: {
  19405. source: "./media/characters/claude-delroute/side.svg",
  19406. extra: 908/853,
  19407. bottom: 16/924
  19408. }
  19409. },
  19410. back: {
  19411. height: math.unit(7, "feet"),
  19412. weight: math.unit(275, "lb"),
  19413. name: "Back",
  19414. image: {
  19415. source: "./media/characters/claude-delroute/back.svg",
  19416. extra: 911/829,
  19417. bottom: 18/929
  19418. }
  19419. },
  19420. maw: {
  19421. height: math.unit(0.6407, "meters"),
  19422. name: "Maw",
  19423. image: {
  19424. source: "./media/characters/claude-delroute/maw.svg"
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(7, "feet"),
  19432. default: true
  19433. },
  19434. {
  19435. name: "Lorge",
  19436. height: math.unit(20, "feet")
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(8 + 4 / 12, "feet"),
  19445. weight: math.unit(600, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/dragonien/front.svg",
  19449. extra: 100 / 94,
  19450. bottom: 3.3 / 103.3445
  19451. }
  19452. },
  19453. back: {
  19454. height: math.unit(8 + 4 / 12, "feet"),
  19455. weight: math.unit(600, "lb"),
  19456. name: "Back",
  19457. image: {
  19458. source: "./media/characters/dragonien/back.svg",
  19459. extra: 776 / 746,
  19460. bottom: 6.4 / 782.0616
  19461. }
  19462. },
  19463. foot: {
  19464. height: math.unit(1.54, "feet"),
  19465. name: "Foot",
  19466. image: {
  19467. source: "./media/characters/dragonien/foot.svg",
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(8 + 4 / 12, "feet"),
  19475. default: true
  19476. },
  19477. {
  19478. name: "Macro",
  19479. height: math.unit(200, "feet")
  19480. },
  19481. {
  19482. name: "Megamacro",
  19483. height: math.unit(1, "mile")
  19484. },
  19485. {
  19486. name: "Gigamacro",
  19487. height: math.unit(1000, "miles")
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(5 + 2 / 12, "feet"),
  19496. weight: math.unit(110, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/desta/front.svg",
  19500. extra: 767 / 726,
  19501. bottom: 11.7 / 779
  19502. }
  19503. },
  19504. back: {
  19505. height: math.unit(5 + 2 / 12, "feet"),
  19506. weight: math.unit(110, "lb"),
  19507. name: "Back",
  19508. image: {
  19509. source: "./media/characters/desta/back.svg",
  19510. extra: 777 / 728,
  19511. bottom: 6 / 784
  19512. }
  19513. },
  19514. frontAlt: {
  19515. height: math.unit(5 + 2 / 12, "feet"),
  19516. weight: math.unit(110, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/desta/front-alt.svg",
  19520. extra: 1482 / 1417
  19521. }
  19522. },
  19523. side: {
  19524. height: math.unit(5 + 2 / 12, "feet"),
  19525. weight: math.unit(110, "lb"),
  19526. name: "Side",
  19527. image: {
  19528. source: "./media/characters/desta/side.svg",
  19529. extra: 2579 / 2491,
  19530. bottom: 0.053
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Micro",
  19537. height: math.unit(6, "inches")
  19538. },
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(5 + 2 / 12, "feet"),
  19542. default: true
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(62, "feet")
  19547. },
  19548. {
  19549. name: "Megamacro",
  19550. height: math.unit(1800, "feet")
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(10, "feet"),
  19559. weight: math.unit(700, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/storm-alystar/front.svg",
  19563. extra: 2112 / 1898,
  19564. bottom: 0.034
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Micro",
  19571. height: math.unit(3.5, "inches")
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(10, "feet"),
  19576. default: true
  19577. },
  19578. {
  19579. name: "Macro",
  19580. height: math.unit(400, "feet")
  19581. },
  19582. {
  19583. name: "Deific",
  19584. height: math.unit(60, "miles")
  19585. },
  19586. ]
  19587. ))
  19588. characterMakers.push(() => makeCharacter(
  19589. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19590. {
  19591. front: {
  19592. height: math.unit(2.35, "meters"),
  19593. weight: math.unit(119, "kg"),
  19594. name: "Front",
  19595. image: {
  19596. source: "./media/characters/ilia/front.svg",
  19597. extra: 1285 / 1255,
  19598. bottom: 0.06
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(2.35, "meters")
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(140, "meters"),
  19610. default: true
  19611. },
  19612. {
  19613. name: "Megamacro",
  19614. height: math.unit(100, "miles")
  19615. },
  19616. ]
  19617. ))
  19618. characterMakers.push(() => makeCharacter(
  19619. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19620. {
  19621. front: {
  19622. height: math.unit(6 + 5 / 12, "feet"),
  19623. weight: math.unit(190, "lb"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/kingdead/front.svg",
  19627. extra: 1228 / 1177
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Micro",
  19634. height: math.unit(7, "inches")
  19635. },
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(6 + 5 / 12, "feet")
  19639. },
  19640. {
  19641. name: "Macro",
  19642. height: math.unit(150, "feet"),
  19643. default: true
  19644. },
  19645. {
  19646. name: "Megamacro",
  19647. height: math.unit(200, "miles")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(8, "feet"),
  19656. weight: math.unit(600, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/kyrehx/front.svg",
  19660. extra: 1195 / 1095,
  19661. bottom: 0.034
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Micro",
  19668. height: math.unit(2, "inches")
  19669. },
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(8, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(255, "feet")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19683. {
  19684. front: {
  19685. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19686. weight: math.unit(184, "lb"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/xang/front.svg",
  19690. extra: 845 / 755
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Macro",
  19702. height: math.unit(0.935 * 146, "feet")
  19703. },
  19704. {
  19705. name: "Megamacro",
  19706. height: math.unit(0.935 * 3, "miles")
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19712. {
  19713. frontDressed: {
  19714. height: math.unit(5 + 7 / 12, "feet"),
  19715. weight: math.unit(140, "lb"),
  19716. name: "Front (Dressed)",
  19717. image: {
  19718. source: "./media/characters/doc-weardno/front-dressed.svg",
  19719. extra: 263 / 234
  19720. }
  19721. },
  19722. backDressed: {
  19723. height: math.unit(5 + 7 / 12, "feet"),
  19724. weight: math.unit(140, "lb"),
  19725. name: "Back (Dressed)",
  19726. image: {
  19727. source: "./media/characters/doc-weardno/back-dressed.svg",
  19728. extra: 266 / 238
  19729. }
  19730. },
  19731. front: {
  19732. height: math.unit(5 + 7 / 12, "feet"),
  19733. weight: math.unit(140, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/doc-weardno/front.svg",
  19737. extra: 254 / 233
  19738. }
  19739. },
  19740. },
  19741. [
  19742. {
  19743. name: "Micro",
  19744. height: math.unit(3, "inches")
  19745. },
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(5 + 7 / 12, "feet"),
  19749. default: true
  19750. },
  19751. {
  19752. name: "Macro",
  19753. height: math.unit(25, "feet")
  19754. },
  19755. {
  19756. name: "Megamacro",
  19757. height: math.unit(2, "miles")
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6 + 2 / 12, "feet"),
  19766. weight: math.unit(153, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/seth-whilst/front.svg",
  19770. bottom: 0.07
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Micro",
  19777. height: math.unit(5, "inches")
  19778. },
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(6 + 2 / 12, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(3, "inches"),
  19791. weight: math.unit(8, "grams"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/pocket-jabari/front.svg",
  19795. extra: 1024 / 974,
  19796. bottom: 0.039
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Minimicro",
  19803. height: math.unit(8, "mm")
  19804. },
  19805. {
  19806. name: "Micro",
  19807. height: math.unit(3, "inches"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(3, "feet")
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19818. {
  19819. frontDressed: {
  19820. height: math.unit(15, "feet"),
  19821. weight: math.unit(3280, "lb"),
  19822. name: "Front (Dressed)",
  19823. image: {
  19824. source: "./media/characters/sapphy/front-dressed.svg",
  19825. extra: 1951/1654,
  19826. bottom: 194/2145
  19827. },
  19828. form: "anthro",
  19829. default: true
  19830. },
  19831. backDressed: {
  19832. height: math.unit(15, "feet"),
  19833. weight: math.unit(3280, "lb"),
  19834. name: "Back (Dressed)",
  19835. image: {
  19836. source: "./media/characters/sapphy/back-dressed.svg",
  19837. extra: 2058/1918,
  19838. bottom: 125/2183
  19839. },
  19840. form: "anthro"
  19841. },
  19842. frontNude: {
  19843. height: math.unit(15, "feet"),
  19844. weight: math.unit(3280, "lb"),
  19845. name: "Front (Nude)",
  19846. image: {
  19847. source: "./media/characters/sapphy/front-nude.svg",
  19848. extra: 1951/1654,
  19849. bottom: 194/2145
  19850. },
  19851. form: "anthro"
  19852. },
  19853. backNude: {
  19854. height: math.unit(15, "feet"),
  19855. weight: math.unit(3280, "lb"),
  19856. name: "Back (Nude)",
  19857. image: {
  19858. source: "./media/characters/sapphy/back-nude.svg",
  19859. extra: 2058/1918,
  19860. bottom: 125/2183
  19861. },
  19862. form: "anthro"
  19863. },
  19864. full: {
  19865. height: math.unit(15, "feet"),
  19866. weight: math.unit(3280, "lb"),
  19867. name: "Full",
  19868. image: {
  19869. source: "./media/characters/sapphy/full.svg",
  19870. extra: 1396/1317,
  19871. bottom: 44/1440
  19872. },
  19873. form: "anthro"
  19874. },
  19875. dick: {
  19876. height: math.unit(3.8, "feet"),
  19877. name: "Dick",
  19878. image: {
  19879. source: "./media/characters/sapphy/dick.svg"
  19880. },
  19881. form: "anthro"
  19882. },
  19883. feral: {
  19884. height: math.unit(35, "feet"),
  19885. weight: math.unit(160, "tons"),
  19886. name: "Feral",
  19887. image: {
  19888. source: "./media/characters/sapphy/feral.svg",
  19889. extra: 1050/573,
  19890. bottom: 60/1110
  19891. },
  19892. form: "feral",
  19893. default: true
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(15, "feet"),
  19900. form: "anthro"
  19901. },
  19902. {
  19903. name: "Casual Macro",
  19904. height: math.unit(120, "feet"),
  19905. form: "anthro"
  19906. },
  19907. {
  19908. name: "Macro",
  19909. height: math.unit(2150, "feet"),
  19910. default: true,
  19911. form: "anthro"
  19912. },
  19913. {
  19914. name: "Megamacro",
  19915. height: math.unit(8, "miles"),
  19916. form: "anthro"
  19917. },
  19918. {
  19919. name: "Galaxy Mom",
  19920. height: math.unit(6, "megalightyears"),
  19921. form: "anthro"
  19922. },
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(35, "feet"),
  19926. form: "feral",
  19927. default: true
  19928. },
  19929. {
  19930. name: "Macro",
  19931. height: math.unit(300, "feet"),
  19932. form: "feral"
  19933. },
  19934. {
  19935. name: "Galaxy Mom",
  19936. height: math.unit(10, "megalightyears"),
  19937. form: "feral"
  19938. },
  19939. ],
  19940. {
  19941. "anthro": {
  19942. name: "Anthro",
  19943. default: true
  19944. },
  19945. "feral": {
  19946. name: "Feral"
  19947. }
  19948. }
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(6, "feet"),
  19955. weight: math.unit(170, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/kiro/front.svg",
  19959. extra: 1064 / 1012,
  19960. bottom: 0.052
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Micro",
  19967. height: math.unit(6, "inches")
  19968. },
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(6, "feet"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Macro",
  19976. height: math.unit(72, "feet")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(5 + 9 / 12, "feet"),
  19985. weight: math.unit(175, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/irishfox/front.svg",
  19989. extra: 1912 / 1680,
  19990. bottom: 0.02
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Nano",
  19997. height: math.unit(1, "mm")
  19998. },
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(2, "inches")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 9 / 12, "feet"),
  20006. default: true
  20007. },
  20008. {
  20009. name: "Macro",
  20010. height: math.unit(45, "feet")
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(6 + 1 / 12, "feet"),
  20019. weight: math.unit(75, "lb"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/aronai-sieyes/front.svg",
  20023. extra: 1532/1450,
  20024. bottom: 42/1574
  20025. }
  20026. },
  20027. side: {
  20028. height: math.unit(6 + 1 / 12, "feet"),
  20029. weight: math.unit(75, "lb"),
  20030. name: "Side",
  20031. image: {
  20032. source: "./media/characters/aronai-sieyes/side.svg",
  20033. extra: 1422/1365,
  20034. bottom: 148/1570
  20035. }
  20036. },
  20037. back: {
  20038. height: math.unit(6 + 1 / 12, "feet"),
  20039. weight: math.unit(75, "lb"),
  20040. name: "Back",
  20041. image: {
  20042. source: "./media/characters/aronai-sieyes/back.svg",
  20043. extra: 1526/1464,
  20044. bottom: 51/1577
  20045. }
  20046. },
  20047. dressed: {
  20048. height: math.unit(6 + 1 / 12, "feet"),
  20049. weight: math.unit(75, "lb"),
  20050. name: "Dressed",
  20051. image: {
  20052. source: "./media/characters/aronai-sieyes/dressed.svg",
  20053. extra: 1559/1483,
  20054. bottom: 39/1598
  20055. }
  20056. },
  20057. slit: {
  20058. height: math.unit(1.3, "feet"),
  20059. name: "Slit",
  20060. image: {
  20061. source: "./media/characters/aronai-sieyes/slit.svg"
  20062. }
  20063. },
  20064. slitSpread: {
  20065. height: math.unit(0.9, "feet"),
  20066. name: "Slit (Spread)",
  20067. image: {
  20068. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20069. }
  20070. },
  20071. rump: {
  20072. height: math.unit(1.3, "feet"),
  20073. name: "Rump",
  20074. image: {
  20075. source: "./media/characters/aronai-sieyes/rump.svg"
  20076. }
  20077. },
  20078. maw: {
  20079. height: math.unit(1.25, "feet"),
  20080. name: "Maw",
  20081. image: {
  20082. source: "./media/characters/aronai-sieyes/maw.svg"
  20083. }
  20084. },
  20085. feral: {
  20086. height: math.unit(18, "feet"),
  20087. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20088. name: "Feral",
  20089. image: {
  20090. source: "./media/characters/aronai-sieyes/feral.svg",
  20091. extra: 1530 / 1240,
  20092. bottom: 0.035
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Micro",
  20099. height: math.unit(2, "inches")
  20100. },
  20101. {
  20102. name: "Normal",
  20103. height: math.unit(6 + 1 / 12, "feet"),
  20104. default: true
  20105. }
  20106. ]
  20107. ))
  20108. characterMakers.push(() => makeCharacter(
  20109. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20110. {
  20111. front: {
  20112. height: math.unit(12, "feet"),
  20113. weight: math.unit(410, "kg"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/xuna/front.svg",
  20117. extra: 2184 / 1980
  20118. }
  20119. },
  20120. side: {
  20121. height: math.unit(12, "feet"),
  20122. weight: math.unit(410, "kg"),
  20123. name: "Side",
  20124. image: {
  20125. source: "./media/characters/xuna/side.svg",
  20126. extra: 2184 / 1980
  20127. }
  20128. },
  20129. back: {
  20130. height: math.unit(12, "feet"),
  20131. weight: math.unit(410, "kg"),
  20132. name: "Back",
  20133. image: {
  20134. source: "./media/characters/xuna/back.svg",
  20135. extra: 2184 / 1980
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Nano glow",
  20142. height: math.unit(10, "nm")
  20143. },
  20144. {
  20145. name: "Micro floof",
  20146. height: math.unit(0.3, "m")
  20147. },
  20148. {
  20149. name: "Huggable softy boi",
  20150. height: math.unit(3.6576, "m"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Admirable floof",
  20155. height: math.unit(80, "meters")
  20156. },
  20157. {
  20158. name: "Gentle macro",
  20159. height: math.unit(300, "meters")
  20160. },
  20161. {
  20162. name: "Very careful floof",
  20163. height: math.unit(3200, "meters")
  20164. },
  20165. {
  20166. name: "The mega floof",
  20167. height: math.unit(36000, "meters")
  20168. },
  20169. {
  20170. name: "Giga-fur-Wicker",
  20171. height: math.unit(4800000, "meters")
  20172. },
  20173. {
  20174. name: "Licky world",
  20175. height: math.unit(20000000, "meters")
  20176. },
  20177. {
  20178. name: "Floofy cyan sun",
  20179. height: math.unit(1500000000, "meters")
  20180. },
  20181. {
  20182. name: "Milky Wicker",
  20183. height: math.unit(1000000000000000000000, "meters")
  20184. },
  20185. {
  20186. name: "The observing Wicker",
  20187. height: math.unit(999999999999999999999999999, "meters")
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20193. {
  20194. front: {
  20195. height: math.unit(5 + 9 / 12, "feet"),
  20196. weight: math.unit(150, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/arokha-sieyes/front.svg",
  20200. extra: 1425 / 1284,
  20201. bottom: 0.05
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(5 + 9 / 12, "feet")
  20209. },
  20210. {
  20211. name: "Macro",
  20212. height: math.unit(30, "meters"),
  20213. default: true
  20214. },
  20215. ]
  20216. ))
  20217. characterMakers.push(() => makeCharacter(
  20218. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20219. {
  20220. front: {
  20221. height: math.unit(6, "feet"),
  20222. weight: math.unit(180, "lb"),
  20223. name: "Front",
  20224. image: {
  20225. source: "./media/characters/arokh-sieyes/front.svg",
  20226. extra: 1830 / 1769,
  20227. bottom: 0.01
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6, "feet")
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(30, "meters"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20245. {
  20246. side: {
  20247. height: math.unit(13 + 1 / 12, "feet"),
  20248. weight: math.unit(8.5, "tonnes"),
  20249. name: "Side",
  20250. image: {
  20251. source: "./media/characters/goldeneye/side.svg",
  20252. extra: 1182 / 778,
  20253. bottom: 0.067
  20254. }
  20255. },
  20256. paw: {
  20257. height: math.unit(3.4, "feet"),
  20258. name: "Paw",
  20259. image: {
  20260. source: "./media/characters/goldeneye/paw.svg"
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(13 + 1 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20274. {
  20275. front: {
  20276. height: math.unit(6 + 1 / 12, "feet"),
  20277. weight: math.unit(210, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/leonardo-lycheborne/front.svg",
  20281. extra: 776/723,
  20282. bottom: 34/810
  20283. }
  20284. },
  20285. side: {
  20286. height: math.unit(6 + 1 / 12, "feet"),
  20287. weight: math.unit(210, "lb"),
  20288. name: "Side",
  20289. image: {
  20290. source: "./media/characters/leonardo-lycheborne/side.svg",
  20291. extra: 780/728,
  20292. bottom: 12/792
  20293. }
  20294. },
  20295. back: {
  20296. height: math.unit(6 + 1 / 12, "feet"),
  20297. weight: math.unit(210, "lb"),
  20298. name: "Back",
  20299. image: {
  20300. source: "./media/characters/leonardo-lycheborne/back.svg",
  20301. extra: 775/721,
  20302. bottom: 17/792
  20303. }
  20304. },
  20305. hand: {
  20306. height: math.unit(1.08, "feet"),
  20307. name: "Hand",
  20308. image: {
  20309. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20310. }
  20311. },
  20312. foot: {
  20313. height: math.unit(1.32, "feet"),
  20314. name: "Foot",
  20315. image: {
  20316. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20317. }
  20318. },
  20319. maw: {
  20320. height: math.unit(1, "feet"),
  20321. name: "Maw",
  20322. image: {
  20323. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20324. }
  20325. },
  20326. were: {
  20327. height: math.unit(20, "feet"),
  20328. weight: math.unit(7800, "lb"),
  20329. name: "Were",
  20330. image: {
  20331. source: "./media/characters/leonardo-lycheborne/were.svg",
  20332. extra: 1224/1165,
  20333. bottom: 72/1296
  20334. }
  20335. },
  20336. feral: {
  20337. height: math.unit(7.5, "feet"),
  20338. weight: math.unit(600, "lb"),
  20339. name: "Feral",
  20340. image: {
  20341. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20342. extra: 797/702,
  20343. bottom: 139/936
  20344. }
  20345. },
  20346. taur: {
  20347. height: math.unit(11, "feet"),
  20348. weight: math.unit(3300, "lb"),
  20349. name: "Taur",
  20350. image: {
  20351. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20352. extra: 1271/1197,
  20353. bottom: 47/1318
  20354. }
  20355. },
  20356. barghest: {
  20357. height: math.unit(11, "feet"),
  20358. weight: math.unit(1300, "lb"),
  20359. name: "Barghest",
  20360. image: {
  20361. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20362. extra: 1291/1204,
  20363. bottom: 37/1328
  20364. }
  20365. },
  20366. dick: {
  20367. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20368. name: "Dick",
  20369. image: {
  20370. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20371. }
  20372. },
  20373. dickWere: {
  20374. height: math.unit((20) / 3.8, "feet"),
  20375. name: "Dick (Were)",
  20376. image: {
  20377. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(6 + 1 / 12, "feet"),
  20385. default: true
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(10, "feet"),
  20394. weight: math.unit(350, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/jet/front.svg",
  20398. extra: 2050 / 1980,
  20399. bottom: 0.013
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(10, "feet"),
  20404. weight: math.unit(350, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/jet/back.svg",
  20408. extra: 2050 / 1980,
  20409. bottom: 0.013
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Micro",
  20416. height: math.unit(6, "inches")
  20417. },
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(10, "feet"),
  20421. default: true
  20422. },
  20423. {
  20424. name: "Macro",
  20425. height: math.unit(100, "feet")
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20431. {
  20432. front: {
  20433. height: math.unit(15, "feet"),
  20434. weight: math.unit(2800, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/tanarath/front.svg",
  20438. extra: 2392 / 2220,
  20439. bottom: 0.03
  20440. }
  20441. },
  20442. back: {
  20443. height: math.unit(15, "feet"),
  20444. weight: math.unit(2800, "lb"),
  20445. name: "Back",
  20446. image: {
  20447. source: "./media/characters/tanarath/back.svg",
  20448. extra: 2392 / 2220,
  20449. bottom: 0.03
  20450. }
  20451. },
  20452. },
  20453. [
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(15, "feet"),
  20457. default: true
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20463. {
  20464. front: {
  20465. height: math.unit(7 + 1 / 12, "feet"),
  20466. weight: math.unit(175, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/patty-cattybatty/front.svg",
  20470. extra: 908 / 874,
  20471. bottom: 0.025
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Micro",
  20478. height: math.unit(1, "inch")
  20479. },
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(7 + 1 / 12, "feet")
  20483. },
  20484. {
  20485. name: "Mini Macro",
  20486. height: math.unit(155, "feet")
  20487. },
  20488. {
  20489. name: "Macro",
  20490. height: math.unit(1077, "feet")
  20491. },
  20492. {
  20493. name: "Mega Macro",
  20494. height: math.unit(47650, "feet"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Giga Macro",
  20499. height: math.unit(440, "miles")
  20500. },
  20501. {
  20502. name: "Tera Macro",
  20503. height: math.unit(8700, "miles")
  20504. },
  20505. {
  20506. name: "Planetary Macro",
  20507. height: math.unit(32700, "miles")
  20508. },
  20509. {
  20510. name: "Solar Macro",
  20511. height: math.unit(550000, "miles")
  20512. },
  20513. {
  20514. name: "Celestial Macro",
  20515. height: math.unit(2.5, "AU")
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(4 + 5 / 12, "feet"),
  20524. weight: math.unit(90, "lb"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/cappu/front.svg",
  20528. extra: 1247 / 1152,
  20529. bottom: 0.012
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(4 + 5 / 12, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20543. {
  20544. frontDressed: {
  20545. height: math.unit(70, "cm"),
  20546. weight: math.unit(6, "kg"),
  20547. name: "Front (Dressed)",
  20548. image: {
  20549. source: "./media/characters/sebi/front-dressed.svg",
  20550. extra: 713.5 / 686.5,
  20551. bottom: 0.003
  20552. }
  20553. },
  20554. front: {
  20555. height: math.unit(70, "cm"),
  20556. weight: math.unit(5, "kg"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/sebi/front.svg",
  20560. extra: 713.5 / 686.5,
  20561. bottom: 0.003
  20562. }
  20563. }
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(70, "cm"),
  20569. default: true
  20570. },
  20571. {
  20572. name: "Macro",
  20573. height: math.unit(8, "meters")
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(6, "feet"),
  20582. weight: math.unit(150, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/typhek/front.svg",
  20586. extra: 1948 / 1929,
  20587. bottom: 0.025
  20588. }
  20589. },
  20590. side: {
  20591. height: math.unit(6, "feet"),
  20592. weight: math.unit(150, "lb"),
  20593. name: "Side",
  20594. image: {
  20595. source: "./media/characters/typhek/side.svg",
  20596. extra: 2034 / 2010,
  20597. bottom: 0.003
  20598. }
  20599. },
  20600. back: {
  20601. height: math.unit(6, "feet"),
  20602. weight: math.unit(150, "lb"),
  20603. name: "Back",
  20604. image: {
  20605. source: "./media/characters/typhek/back.svg",
  20606. extra: 2005 / 1978,
  20607. bottom: 0.004
  20608. }
  20609. },
  20610. palm: {
  20611. height: math.unit(1.2, "feet"),
  20612. name: "Palm",
  20613. image: {
  20614. source: "./media/characters/typhek/palm.svg"
  20615. }
  20616. },
  20617. fist: {
  20618. height: math.unit(1.1, "feet"),
  20619. name: "Fist",
  20620. image: {
  20621. source: "./media/characters/typhek/fist.svg"
  20622. }
  20623. },
  20624. foot: {
  20625. height: math.unit(1.57, "feet"),
  20626. name: "Foot",
  20627. image: {
  20628. source: "./media/characters/typhek/foot.svg"
  20629. }
  20630. },
  20631. sole: {
  20632. height: math.unit(2.05, "feet"),
  20633. name: "Sole",
  20634. image: {
  20635. source: "./media/characters/typhek/sole.svg"
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(40, "stories"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Megamacro",
  20647. height: math.unit(1, "mile")
  20648. },
  20649. {
  20650. name: "Gigamacro",
  20651. height: math.unit(4000, "solarradii")
  20652. },
  20653. {
  20654. name: "Universal",
  20655. height: math.unit(1.1, "universes")
  20656. }
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20661. {
  20662. side: {
  20663. height: math.unit(5 + 7 / 12, "feet"),
  20664. weight: math.unit(150, "lb"),
  20665. name: "Side",
  20666. image: {
  20667. source: "./media/characters/kassy/side.svg",
  20668. extra: 1280 / 1225,
  20669. bottom: 0.002
  20670. }
  20671. },
  20672. front: {
  20673. height: math.unit(5 + 7 / 12, "feet"),
  20674. weight: math.unit(150, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/kassy/front.svg",
  20678. extra: 1280 / 1225,
  20679. bottom: 0.025
  20680. }
  20681. },
  20682. back: {
  20683. height: math.unit(5 + 7 / 12, "feet"),
  20684. weight: math.unit(150, "lb"),
  20685. name: "Back",
  20686. image: {
  20687. source: "./media/characters/kassy/back.svg",
  20688. extra: 1280 / 1225,
  20689. bottom: 0.002
  20690. }
  20691. },
  20692. foot: {
  20693. height: math.unit(1.266, "feet"),
  20694. name: "Foot",
  20695. image: {
  20696. source: "./media/characters/kassy/foot.svg"
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5 + 7 / 12, "feet")
  20704. },
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(137, "feet"),
  20708. default: true
  20709. },
  20710. {
  20711. name: "Megamacro",
  20712. height: math.unit(1, "mile")
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(6 + 1 / 12, "feet"),
  20721. weight: math.unit(200, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/neil/front.svg",
  20725. extra: 1326 / 1250,
  20726. bottom: 0.023
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(6 + 1 / 12, "feet"),
  20734. default: true
  20735. },
  20736. {
  20737. name: "Macro",
  20738. height: math.unit(200, "feet")
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20744. {
  20745. front: {
  20746. height: math.unit(5 + 9 / 12, "feet"),
  20747. weight: math.unit(190, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/atticus/front.svg",
  20751. extra: 2934 / 2785,
  20752. bottom: 0.025
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(5 + 9 / 12, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(180, "feet")
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20770. {
  20771. side: {
  20772. height: math.unit(9, "feet"),
  20773. weight: math.unit(650, "lb"),
  20774. name: "Side",
  20775. image: {
  20776. source: "./media/characters/milo/side.svg",
  20777. extra: 2644 / 2310,
  20778. bottom: 0.032
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(9, "feet"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Macro",
  20790. height: math.unit(300, "feet")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20796. {
  20797. side: {
  20798. height: math.unit(8, "meters"),
  20799. weight: math.unit(90000, "kg"),
  20800. name: "Side",
  20801. image: {
  20802. source: "./media/characters/ijzer/side.svg",
  20803. extra: 2756 / 1600,
  20804. bottom: 0.01
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Small",
  20811. height: math.unit(3, "meters")
  20812. },
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(8, "meters"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Normal+",
  20820. height: math.unit(10, "meters")
  20821. },
  20822. {
  20823. name: "Bigger",
  20824. height: math.unit(24, "meters")
  20825. },
  20826. {
  20827. name: "Huge",
  20828. height: math.unit(80, "meters")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(6 + 2 / 12, "feet"),
  20837. weight: math.unit(153, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/luca-cervicum/front.svg",
  20841. extra: 370 / 327,
  20842. bottom: 0.015
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(6 + 2 / 12, "feet"),
  20847. weight: math.unit(153, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/luca-cervicum/back.svg",
  20851. extra: 367 / 333,
  20852. bottom: 0.005
  20853. }
  20854. },
  20855. frontGear: {
  20856. height: math.unit(6 + 2 / 12, "feet"),
  20857. weight: math.unit(173, "lb"),
  20858. name: "Front (Gear)",
  20859. image: {
  20860. source: "./media/characters/luca-cervicum/front-gear.svg",
  20861. extra: 377 / 333,
  20862. bottom: 0.006
  20863. }
  20864. },
  20865. },
  20866. [
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(6 + 2 / 12, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(6 + 1 / 12, "feet"),
  20879. weight: math.unit(304, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/oliver/front.svg",
  20883. extra: 157 / 143,
  20884. bottom: 0.08
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(6 + 1 / 12, "feet"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(5 + 7 / 12, "feet"),
  20901. weight: math.unit(140, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/shane/front.svg",
  20905. extra: 304 / 289,
  20906. bottom: 0.005
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(5 + 7 / 12, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20920. {
  20921. front: {
  20922. height: math.unit(5 + 9 / 12, "feet"),
  20923. weight: math.unit(178, "lb"),
  20924. name: "Front",
  20925. image: {
  20926. source: "./media/characters/shin/front.svg",
  20927. extra: 159 / 151,
  20928. bottom: 0.015
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(5 + 9 / 12, "feet"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 10 / 12, "feet"),
  20945. weight: math.unit(168, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/xerxes/front.svg",
  20949. extra: 282 / 260,
  20950. bottom: 0.045
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 10 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(6 + 7 / 12, "feet"),
  20967. weight: math.unit(208, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/chaska/front.svg",
  20971. extra: 332 / 319,
  20972. bottom: 0.015
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 7 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(5 + 8 / 12, "feet"),
  20989. weight: math.unit(208, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/enuk/front.svg",
  20993. extra: 437 / 406,
  20994. bottom: 0.02
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Normal",
  21001. height: math.unit(5 + 8 / 12, "feet"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21008. {
  21009. front: {
  21010. height: math.unit(5 + 10 / 12, "feet"),
  21011. weight: math.unit(252, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/bruun/front.svg",
  21015. extra: 197 / 187,
  21016. bottom: 0.012
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(5 + 10 / 12, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(6 + 10 / 12, "feet"),
  21033. weight: math.unit(255, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/alexeev/front.svg",
  21037. extra: 213 / 200,
  21038. bottom: 0.05
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(6 + 10 / 12, "feet"),
  21046. default: true
  21047. },
  21048. ]
  21049. ))
  21050. characterMakers.push(() => makeCharacter(
  21051. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21052. {
  21053. front: {
  21054. height: math.unit(2 + 8 / 12, "feet"),
  21055. weight: math.unit(22, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/evelyn/front.svg",
  21059. extra: 208 / 180
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(2 + 8 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(5 + 9 / 12, "feet"),
  21076. weight: math.unit(139, "lb"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/inca/front.svg",
  21080. extra: 294 / 291,
  21081. bottom: 0.03
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(5 + 9 / 12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21095. {
  21096. front: {
  21097. height: math.unit(6 + 3 / 12, "feet"),
  21098. weight: math.unit(185, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/mera/front.svg",
  21102. extra: 291 / 277,
  21103. bottom: 0.03
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(6 + 3 / 12, "feet"),
  21111. default: true
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(6 + 7 / 12, "feet"),
  21120. weight: math.unit(160, "lb"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/ceres/front.svg",
  21124. extra: 1023 / 950,
  21125. bottom: 0.027
  21126. }
  21127. },
  21128. back: {
  21129. height: math.unit(6 + 7 / 12, "feet"),
  21130. weight: math.unit(160, "lb"),
  21131. name: "Back",
  21132. image: {
  21133. source: "./media/characters/ceres/back.svg",
  21134. extra: 1023 / 950
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(6 + 7 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(5 + 10 / 12, "feet"),
  21151. weight: math.unit(150, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/kris/front.svg",
  21155. extra: 885 / 803,
  21156. bottom: 0.03
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(5 + 10 / 12, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(7, "feet"),
  21173. weight: math.unit(120, "kg"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/taluthus/front.svg",
  21177. extra: 903 / 833,
  21178. bottom: 0.015
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(7, "feet"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(300, "feet")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(5 + 9 / 12, "feet"),
  21199. weight: math.unit(145, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/dawn/front.svg",
  21203. extra: 2094 / 2016,
  21204. bottom: 0.025
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(5 + 9 / 12, "feet"),
  21209. weight: math.unit(160, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/dawn/back.svg",
  21213. extra: 2112 / 2080,
  21214. bottom: 0.005
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(6 + 7 / 12, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21228. {
  21229. anthro: {
  21230. height: math.unit(8 + 3 / 12, "feet"),
  21231. weight: math.unit(450, "lb"),
  21232. name: "Anthro",
  21233. image: {
  21234. source: "./media/characters/arador/anthro.svg",
  21235. extra: 1835 / 1718,
  21236. bottom: 0.025
  21237. }
  21238. },
  21239. feral: {
  21240. height: math.unit(4, "feet"),
  21241. weight: math.unit(200, "lb"),
  21242. name: "Feral",
  21243. image: {
  21244. source: "./media/characters/arador/feral.svg",
  21245. extra: 1683 / 1514,
  21246. bottom: 0.07
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(8 + 3 / 12, "feet")
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(82.5, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(5 + 10 / 12, "feet"),
  21267. weight: math.unit(125, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/dharsi/front.svg",
  21271. extra: 716 / 630,
  21272. bottom: 0.035
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Nano",
  21279. height: math.unit(100, "nm")
  21280. },
  21281. {
  21282. name: "Micro",
  21283. height: math.unit(2, "inches")
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(5 + 10 / 12, "feet"),
  21288. default: true
  21289. },
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(1000, "feet")
  21293. },
  21294. {
  21295. name: "Megamacro",
  21296. height: math.unit(10, "miles")
  21297. },
  21298. {
  21299. name: "Gigamacro",
  21300. height: math.unit(3000, "miles")
  21301. },
  21302. {
  21303. name: "Teramacro",
  21304. height: math.unit(500000, "miles")
  21305. },
  21306. {
  21307. name: "Teramacro+",
  21308. height: math.unit(30, "galaxies")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(6, "feet"),
  21317. weight: math.unit(150, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/deathy/front.svg",
  21321. extra: 1552 / 1463,
  21322. bottom: 0.025
  21323. }
  21324. },
  21325. side: {
  21326. height: math.unit(6, "feet"),
  21327. weight: math.unit(150, "lb"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/deathy/side.svg",
  21331. extra: 1604 / 1455,
  21332. bottom: 0.025
  21333. }
  21334. },
  21335. back: {
  21336. height: math.unit(6, "feet"),
  21337. weight: math.unit(150, "lb"),
  21338. name: "Back",
  21339. image: {
  21340. source: "./media/characters/deathy/back.svg",
  21341. extra: 1580 / 1463,
  21342. bottom: 0.005
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Micro",
  21349. height: math.unit(5, "millimeters")
  21350. },
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(6 + 5 / 12, "feet"),
  21354. default: true
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21360. {
  21361. front: {
  21362. height: math.unit(16, "feet"),
  21363. weight: math.unit(4000, "lb"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/juniper/front.svg",
  21367. bottom: 0.04
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(16, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(6, "feet"),
  21384. weight: math.unit(150, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/hipster/front.svg",
  21388. extra: 1312 / 1209,
  21389. bottom: 0.025
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(6, "feet"),
  21394. weight: math.unit(150, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/hipster/back.svg",
  21398. extra: 1281 / 1196,
  21399. bottom: 0.01
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Micro",
  21406. height: math.unit(1, "mm")
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(4, "inches"),
  21411. default: true
  21412. },
  21413. {
  21414. name: "Macro",
  21415. height: math.unit(500, "feet")
  21416. },
  21417. {
  21418. name: "Megamacro",
  21419. height: math.unit(1000, "miles")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(6, "feet"),
  21428. weight: math.unit(150, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/tendirmuldr/front.svg",
  21432. extra: 1878 / 1772,
  21433. bottom: 0.015
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Megamacro",
  21440. height: math.unit(1500, "miles"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21447. {
  21448. front: {
  21449. height: math.unit(14, "feet"),
  21450. weight: math.unit(12000, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/mort/front.svg",
  21454. extra: 365 / 318,
  21455. bottom: 0.01
  21456. }
  21457. },
  21458. side: {
  21459. height: math.unit(14, "feet"),
  21460. weight: math.unit(12000, "lb"),
  21461. name: "Side",
  21462. image: {
  21463. source: "./media/characters/mort/side.svg",
  21464. extra: 365 / 318,
  21465. bottom: 0.052
  21466. },
  21467. default: true
  21468. },
  21469. back: {
  21470. height: math.unit(14, "feet"),
  21471. weight: math.unit(12000, "lb"),
  21472. name: "Back",
  21473. image: {
  21474. source: "./media/characters/mort/back.svg",
  21475. extra: 371 / 332,
  21476. bottom: 0.18
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(14, "feet"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21490. {
  21491. front: {
  21492. height: math.unit(8, "feet"),
  21493. weight: math.unit(1, "ton"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/lycoa/front.svg",
  21497. extra: 1836/1728,
  21498. bottom: 81/1917
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(8, "feet"),
  21503. weight: math.unit(1, "ton"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/lycoa/back.svg",
  21507. extra: 1785/1720,
  21508. bottom: 91/1876
  21509. }
  21510. },
  21511. head: {
  21512. height: math.unit(1.6243, "feet"),
  21513. name: "Head",
  21514. image: {
  21515. source: "./media/characters/lycoa/head.svg",
  21516. extra: 1011/782,
  21517. bottom: 0/1011
  21518. }
  21519. },
  21520. tailmaw: {
  21521. height: math.unit(1.9, "feet"),
  21522. name: "Tailmaw",
  21523. image: {
  21524. source: "./media/characters/lycoa/tailmaw.svg"
  21525. }
  21526. },
  21527. tentacles: {
  21528. height: math.unit(2.1, "feet"),
  21529. name: "Tentacles",
  21530. image: {
  21531. source: "./media/characters/lycoa/tentacles.svg"
  21532. }
  21533. },
  21534. dick: {
  21535. height: math.unit(1.73, "feet"),
  21536. name: "Dick",
  21537. image: {
  21538. source: "./media/characters/lycoa/dick.svg"
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(8, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(30, "feet")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21556. {
  21557. front: {
  21558. height: math.unit(4 + 2 / 12, "feet"),
  21559. weight: math.unit(70, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/naldara/front.svg",
  21563. extra: 1664/1387,
  21564. bottom: 81/1745
  21565. },
  21566. form: "anthro",
  21567. default: true
  21568. },
  21569. naga: {
  21570. height: math.unit(20, "feet"),
  21571. weight: math.unit(15000, "kg"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/naldara/naga.svg",
  21575. extra: 1590/1396,
  21576. bottom: 285/1875
  21577. },
  21578. form: "naga",
  21579. default: true
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(4 + 2 / 12, "feet"),
  21586. form: "anthro",
  21587. default: true
  21588. },
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(20, "feet"),
  21592. form: "naga",
  21593. default: true
  21594. },
  21595. ],
  21596. {
  21597. "anthro": {
  21598. name: "Anthro",
  21599. default: true
  21600. },
  21601. "naga": {
  21602. name: "Naga"
  21603. }
  21604. }
  21605. ))
  21606. characterMakers.push(() => makeCharacter(
  21607. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21608. {
  21609. front: {
  21610. height: math.unit(13 + 7 / 12, "feet"),
  21611. weight: math.unit(1500, "lb"),
  21612. name: "Front",
  21613. image: {
  21614. source: "./media/characters/briar/front.svg",
  21615. extra: 1223/1157,
  21616. bottom: 123/1346
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(13 + 7 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21630. {
  21631. side: {
  21632. height: math.unit(16, "feet"),
  21633. weight: math.unit(500, "lb"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/vanguard/side.svg",
  21637. extra: 1022/914,
  21638. bottom: 30/1052
  21639. }
  21640. },
  21641. sideAlt: {
  21642. height: math.unit(10, "feet"),
  21643. weight: math.unit(500, "lb"),
  21644. name: "Side (Alt)",
  21645. image: {
  21646. source: "./media/characters/vanguard/side-alt.svg",
  21647. extra: 502 / 425,
  21648. bottom: 0.087
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(17.71, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(7.5, "feet"),
  21665. weight: math.unit(2, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/artemis/work-safe-front.svg",
  21669. extra: 1192 / 1075,
  21670. bottom: 0.07
  21671. },
  21672. form: "work-safe",
  21673. default: true
  21674. },
  21675. frontNsfw: {
  21676. height: math.unit(7.5, "feet"),
  21677. weight: math.unit(2, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/artemis/calibrating-front.svg",
  21681. extra: 1192 / 1075,
  21682. bottom: 0.07
  21683. },
  21684. form: "calibrating",
  21685. default: true
  21686. },
  21687. frontNsfwer: {
  21688. height: math.unit(7.5, "feet"),
  21689. weight: math.unit(2, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/artemis/oversize-load-front.svg",
  21693. extra: 1192 / 1075,
  21694. bottom: 0.07
  21695. },
  21696. form: "oversize-load",
  21697. default: true
  21698. },
  21699. side: {
  21700. height: math.unit(7.5, "feet"),
  21701. weight: math.unit(2, "lb"),
  21702. name: "Side",
  21703. image: {
  21704. source: "./media/characters/artemis/work-safe-side.svg",
  21705. extra: 1192 / 1075,
  21706. bottom: 0.07
  21707. },
  21708. form: "work-safe"
  21709. },
  21710. sideNsfw: {
  21711. height: math.unit(7.5, "feet"),
  21712. weight: math.unit(2, "lb"),
  21713. name: "Side",
  21714. image: {
  21715. source: "./media/characters/artemis/calibrating-side.svg",
  21716. extra: 1192 / 1075,
  21717. bottom: 0.07
  21718. },
  21719. form: "calibrating"
  21720. },
  21721. sideNsfwer: {
  21722. height: math.unit(7.5, "feet"),
  21723. weight: math.unit(2, "lb"),
  21724. name: "Side",
  21725. image: {
  21726. source: "./media/characters/artemis/oversize-load-side.svg",
  21727. extra: 1192 / 1075,
  21728. bottom: 0.07
  21729. },
  21730. form: "oversize-load"
  21731. },
  21732. maw: {
  21733. height: math.unit(1.1, "feet"),
  21734. name: "Maw",
  21735. image: {
  21736. source: "./media/characters/artemis/maw.svg"
  21737. },
  21738. form: "work-safe"
  21739. },
  21740. stomach: {
  21741. height: math.unit(0.95, "feet"),
  21742. name: "Stomach",
  21743. image: {
  21744. source: "./media/characters/artemis/stomach.svg"
  21745. },
  21746. form: "work-safe"
  21747. },
  21748. dickCanine: {
  21749. height: math.unit(1, "feet"),
  21750. name: "Dick (Canine)",
  21751. image: {
  21752. source: "./media/characters/artemis/dick-canine.svg"
  21753. },
  21754. form: "calibrating"
  21755. },
  21756. dickEquine: {
  21757. height: math.unit(0.85, "feet"),
  21758. name: "Dick (Equine)",
  21759. image: {
  21760. source: "./media/characters/artemis/dick-equine.svg"
  21761. },
  21762. form: "calibrating"
  21763. },
  21764. dickExotic: {
  21765. height: math.unit(0.85, "feet"),
  21766. name: "Dick (Exotic)",
  21767. image: {
  21768. source: "./media/characters/artemis/dick-exotic.svg"
  21769. },
  21770. form: "calibrating"
  21771. },
  21772. dickCanineBigger: {
  21773. height: math.unit(1 * 1.33, "feet"),
  21774. name: "Dick (Canine)",
  21775. image: {
  21776. source: "./media/characters/artemis/dick-canine.svg"
  21777. },
  21778. form: "oversize-load"
  21779. },
  21780. dickEquineBigger: {
  21781. height: math.unit(0.85 * 1.33, "feet"),
  21782. name: "Dick (Equine)",
  21783. image: {
  21784. source: "./media/characters/artemis/dick-equine.svg"
  21785. },
  21786. form: "oversize-load"
  21787. },
  21788. dickExoticBigger: {
  21789. height: math.unit(0.85 * 1.33, "feet"),
  21790. name: "Dick (Exotic)",
  21791. image: {
  21792. source: "./media/characters/artemis/dick-exotic.svg"
  21793. },
  21794. form: "oversize-load"
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(7.5, "feet"),
  21801. form: "work-safe",
  21802. default: true
  21803. },
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(7.5, "feet"),
  21807. form: "calibrating",
  21808. default: true
  21809. },
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(7.5, "feet"),
  21813. form: "oversize-load",
  21814. default: true
  21815. },
  21816. {
  21817. name: "Enlarged",
  21818. height: math.unit(12, "feet"),
  21819. form: "work-safe",
  21820. },
  21821. {
  21822. name: "Enlarged",
  21823. height: math.unit(12, "feet"),
  21824. form: "calibrating",
  21825. },
  21826. {
  21827. name: "Enlarged",
  21828. height: math.unit(12, "feet"),
  21829. form: "oversize-load",
  21830. },
  21831. ],
  21832. {
  21833. "work-safe": {
  21834. name: "Work-Safe",
  21835. default: true
  21836. },
  21837. "calibrating": {
  21838. name: "Calibrating"
  21839. },
  21840. "oversize-load": {
  21841. name: "Oversize Load"
  21842. }
  21843. }
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(5 + 3 / 12, "feet"),
  21850. weight: math.unit(160, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/kira/front.svg",
  21854. extra: 906 / 786,
  21855. bottom: 0.01
  21856. }
  21857. },
  21858. back: {
  21859. height: math.unit(5 + 3 / 12, "feet"),
  21860. weight: math.unit(160, "lb"),
  21861. name: "Back",
  21862. image: {
  21863. source: "./media/characters/kira/back.svg",
  21864. extra: 882 / 757,
  21865. bottom: 0.005
  21866. }
  21867. },
  21868. frontDressed: {
  21869. height: math.unit(5 + 3 / 12, "feet"),
  21870. weight: math.unit(160, "lb"),
  21871. name: "Front (Dressed)",
  21872. image: {
  21873. source: "./media/characters/kira/front-dressed.svg",
  21874. extra: 906 / 786,
  21875. bottom: 0.01
  21876. }
  21877. },
  21878. beans: {
  21879. height: math.unit(0.92, "feet"),
  21880. name: "Beans",
  21881. image: {
  21882. source: "./media/characters/kira/beans.svg"
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(5 + 3 / 12, "feet"),
  21890. default: true
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(5 + 4 / 12, "feet"),
  21899. weight: math.unit(145, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/scramble/front.svg",
  21903. extra: 763 / 727,
  21904. bottom: 0.05
  21905. }
  21906. },
  21907. back: {
  21908. height: math.unit(5 + 4 / 12, "feet"),
  21909. weight: math.unit(145, "lb"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/scramble/back.svg",
  21913. extra: 826 / 737,
  21914. bottom: 0.002
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(5 + 4 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21928. {
  21929. side: {
  21930. height: math.unit(6 + 2 / 12, "feet"),
  21931. weight: math.unit(190, "lb"),
  21932. name: "Side",
  21933. image: {
  21934. source: "./media/characters/biscuit/side.svg",
  21935. extra: 858 / 791,
  21936. bottom: 0.044
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(6 + 2 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(5 + 2 / 12, "feet"),
  21953. weight: math.unit(120, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/poffin/front.svg",
  21957. extra: 786 / 680,
  21958. bottom: 0.005
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(5 + 2 / 12, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6 + 3 / 12, "feet"),
  21975. weight: math.unit(519, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/dhari/front.svg",
  21979. extra: 1048 / 946,
  21980. bottom: 0.015
  21981. }
  21982. },
  21983. back: {
  21984. height: math.unit(6 + 3 / 12, "feet"),
  21985. weight: math.unit(519, "lb"),
  21986. name: "Back",
  21987. image: {
  21988. source: "./media/characters/dhari/back.svg",
  21989. extra: 1048 / 931,
  21990. bottom: 0.005
  21991. }
  21992. },
  21993. frontDressed: {
  21994. height: math.unit(6 + 3 / 12, "feet"),
  21995. weight: math.unit(519, "lb"),
  21996. name: "Front (Dressed)",
  21997. image: {
  21998. source: "./media/characters/dhari/front-dressed.svg",
  21999. extra: 1713 / 1546,
  22000. bottom: 0.02
  22001. }
  22002. },
  22003. backDressed: {
  22004. height: math.unit(6 + 3 / 12, "feet"),
  22005. weight: math.unit(519, "lb"),
  22006. name: "Back (Dressed)",
  22007. image: {
  22008. source: "./media/characters/dhari/back-dressed.svg",
  22009. extra: 1699 / 1537,
  22010. bottom: 0.01
  22011. }
  22012. },
  22013. maw: {
  22014. height: math.unit(0.95, "feet"),
  22015. name: "Maw",
  22016. image: {
  22017. source: "./media/characters/dhari/maw.svg"
  22018. }
  22019. },
  22020. wereFront: {
  22021. height: math.unit(12 + 8 / 12, "feet"),
  22022. weight: math.unit(4000, "lb"),
  22023. name: "Front (Were)",
  22024. image: {
  22025. source: "./media/characters/dhari/were-front.svg",
  22026. extra: 1065 / 969,
  22027. bottom: 0.015
  22028. }
  22029. },
  22030. wereBack: {
  22031. height: math.unit(12 + 8 / 12, "feet"),
  22032. weight: math.unit(4000, "lb"),
  22033. name: "Back (Were)",
  22034. image: {
  22035. source: "./media/characters/dhari/were-back.svg",
  22036. extra: 1065 / 969,
  22037. bottom: 0.012
  22038. }
  22039. },
  22040. wereMaw: {
  22041. height: math.unit(0.625, "meters"),
  22042. name: "Maw (Were)",
  22043. image: {
  22044. source: "./media/characters/dhari/were-maw.svg"
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(6 + 3 / 12, "feet"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22058. {
  22059. anthro: {
  22060. height: math.unit(5 + 7 / 12, "feet"),
  22061. weight: math.unit(175, "lb"),
  22062. name: "Anthro",
  22063. image: {
  22064. source: "./media/characters/rena-dyne/anthro.svg",
  22065. extra: 1849 / 1785,
  22066. bottom: 0.005
  22067. }
  22068. },
  22069. taur: {
  22070. height: math.unit(15 + 6 / 12, "feet"),
  22071. weight: math.unit(8000, "lb"),
  22072. name: "Taur",
  22073. image: {
  22074. source: "./media/characters/rena-dyne/taur.svg",
  22075. extra: 2315 / 2234,
  22076. bottom: 0.033
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(5 + 7 / 12, "feet"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(8, "feet"),
  22093. weight: math.unit(600, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/weremeep/front.svg",
  22097. extra: 970/849,
  22098. bottom: 7/977
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(8, "feet"),
  22106. default: true
  22107. },
  22108. {
  22109. name: "Lorg",
  22110. height: math.unit(12, "feet")
  22111. },
  22112. {
  22113. name: "Oh Lawd She Comin'",
  22114. height: math.unit(20, "feet")
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22120. {
  22121. front: {
  22122. height: math.unit(4, "feet"),
  22123. weight: math.unit(90, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/reza/front.svg",
  22127. extra: 1183 / 1111,
  22128. bottom: 0.017
  22129. }
  22130. },
  22131. back: {
  22132. height: math.unit(4, "feet"),
  22133. weight: math.unit(90, "lb"),
  22134. name: "Back",
  22135. image: {
  22136. source: "./media/characters/reza/back.svg",
  22137. extra: 1183 / 1111,
  22138. bottom: 0.01
  22139. }
  22140. },
  22141. drake: {
  22142. height: math.unit(30, "feet"),
  22143. weight: math.unit(246960, "lb"),
  22144. name: "Drake",
  22145. image: {
  22146. source: "./media/characters/reza/drake.svg",
  22147. extra: 2350 / 2024,
  22148. bottom: 60.7 / 2403
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(4, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22162. {
  22163. side: {
  22164. height: math.unit(15, "feet"),
  22165. weight: math.unit(14, "tons"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/athea/side.svg",
  22169. extra: 960 / 540,
  22170. bottom: 0.003
  22171. }
  22172. },
  22173. sitting: {
  22174. height: math.unit(6 * 2.85, "feet"),
  22175. weight: math.unit(14, "tons"),
  22176. name: "Sitting",
  22177. image: {
  22178. source: "./media/characters/athea/sitting.svg",
  22179. extra: 621 / 581,
  22180. bottom: 0.075
  22181. }
  22182. },
  22183. maw: {
  22184. height: math.unit(7.59498031496063, "feet"),
  22185. name: "Maw",
  22186. image: {
  22187. source: "./media/characters/athea/maw.svg"
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Lap Cat",
  22194. height: math.unit(2.5, "feet")
  22195. },
  22196. {
  22197. name: "Minimacro",
  22198. height: math.unit(15, "feet"),
  22199. default: true
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(120, "feet")
  22204. },
  22205. {
  22206. name: "Macro+",
  22207. height: math.unit(640, "feet")
  22208. },
  22209. {
  22210. name: "Colossus",
  22211. height: math.unit(2.2, "miles")
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(8 + 8 / 12, "feet"),
  22220. weight: math.unit(130, "kg"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/seroko/front.svg",
  22224. extra: 1385 / 1280,
  22225. bottom: 0.025
  22226. }
  22227. },
  22228. back: {
  22229. height: math.unit(8 + 8 / 12, "feet"),
  22230. weight: math.unit(130, "kg"),
  22231. name: "Back",
  22232. image: {
  22233. source: "./media/characters/seroko/back.svg",
  22234. extra: 1369 / 1238,
  22235. bottom: 0.018
  22236. }
  22237. },
  22238. frontDressed: {
  22239. height: math.unit(8 + 8 / 12, "feet"),
  22240. weight: math.unit(130, "kg"),
  22241. name: "Front (Dressed)",
  22242. image: {
  22243. source: "./media/characters/seroko/front-dressed.svg",
  22244. extra: 1366 / 1275,
  22245. bottom: 0.03
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(8 + 8 / 12, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(5.5, "feet"),
  22262. weight: math.unit(160, "lb"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/quatzi/front.svg",
  22266. extra: 2346 / 2242,
  22267. bottom: 0.015
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5.5, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Big",
  22279. height: math.unit(7.7, "feet")
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22285. {
  22286. front: {
  22287. height: math.unit(5 + 11 / 12, "feet"),
  22288. weight: math.unit(180, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/sen/front.svg",
  22292. extra: 1321 / 1254,
  22293. bottom: 0.015
  22294. }
  22295. },
  22296. side: {
  22297. height: math.unit(5 + 11 / 12, "feet"),
  22298. weight: math.unit(180, "lb"),
  22299. name: "Side",
  22300. image: {
  22301. source: "./media/characters/sen/side.svg",
  22302. extra: 1321 / 1254,
  22303. bottom: 0.007
  22304. }
  22305. },
  22306. back: {
  22307. height: math.unit(5 + 11 / 12, "feet"),
  22308. weight: math.unit(180, "lb"),
  22309. name: "Back",
  22310. image: {
  22311. source: "./media/characters/sen/back.svg",
  22312. extra: 1321 / 1254
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(5 + 11 / 12, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(166.6, "cm"),
  22329. weight: math.unit(66.6, "kg"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/fruity/front.svg",
  22333. extra: 1510 / 1386,
  22334. bottom: 0.04
  22335. }
  22336. },
  22337. back: {
  22338. height: math.unit(166.6, "cm"),
  22339. weight: math.unit(66.6, "lb"),
  22340. name: "Back",
  22341. image: {
  22342. source: "./media/characters/fruity/back.svg",
  22343. extra: 1563 / 1435,
  22344. bottom: 0.005
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(166.6, "cm"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Demonic",
  22356. height: math.unit(166.6, "feet")
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22362. {
  22363. side: {
  22364. height: math.unit(10, "feet"),
  22365. weight: math.unit(500, "lb"),
  22366. name: "Side",
  22367. image: {
  22368. source: "./media/characters/zost/side.svg",
  22369. extra: 2870/2533,
  22370. bottom: 252/3122
  22371. }
  22372. },
  22373. mawFront: {
  22374. height: math.unit(1.08, "meters"),
  22375. name: "Maw (Front)",
  22376. image: {
  22377. source: "./media/characters/zost/maw-front.svg"
  22378. }
  22379. },
  22380. mawSide: {
  22381. height: math.unit(2.66, "feet"),
  22382. name: "Maw (Side)",
  22383. image: {
  22384. source: "./media/characters/zost/maw-side.svg"
  22385. }
  22386. },
  22387. wingspan: {
  22388. height: math.unit(7.4, "feet"),
  22389. name: "Wingspan",
  22390. image: {
  22391. source: "./media/characters/zost/wingspan.svg"
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(10, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(5 + 4 / 12, "feet"),
  22408. weight: math.unit(120, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/luci/front.svg",
  22412. extra: 1985 / 1884,
  22413. bottom: 0.04
  22414. }
  22415. },
  22416. back: {
  22417. height: math.unit(5 + 4 / 12, "feet"),
  22418. weight: math.unit(120, "lb"),
  22419. name: "Back",
  22420. image: {
  22421. source: "./media/characters/luci/back.svg",
  22422. extra: 1892 / 1791,
  22423. bottom: 0.002
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(5 + 4 / 12, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(1500, "feet"),
  22440. weight: math.unit(3.8e6, "tons"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/2th/front.svg",
  22444. extra: 3489 / 3350,
  22445. bottom: 0.1
  22446. }
  22447. },
  22448. foot: {
  22449. height: math.unit(461, "feet"),
  22450. name: "Foot",
  22451. image: {
  22452. source: "./media/characters/2th/foot.svg"
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "\"Micro\"",
  22459. height: math.unit(15 + 7 / 12, "feet")
  22460. },
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(1500, "feet"),
  22464. default: true
  22465. },
  22466. {
  22467. name: "Macro",
  22468. height: math.unit(5000, "feet")
  22469. },
  22470. {
  22471. name: "Megamacro",
  22472. height: math.unit(15, "miles")
  22473. },
  22474. {
  22475. name: "Gigamacro",
  22476. height: math.unit(4000, "miles")
  22477. },
  22478. {
  22479. name: "Galactic",
  22480. height: math.unit(50, "AU")
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(5 + 6 / 12, "feet"),
  22489. weight: math.unit(220, "lb"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/amethyst/front.svg",
  22493. extra: 2078 / 2040,
  22494. bottom: 0.045
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(5 + 6 / 12, "feet"),
  22499. weight: math.unit(220, "lb"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/amethyst/back.svg",
  22503. extra: 2021 / 1989,
  22504. bottom: 0.02
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(5 + 6 / 12, "feet"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(4 + 11 / 12, "feet"),
  22521. weight: math.unit(120, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/yumi-akiyama/front.svg",
  22525. extra: 1327 / 1235,
  22526. bottom: 0.02
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(4 + 11 / 12, "feet"),
  22531. weight: math.unit(120, "lb"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/yumi-akiyama/back.svg",
  22535. extra: 1287 / 1245,
  22536. bottom: 0.002
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Galactic",
  22543. height: math.unit(50, "galaxies"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Universal",
  22548. height: math.unit(100, "universes")
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22554. {
  22555. front: {
  22556. height: math.unit(8, "feet"),
  22557. weight: math.unit(500, "lb"),
  22558. name: "Front",
  22559. image: {
  22560. source: "./media/characters/rifter-yrmori/front.svg",
  22561. extra: 1180 / 1125,
  22562. bottom: 0.02
  22563. }
  22564. },
  22565. back: {
  22566. height: math.unit(8, "feet"),
  22567. weight: math.unit(500, "lb"),
  22568. name: "Back",
  22569. image: {
  22570. source: "./media/characters/rifter-yrmori/back.svg",
  22571. extra: 1190 / 1145,
  22572. bottom: 0.001
  22573. }
  22574. },
  22575. wings: {
  22576. height: math.unit(7.75, "feet"),
  22577. weight: math.unit(500, "lb"),
  22578. name: "Wings",
  22579. image: {
  22580. source: "./media/characters/rifter-yrmori/wings.svg",
  22581. extra: 1357 / 1285
  22582. }
  22583. },
  22584. maw: {
  22585. height: math.unit(0.8, "feet"),
  22586. name: "Maw",
  22587. image: {
  22588. source: "./media/characters/rifter-yrmori/maw.svg"
  22589. }
  22590. },
  22591. mawfront: {
  22592. height: math.unit(1.45, "feet"),
  22593. name: "Maw (Front)",
  22594. image: {
  22595. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(8, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Macro",
  22607. height: math.unit(42, "meters")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22613. {
  22614. were: {
  22615. height: math.unit(25 + 6 / 12, "feet"),
  22616. weight: math.unit(10000, "lb"),
  22617. name: "Were",
  22618. image: {
  22619. source: "./media/characters/tahajin/were.svg",
  22620. extra: 801 / 770,
  22621. bottom: 0.042
  22622. }
  22623. },
  22624. aquatic: {
  22625. height: math.unit(6 + 4 / 12, "feet"),
  22626. weight: math.unit(160, "lb"),
  22627. name: "Aquatic",
  22628. image: {
  22629. source: "./media/characters/tahajin/aquatic.svg",
  22630. extra: 572 / 542,
  22631. bottom: 0.04
  22632. }
  22633. },
  22634. chow: {
  22635. height: math.unit(8 + 11 / 12, "feet"),
  22636. weight: math.unit(450, "lb"),
  22637. name: "Chow",
  22638. image: {
  22639. source: "./media/characters/tahajin/chow.svg",
  22640. extra: 660 / 640,
  22641. bottom: 0.015
  22642. }
  22643. },
  22644. demiNaga: {
  22645. height: math.unit(6 + 8 / 12, "feet"),
  22646. weight: math.unit(300, "lb"),
  22647. name: "Demi Naga",
  22648. image: {
  22649. source: "./media/characters/tahajin/demi-naga.svg",
  22650. extra: 643 / 615,
  22651. bottom: 0.1
  22652. }
  22653. },
  22654. data: {
  22655. height: math.unit(5, "inches"),
  22656. weight: math.unit(0.1, "lb"),
  22657. name: "Data",
  22658. image: {
  22659. source: "./media/characters/tahajin/data.svg"
  22660. }
  22661. },
  22662. fluu: {
  22663. height: math.unit(5 + 7 / 12, "feet"),
  22664. weight: math.unit(140, "lb"),
  22665. name: "Fluu",
  22666. image: {
  22667. source: "./media/characters/tahajin/fluu.svg",
  22668. extra: 628 / 592,
  22669. bottom: 0.02
  22670. }
  22671. },
  22672. starWarrior: {
  22673. height: math.unit(4 + 5 / 12, "feet"),
  22674. weight: math.unit(50, "lb"),
  22675. name: "Star Warrior",
  22676. image: {
  22677. source: "./media/characters/tahajin/star-warrior.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(25 + 6 / 12, "feet"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(8, "feet"),
  22694. weight: math.unit(350, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/gabira/front.svg",
  22698. extra: 1261/1154,
  22699. bottom: 51/1312
  22700. }
  22701. },
  22702. back: {
  22703. height: math.unit(8, "feet"),
  22704. weight: math.unit(350, "lb"),
  22705. name: "Back",
  22706. image: {
  22707. source: "./media/characters/gabira/back.svg",
  22708. extra: 1265/1163,
  22709. bottom: 46/1311
  22710. }
  22711. },
  22712. head: {
  22713. height: math.unit(2.85, "feet"),
  22714. name: "Head",
  22715. image: {
  22716. source: "./media/characters/gabira/head.svg"
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Normal",
  22723. height: math.unit(8, "feet"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(5 + 3 / 12, "feet"),
  22733. weight: math.unit(137, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/sasha-katraine/front.svg",
  22737. extra: 1745/1694,
  22738. bottom: 37/1782
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(5 + 3 / 12, "feet"),
  22743. weight: math.unit(137, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/sasha-katraine/back.svg",
  22747. extra: 1776/1699,
  22748. bottom: 26/1802
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Micro",
  22755. height: math.unit(5, "inches")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(5 + 3 / 12, "feet"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22766. {
  22767. side: {
  22768. height: math.unit(4, "inches"),
  22769. weight: math.unit(200, "grams"),
  22770. name: "Side",
  22771. image: {
  22772. source: "./media/characters/der/side.svg",
  22773. extra: 719 / 400,
  22774. bottom: 30.6 / 749.9187
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Micro",
  22781. height: math.unit(4, "inches"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22788. {
  22789. side: {
  22790. height: math.unit(30, "meters"),
  22791. weight: math.unit(700, "tonnes"),
  22792. name: "Side",
  22793. image: {
  22794. source: "./media/characters/fixerdragon/side.svg",
  22795. extra: (1293.0514 - 116.03) / 1106.86,
  22796. bottom: 116.03 / 1293.0514
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Planck",
  22803. height: math.unit(1.6e-35, "meters")
  22804. },
  22805. {
  22806. name: "Micro",
  22807. height: math.unit(0.4, "meters")
  22808. },
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(30, "meters"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Megamacro",
  22816. height: math.unit(1.2, "megameters")
  22817. },
  22818. {
  22819. name: "Teramacro",
  22820. height: math.unit(130, "terameters")
  22821. },
  22822. {
  22823. name: "Yottamacro",
  22824. height: math.unit(6200, "yottameters")
  22825. },
  22826. ]
  22827. ));
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(8, "feet"),
  22833. weight: math.unit(250, "lb"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/kite/front.svg",
  22837. extra: 2796 / 2659,
  22838. bottom: 0.002
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(8, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Macro",
  22850. height: math.unit(360, "feet")
  22851. },
  22852. {
  22853. name: "Megamacro",
  22854. height: math.unit(1500, "feet")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(5 + 11/12, "feet"),
  22863. weight: math.unit(170, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/poojawa-vynar/front.svg",
  22867. extra: 1735/1585,
  22868. bottom: 96/1831
  22869. }
  22870. },
  22871. back: {
  22872. height: math.unit(5 + 11/12, "feet"),
  22873. weight: math.unit(170, "lb"),
  22874. name: "Back",
  22875. image: {
  22876. source: "./media/characters/poojawa-vynar/back.svg",
  22877. extra: 1749/1607,
  22878. bottom: 28/1777
  22879. }
  22880. },
  22881. male: {
  22882. height: math.unit(5 + 11/12, "feet"),
  22883. weight: math.unit(170, "lb"),
  22884. name: "Male",
  22885. image: {
  22886. source: "./media/characters/poojawa-vynar/male.svg",
  22887. extra: 1855/1713,
  22888. bottom: 63/1918
  22889. }
  22890. },
  22891. taur: {
  22892. height: math.unit(5 + 11/12, "feet"),
  22893. weight: math.unit(170, "lb"),
  22894. name: "Taur",
  22895. image: {
  22896. source: "./media/characters/poojawa-vynar/taur.svg",
  22897. extra: 1151/1059,
  22898. bottom: 356/1507
  22899. }
  22900. },
  22901. frontDressed: {
  22902. height: math.unit(5 + 11/12, "feet"),
  22903. weight: math.unit(170, "lb"),
  22904. name: "Front (Dressed)",
  22905. image: {
  22906. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22907. extra: 1735/1585,
  22908. bottom: 96/1831
  22909. }
  22910. },
  22911. backDressed: {
  22912. height: math.unit(5 + 11/12, "feet"),
  22913. weight: math.unit(170, "lb"),
  22914. name: "Back (Dressed)",
  22915. image: {
  22916. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22917. extra: 1749/1607,
  22918. bottom: 28/1777
  22919. }
  22920. },
  22921. maleDressed: {
  22922. height: math.unit(5 + 11/12, "feet"),
  22923. weight: math.unit(170, "lb"),
  22924. name: "Male (Dressed)",
  22925. image: {
  22926. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22927. extra: 1855/1713,
  22928. bottom: 63/1918
  22929. }
  22930. },
  22931. taurDressed: {
  22932. height: math.unit(5 + 11/12, "feet"),
  22933. weight: math.unit(170, "lb"),
  22934. name: "Taur (Dressed)",
  22935. image: {
  22936. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22937. extra: 1151/1059,
  22938. bottom: 356/1507
  22939. }
  22940. },
  22941. maw: {
  22942. height: math.unit(1.46, "feet"),
  22943. name: "Maw",
  22944. image: {
  22945. source: "./media/characters/poojawa-vynar/maw.svg"
  22946. }
  22947. },
  22948. head: {
  22949. height: math.unit(2.34, "feet"),
  22950. name: "Head",
  22951. image: {
  22952. source: "./media/characters/poojawa-vynar/head.svg"
  22953. }
  22954. },
  22955. paw: {
  22956. height: math.unit(1.61, "feet"),
  22957. name: "Paw",
  22958. image: {
  22959. source: "./media/characters/poojawa-vynar/paw.svg"
  22960. }
  22961. },
  22962. pawToering: {
  22963. height: math.unit(1.72, "feet"),
  22964. name: "Paw (Toering)",
  22965. image: {
  22966. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22967. }
  22968. },
  22969. toering: {
  22970. height: math.unit(2.9, "inches"),
  22971. name: "Toering",
  22972. image: {
  22973. source: "./media/characters/poojawa-vynar/toering.svg"
  22974. }
  22975. },
  22976. shaft: {
  22977. height: math.unit(0.625, "feet"),
  22978. name: "Shaft",
  22979. image: {
  22980. source: "./media/characters/poojawa-vynar/shaft.svg"
  22981. }
  22982. },
  22983. spade: {
  22984. height: math.unit(0.42, "feet"),
  22985. name: "Spade",
  22986. image: {
  22987. source: "./media/characters/poojawa-vynar/spade.svg"
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Shortstack",
  22994. height: math.unit(4, "feet")
  22995. },
  22996. {
  22997. name: "Normal",
  22998. height: math.unit(5 + 11 / 12, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Tauric",
  23003. height: math.unit(4, "meters")
  23004. },
  23005. ]
  23006. ))
  23007. characterMakers.push(() => makeCharacter(
  23008. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23009. {
  23010. front: {
  23011. height: math.unit(293, "meters"),
  23012. weight: math.unit(70400, "tons"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/violette/front.svg",
  23016. extra: 1227 / 1180,
  23017. bottom: 0.005
  23018. }
  23019. },
  23020. back: {
  23021. height: math.unit(293, "meters"),
  23022. weight: math.unit(70400, "tons"),
  23023. name: "Back",
  23024. image: {
  23025. source: "./media/characters/violette/back.svg",
  23026. extra: 1227 / 1180,
  23027. bottom: 0.005
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(293, "meters"),
  23035. default: true
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(1050, "feet"),
  23044. weight: math.unit(200000, "tons"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/alessandra/front.svg",
  23048. extra: 960 / 912,
  23049. bottom: 0.06
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Macro",
  23056. height: math.unit(1050, "feet")
  23057. },
  23058. {
  23059. name: "Macro+",
  23060. height: math.unit(900, "meters"),
  23061. default: true
  23062. },
  23063. ]
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(5, "feet"),
  23070. weight: math.unit(187, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/person/front.svg",
  23074. extra: 3087 / 2945,
  23075. bottom: 91 / 3181
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Micro",
  23082. height: math.unit(3, "inches")
  23083. },
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(5, "feet"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(90, "feet")
  23092. },
  23093. {
  23094. name: "Max Size",
  23095. height: math.unit(280, "feet")
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23101. {
  23102. front: {
  23103. height: math.unit(4.5, "meters"),
  23104. weight: math.unit(3200, "lb"),
  23105. name: "Front",
  23106. image: {
  23107. source: "./media/characters/ty/front.svg",
  23108. extra: 1038 / 960,
  23109. bottom: 31.156 / 1068
  23110. }
  23111. },
  23112. back: {
  23113. height: math.unit(4.5, "meters"),
  23114. weight: math.unit(3200, "lb"),
  23115. name: "Back",
  23116. image: {
  23117. source: "./media/characters/ty/back.svg",
  23118. extra: 1044 / 966,
  23119. bottom: 7.48 / 1049
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Normal",
  23126. height: math.unit(4.5, "meters"),
  23127. default: true
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(5 + 4 / 12, "feet"),
  23136. weight: math.unit(115, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/rocky/front.svg",
  23140. extra: 1012 / 975,
  23141. bottom: 54 / 1066
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(5 + 4 / 12, "feet"),
  23149. default: true
  23150. },
  23151. ]
  23152. ))
  23153. characterMakers.push(() => makeCharacter(
  23154. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23155. {
  23156. upright: {
  23157. height: math.unit(6, "meters"),
  23158. weight: math.unit(4000, "kg"),
  23159. name: "Upright",
  23160. image: {
  23161. source: "./media/characters/ruin/upright.svg",
  23162. extra: 668 / 661,
  23163. bottom: 42 / 799.8396
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(6, "meters"),
  23171. default: true
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23177. {
  23178. front: {
  23179. height: math.unit(5, "feet"),
  23180. weight: math.unit(106, "lb"),
  23181. name: "Front",
  23182. image: {
  23183. source: "./media/characters/robin/front.svg",
  23184. extra: 862 / 799,
  23185. bottom: 42.4 / 914.8856
  23186. }
  23187. },
  23188. },
  23189. [
  23190. {
  23191. name: "Normal",
  23192. height: math.unit(5, "feet"),
  23193. default: true
  23194. },
  23195. ]
  23196. ))
  23197. characterMakers.push(() => makeCharacter(
  23198. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23199. {
  23200. side: {
  23201. height: math.unit(3, "feet"),
  23202. weight: math.unit(225, "lb"),
  23203. name: "Side",
  23204. image: {
  23205. source: "./media/characters/saian/side.svg",
  23206. extra: 566 / 356,
  23207. bottom: 79.7 / 643
  23208. }
  23209. },
  23210. maw: {
  23211. height: math.unit(2.85, "feet"),
  23212. name: "Maw",
  23213. image: {
  23214. source: "./media/characters/saian/maw.svg"
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Normal",
  23221. height: math.unit(3, "feet"),
  23222. default: true
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23228. {
  23229. side: {
  23230. height: math.unit(8, "feet"),
  23231. weight: math.unit(300, "lb"),
  23232. name: "Side",
  23233. image: {
  23234. source: "./media/characters/equus-silvermane/side.svg",
  23235. extra: 2176 / 2050,
  23236. bottom: 65.7 / 2245
  23237. }
  23238. },
  23239. front: {
  23240. height: math.unit(8, "feet"),
  23241. weight: math.unit(300, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/equus-silvermane/front.svg",
  23245. extra: 4633 / 4400,
  23246. bottom: 71.3 / 4706.915
  23247. }
  23248. },
  23249. sideStepping: {
  23250. height: math.unit(8, "feet"),
  23251. weight: math.unit(300, "lb"),
  23252. name: "Side (Stepping)",
  23253. image: {
  23254. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23255. extra: 1968 / 1860,
  23256. bottom: 16.4 / 1989
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(8, "feet")
  23264. },
  23265. {
  23266. name: "Minimacro",
  23267. height: math.unit(75, "feet"),
  23268. default: true
  23269. },
  23270. {
  23271. name: "Macro",
  23272. height: math.unit(150, "feet")
  23273. },
  23274. {
  23275. name: "Macro+",
  23276. height: math.unit(1000, "feet")
  23277. },
  23278. {
  23279. name: "Megamacro",
  23280. height: math.unit(1, "mile")
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23286. {
  23287. side: {
  23288. height: math.unit(20, "feet"),
  23289. weight: math.unit(30000, "kg"),
  23290. name: "Side",
  23291. image: {
  23292. source: "./media/characters/windar/side.svg",
  23293. extra: 1491 / 1248,
  23294. bottom: 82.56 / 1568
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(20, "feet"),
  23302. default: true
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23308. {
  23309. side: {
  23310. height: math.unit(15.66, "feet"),
  23311. weight: math.unit(150, "lb"),
  23312. name: "Side",
  23313. image: {
  23314. source: "./media/characters/melody/side.svg",
  23315. extra: 1097 / 944,
  23316. bottom: 11.8 / 1109
  23317. }
  23318. },
  23319. sideOutfit: {
  23320. height: math.unit(15.66, "feet"),
  23321. weight: math.unit(150, "lb"),
  23322. name: "Side (Outfit)",
  23323. image: {
  23324. source: "./media/characters/melody/side-outfit.svg",
  23325. extra: 1097 / 944,
  23326. bottom: 11.8 / 1109
  23327. }
  23328. },
  23329. },
  23330. [
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(15.66, "feet"),
  23334. default: true
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23340. {
  23341. armoredFront: {
  23342. height: math.unit(8, "feet"),
  23343. weight: math.unit(325, "lb"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/windera/armored-front.svg",
  23347. extra: 1830/1598,
  23348. bottom: 151/1981
  23349. },
  23350. form: "armored",
  23351. default: true
  23352. },
  23353. macroFront: {
  23354. height: math.unit(70, "feet"),
  23355. weight: math.unit(315453, "lb"),
  23356. name: "Front",
  23357. image: {
  23358. source: "./media/characters/windera/macro-front.svg",
  23359. extra: 963/883,
  23360. bottom: 23/986
  23361. },
  23362. form: "macro",
  23363. default: true
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(8, "feet"),
  23370. default: true,
  23371. form: "armored"
  23372. },
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(70, "feet"),
  23376. default: true,
  23377. form: "macro"
  23378. },
  23379. ],
  23380. {
  23381. "armored": {
  23382. name: "Armored",
  23383. default: true
  23384. },
  23385. "macro": {
  23386. name: "Macro",
  23387. },
  23388. }
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23392. {
  23393. front: {
  23394. height: math.unit(28.75, "feet"),
  23395. weight: math.unit(2000, "kg"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/sonear/front.svg",
  23399. extra: 1041.1 / 964.9,
  23400. bottom: 53.7 / 1096.6
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Normal",
  23407. height: math.unit(28.75, "feet"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23414. {
  23415. side: {
  23416. height: math.unit(25.5, "feet"),
  23417. weight: math.unit(23000, "kg"),
  23418. name: "Side",
  23419. image: {
  23420. source: "./media/characters/kanara/side.svg"
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Normal",
  23427. height: math.unit(25.5, "feet"),
  23428. default: true
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23434. {
  23435. side: {
  23436. height: math.unit(10, "feet"),
  23437. weight: math.unit(1000, "kg"),
  23438. name: "Side",
  23439. image: {
  23440. source: "./media/characters/ereus/side.svg",
  23441. extra: 1157 / 959,
  23442. bottom: 153 / 1312.5
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(10, "feet"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23456. {
  23457. side: {
  23458. height: math.unit(4.5, "feet"),
  23459. weight: math.unit(500, "lb"),
  23460. name: "Side",
  23461. image: {
  23462. source: "./media/characters/e-ter/side.svg",
  23463. extra: 1550 / 1248,
  23464. bottom: 146 / 1694
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(4.5, "feet"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23478. {
  23479. side: {
  23480. height: math.unit(9.7, "feet"),
  23481. weight: math.unit(4000, "kg"),
  23482. name: "Side",
  23483. image: {
  23484. source: "./media/characters/yamie/side.svg"
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(9.7, "feet"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23498. {
  23499. front: {
  23500. height: math.unit(50, "feet"),
  23501. weight: math.unit(50000, "kg"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/anders/front.svg",
  23505. extra: 570 / 539,
  23506. bottom: 14.7 / 586.7
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Large",
  23513. height: math.unit(50, "feet")
  23514. },
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(2000, "feet"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Megamacro",
  23522. height: math.unit(12, "miles")
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(7 + 2 / 12, "feet"),
  23531. weight: math.unit(300, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/reban/front.svg",
  23535. extra: 1287/1212,
  23536. bottom: 148/1435
  23537. }
  23538. },
  23539. head: {
  23540. height: math.unit(1.95, "feet"),
  23541. name: "Head",
  23542. image: {
  23543. source: "./media/characters/reban/head.svg"
  23544. }
  23545. },
  23546. maw: {
  23547. height: math.unit(0.95, "feet"),
  23548. name: "Maw",
  23549. image: {
  23550. source: "./media/characters/reban/maw.svg"
  23551. }
  23552. },
  23553. foot: {
  23554. height: math.unit(1.65, "feet"),
  23555. name: "Foot",
  23556. image: {
  23557. source: "./media/characters/reban/foot.svg"
  23558. }
  23559. },
  23560. dick: {
  23561. height: math.unit(7 / 5, "feet"),
  23562. name: "Dick",
  23563. image: {
  23564. source: "./media/characters/reban/dick.svg"
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Natural Height",
  23571. height: math.unit(7 + 2 / 12, "feet")
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(500, "feet"),
  23576. default: true
  23577. },
  23578. {
  23579. name: "Canon Height",
  23580. height: math.unit(50, "AU")
  23581. },
  23582. ]
  23583. ))
  23584. characterMakers.push(() => makeCharacter(
  23585. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23586. {
  23587. front: {
  23588. height: math.unit(6, "feet"),
  23589. weight: math.unit(150, "lb"),
  23590. name: "Front",
  23591. image: {
  23592. source: "./media/characters/terrance-keayes/front.svg",
  23593. extra: 1.005,
  23594. bottom: 151 / 1615
  23595. }
  23596. },
  23597. side: {
  23598. height: math.unit(6, "feet"),
  23599. weight: math.unit(150, "lb"),
  23600. name: "Side",
  23601. image: {
  23602. source: "./media/characters/terrance-keayes/side.svg",
  23603. extra: 1.005,
  23604. bottom: 129.4 / 1544
  23605. }
  23606. },
  23607. back: {
  23608. height: math.unit(6, "feet"),
  23609. weight: math.unit(150, "lb"),
  23610. name: "Back",
  23611. image: {
  23612. source: "./media/characters/terrance-keayes/back.svg",
  23613. extra: 1.005,
  23614. bottom: 58.4 / 1557.3
  23615. }
  23616. },
  23617. dick: {
  23618. height: math.unit(6 * 0.208, "feet"),
  23619. name: "Dick",
  23620. image: {
  23621. source: "./media/characters/terrance-keayes/dick.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Canon Height",
  23628. height: math.unit(35, "miles"),
  23629. default: true
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(6, "feet"),
  23638. weight: math.unit(150, "lb"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/ofelia/front.svg",
  23642. extra: 1130/1117,
  23643. bottom: 91/1221
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(6, "feet"),
  23648. weight: math.unit(150, "lb"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/ofelia/back.svg",
  23652. extra: 1172/1159,
  23653. bottom: 28/1200
  23654. }
  23655. },
  23656. maw: {
  23657. height: math.unit(1, "feet"),
  23658. name: "Maw",
  23659. image: {
  23660. source: "./media/characters/ofelia/maw.svg"
  23661. }
  23662. },
  23663. foot: {
  23664. height: math.unit(1.949, "feet"),
  23665. name: "Foot",
  23666. image: {
  23667. source: "./media/characters/ofelia/foot.svg"
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Canon Height",
  23674. height: math.unit(2000, "miles"),
  23675. default: true
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(6, "feet"),
  23684. weight: math.unit(150, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/samuel/front.svg",
  23688. extra: 265 / 258,
  23689. bottom: 2 / 266.1566
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Macro",
  23696. height: math.unit(100, "feet"),
  23697. default: true
  23698. },
  23699. {
  23700. name: "Full Size",
  23701. height: math.unit(1000, "miles")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(6, "feet"),
  23710. weight: math.unit(300, "lb"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/beishir-kiel/front.svg",
  23714. extra: 569 / 547,
  23715. bottom: 41.9 / 609
  23716. }
  23717. },
  23718. maw: {
  23719. height: math.unit(6 * 0.202, "feet"),
  23720. name: "Maw",
  23721. image: {
  23722. source: "./media/characters/beishir-kiel/maw.svg"
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(300, "feet"),
  23730. default: true
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(5 + 7/12, "feet"),
  23739. weight: math.unit(120, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/logan-grey/front.svg",
  23743. extra: 1836/1738,
  23744. bottom: 108/1944
  23745. }
  23746. },
  23747. back: {
  23748. height: math.unit(5 + 7/12, "feet"),
  23749. weight: math.unit(120, "lb"),
  23750. name: "Back",
  23751. image: {
  23752. source: "./media/characters/logan-grey/back.svg",
  23753. extra: 1880/1794,
  23754. bottom: 24/1904
  23755. }
  23756. },
  23757. frontSfw: {
  23758. height: math.unit(5 + 7/12, "feet"),
  23759. weight: math.unit(120, "lb"),
  23760. name: "Front (SFW)",
  23761. image: {
  23762. source: "./media/characters/logan-grey/front-sfw.svg",
  23763. extra: 1836/1738,
  23764. bottom: 108/1944
  23765. }
  23766. },
  23767. backSfw: {
  23768. height: math.unit(5 + 7/12, "feet"),
  23769. weight: math.unit(120, "lb"),
  23770. name: "Back (SFW)",
  23771. image: {
  23772. source: "./media/characters/logan-grey/back-sfw.svg",
  23773. extra: 1880/1794,
  23774. bottom: 24/1904
  23775. }
  23776. },
  23777. hands: {
  23778. height: math.unit(0.84, "feet"),
  23779. name: "Hands",
  23780. image: {
  23781. source: "./media/characters/logan-grey/hands.svg"
  23782. }
  23783. },
  23784. paws: {
  23785. height: math.unit(0.72, "feet"),
  23786. name: "Paws",
  23787. image: {
  23788. source: "./media/characters/logan-grey/paws.svg"
  23789. }
  23790. },
  23791. cock: {
  23792. height: math.unit(1.45, "feet"),
  23793. name: "Cock",
  23794. image: {
  23795. source: "./media/characters/logan-grey/cock.svg"
  23796. }
  23797. },
  23798. cockAlt: {
  23799. height: math.unit(1.437, "feet"),
  23800. name: "Cock (alt)",
  23801. image: {
  23802. source: "./media/characters/logan-grey/cock-alt.svg"
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(5 + 8 / 12, "feet")
  23810. },
  23811. {
  23812. name: "The 500 Foot Femboy",
  23813. height: math.unit(500, "feet"),
  23814. default: true
  23815. },
  23816. {
  23817. name: "Megmacro",
  23818. height: math.unit(20, "miles")
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(8 + 2 / 12, "feet"),
  23827. weight: math.unit(275, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/draganta/front.svg",
  23831. extra: 1177 / 1135,
  23832. bottom: 33.46 / 1212.1
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(8 + 6 / 12, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Macro",
  23844. height: math.unit(150, "feet")
  23845. },
  23846. {
  23847. name: "Megamacro",
  23848. height: math.unit(1000, "miles")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(1.72, "m"),
  23857. weight: math.unit(80, "lb"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/voski/front.svg",
  23861. extra: 2076.22 / 2022.4,
  23862. bottom: 102.7 / 2177.3866
  23863. }
  23864. },
  23865. frontFlaccid: {
  23866. height: math.unit(1.72, "m"),
  23867. weight: math.unit(80, "lb"),
  23868. name: "Front (Flaccid)",
  23869. image: {
  23870. source: "./media/characters/voski/front-flaccid.svg",
  23871. extra: 2076.22 / 2022.4,
  23872. bottom: 102.7 / 2177.3866
  23873. }
  23874. },
  23875. frontErect: {
  23876. height: math.unit(1.72, "m"),
  23877. weight: math.unit(80, "lb"),
  23878. name: "Front (Erect)",
  23879. image: {
  23880. source: "./media/characters/voski/front-erect.svg",
  23881. extra: 2076.22 / 2022.4,
  23882. bottom: 102.7 / 2177.3866
  23883. }
  23884. },
  23885. back: {
  23886. height: math.unit(1.72, "m"),
  23887. weight: math.unit(80, "lb"),
  23888. name: "Back",
  23889. image: {
  23890. source: "./media/characters/voski/back.svg",
  23891. extra: 2104 / 2051,
  23892. bottom: 10.45 / 2113.63
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(1.72, "m")
  23900. },
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(55, "m"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro+",
  23908. height: math.unit(300, "m")
  23909. },
  23910. {
  23911. name: "Macro++",
  23912. height: math.unit(700, "m")
  23913. },
  23914. {
  23915. name: "Macro+++",
  23916. height: math.unit(4500, "m")
  23917. },
  23918. {
  23919. name: "Macro++++",
  23920. height: math.unit(45, "km")
  23921. },
  23922. {
  23923. name: "Macro+++++",
  23924. height: math.unit(1220, "km")
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(2.3, "m"),
  23933. weight: math.unit(304, "kg"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/icowom-lee/front.svg",
  23937. extra: 985 / 955,
  23938. bottom: 25.4 / 1012
  23939. }
  23940. },
  23941. fronttentacles: {
  23942. height: math.unit(2.3, "m"),
  23943. weight: math.unit(304, "kg"),
  23944. name: "Front-tentacles",
  23945. image: {
  23946. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23947. extra: 985 / 955,
  23948. bottom: 25.4 / 1012
  23949. }
  23950. },
  23951. back: {
  23952. height: math.unit(2.3, "m"),
  23953. weight: math.unit(304, "kg"),
  23954. name: "Back",
  23955. image: {
  23956. source: "./media/characters/icowom-lee/back.svg",
  23957. extra: 975 / 954,
  23958. bottom: 9.5 / 985
  23959. }
  23960. },
  23961. backtentacles: {
  23962. height: math.unit(2.3, "m"),
  23963. weight: math.unit(304, "kg"),
  23964. name: "Back-tentacles",
  23965. image: {
  23966. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23967. extra: 975 / 954,
  23968. bottom: 9.5 / 985
  23969. }
  23970. },
  23971. frontDressed: {
  23972. height: math.unit(2.3, "m"),
  23973. weight: math.unit(304, "kg"),
  23974. name: "Front (Dressed)",
  23975. image: {
  23976. source: "./media/characters/icowom-lee/front-dressed.svg",
  23977. extra: 3076 / 2933,
  23978. bottom: 51.4 / 3125.1889
  23979. }
  23980. },
  23981. rump: {
  23982. height: math.unit(0.776, "meters"),
  23983. name: "Rump",
  23984. image: {
  23985. source: "./media/characters/icowom-lee/rump.svg"
  23986. }
  23987. },
  23988. genitals: {
  23989. height: math.unit(0.78, "meters"),
  23990. name: "Genitals",
  23991. image: {
  23992. source: "./media/characters/icowom-lee/genitals.svg"
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(2.3, "meters"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(94, "meters"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(22, "meters"),
  24014. weight: math.unit(21000, "kg"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/shock-diamond/front.svg",
  24018. extra: 2204 / 2053,
  24019. bottom: 65 / 2239.47
  24020. }
  24021. },
  24022. frontNude: {
  24023. height: math.unit(22, "meters"),
  24024. weight: math.unit(21000, "kg"),
  24025. name: "Front (Nude)",
  24026. image: {
  24027. source: "./media/characters/shock-diamond/front-nude.svg",
  24028. extra: 2514 / 2285,
  24029. bottom: 13 / 2527.56
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Normal",
  24036. height: math.unit(3, "meters")
  24037. },
  24038. {
  24039. name: "Macro",
  24040. height: math.unit(22, "meters"),
  24041. default: true
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24047. {
  24048. front: {
  24049. height: math.unit(5 + 4/12, "feet"),
  24050. weight: math.unit(125, "lb"),
  24051. name: "Front",
  24052. image: {
  24053. source: "./media/characters/rory/front.svg",
  24054. extra: 1790/1681,
  24055. bottom: 66/1856
  24056. }
  24057. },
  24058. back: {
  24059. height: math.unit(5 + 4/12, "feet"),
  24060. weight: math.unit(125, "lb"),
  24061. name: "Back",
  24062. image: {
  24063. source: "./media/characters/rory/back.svg",
  24064. extra: 1805/1690,
  24065. bottom: 56/1861
  24066. }
  24067. },
  24068. frontDressed: {
  24069. height: math.unit(5 + 4/12, "feet"),
  24070. weight: math.unit(125, "lb"),
  24071. name: "Front (Dressed)",
  24072. image: {
  24073. source: "./media/characters/rory/front-dressed.svg",
  24074. extra: 1790/1681,
  24075. bottom: 66/1856
  24076. }
  24077. },
  24078. backDressed: {
  24079. height: math.unit(5 + 4/12, "feet"),
  24080. weight: math.unit(125, "lb"),
  24081. name: "Back (Dressed)",
  24082. image: {
  24083. source: "./media/characters/rory/back-dressed.svg",
  24084. extra: 1805/1690,
  24085. bottom: 56/1861
  24086. }
  24087. },
  24088. frontNsfw: {
  24089. height: math.unit(5 + 4/12, "feet"),
  24090. weight: math.unit(125, "lb"),
  24091. name: "Front (NSFW)",
  24092. image: {
  24093. source: "./media/characters/rory/front-nsfw.svg",
  24094. extra: 1790/1681,
  24095. bottom: 66/1856
  24096. }
  24097. },
  24098. backNsfw: {
  24099. height: math.unit(5 + 4/12, "feet"),
  24100. weight: math.unit(125, "lb"),
  24101. name: "Back (NSFW)",
  24102. image: {
  24103. source: "./media/characters/rory/back-nsfw.svg",
  24104. extra: 1805/1690,
  24105. bottom: 56/1861
  24106. }
  24107. },
  24108. dick: {
  24109. height: math.unit(0.8, "feet"),
  24110. name: "Dick",
  24111. image: {
  24112. source: "./media/characters/rory/dick.svg"
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Micro",
  24119. height: math.unit(3, "inches")
  24120. },
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(5 + 4/12, "feet"),
  24124. default: true
  24125. },
  24126. {
  24127. name: "Macro",
  24128. height: math.unit(90, "feet")
  24129. },
  24130. {
  24131. name: "Supercharged",
  24132. height: math.unit(270, "feet")
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(5 + 9 / 12, "feet"),
  24141. weight: math.unit(190, "lb"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/sprisk/front.svg",
  24145. extra: 1225 / 1180,
  24146. bottom: 42.7 / 1266.4
  24147. }
  24148. },
  24149. frontNsfw: {
  24150. height: math.unit(5 + 9 / 12, "feet"),
  24151. weight: math.unit(190, "lb"),
  24152. name: "Front (NSFW)",
  24153. image: {
  24154. source: "./media/characters/sprisk/front-nsfw.svg",
  24155. extra: 1225 / 1180,
  24156. bottom: 42.7 / 1266.4
  24157. }
  24158. },
  24159. back: {
  24160. height: math.unit(5 + 9 / 12, "feet"),
  24161. weight: math.unit(190, "lb"),
  24162. name: "Back",
  24163. image: {
  24164. source: "./media/characters/sprisk/back.svg",
  24165. extra: 1247 / 1200,
  24166. bottom: 5.6 / 1253.04
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Tiny",
  24173. height: math.unit(2, "inches")
  24174. },
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(5 + 9 / 12, "feet"),
  24178. default: true
  24179. },
  24180. {
  24181. name: "Mini Macro",
  24182. height: math.unit(18, "feet")
  24183. },
  24184. {
  24185. name: "Macro",
  24186. height: math.unit(100, "feet")
  24187. },
  24188. {
  24189. name: "MACRO",
  24190. height: math.unit(50, "miles")
  24191. },
  24192. {
  24193. name: "M A C R O",
  24194. height: math.unit(300, "miles")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24200. {
  24201. side: {
  24202. height: math.unit(15.6, "meters"),
  24203. weight: math.unit(700000, "kg"),
  24204. name: "Side",
  24205. image: {
  24206. source: "./media/characters/bunsen/side.svg",
  24207. extra: 1644 / 358
  24208. }
  24209. },
  24210. foot: {
  24211. height: math.unit(1.611 * 1644 / 358, "meter"),
  24212. name: "Foot",
  24213. image: {
  24214. source: "./media/characters/bunsen/foot.svg"
  24215. }
  24216. },
  24217. },
  24218. [
  24219. {
  24220. name: "Small",
  24221. height: math.unit(10, "feet")
  24222. },
  24223. {
  24224. name: "Normal",
  24225. height: math.unit(15.6, "meters"),
  24226. default: true
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(4 + 11 / 12, "feet"),
  24235. weight: math.unit(140, "lb"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/sesh/front.svg",
  24239. extra: 3420 / 3231,
  24240. bottom: 72 / 3949.5
  24241. }
  24242. },
  24243. },
  24244. [
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(4 + 11 / 12, "feet")
  24248. },
  24249. {
  24250. name: "Grown",
  24251. height: math.unit(15, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Macro",
  24256. height: math.unit(1500, "feet")
  24257. },
  24258. {
  24259. name: "Megamacro",
  24260. height: math.unit(30, "miles")
  24261. },
  24262. {
  24263. name: "Continental",
  24264. height: math.unit(3000, "miles")
  24265. },
  24266. {
  24267. name: "Gravity Mass",
  24268. height: math.unit(300000, "miles")
  24269. },
  24270. {
  24271. name: "Planet Buster",
  24272. height: math.unit(30000000, "miles")
  24273. },
  24274. {
  24275. name: "Big",
  24276. height: math.unit(3000000000, "miles")
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24282. {
  24283. front: {
  24284. height: math.unit(9, "feet"),
  24285. weight: math.unit(350, "lb"),
  24286. name: "Front",
  24287. image: {
  24288. source: "./media/characters/pepper/front.svg",
  24289. extra: 1448 / 1312,
  24290. bottom: 9.4 / 1457.88
  24291. }
  24292. },
  24293. back: {
  24294. height: math.unit(9, "feet"),
  24295. weight: math.unit(350, "lb"),
  24296. name: "Back",
  24297. image: {
  24298. source: "./media/characters/pepper/back.svg",
  24299. extra: 1423 / 1300,
  24300. bottom: 4.6 / 1429
  24301. }
  24302. },
  24303. maw: {
  24304. height: math.unit(0.932, "feet"),
  24305. name: "Maw",
  24306. image: {
  24307. source: "./media/characters/pepper/maw.svg"
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(9, "feet"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24321. {
  24322. front: {
  24323. height: math.unit(6, "feet"),
  24324. weight: math.unit(150, "lb"),
  24325. name: "Front",
  24326. image: {
  24327. source: "./media/characters/maelstrom/front.svg",
  24328. extra: 2100 / 1883,
  24329. bottom: 94 / 2196.7
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Less Kaiju",
  24336. height: math.unit(200, "feet")
  24337. },
  24338. {
  24339. name: "Kaiju",
  24340. height: math.unit(400, "feet"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Kaiju-er",
  24345. height: math.unit(600, "feet")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(6 + 5 / 12, "feet"),
  24354. weight: math.unit(180, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/lexir/front.svg",
  24358. extra: 180 / 172,
  24359. bottom: 12 / 192
  24360. }
  24361. },
  24362. back: {
  24363. height: math.unit(6 + 5 / 12, "feet"),
  24364. weight: math.unit(180, "lb"),
  24365. name: "Back",
  24366. image: {
  24367. source: "./media/characters/lexir/back.svg",
  24368. extra: 1273/1201,
  24369. bottom: 39/1312
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Very Smal",
  24376. height: math.unit(1, "nm")
  24377. },
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(6 + 5 / 12, "feet"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Macro",
  24385. height: math.unit(1, "mile")
  24386. },
  24387. {
  24388. name: "Megamacro",
  24389. height: math.unit(50, "miles")
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24395. {
  24396. front: {
  24397. height: math.unit(1.5, "meters"),
  24398. weight: math.unit(100, "lb"),
  24399. name: "Front",
  24400. image: {
  24401. source: "./media/characters/maksio/front.svg",
  24402. extra: 1549 / 1531,
  24403. bottom: 123.7 / 1674.5429
  24404. }
  24405. },
  24406. back: {
  24407. height: math.unit(1.5, "meters"),
  24408. weight: math.unit(100, "lb"),
  24409. name: "Back",
  24410. image: {
  24411. source: "./media/characters/maksio/back.svg",
  24412. extra: 1541 / 1509,
  24413. bottom: 97 / 1639
  24414. }
  24415. },
  24416. hand: {
  24417. height: math.unit(0.621, "feet"),
  24418. name: "Hand",
  24419. image: {
  24420. source: "./media/characters/maksio/hand.svg"
  24421. }
  24422. },
  24423. foot: {
  24424. height: math.unit(1.611, "feet"),
  24425. name: "Foot",
  24426. image: {
  24427. source: "./media/characters/maksio/foot.svg"
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Shrunken",
  24434. height: math.unit(10, "cm")
  24435. },
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(150, "cm"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(100, "feet"),
  24448. name: "Front",
  24449. image: {
  24450. source: "./media/characters/erza-bear/front.svg",
  24451. extra: 2449 / 2390,
  24452. bottom: 46 / 2494
  24453. }
  24454. },
  24455. back: {
  24456. height: math.unit(100, "feet"),
  24457. name: "Back",
  24458. image: {
  24459. source: "./media/characters/erza-bear/back.svg",
  24460. extra: 2489 / 2430,
  24461. bottom: 85.4 / 2480
  24462. }
  24463. },
  24464. tail: {
  24465. height: math.unit(42, "feet"),
  24466. name: "Tail",
  24467. image: {
  24468. source: "./media/characters/erza-bear/tail.svg"
  24469. }
  24470. },
  24471. tongue: {
  24472. height: math.unit(8, "feet"),
  24473. name: "Tongue",
  24474. image: {
  24475. source: "./media/characters/erza-bear/tongue.svg"
  24476. }
  24477. },
  24478. dick: {
  24479. height: math.unit(10.5, "feet"),
  24480. name: "Dick",
  24481. image: {
  24482. source: "./media/characters/erza-bear/dick.svg"
  24483. }
  24484. },
  24485. dickVertical: {
  24486. height: math.unit(16.9, "feet"),
  24487. name: "Dick (Vertical)",
  24488. image: {
  24489. source: "./media/characters/erza-bear/dick-vertical.svg"
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(100, "feet"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24503. {
  24504. front: {
  24505. height: math.unit(172, "cm"),
  24506. weight: math.unit(73, "kg"),
  24507. name: "Front",
  24508. image: {
  24509. source: "./media/characters/violet-flor/front.svg",
  24510. extra: 1530 / 1442,
  24511. bottom: 61.9 / 1588.8
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(180, "cm"),
  24516. weight: math.unit(73, "kg"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/violet-flor/back.svg",
  24520. extra: 1692 / 1630,
  24521. bottom: 20 / 1712
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Normal",
  24528. height: math.unit(172, "cm"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6, "feet"),
  24538. weight: math.unit(220, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/lynn-rhea/front.svg",
  24542. extra: 310 / 273
  24543. }
  24544. },
  24545. back: {
  24546. height: math.unit(6, "feet"),
  24547. weight: math.unit(220, "lb"),
  24548. name: "Back",
  24549. image: {
  24550. source: "./media/characters/lynn-rhea/back.svg",
  24551. extra: 310 / 273
  24552. }
  24553. },
  24554. dicks: {
  24555. height: math.unit(0.9, "feet"),
  24556. name: "Dicks",
  24557. image: {
  24558. source: "./media/characters/lynn-rhea/dicks.svg"
  24559. }
  24560. },
  24561. slit: {
  24562. height: math.unit(0.4, "feet"),
  24563. name: "Slit",
  24564. image: {
  24565. source: "./media/characters/lynn-rhea/slit.svg"
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Micro",
  24572. height: math.unit(1, "inch")
  24573. },
  24574. {
  24575. name: "Macro",
  24576. height: math.unit(60, "feet"),
  24577. default: true
  24578. },
  24579. {
  24580. name: "Megamacro",
  24581. height: math.unit(2, "miles")
  24582. },
  24583. {
  24584. name: "Gigamacro",
  24585. height: math.unit(3, "earths")
  24586. },
  24587. {
  24588. name: "Galactic",
  24589. height: math.unit(0.8, "galaxies")
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24595. {
  24596. front: {
  24597. height: math.unit(1600, "feet"),
  24598. weight: math.unit(85758785169, "kg"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/valathos/front.svg",
  24602. extra: 1451 / 1339
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(1600, "feet"),
  24610. default: true
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(7 + 5 / 12, "feet"),
  24619. weight: math.unit(300, "lb"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/azula/front.svg",
  24623. extra: 3208 / 2880,
  24624. bottom: 80.2 / 3277
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(7 + 5 / 12, "feet"),
  24629. weight: math.unit(300, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/azula/back.svg",
  24633. extra: 3169 / 2822,
  24634. bottom: 150.6 / 3321
  24635. }
  24636. },
  24637. },
  24638. [
  24639. {
  24640. name: "Normal",
  24641. height: math.unit(7 + 5 / 12, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Big",
  24646. height: math.unit(20, "feet")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(5 + 1 / 12, "feet"),
  24655. weight: math.unit(110, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/rupert/front.svg",
  24659. extra: 1549 / 1495,
  24660. bottom: 54.2 / 1604.4
  24661. }
  24662. },
  24663. },
  24664. [
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(5 + 1 / 12, "feet"),
  24668. default: true
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24674. {
  24675. front: {
  24676. height: math.unit(8 + 4 / 12, "feet"),
  24677. weight: math.unit(350, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/sheera-castellar/front.svg",
  24681. extra: 1957 / 1894,
  24682. bottom: 26.97 / 1975.017
  24683. }
  24684. },
  24685. side: {
  24686. height: math.unit(8 + 4 / 12, "feet"),
  24687. weight: math.unit(350, "lb"),
  24688. name: "Side",
  24689. image: {
  24690. source: "./media/characters/sheera-castellar/side.svg",
  24691. extra: 1957 / 1894
  24692. }
  24693. },
  24694. back: {
  24695. height: math.unit(8 + 4 / 12, "feet"),
  24696. weight: math.unit(350, "lb"),
  24697. name: "Back",
  24698. image: {
  24699. source: "./media/characters/sheera-castellar/back.svg",
  24700. extra: 1957 / 1894
  24701. }
  24702. },
  24703. angled: {
  24704. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24705. weight: math.unit(350, "lb"),
  24706. name: "Angled",
  24707. image: {
  24708. source: "./media/characters/sheera-castellar/angled.svg",
  24709. extra: 1807 / 1707,
  24710. bottom: 68 / 1875
  24711. }
  24712. },
  24713. genitals: {
  24714. height: math.unit(2.2, "feet"),
  24715. name: "Genitals",
  24716. image: {
  24717. source: "./media/characters/sheera-castellar/genitals.svg"
  24718. }
  24719. },
  24720. taur: {
  24721. height: math.unit(10 + 6/12, "feet"),
  24722. name: "Taur",
  24723. image: {
  24724. source: "./media/characters/sheera-castellar/taur.svg",
  24725. extra: 2017/1909,
  24726. bottom: 185/2202
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(8 + 4 / 12, "feet")
  24734. },
  24735. {
  24736. name: "Macro",
  24737. height: math.unit(150, "feet"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Macro+",
  24742. height: math.unit(800, "feet")
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24748. {
  24749. front: {
  24750. height: math.unit(6, "feet"),
  24751. weight: math.unit(150, "lb"),
  24752. name: "Front",
  24753. image: {
  24754. source: "./media/characters/jaipur/front.svg",
  24755. extra: 3860 / 3731,
  24756. bottom: 287 / 4140
  24757. }
  24758. },
  24759. back: {
  24760. height: math.unit(6, "feet"),
  24761. weight: math.unit(150, "lb"),
  24762. name: "Back",
  24763. image: {
  24764. source: "./media/characters/jaipur/back.svg",
  24765. extra: 1637/1561,
  24766. bottom: 154/1791
  24767. }
  24768. },
  24769. },
  24770. [
  24771. {
  24772. name: "Normal",
  24773. height: math.unit(1.85, "meters"),
  24774. default: true
  24775. },
  24776. {
  24777. name: "Macro",
  24778. height: math.unit(150, "meters")
  24779. },
  24780. {
  24781. name: "Macro+",
  24782. height: math.unit(0.5, "miles")
  24783. },
  24784. {
  24785. name: "Macro++",
  24786. height: math.unit(2.5, "miles")
  24787. },
  24788. {
  24789. name: "Macro+++",
  24790. height: math.unit(12, "miles")
  24791. },
  24792. {
  24793. name: "Macro++++",
  24794. height: math.unit(120, "miles")
  24795. },
  24796. {
  24797. name: "Macro+++++",
  24798. height: math.unit(1200, "miles")
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(6, "feet"),
  24807. weight: math.unit(150, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/sheila-wolf/front.svg",
  24811. extra: 1931 / 1808,
  24812. bottom: 29.5 / 1960
  24813. }
  24814. },
  24815. dick: {
  24816. height: math.unit(1.464, "feet"),
  24817. name: "Dick",
  24818. image: {
  24819. source: "./media/characters/sheila-wolf/dick.svg"
  24820. }
  24821. },
  24822. muzzle: {
  24823. height: math.unit(0.513, "feet"),
  24824. name: "Muzzle",
  24825. image: {
  24826. source: "./media/characters/sheila-wolf/muzzle.svg"
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(70, "feet"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(32, "meters"),
  24843. weight: math.unit(300000, "kg"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/almor/front.svg",
  24847. extra: 1408 / 1322,
  24848. bottom: 94.6 / 1506.5
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(32, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(7, "feet"),
  24865. weight: math.unit(200, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/silver/front.svg",
  24869. extra: 472.1 / 450.5,
  24870. bottom: 26.5 / 499.424
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(7, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Macro",
  24882. height: math.unit(800, "feet")
  24883. },
  24884. {
  24885. name: "Megamacro",
  24886. height: math.unit(250, "miles")
  24887. },
  24888. ]
  24889. ))
  24890. characterMakers.push(() => makeCharacter(
  24891. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24892. {
  24893. front: {
  24894. height: math.unit(6, "feet"),
  24895. weight: math.unit(150, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/pliskin/front.svg",
  24899. extra: 1469 / 1359,
  24900. bottom: 70 / 1540
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Micro",
  24907. height: math.unit(3, "inches")
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(5 + 11 / 12, "feet"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Macro",
  24916. height: math.unit(120, "feet")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(6, "feet"),
  24925. weight: math.unit(150, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/sammy/front.svg",
  24929. extra: 1193 / 1089,
  24930. bottom: 30.5 / 1226
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(1700, "feet"),
  24938. default: true
  24939. },
  24940. {
  24941. name: "Examacro",
  24942. height: math.unit(2.5e9, "lightyears")
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(21, "meters"),
  24951. weight: math.unit(12, "tonnes"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/kuru/front.svg",
  24955. extra: 4301 / 3785,
  24956. bottom: 371.3 / 4691
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Macro",
  24963. height: math.unit(21, "meters"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(23, "meters"),
  24973. weight: math.unit(12.2, "tonnes"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/rakka/front.svg",
  24977. extra: 4670 / 4169,
  24978. bottom: 301 / 4968.7
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(23, "meters"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24992. {
  24993. front: {
  24994. height: math.unit(6, "feet"),
  24995. weight: math.unit(150, "lb"),
  24996. name: "Front",
  24997. image: {
  24998. source: "./media/characters/rhys-feline/front.svg",
  24999. extra: 2488 / 2308,
  25000. bottom: 35.67 / 2519.19
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Really Small",
  25007. height: math.unit(1, "nm")
  25008. },
  25009. {
  25010. name: "Micro",
  25011. height: math.unit(4, "inches")
  25012. },
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(4 + 10 / 12, "feet"),
  25016. default: true
  25017. },
  25018. {
  25019. name: "Macro",
  25020. height: math.unit(100, "feet")
  25021. },
  25022. {
  25023. name: "Megamacto",
  25024. height: math.unit(50, "miles")
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25030. {
  25031. side: {
  25032. height: math.unit(30, "feet"),
  25033. weight: math.unit(35000, "kg"),
  25034. name: "Side",
  25035. image: {
  25036. source: "./media/characters/alydar/side.svg",
  25037. extra: 234 / 222,
  25038. bottom: 6.5 / 241
  25039. }
  25040. },
  25041. front: {
  25042. height: math.unit(30, "feet"),
  25043. weight: math.unit(35000, "kg"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/alydar/front.svg",
  25047. extra: 223.37 / 210.2,
  25048. bottom: 22.3 / 246.76
  25049. }
  25050. },
  25051. top: {
  25052. height: math.unit(64.54, "feet"),
  25053. weight: math.unit(35000, "kg"),
  25054. name: "Top",
  25055. image: {
  25056. source: "./media/characters/alydar/top.svg"
  25057. }
  25058. },
  25059. anthro: {
  25060. height: math.unit(30, "feet"),
  25061. weight: math.unit(9000, "kg"),
  25062. name: "Anthro",
  25063. image: {
  25064. source: "./media/characters/alydar/anthro.svg",
  25065. extra: 432 / 421,
  25066. bottom: 7.18 / 440
  25067. }
  25068. },
  25069. maw: {
  25070. height: math.unit(11.693, "feet"),
  25071. name: "Maw",
  25072. image: {
  25073. source: "./media/characters/alydar/maw.svg"
  25074. }
  25075. },
  25076. head: {
  25077. height: math.unit(11.693, "feet"),
  25078. name: "Head",
  25079. image: {
  25080. source: "./media/characters/alydar/head.svg"
  25081. }
  25082. },
  25083. headAlt: {
  25084. height: math.unit(12.861, "feet"),
  25085. name: "Head (Alt)",
  25086. image: {
  25087. source: "./media/characters/alydar/head-alt.svg"
  25088. }
  25089. },
  25090. wing: {
  25091. height: math.unit(20.712, "feet"),
  25092. name: "Wing",
  25093. image: {
  25094. source: "./media/characters/alydar/wing.svg"
  25095. }
  25096. },
  25097. wingFeather: {
  25098. height: math.unit(9.662, "feet"),
  25099. name: "Wing Feather",
  25100. image: {
  25101. source: "./media/characters/alydar/wing-feather.svg"
  25102. }
  25103. },
  25104. countourFeather: {
  25105. height: math.unit(4.154, "feet"),
  25106. name: "Contour Feather",
  25107. image: {
  25108. source: "./media/characters/alydar/contour-feather.svg"
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Diplomatic",
  25115. height: math.unit(13, "feet"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Small",
  25120. height: math.unit(30, "feet")
  25121. },
  25122. {
  25123. name: "Normal",
  25124. height: math.unit(95, "feet"),
  25125. default: true
  25126. },
  25127. {
  25128. name: "Large",
  25129. height: math.unit(285, "feet")
  25130. },
  25131. {
  25132. name: "Incomprehensible",
  25133. height: math.unit(450, "megameters")
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25139. {
  25140. side: {
  25141. height: math.unit(11, "feet"),
  25142. weight: math.unit(1750, "kg"),
  25143. name: "Side",
  25144. image: {
  25145. source: "./media/characters/selicia/side.svg",
  25146. extra: 440 / 396,
  25147. bottom: 24.8 / 465.979
  25148. }
  25149. },
  25150. maw: {
  25151. height: math.unit(4.665, "feet"),
  25152. name: "Maw",
  25153. image: {
  25154. source: "./media/characters/selicia/maw.svg"
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(11, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25168. {
  25169. side: {
  25170. height: math.unit(2 + 6 / 12, "feet"),
  25171. weight: math.unit(30, "lb"),
  25172. name: "Side",
  25173. image: {
  25174. source: "./media/characters/layla/side.svg",
  25175. extra: 244 / 188,
  25176. bottom: 18.2 / 262.1
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(2 + 6 / 12, "feet"),
  25181. weight: math.unit(30, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/layla/back.svg",
  25185. extra: 308 / 241.5,
  25186. bottom: 8.9 / 316.8
  25187. }
  25188. },
  25189. cumming: {
  25190. height: math.unit(2 + 6 / 12, "feet"),
  25191. weight: math.unit(30, "lb"),
  25192. name: "Cumming",
  25193. image: {
  25194. source: "./media/characters/layla/cumming.svg",
  25195. extra: 342 / 279,
  25196. bottom: 595 / 938
  25197. }
  25198. },
  25199. dickFlaccid: {
  25200. height: math.unit(2.595, "feet"),
  25201. name: "Flaccid Genitals",
  25202. image: {
  25203. source: "./media/characters/layla/dick-flaccid.svg"
  25204. }
  25205. },
  25206. dickErect: {
  25207. height: math.unit(2.359, "feet"),
  25208. name: "Erect Genitals",
  25209. image: {
  25210. source: "./media/characters/layla/dick-erect.svg"
  25211. }
  25212. },
  25213. dragon: {
  25214. height: math.unit(40, "feet"),
  25215. name: "Dragon",
  25216. image: {
  25217. source: "./media/characters/layla/dragon.svg",
  25218. extra: 610/535,
  25219. bottom: 367/977
  25220. }
  25221. },
  25222. taur: {
  25223. height: math.unit(30, "feet"),
  25224. name: "Taur",
  25225. image: {
  25226. source: "./media/characters/layla/taur.svg",
  25227. extra: 1268/1199,
  25228. bottom: 112/1380
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Micro",
  25235. height: math.unit(1, "inch")
  25236. },
  25237. {
  25238. name: "Small",
  25239. height: math.unit(1, "foot")
  25240. },
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(2 + 6 / 12, "feet"),
  25244. default: true
  25245. },
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(200, "feet")
  25249. },
  25250. {
  25251. name: "Megamacro",
  25252. height: math.unit(1000, "miles")
  25253. },
  25254. {
  25255. name: "Planetary",
  25256. height: math.unit(8000, "miles")
  25257. },
  25258. {
  25259. name: "True Layla",
  25260. height: math.unit(200000 * 7, "multiverses")
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25266. {
  25267. back: {
  25268. height: math.unit(10.5, "feet"),
  25269. weight: math.unit(800, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/knox/back.svg",
  25273. extra: 1486 / 1089,
  25274. bottom: 107 / 1601.4
  25275. }
  25276. },
  25277. side: {
  25278. height: math.unit(10.5, "feet"),
  25279. weight: math.unit(800, "lb"),
  25280. name: "Side",
  25281. image: {
  25282. source: "./media/characters/knox/side.svg",
  25283. extra: 244 / 218,
  25284. bottom: 14 / 260
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Compact",
  25291. height: math.unit(10.5, "feet"),
  25292. default: true
  25293. },
  25294. {
  25295. name: "Dynamax",
  25296. height: math.unit(210, "feet")
  25297. },
  25298. {
  25299. name: "Full Macro",
  25300. height: math.unit(850, "feet")
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(28, "feet"),
  25309. weight: math.unit(10500, "lb"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/kayda/front.svg",
  25313. extra: 1536 / 1428,
  25314. bottom: 68.7 / 1603
  25315. }
  25316. },
  25317. back: {
  25318. height: math.unit(28, "feet"),
  25319. weight: math.unit(10500, "lb"),
  25320. name: "Back",
  25321. image: {
  25322. source: "./media/characters/kayda/back.svg",
  25323. extra: 1557 / 1464,
  25324. bottom: 39.5 / 1597.49
  25325. }
  25326. },
  25327. dick: {
  25328. height: math.unit(3.858, "feet"),
  25329. name: "Dick",
  25330. image: {
  25331. source: "./media/characters/kayda/dick.svg"
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Macro",
  25338. height: math.unit(28, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(10 + 11 / 12, "feet"),
  25348. weight: math.unit(1400, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/brian/front.svg",
  25352. extra: 737 / 692,
  25353. bottom: 55.4 / 785
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(10 + 11 / 12, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(5 + 8 / 12, "feet"),
  25370. weight: math.unit(140, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/khemri/front.svg",
  25374. extra: 4780 / 4059,
  25375. bottom: 80.1 / 4859.25
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Micro",
  25382. height: math.unit(6, "inches")
  25383. },
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(5 + 8 / 12, "feet"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25393. {
  25394. front: {
  25395. height: math.unit(13, "feet"),
  25396. weight: math.unit(1700, "lb"),
  25397. name: "Front",
  25398. image: {
  25399. source: "./media/characters/felix-braveheart/front.svg",
  25400. extra: 1222 / 1157,
  25401. bottom: 53.2 / 1280
  25402. }
  25403. },
  25404. back: {
  25405. height: math.unit(13, "feet"),
  25406. weight: math.unit(1700, "lb"),
  25407. name: "Back",
  25408. image: {
  25409. source: "./media/characters/felix-braveheart/back.svg",
  25410. extra: 1277 / 1203,
  25411. bottom: 50.2 / 1327
  25412. }
  25413. },
  25414. feral: {
  25415. height: math.unit(6, "feet"),
  25416. weight: math.unit(400, "lb"),
  25417. name: "Feral",
  25418. image: {
  25419. source: "./media/characters/felix-braveheart/feral.svg",
  25420. extra: 682 / 625,
  25421. bottom: 6.9 / 688
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(13, "feet"),
  25429. default: true
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25435. {
  25436. side: {
  25437. height: math.unit(5 + 11 / 12, "feet"),
  25438. weight: math.unit(1400, "lb"),
  25439. name: "Side",
  25440. image: {
  25441. source: "./media/characters/shadow-blade/side.svg",
  25442. extra: 1726 / 1267,
  25443. bottom: 58.4 / 1785
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(5 + 11 / 12, "feet"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(1 + 6 / 12, "feet"),
  25460. weight: math.unit(25, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/karla-halldor/front.svg",
  25464. extra: 1459 / 1383,
  25465. bottom: 12 / 1472
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Normal",
  25472. height: math.unit(1 + 6 / 12, "feet"),
  25473. default: true
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(6 + 2 / 12, "feet"),
  25482. weight: math.unit(160, "lb"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/ariam/front.svg",
  25486. extra: 1073/976,
  25487. bottom: 52/1125
  25488. }
  25489. },
  25490. back: {
  25491. height: math.unit(6 + 2/12, "feet"),
  25492. weight: math.unit(160, "lb"),
  25493. name: "Back",
  25494. image: {
  25495. source: "./media/characters/ariam/back.svg",
  25496. extra: 1103/1023,
  25497. bottom: 9/1112
  25498. }
  25499. },
  25500. dressed: {
  25501. height: math.unit(6 + 2/12, "feet"),
  25502. weight: math.unit(160, "lb"),
  25503. name: "Dressed",
  25504. image: {
  25505. source: "./media/characters/ariam/dressed.svg",
  25506. extra: 1099/1009,
  25507. bottom: 25/1124
  25508. }
  25509. },
  25510. squatting: {
  25511. height: math.unit(4.1, "feet"),
  25512. weight: math.unit(160, "lb"),
  25513. name: "Squatting",
  25514. image: {
  25515. source: "./media/characters/ariam/squatting.svg",
  25516. extra: 2617 / 2112,
  25517. bottom: 61.2 / 2681,
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(6 + 2 / 12, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Normal+",
  25529. height: math.unit(4, "meters")
  25530. },
  25531. {
  25532. name: "Macro",
  25533. height: math.unit(50, "meters")
  25534. },
  25535. {
  25536. name: "Macro+",
  25537. height: math.unit(100, "meters")
  25538. },
  25539. {
  25540. name: "Megamacro",
  25541. height: math.unit(20, "km")
  25542. },
  25543. {
  25544. name: "Caretaker",
  25545. height: math.unit(444, "megameters")
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(1.67, "meters"),
  25554. weight: math.unit(140, "lb"),
  25555. name: "Front",
  25556. image: {
  25557. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25558. extra: 438 / 410,
  25559. bottom: 0.75 / 439
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Shrunken",
  25566. height: math.unit(7.6, "cm")
  25567. },
  25568. {
  25569. name: "Human Scale",
  25570. height: math.unit(1.67, "meters")
  25571. },
  25572. {
  25573. name: "Wolxi Scale",
  25574. height: math.unit(36.7, "meters"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(1.73, "meters"),
  25584. weight: math.unit(240, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/izue-two-mothers/front.svg",
  25588. extra: 469 / 437,
  25589. bottom: 1.24 / 470.6
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Shrunken",
  25596. height: math.unit(7.86, "cm")
  25597. },
  25598. {
  25599. name: "Human Scale",
  25600. height: math.unit(1.73, "meters")
  25601. },
  25602. {
  25603. name: "Wolxi Scale",
  25604. height: math.unit(38, "meters"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(1.55, "meters"),
  25614. weight: math.unit(120, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/teeku-love-shack/front.svg",
  25618. extra: 387 / 362,
  25619. bottom: 1.51 / 388
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Shrunken",
  25626. height: math.unit(7, "cm")
  25627. },
  25628. {
  25629. name: "Human Scale",
  25630. height: math.unit(1.55, "meters")
  25631. },
  25632. {
  25633. name: "Wolxi Scale",
  25634. height: math.unit(34.1, "meters"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(1.83, "meters"),
  25644. weight: math.unit(135, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/dejma-the-red/front.svg",
  25648. extra: 480 / 458,
  25649. bottom: 1.8 / 482
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Shrunken",
  25656. height: math.unit(8.3, "cm")
  25657. },
  25658. {
  25659. name: "Human Scale",
  25660. height: math.unit(1.83, "meters")
  25661. },
  25662. {
  25663. name: "Wolxi Scale",
  25664. height: math.unit(40, "meters"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(1.78, "meters"),
  25674. weight: math.unit(65, "kg"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/aki/front.svg",
  25678. extra: 452 / 415
  25679. }
  25680. },
  25681. frontNsfw: {
  25682. height: math.unit(1.78, "meters"),
  25683. weight: math.unit(65, "kg"),
  25684. name: "Front (NSFW)",
  25685. image: {
  25686. source: "./media/characters/aki/front-nsfw.svg",
  25687. extra: 452 / 415
  25688. }
  25689. },
  25690. back: {
  25691. height: math.unit(1.78, "meters"),
  25692. weight: math.unit(65, "kg"),
  25693. name: "Back",
  25694. image: {
  25695. source: "./media/characters/aki/back.svg",
  25696. extra: 452 / 415
  25697. }
  25698. },
  25699. rump: {
  25700. height: math.unit(2.05, "feet"),
  25701. name: "Rump",
  25702. image: {
  25703. source: "./media/characters/aki/rump.svg"
  25704. }
  25705. },
  25706. dick: {
  25707. height: math.unit(0.95, "feet"),
  25708. name: "Dick",
  25709. image: {
  25710. source: "./media/characters/aki/dick.svg"
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Micro",
  25717. height: math.unit(15, "cm")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(178, "cm"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Macro",
  25726. height: math.unit(214, "m")
  25727. },
  25728. {
  25729. name: "Macro+",
  25730. height: math.unit(534, "m")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(5 + 5 / 12, "feet"),
  25739. weight: math.unit(120, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/ari/front.svg",
  25743. extra: 1550/1471,
  25744. bottom: 39/1589
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(5 + 5 / 12, "feet")
  25752. },
  25753. {
  25754. name: "Macro",
  25755. height: math.unit(100, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Megamacro",
  25760. height: math.unit(100, "miles")
  25761. },
  25762. {
  25763. name: "Gigamacro",
  25764. height: math.unit(80000, "miles")
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25770. {
  25771. side: {
  25772. height: math.unit(9, "feet"),
  25773. weight: math.unit(400, "kg"),
  25774. name: "Side",
  25775. image: {
  25776. source: "./media/characters/bolt/side.svg",
  25777. extra: 1126 / 896,
  25778. bottom: 60 / 1187.3,
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Micro",
  25785. height: math.unit(5, "inches")
  25786. },
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(9, "feet"),
  25790. default: true
  25791. },
  25792. {
  25793. name: "Macro",
  25794. height: math.unit(700, "feet")
  25795. },
  25796. {
  25797. name: "Max Size",
  25798. height: math.unit(1.52e22, "yottameters")
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25804. {
  25805. front: {
  25806. height: math.unit(4.3, "meters"),
  25807. weight: math.unit(3, "tons"),
  25808. name: "Front",
  25809. image: {
  25810. source: "./media/characters/draekon-sylviar/front.svg",
  25811. extra: 2072/1512,
  25812. bottom: 74/2146
  25813. }
  25814. },
  25815. back: {
  25816. height: math.unit(4.3, "meters"),
  25817. weight: math.unit(3, "tons"),
  25818. name: "Back",
  25819. image: {
  25820. source: "./media/characters/draekon-sylviar/back.svg",
  25821. extra: 1639/1483,
  25822. bottom: 41/1680
  25823. }
  25824. },
  25825. feral: {
  25826. height: math.unit(1.15, "meters"),
  25827. weight: math.unit(3, "tons"),
  25828. name: "Feral",
  25829. image: {
  25830. source: "./media/characters/draekon-sylviar/feral.svg",
  25831. extra: 1033/395,
  25832. bottom: 130/1163
  25833. }
  25834. },
  25835. maw: {
  25836. height: math.unit(1.3, "meters"),
  25837. name: "Maw",
  25838. image: {
  25839. source: "./media/characters/draekon-sylviar/maw.svg"
  25840. }
  25841. },
  25842. mawSeparated: {
  25843. height: math.unit(1.53, "meters"),
  25844. name: "Separated Maw",
  25845. image: {
  25846. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25847. }
  25848. },
  25849. tail: {
  25850. height: math.unit(1.15, "meters"),
  25851. name: "Tail",
  25852. image: {
  25853. source: "./media/characters/draekon-sylviar/tail.svg"
  25854. }
  25855. },
  25856. tailDick: {
  25857. height: math.unit(1.15, "meters"),
  25858. name: "Tail (Dick)",
  25859. image: {
  25860. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25861. }
  25862. },
  25863. tailDickSeparated: {
  25864. height: math.unit(1.19, "meters"),
  25865. name: "Tail (Separated Dick)",
  25866. image: {
  25867. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25868. }
  25869. },
  25870. slit: {
  25871. height: math.unit(1, "meters"),
  25872. name: "Slit",
  25873. image: {
  25874. source: "./media/characters/draekon-sylviar/slit.svg"
  25875. }
  25876. },
  25877. dick: {
  25878. height: math.unit(1.15, "meters"),
  25879. name: "Dick",
  25880. image: {
  25881. source: "./media/characters/draekon-sylviar/dick.svg"
  25882. }
  25883. },
  25884. dickSeparated: {
  25885. height: math.unit(1.1, "meters"),
  25886. name: "Separated Dick",
  25887. image: {
  25888. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25889. }
  25890. },
  25891. sheath: {
  25892. height: math.unit(1.15, "meters"),
  25893. name: "Sheath",
  25894. image: {
  25895. source: "./media/characters/draekon-sylviar/sheath.svg"
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Small",
  25902. height: math.unit(4.53 / 2, "meters"),
  25903. default: true
  25904. },
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(4.53, "meters"),
  25908. default: true
  25909. },
  25910. {
  25911. name: "Large",
  25912. height: math.unit(4.53 * 2, "meters"),
  25913. },
  25914. ]
  25915. ))
  25916. characterMakers.push(() => makeCharacter(
  25917. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25918. {
  25919. front: {
  25920. height: math.unit(6 + 2 / 12, "feet"),
  25921. weight: math.unit(180, "lb"),
  25922. name: "Front",
  25923. image: {
  25924. source: "./media/characters/brawler/front.svg",
  25925. extra: 3301 / 3027,
  25926. bottom: 138 / 3439
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(6 + 2 / 12, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(11, "feet"),
  25943. weight: math.unit(1000, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/alex/front.svg",
  25947. bottom: 44.5 / 620
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Micro",
  25954. height: math.unit(5, "inches")
  25955. },
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(11, "feet"),
  25959. default: true
  25960. },
  25961. {
  25962. name: "Macro",
  25963. height: math.unit(9.5e9, "feet")
  25964. },
  25965. {
  25966. name: "Max Size",
  25967. height: math.unit(1.4e283, "yottameters")
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25973. {
  25974. female: {
  25975. height: math.unit(29.9, "m"),
  25976. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25977. name: "Female",
  25978. image: {
  25979. source: "./media/characters/zenari/female.svg",
  25980. extra: 3281.6 / 3217,
  25981. bottom: 72.2 / 3353
  25982. }
  25983. },
  25984. male: {
  25985. height: math.unit(27.7, "m"),
  25986. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25987. name: "Male",
  25988. image: {
  25989. source: "./media/characters/zenari/male.svg",
  25990. extra: 3008 / 2991,
  25991. bottom: 54.6 / 3069
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(29.7, "meters"),
  25999. default: true
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26005. {
  26006. female: {
  26007. height: math.unit(23.8, "m"),
  26008. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26009. name: "Female",
  26010. image: {
  26011. source: "./media/characters/mactarian/female.svg",
  26012. extra: 2662 / 2569,
  26013. bottom: 73 / 2736
  26014. }
  26015. },
  26016. male: {
  26017. height: math.unit(23.8, "m"),
  26018. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26019. name: "Male",
  26020. image: {
  26021. source: "./media/characters/mactarian/male.svg",
  26022. extra: 2673 / 2600,
  26023. bottom: 76 / 2750
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Macro",
  26030. height: math.unit(23.8, "meters"),
  26031. default: true
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26037. {
  26038. female: {
  26039. height: math.unit(19.3, "m"),
  26040. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26041. name: "Female",
  26042. image: {
  26043. source: "./media/characters/umok/female.svg",
  26044. extra: 2186 / 2078,
  26045. bottom: 87 / 2277
  26046. }
  26047. },
  26048. male: {
  26049. height: math.unit(19.5, "m"),
  26050. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26051. name: "Male",
  26052. image: {
  26053. source: "./media/characters/umok/male.svg",
  26054. extra: 2233 / 2140,
  26055. bottom: 24.4 / 2258
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(19.3, "meters"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26069. {
  26070. female: {
  26071. height: math.unit(26.15, "m"),
  26072. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26073. name: "Female",
  26074. image: {
  26075. source: "./media/characters/joraxian/female.svg",
  26076. extra: 2912 / 2824,
  26077. bottom: 36 / 2956
  26078. }
  26079. },
  26080. male: {
  26081. height: math.unit(25.4, "m"),
  26082. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26083. name: "Male",
  26084. image: {
  26085. source: "./media/characters/joraxian/male.svg",
  26086. extra: 2877 / 2721,
  26087. bottom: 82 / 2967
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Macro",
  26094. height: math.unit(26.15, "meters"),
  26095. default: true
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26101. {
  26102. female: {
  26103. height: math.unit(21.6, "m"),
  26104. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26105. name: "Female",
  26106. image: {
  26107. source: "./media/characters/sthara/female.svg",
  26108. extra: 2516 / 2347,
  26109. bottom: 21.5 / 2537
  26110. }
  26111. },
  26112. male: {
  26113. height: math.unit(24, "m"),
  26114. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26115. name: "Male",
  26116. image: {
  26117. source: "./media/characters/sthara/male.svg",
  26118. extra: 2732 / 2607,
  26119. bottom: 23 / 2732
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(21.6, "meters"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(6 + 4 / 12, "feet"),
  26136. weight: math.unit(175, "lb"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/luka-bryzant/front.svg",
  26140. extra: 311 / 289,
  26141. bottom: 4 / 315
  26142. }
  26143. },
  26144. back: {
  26145. height: math.unit(6 + 4 / 12, "feet"),
  26146. weight: math.unit(175, "lb"),
  26147. name: "Back",
  26148. image: {
  26149. source: "./media/characters/luka-bryzant/back.svg",
  26150. extra: 311 / 289,
  26151. bottom: 3.8 / 313.7
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Micro",
  26158. height: math.unit(10, "inches")
  26159. },
  26160. {
  26161. name: "Normal",
  26162. height: math.unit(6 + 4 / 12, "feet"),
  26163. default: true
  26164. },
  26165. {
  26166. name: "Large",
  26167. height: math.unit(12, "feet")
  26168. },
  26169. ]
  26170. ))
  26171. characterMakers.push(() => makeCharacter(
  26172. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26173. {
  26174. front: {
  26175. height: math.unit(5 + 7 / 12, "feet"),
  26176. weight: math.unit(185, "lb"),
  26177. name: "Front",
  26178. image: {
  26179. source: "./media/characters/aman-aquila/front.svg",
  26180. extra: 1013 / 976,
  26181. bottom: 45.6 / 1057
  26182. }
  26183. },
  26184. side: {
  26185. height: math.unit(5 + 7 / 12, "feet"),
  26186. weight: math.unit(185, "lb"),
  26187. name: "Side",
  26188. image: {
  26189. source: "./media/characters/aman-aquila/side.svg",
  26190. extra: 1054 / 1011,
  26191. bottom: 15 / 1070
  26192. }
  26193. },
  26194. back: {
  26195. height: math.unit(5 + 7 / 12, "feet"),
  26196. weight: math.unit(185, "lb"),
  26197. name: "Back",
  26198. image: {
  26199. source: "./media/characters/aman-aquila/back.svg",
  26200. extra: 1026 / 970,
  26201. bottom: 12 / 1039
  26202. }
  26203. },
  26204. head: {
  26205. height: math.unit(1.211, "feet"),
  26206. name: "Head",
  26207. image: {
  26208. source: "./media/characters/aman-aquila/head.svg",
  26209. }
  26210. },
  26211. },
  26212. [
  26213. {
  26214. name: "Minimicro",
  26215. height: math.unit(0.057, "inches")
  26216. },
  26217. {
  26218. name: "Micro",
  26219. height: math.unit(7, "inches")
  26220. },
  26221. {
  26222. name: "Mini",
  26223. height: math.unit(3 + 7 / 12, "feet")
  26224. },
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(5 + 7 / 12, "feet"),
  26228. default: true
  26229. },
  26230. {
  26231. name: "Macro",
  26232. height: math.unit(157 + 7 / 12, "feet")
  26233. },
  26234. {
  26235. name: "Megamacro",
  26236. height: math.unit(1557 + 7 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Gigamacro",
  26240. height: math.unit(15557 + 7 / 12, "feet")
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(3 + 2 / 12, "inches"),
  26249. weight: math.unit(0.3, "ounces"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/hiphae/front.svg",
  26253. extra: 1931 / 1683,
  26254. bottom: 24 / 1955
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(3 + 1 / 2, "inches"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(5 + 10 / 12, "feet"),
  26271. weight: math.unit(165, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/nicky/front.svg",
  26275. extra: 3144 / 2886,
  26276. bottom: 45.6 / 3192
  26277. }
  26278. },
  26279. back: {
  26280. height: math.unit(5 + 10 / 12, "feet"),
  26281. weight: math.unit(165, "lb"),
  26282. name: "Back",
  26283. image: {
  26284. source: "./media/characters/nicky/back.svg",
  26285. extra: 3055 / 2804,
  26286. bottom: 28.4 / 3087
  26287. }
  26288. },
  26289. frontclothed: {
  26290. height: math.unit(5 + 10 / 12, "feet"),
  26291. weight: math.unit(165, "lb"),
  26292. name: "Front-clothed",
  26293. image: {
  26294. source: "./media/characters/nicky/front-clothed.svg",
  26295. extra: 3184.9 / 2926.9,
  26296. bottom: 86.5 / 3239.9
  26297. }
  26298. },
  26299. foot: {
  26300. height: math.unit(1.16, "feet"),
  26301. name: "Foot",
  26302. image: {
  26303. source: "./media/characters/nicky/foot.svg"
  26304. }
  26305. },
  26306. feet: {
  26307. height: math.unit(1.34, "feet"),
  26308. name: "Feet",
  26309. image: {
  26310. source: "./media/characters/nicky/feet.svg"
  26311. }
  26312. },
  26313. maw: {
  26314. height: math.unit(0.9, "feet"),
  26315. name: "Maw",
  26316. image: {
  26317. source: "./media/characters/nicky/maw.svg"
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(5 + 10 / 12, "feet"),
  26325. default: true
  26326. },
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(60, "feet")
  26330. },
  26331. {
  26332. name: "Megamacro",
  26333. height: math.unit(1, "mile")
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26339. {
  26340. side: {
  26341. height: math.unit(10, "feet"),
  26342. weight: math.unit(600, "lb"),
  26343. name: "Side",
  26344. image: {
  26345. source: "./media/characters/blair/side.svg",
  26346. bottom: 16.6 / 475,
  26347. extra: 458 / 431
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Micro",
  26354. height: math.unit(8, "inches")
  26355. },
  26356. {
  26357. name: "Normal",
  26358. height: math.unit(10, "feet"),
  26359. default: true
  26360. },
  26361. {
  26362. name: "Macro",
  26363. height: math.unit(180, "feet")
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26369. {
  26370. front: {
  26371. height: math.unit(5 + 4 / 12, "feet"),
  26372. weight: math.unit(125, "lb"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/fisher/front.svg",
  26376. extra: 444 / 390,
  26377. bottom: 2 / 444.8
  26378. }
  26379. },
  26380. },
  26381. [
  26382. {
  26383. name: "Micro",
  26384. height: math.unit(4, "inches")
  26385. },
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(5 + 4 / 12, "feet"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Macro",
  26393. height: math.unit(100, "feet")
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26399. {
  26400. front: {
  26401. height: math.unit(6.71, "feet"),
  26402. weight: math.unit(200, "lb"),
  26403. preyCapacity: math.unit(1000000, "people"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/gliss/front.svg",
  26407. extra: 2347 / 2231,
  26408. bottom: 113 / 2462
  26409. }
  26410. },
  26411. hammerspaceSize: {
  26412. height: math.unit(6.71 * 717, "feet"),
  26413. weight: math.unit(200, "lb"),
  26414. preyCapacity: math.unit(1000000, "people"),
  26415. name: "Hammerspace Size",
  26416. image: {
  26417. source: "./media/characters/gliss/front.svg",
  26418. extra: 2347 / 2231,
  26419. bottom: 113 / 2462
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(6.71, "feet"),
  26427. default: true
  26428. },
  26429. ]
  26430. ))
  26431. characterMakers.push(() => makeCharacter(
  26432. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26433. {
  26434. side: {
  26435. height: math.unit(1.44, "m"),
  26436. weight: math.unit(80, "kg"),
  26437. name: "Side",
  26438. image: {
  26439. source: "./media/characters/dune-anderson/side.svg",
  26440. bottom: 49 / 1426
  26441. }
  26442. },
  26443. },
  26444. [
  26445. {
  26446. name: "Wolf-sized",
  26447. height: math.unit(1.44, "meters")
  26448. },
  26449. {
  26450. name: "Normal",
  26451. height: math.unit(5.05, "meters"),
  26452. default: true
  26453. },
  26454. {
  26455. name: "Big",
  26456. height: math.unit(14.4, "meters")
  26457. },
  26458. {
  26459. name: "Huge",
  26460. height: math.unit(144, "meters")
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(7, "feet"),
  26469. weight: math.unit(425, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/hind/front.svg",
  26473. extra: 2091 / 1860,
  26474. bottom: 129 / 2220
  26475. }
  26476. },
  26477. back: {
  26478. height: math.unit(7, "feet"),
  26479. weight: math.unit(425, "lb"),
  26480. name: "Back",
  26481. image: {
  26482. source: "./media/characters/hind/back.svg",
  26483. extra: 2091 / 1860,
  26484. bottom: 24.6 / 2309
  26485. }
  26486. },
  26487. tail: {
  26488. height: math.unit(2.8, "feet"),
  26489. name: "Tail",
  26490. image: {
  26491. source: "./media/characters/hind/tail.svg"
  26492. }
  26493. },
  26494. head: {
  26495. height: math.unit(2.55, "feet"),
  26496. name: "Head",
  26497. image: {
  26498. source: "./media/characters/hind/head.svg"
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "XS",
  26505. height: math.unit(0.7, "feet")
  26506. },
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(7, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "XL",
  26514. height: math.unit(70, "feet")
  26515. },
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26520. {
  26521. front: {
  26522. height: math.unit(2.1, "meters"),
  26523. weight: math.unit(150, "lb"),
  26524. name: "Front",
  26525. image: {
  26526. source: "./media/characters/tharquench-sizestealer/front.svg",
  26527. extra: 1605/1470,
  26528. bottom: 36/1641
  26529. }
  26530. },
  26531. frontAlt: {
  26532. height: math.unit(2.1, "meters"),
  26533. weight: math.unit(150, "lb"),
  26534. name: "Front (Alt)",
  26535. image: {
  26536. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26537. extra: 2318 / 2063,
  26538. bottom: 93.4 / 2410
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Nano",
  26545. height: math.unit(1, "mm")
  26546. },
  26547. {
  26548. name: "Micro",
  26549. height: math.unit(1, "cm")
  26550. },
  26551. {
  26552. name: "Normal",
  26553. height: math.unit(2.1, "meters"),
  26554. default: true
  26555. },
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26560. {
  26561. front: {
  26562. height: math.unit(7 + 5 / 12, "feet"),
  26563. weight: math.unit(357, "lb"),
  26564. name: "Front",
  26565. image: {
  26566. source: "./media/characters/solex-draconov/front.svg",
  26567. extra: 1993 / 1865,
  26568. bottom: 117 / 2111
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Natural Height",
  26575. height: math.unit(7 + 5 / 12, "feet"),
  26576. default: true
  26577. },
  26578. {
  26579. name: "Macro",
  26580. height: math.unit(350, "feet")
  26581. },
  26582. {
  26583. name: "Macro+",
  26584. height: math.unit(1000, "feet")
  26585. },
  26586. {
  26587. name: "Megamacro",
  26588. height: math.unit(20, "km")
  26589. },
  26590. {
  26591. name: "Megamacro+",
  26592. height: math.unit(1000, "km")
  26593. },
  26594. {
  26595. name: "Gigamacro",
  26596. height: math.unit(2.5, "Gm")
  26597. },
  26598. {
  26599. name: "Teramacro",
  26600. height: math.unit(15, "Tm")
  26601. },
  26602. {
  26603. name: "Galactic",
  26604. height: math.unit(30, "Zm")
  26605. },
  26606. {
  26607. name: "Universal",
  26608. height: math.unit(21000, "Ym")
  26609. },
  26610. {
  26611. name: "Omniversal",
  26612. height: math.unit(9.861e50, "Ym")
  26613. },
  26614. {
  26615. name: "Existential",
  26616. height: math.unit(1e300, "meters")
  26617. },
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26622. {
  26623. side: {
  26624. height: math.unit(25, "feet"),
  26625. weight: math.unit(90000, "lb"),
  26626. name: "Side",
  26627. image: {
  26628. source: "./media/characters/mandarax/side.svg",
  26629. extra: 614 / 332,
  26630. bottom: 55 / 630
  26631. }
  26632. },
  26633. lounging: {
  26634. height: math.unit(15.4, "feet"),
  26635. weight: math.unit(90000, "lb"),
  26636. name: "Lounging",
  26637. image: {
  26638. source: "./media/characters/mandarax/lounging.svg",
  26639. extra: 817/609,
  26640. bottom: 685/1502
  26641. }
  26642. },
  26643. head: {
  26644. height: math.unit(11.4, "feet"),
  26645. name: "Head",
  26646. image: {
  26647. source: "./media/characters/mandarax/head.svg"
  26648. }
  26649. },
  26650. belly: {
  26651. height: math.unit(33, "feet"),
  26652. name: "Belly",
  26653. preyCapacity: math.unit(500, "people"),
  26654. image: {
  26655. source: "./media/characters/mandarax/belly.svg"
  26656. }
  26657. },
  26658. dick: {
  26659. height: math.unit(8.46, "feet"),
  26660. name: "Dick",
  26661. image: {
  26662. source: "./media/characters/mandarax/dick.svg"
  26663. }
  26664. },
  26665. top: {
  26666. height: math.unit(28, "meters"),
  26667. name: "Top",
  26668. image: {
  26669. source: "./media/characters/mandarax/top.svg"
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(25, "feet"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(5, "feet"),
  26686. weight: math.unit(90, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/pixil/front.svg",
  26690. extra: 2000 / 1618,
  26691. bottom: 12.3 / 2011
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(5, "feet"),
  26699. default: true
  26700. },
  26701. {
  26702. name: "Megamacro",
  26703. height: math.unit(10, "miles"),
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(7 + 2 / 12, "feet"),
  26712. weight: math.unit(200, "lb"),
  26713. name: "Front",
  26714. image: {
  26715. source: "./media/characters/angel/front.svg",
  26716. extra: 1830 / 1737,
  26717. bottom: 22.6 / 1854,
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(7 + 2 / 12, "feet"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(1000, "feet")
  26730. },
  26731. {
  26732. name: "Megamacro",
  26733. height: math.unit(2, "miles")
  26734. },
  26735. {
  26736. name: "Gigamacro",
  26737. height: math.unit(20, "earths")
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(5, "feet"),
  26746. weight: math.unit(180, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/mekana/front.svg",
  26750. extra: 1671 / 1605,
  26751. bottom: 3.5 / 1691
  26752. }
  26753. },
  26754. side: {
  26755. height: math.unit(5, "feet"),
  26756. weight: math.unit(180, "lb"),
  26757. name: "Side",
  26758. image: {
  26759. source: "./media/characters/mekana/side.svg",
  26760. extra: 1671 / 1605,
  26761. bottom: 3.5 / 1691
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5, "feet"),
  26766. weight: math.unit(180, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/mekana/back.svg",
  26770. extra: 1671 / 1605,
  26771. bottom: 3.5 / 1691
  26772. }
  26773. },
  26774. },
  26775. [
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(5, "feet"),
  26779. default: true
  26780. },
  26781. ]
  26782. ))
  26783. characterMakers.push(() => makeCharacter(
  26784. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26785. {
  26786. front: {
  26787. height: math.unit(4 + 6 / 12, "feet"),
  26788. weight: math.unit(80, "lb"),
  26789. name: "Front",
  26790. image: {
  26791. source: "./media/characters/pixie/front.svg",
  26792. extra: 1924 / 1825,
  26793. bottom: 22.4 / 1946
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Normal",
  26800. height: math.unit(4 + 6 / 12, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Macro",
  26805. height: math.unit(40, "feet")
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(2.1, "meters"),
  26814. weight: math.unit(200, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/the-lascivious/front.svg",
  26818. extra: 1 / 0.893,
  26819. bottom: 3.5 / 573.7
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Human Scale",
  26826. height: math.unit(2.1, "meters")
  26827. },
  26828. {
  26829. name: "Wolxi Scale",
  26830. height: math.unit(46.2, "m"),
  26831. default: true
  26832. },
  26833. {
  26834. name: "Boinker of Buildings",
  26835. height: math.unit(10, "km")
  26836. },
  26837. {
  26838. name: "Shagger of Skyscrapers",
  26839. height: math.unit(40, "km")
  26840. },
  26841. {
  26842. name: "Banger of Boroughs",
  26843. height: math.unit(4000, "km")
  26844. },
  26845. {
  26846. name: "Screwer of States",
  26847. height: math.unit(100000, "km")
  26848. },
  26849. {
  26850. name: "Pounder of Planets",
  26851. height: math.unit(2000000, "km")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(6, "feet"),
  26860. weight: math.unit(150, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/aj/front.svg",
  26864. extra: 2039 / 1562,
  26865. bottom: 40 / 2079
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(11 + 6 / 12, "feet"),
  26873. default: true
  26874. },
  26875. {
  26876. name: "Megamacro",
  26877. height: math.unit(60, "megameters")
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26883. {
  26884. side: {
  26885. height: math.unit(31 + 8 / 12, "feet"),
  26886. weight: math.unit(75000, "kg"),
  26887. name: "Side",
  26888. image: {
  26889. source: "./media/characters/koros/side.svg",
  26890. extra: 1442 / 1297,
  26891. bottom: 122.7 / 1562
  26892. }
  26893. },
  26894. dicksKingsCrown: {
  26895. height: math.unit(6, "feet"),
  26896. name: "Dicks (King's Crown)",
  26897. image: {
  26898. source: "./media/characters/koros/dicks-kings-crown.svg"
  26899. }
  26900. },
  26901. dicksTailSet: {
  26902. height: math.unit(3, "feet"),
  26903. name: "Dicks (Tail Set)",
  26904. image: {
  26905. source: "./media/characters/koros/dicks-tail-set.svg"
  26906. }
  26907. },
  26908. dickCumming: {
  26909. height: math.unit(7.98, "feet"),
  26910. name: "Dick (Cumming)",
  26911. image: {
  26912. source: "./media/characters/koros/dick-cumming.svg"
  26913. }
  26914. },
  26915. dicksBack: {
  26916. height: math.unit(5.9, "feet"),
  26917. name: "Dicks (Back)",
  26918. image: {
  26919. source: "./media/characters/koros/dicks-back.svg"
  26920. }
  26921. },
  26922. dicksFront: {
  26923. height: math.unit(3.72, "feet"),
  26924. name: "Dicks (Front)",
  26925. image: {
  26926. source: "./media/characters/koros/dicks-front.svg"
  26927. }
  26928. },
  26929. dicksPeeking: {
  26930. height: math.unit(3.0, "feet"),
  26931. name: "Dicks (Peeking)",
  26932. image: {
  26933. source: "./media/characters/koros/dicks-peeking.svg"
  26934. }
  26935. },
  26936. eye: {
  26937. height: math.unit(1.7, "feet"),
  26938. name: "Eye",
  26939. image: {
  26940. source: "./media/characters/koros/eye.svg"
  26941. }
  26942. },
  26943. headFront: {
  26944. height: math.unit(11.69, "feet"),
  26945. name: "Head (Front)",
  26946. image: {
  26947. source: "./media/characters/koros/head-front.svg"
  26948. }
  26949. },
  26950. headSide: {
  26951. height: math.unit(14, "feet"),
  26952. name: "Head (Side)",
  26953. image: {
  26954. source: "./media/characters/koros/head-side.svg"
  26955. }
  26956. },
  26957. leg: {
  26958. height: math.unit(17, "feet"),
  26959. name: "Leg",
  26960. image: {
  26961. source: "./media/characters/koros/leg.svg"
  26962. }
  26963. },
  26964. mawSide: {
  26965. height: math.unit(12.8, "feet"),
  26966. name: "Maw (Side)",
  26967. image: {
  26968. source: "./media/characters/koros/maw-side.svg"
  26969. }
  26970. },
  26971. mawSpitting: {
  26972. height: math.unit(17, "feet"),
  26973. name: "Maw (Spitting)",
  26974. image: {
  26975. source: "./media/characters/koros/maw-spitting.svg"
  26976. }
  26977. },
  26978. slit: {
  26979. height: math.unit(2.8, "feet"),
  26980. name: "Slit",
  26981. image: {
  26982. source: "./media/characters/koros/slit.svg"
  26983. }
  26984. },
  26985. stomach: {
  26986. height: math.unit(6.8, "feet"),
  26987. preyCapacity: math.unit(20, "people"),
  26988. name: "Stomach",
  26989. image: {
  26990. source: "./media/characters/koros/stomach.svg"
  26991. }
  26992. },
  26993. wingspanBottom: {
  26994. height: math.unit(114, "feet"),
  26995. name: "Wingspan (Bottom)",
  26996. image: {
  26997. source: "./media/characters/koros/wingspan-bottom.svg"
  26998. }
  26999. },
  27000. wingspanTop: {
  27001. height: math.unit(104, "feet"),
  27002. name: "Wingspan (Top)",
  27003. image: {
  27004. source: "./media/characters/koros/wingspan-top.svg"
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Normal",
  27011. height: math.unit(31 + 8 / 12, "feet"),
  27012. default: true
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(18 + 5 / 12, "feet"),
  27021. weight: math.unit(3750, "kg"),
  27022. name: "Front",
  27023. image: {
  27024. source: "./media/characters/vexx/front.svg",
  27025. extra: 426 / 396,
  27026. bottom: 31.5 / 458
  27027. }
  27028. },
  27029. maw: {
  27030. height: math.unit(6, "feet"),
  27031. name: "Maw",
  27032. image: {
  27033. source: "./media/characters/vexx/maw.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(18 + 5 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27047. {
  27048. front: {
  27049. height: math.unit(17 + 6 / 12, "feet"),
  27050. weight: math.unit(150, "lb"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/baadra/front.svg",
  27054. extra: 1694/1553,
  27055. bottom: 179/1873
  27056. }
  27057. },
  27058. frontAlt: {
  27059. height: math.unit(17 + 6 / 12, "feet"),
  27060. weight: math.unit(150, "lb"),
  27061. name: "Front (Alt)",
  27062. image: {
  27063. source: "./media/characters/baadra/front-alt.svg",
  27064. extra: 3137 / 2890,
  27065. bottom: 168.4 / 3305
  27066. }
  27067. },
  27068. back: {
  27069. height: math.unit(17 + 6 / 12, "feet"),
  27070. weight: math.unit(150, "lb"),
  27071. name: "Back",
  27072. image: {
  27073. source: "./media/characters/baadra/back.svg",
  27074. extra: 3142 / 2890,
  27075. bottom: 220 / 3371
  27076. }
  27077. },
  27078. head: {
  27079. height: math.unit(5.45, "feet"),
  27080. name: "Head",
  27081. image: {
  27082. source: "./media/characters/baadra/head.svg"
  27083. }
  27084. },
  27085. headAngry: {
  27086. height: math.unit(4.95, "feet"),
  27087. name: "Head (Angry)",
  27088. image: {
  27089. source: "./media/characters/baadra/head-angry.svg"
  27090. }
  27091. },
  27092. headOpen: {
  27093. height: math.unit(6, "feet"),
  27094. name: "Head (Open)",
  27095. image: {
  27096. source: "./media/characters/baadra/head-open.svg"
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(17 + 6 / 12, "feet"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(7 + 3 / 12, "feet"),
  27113. weight: math.unit(180, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/juri/front.svg",
  27117. extra: 1401 / 1237,
  27118. bottom: 18.5 / 1418
  27119. }
  27120. },
  27121. side: {
  27122. height: math.unit(7 + 3 / 12, "feet"),
  27123. weight: math.unit(180, "lb"),
  27124. name: "Side",
  27125. image: {
  27126. source: "./media/characters/juri/side.svg",
  27127. extra: 1424 / 1242,
  27128. bottom: 18.5 / 1447
  27129. }
  27130. },
  27131. sitting: {
  27132. height: math.unit(6, "feet"),
  27133. weight: math.unit(180, "lb"),
  27134. name: "Sitting",
  27135. image: {
  27136. source: "./media/characters/juri/sitting.svg",
  27137. extra: 1270 / 1143,
  27138. bottom: 100 / 1343
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(7 + 3 / 12, "feet"),
  27143. weight: math.unit(180, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/juri/back.svg",
  27147. extra: 1377 / 1240,
  27148. bottom: 23.7 / 1405
  27149. }
  27150. },
  27151. maw: {
  27152. height: math.unit(2.8, "feet"),
  27153. name: "Maw",
  27154. image: {
  27155. source: "./media/characters/juri/maw.svg"
  27156. }
  27157. },
  27158. stomach: {
  27159. height: math.unit(0.89, "feet"),
  27160. preyCapacity: math.unit(4, "liters"),
  27161. name: "Stomach",
  27162. image: {
  27163. source: "./media/characters/juri/stomach.svg"
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Normal",
  27170. height: math.unit(7 + 3 / 12, "feet"),
  27171. default: true
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27177. {
  27178. fox: {
  27179. height: math.unit(5 + 6 / 12, "feet"),
  27180. weight: math.unit(140, "lb"),
  27181. name: "Fox",
  27182. image: {
  27183. source: "./media/characters/maxene-sita/fox.svg",
  27184. extra: 146 / 138,
  27185. bottom: 2.1 / 148.19
  27186. }
  27187. },
  27188. foxLaying: {
  27189. height: math.unit(1.70, "feet"),
  27190. weight: math.unit(140, "lb"),
  27191. name: "Fox (Laying)",
  27192. image: {
  27193. source: "./media/characters/maxene-sita/fox-laying.svg",
  27194. extra: 910 / 572,
  27195. bottom: 71 / 981
  27196. }
  27197. },
  27198. kitsune: {
  27199. height: math.unit(10, "feet"),
  27200. weight: math.unit(800, "lb"),
  27201. name: "Kitsune",
  27202. image: {
  27203. source: "./media/characters/maxene-sita/kitsune.svg",
  27204. extra: 185 / 176,
  27205. bottom: 4.7 / 189.9
  27206. }
  27207. },
  27208. hellhound: {
  27209. height: math.unit(10, "feet"),
  27210. weight: math.unit(700, "lb"),
  27211. name: "Hellhound",
  27212. image: {
  27213. source: "./media/characters/maxene-sita/hellhound.svg",
  27214. extra: 1600 / 1545,
  27215. bottom: 81 / 1681
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(5 + 6 / 12, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27229. {
  27230. front: {
  27231. height: math.unit(3 + 4 / 12, "feet"),
  27232. weight: math.unit(70, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/maia/front.svg",
  27236. extra: 227 / 219.5,
  27237. bottom: 40 / 267
  27238. }
  27239. },
  27240. back: {
  27241. height: math.unit(3 + 4 / 12, "feet"),
  27242. weight: math.unit(70, "lb"),
  27243. name: "Back",
  27244. image: {
  27245. source: "./media/characters/maia/back.svg",
  27246. extra: 237 / 225
  27247. }
  27248. },
  27249. },
  27250. [
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(3 + 4 / 12, "feet"),
  27254. default: true
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(5 + 10 / 12, "feet"),
  27263. weight: math.unit(197, "lb"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/jabaro/front.svg",
  27267. extra: 225 / 216,
  27268. bottom: 5.06 / 230
  27269. }
  27270. },
  27271. back: {
  27272. height: math.unit(5 + 10 / 12, "feet"),
  27273. weight: math.unit(197, "lb"),
  27274. name: "Back",
  27275. image: {
  27276. source: "./media/characters/jabaro/back.svg",
  27277. extra: 225 / 219,
  27278. bottom: 1.9 / 227
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(5 + 10 / 12, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27292. {
  27293. front: {
  27294. height: math.unit(5 + 8 / 12, "feet"),
  27295. weight: math.unit(139, "lb"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/risa/front.svg",
  27299. extra: 270 / 260,
  27300. bottom: 11.2 / 282
  27301. }
  27302. },
  27303. back: {
  27304. height: math.unit(5 + 8 / 12, "feet"),
  27305. weight: math.unit(139, "lb"),
  27306. name: "Back",
  27307. image: {
  27308. source: "./media/characters/risa/back.svg",
  27309. extra: 264 / 255,
  27310. bottom: 4 / 268
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(5 + 8 / 12, "feet"),
  27318. default: true
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27324. {
  27325. front: {
  27326. height: math.unit(2 + 11 / 12, "feet"),
  27327. weight: math.unit(30, "lb"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/weatley/front.svg",
  27331. bottom: 10.7 / 414,
  27332. extra: 403.5 / 362
  27333. }
  27334. },
  27335. back: {
  27336. height: math.unit(2 + 11 / 12, "feet"),
  27337. weight: math.unit(30, "lb"),
  27338. name: "Back",
  27339. image: {
  27340. source: "./media/characters/weatley/back.svg",
  27341. bottom: 10.7 / 414,
  27342. extra: 403.5 / 362
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(2 + 11 / 12, "feet"),
  27350. default: true
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(5 + 2 / 12, "feet"),
  27359. weight: math.unit(50, "kg"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/mercury-crescent/front.svg",
  27363. extra: 1088 / 1033,
  27364. bottom: 18.9 / 1109
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(5 + 2 / 12, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(2, "feet"),
  27381. weight: math.unit(15, "kg"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/diamond-jones/front.svg",
  27385. extra: 727/723,
  27386. bottom: 46/773
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(2, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(3, "feet"),
  27403. weight: math.unit(30, "kg"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/sweet-bit/front.svg",
  27407. extra: 675 / 567,
  27408. bottom: 27.7 / 703
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(3, "feet"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27422. {
  27423. side: {
  27424. height: math.unit(9.178, "feet"),
  27425. weight: math.unit(500, "lb"),
  27426. name: "Side",
  27427. image: {
  27428. source: "./media/characters/umbrazen/side.svg",
  27429. extra: 1730 / 1473,
  27430. bottom: 34.6 / 1765
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(9.178, "feet"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(10, "feet"),
  27447. weight: math.unit(750, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/arlist/front.svg",
  27451. extra: 961 / 778,
  27452. bottom: 6.2 / 986
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(10, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 1 / 12, "feet"),
  27469. weight: math.unit(110, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/aradel/front.svg",
  27473. extra: 324 / 303,
  27474. bottom: 3.6 / 329.4
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(5 + 1 / 12, "feet"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27488. {
  27489. dressed: {
  27490. height: math.unit(3 + 8 / 12, "feet"),
  27491. weight: math.unit(50, "lb"),
  27492. name: "Dressed",
  27493. image: {
  27494. source: "./media/characters/serryn/dressed.svg",
  27495. extra: 1792 / 1656,
  27496. bottom: 43.5 / 1840
  27497. }
  27498. },
  27499. nude: {
  27500. height: math.unit(3 + 8 / 12, "feet"),
  27501. weight: math.unit(50, "lb"),
  27502. name: "Nude",
  27503. image: {
  27504. source: "./media/characters/serryn/nude.svg",
  27505. extra: 1792 / 1656,
  27506. bottom: 43.5 / 1840
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(3 + 8 / 12, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(7 + 10 / 12, "feet"),
  27523. weight: math.unit(255, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/xavier-thyme/front.svg",
  27527. extra: 3733 / 3642,
  27528. bottom: 131 / 3869
  27529. }
  27530. },
  27531. frontRaven: {
  27532. height: math.unit(7 + 10 / 12, "feet"),
  27533. weight: math.unit(255, "lb"),
  27534. name: "Front (Raven)",
  27535. image: {
  27536. source: "./media/characters/xavier-thyme/front-raven.svg",
  27537. extra: 4385 / 3642,
  27538. bottom: 131 / 4517
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(7 + 10 / 12, "feet"),
  27546. default: true
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(1.6, "m"),
  27555. weight: math.unit(50, "kg"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/kiki/front.svg",
  27559. extra: 4682 / 3610,
  27560. bottom: 115 / 4777
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Normal",
  27567. height: math.unit(1.6, "meters"),
  27568. default: true
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(50, "m"),
  27577. weight: math.unit(500, "tonnes"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/ryoko/front.svg",
  27581. extra: 4632 / 3926,
  27582. bottom: 193 / 4823
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(50, "meters"),
  27590. default: true
  27591. },
  27592. ]
  27593. ))
  27594. characterMakers.push(() => makeCharacter(
  27595. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27596. {
  27597. front: {
  27598. height: math.unit(30, "m"),
  27599. weight: math.unit(22, "tonnes"),
  27600. name: "Front",
  27601. image: {
  27602. source: "./media/characters/elio/front.svg",
  27603. extra: 4582 / 3720,
  27604. bottom: 236 / 4828
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(30, "meters"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(6 + 3 / 12, "feet"),
  27621. weight: math.unit(120, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/azura/front.svg",
  27625. extra: 1149 / 1135,
  27626. bottom: 45 / 1194
  27627. }
  27628. },
  27629. frontClothed: {
  27630. height: math.unit(6 + 3 / 12, "feet"),
  27631. weight: math.unit(120, "lb"),
  27632. name: "Front (Clothed)",
  27633. image: {
  27634. source: "./media/characters/azura/front-clothed.svg",
  27635. extra: 1149 / 1135,
  27636. bottom: 45 / 1194
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(6 + 3 / 12, "feet"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(20 + 6 / 12, "feet")
  27649. },
  27650. {
  27651. name: "Megamacro",
  27652. height: math.unit(12, "miles")
  27653. },
  27654. {
  27655. name: "Gigamacro",
  27656. height: math.unit(10000, "miles")
  27657. },
  27658. {
  27659. name: "Teramacro",
  27660. height: math.unit(900000, "miles")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(12, "feet"),
  27669. weight: math.unit(1, "ton"),
  27670. capacity: math.unit(660000, "gallons"),
  27671. name: "Front",
  27672. image: {
  27673. source: "./media/characters/zeus/front.svg",
  27674. extra: 5005 / 4717,
  27675. bottom: 363 / 5388
  27676. }
  27677. },
  27678. },
  27679. [
  27680. {
  27681. name: "Normal",
  27682. height: math.unit(12, "feet")
  27683. },
  27684. {
  27685. name: "Preferred Size",
  27686. height: math.unit(0.5, "miles"),
  27687. default: true
  27688. },
  27689. {
  27690. name: "Giga Horse",
  27691. height: math.unit(300, "miles")
  27692. },
  27693. {
  27694. name: "Riding Planets",
  27695. height: math.unit(30, "megameters")
  27696. },
  27697. {
  27698. name: "Cosmic Giant",
  27699. height: math.unit(3, "zettameters")
  27700. },
  27701. {
  27702. name: "Breeding God",
  27703. height: math.unit(9.92e22, "yottameters")
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27709. {
  27710. side: {
  27711. height: math.unit(9, "feet"),
  27712. weight: math.unit(1500, "kg"),
  27713. name: "Side",
  27714. image: {
  27715. source: "./media/characters/fang/side.svg",
  27716. extra: 924 / 866,
  27717. bottom: 47.5 / 972.3
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(9, "feet"),
  27725. default: true
  27726. },
  27727. {
  27728. name: "Macro",
  27729. height: math.unit(75 + 6 / 12, "feet")
  27730. },
  27731. {
  27732. name: "Teramacro",
  27733. height: math.unit(50000, "miles")
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(10, "feet"),
  27742. weight: math.unit(2, "tons"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/rekhit/front.svg",
  27746. extra: 2796 / 2590,
  27747. bottom: 225 / 3022
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Normal",
  27754. height: math.unit(10, "feet"),
  27755. default: true
  27756. },
  27757. {
  27758. name: "Macro",
  27759. height: math.unit(500, "feet")
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(7 + 6.451 / 12, "feet"),
  27768. weight: math.unit(310, "lb"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/dahlia-verrick/front.svg",
  27772. extra: 1488 / 1365,
  27773. bottom: 6.2 / 1495
  27774. }
  27775. },
  27776. back: {
  27777. height: math.unit(7 + 6.451 / 12, "feet"),
  27778. weight: math.unit(310, "lb"),
  27779. name: "Back",
  27780. image: {
  27781. source: "./media/characters/dahlia-verrick/back.svg",
  27782. extra: 1472 / 1351,
  27783. bottom: 5.28 / 1477
  27784. }
  27785. },
  27786. frontBusiness: {
  27787. height: math.unit(7 + 6.451 / 12, "feet"),
  27788. weight: math.unit(200, "lb"),
  27789. name: "Front (Business)",
  27790. image: {
  27791. source: "./media/characters/dahlia-verrick/front-business.svg",
  27792. extra: 1478 / 1381,
  27793. bottom: 5.5 / 1484
  27794. }
  27795. },
  27796. frontCasual: {
  27797. height: math.unit(7 + 6.451 / 12, "feet"),
  27798. weight: math.unit(200, "lb"),
  27799. name: "Front (Casual)",
  27800. image: {
  27801. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27802. extra: 1478 / 1381,
  27803. bottom: 5.5 / 1484
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Travel-Sized",
  27810. height: math.unit(7.45, "inches")
  27811. },
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(7 + 6.451 / 12, "feet"),
  27815. default: true
  27816. },
  27817. {
  27818. name: "Hitting the Town",
  27819. height: math.unit(37 + 8 / 12, "feet")
  27820. },
  27821. {
  27822. name: "Stomp in the Suburbs",
  27823. height: math.unit(964 + 9.728 / 12, "feet")
  27824. },
  27825. {
  27826. name: "Sit on the City",
  27827. height: math.unit(61747 + 10.592 / 12, "feet")
  27828. },
  27829. {
  27830. name: "Glomp the Globe",
  27831. height: math.unit(252919327 + 4.832 / 12, "feet")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(6 + 4 / 12, "feet"),
  27840. weight: math.unit(320, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/balina-mahigan/front.svg",
  27844. extra: 447 / 428,
  27845. bottom: 18 / 466
  27846. }
  27847. },
  27848. back: {
  27849. height: math.unit(6 + 4 / 12, "feet"),
  27850. weight: math.unit(320, "lb"),
  27851. name: "Back",
  27852. image: {
  27853. source: "./media/characters/balina-mahigan/back.svg",
  27854. extra: 445 / 428,
  27855. bottom: 4.07 / 448
  27856. }
  27857. },
  27858. arm: {
  27859. height: math.unit(1.88, "feet"),
  27860. name: "Arm",
  27861. image: {
  27862. source: "./media/characters/balina-mahigan/arm.svg"
  27863. }
  27864. },
  27865. backPort: {
  27866. height: math.unit(0.685, "feet"),
  27867. name: "Back Port",
  27868. image: {
  27869. source: "./media/characters/balina-mahigan/back-port.svg"
  27870. }
  27871. },
  27872. hoofpaw: {
  27873. height: math.unit(1.41, "feet"),
  27874. name: "Hoofpaw",
  27875. image: {
  27876. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27877. }
  27878. },
  27879. leftHandBack: {
  27880. height: math.unit(0.938, "feet"),
  27881. name: "Left Hand (Back)",
  27882. image: {
  27883. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27884. }
  27885. },
  27886. leftHandFront: {
  27887. height: math.unit(0.938, "feet"),
  27888. name: "Left Hand (Front)",
  27889. image: {
  27890. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27891. }
  27892. },
  27893. rightHandBack: {
  27894. height: math.unit(0.95, "feet"),
  27895. name: "Right Hand (Back)",
  27896. image: {
  27897. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27898. }
  27899. },
  27900. rightHandFront: {
  27901. height: math.unit(0.95, "feet"),
  27902. name: "Right Hand (Front)",
  27903. image: {
  27904. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(6 + 4 / 12, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(6, "feet"),
  27921. weight: math.unit(320, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/balina-mejeri/front.svg",
  27925. extra: 517 / 488,
  27926. bottom: 44.2 / 561
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(6 + 4 / 12, "feet")
  27934. },
  27935. {
  27936. name: "Business",
  27937. height: math.unit(155, "feet"),
  27938. default: true
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27944. {
  27945. kneeling: {
  27946. height: math.unit(6 + 4 / 12, "feet"),
  27947. weight: math.unit(300 * 20, "lb"),
  27948. name: "Kneeling",
  27949. image: {
  27950. source: "./media/characters/balbarian/kneeling.svg",
  27951. extra: 922 / 862,
  27952. bottom: 42.4 / 965
  27953. }
  27954. },
  27955. },
  27956. [
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(6 + 4 / 12, "feet")
  27960. },
  27961. {
  27962. name: "Treasured",
  27963. height: math.unit(18 + 9 / 12, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Macro",
  27968. height: math.unit(900, "feet")
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(6 + 4 / 12, "feet"),
  27977. weight: math.unit(325, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/balina-amarini/front.svg",
  27981. extra: 415 / 403,
  27982. bottom: 19 / 433.4
  27983. }
  27984. },
  27985. back: {
  27986. height: math.unit(6 + 4 / 12, "feet"),
  27987. weight: math.unit(325, "lb"),
  27988. name: "Back",
  27989. image: {
  27990. source: "./media/characters/balina-amarini/back.svg",
  27991. extra: 415 / 403,
  27992. bottom: 13.5 / 432
  27993. }
  27994. },
  27995. overdrive: {
  27996. height: math.unit(6 + 4 / 12, "feet"),
  27997. weight: math.unit(400, "lb"),
  27998. name: "Overdrive",
  27999. image: {
  28000. source: "./media/characters/balina-amarini/overdrive.svg",
  28001. extra: 269 / 259,
  28002. bottom: 12 / 282
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Boom",
  28009. height: math.unit(9 + 10 / 12, "feet"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Macro",
  28014. height: math.unit(280, "feet")
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28020. {
  28021. goddess: {
  28022. height: math.unit(600, "feet"),
  28023. weight: math.unit(2000000, "tons"),
  28024. name: "Goddess",
  28025. image: {
  28026. source: "./media/characters/lady-kubwa/goddess.svg",
  28027. extra: 1240.5 / 1223,
  28028. bottom: 22 / 1263
  28029. }
  28030. },
  28031. goddesser: {
  28032. height: math.unit(900, "feet"),
  28033. weight: math.unit(20000000, "lb"),
  28034. name: "Goddess-er",
  28035. image: {
  28036. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28037. extra: 899 / 888,
  28038. bottom: 12.6 / 912
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Macro",
  28045. height: math.unit(600, "feet"),
  28046. default: true
  28047. },
  28048. {
  28049. name: "Megamacro",
  28050. height: math.unit(250, "miles")
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(7 + 7 / 12, "feet"),
  28059. weight: math.unit(250, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/tala-grovehorn/front.svg",
  28063. extra: 2636 / 2525,
  28064. bottom: 147 / 2781
  28065. }
  28066. },
  28067. back: {
  28068. height: math.unit(7 + 7 / 12, "feet"),
  28069. weight: math.unit(250, "lb"),
  28070. name: "Back",
  28071. image: {
  28072. source: "./media/characters/tala-grovehorn/back.svg",
  28073. extra: 2635 / 2539,
  28074. bottom: 100 / 2732.8
  28075. }
  28076. },
  28077. mouth: {
  28078. height: math.unit(1.15, "feet"),
  28079. name: "Mouth",
  28080. image: {
  28081. source: "./media/characters/tala-grovehorn/mouth.svg"
  28082. }
  28083. },
  28084. dick: {
  28085. height: math.unit(2.36, "feet"),
  28086. name: "Dick",
  28087. image: {
  28088. source: "./media/characters/tala-grovehorn/dick.svg"
  28089. }
  28090. },
  28091. slit: {
  28092. height: math.unit(0.61, "feet"),
  28093. name: "Slit",
  28094. image: {
  28095. source: "./media/characters/tala-grovehorn/slit.svg"
  28096. }
  28097. },
  28098. },
  28099. [
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(7 + 7 / 12, "feet"),
  28107. weight: math.unit(225, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/epona/front.svg",
  28111. extra: 2445 / 2290,
  28112. bottom: 251 / 2696
  28113. }
  28114. },
  28115. back: {
  28116. height: math.unit(7 + 7 / 12, "feet"),
  28117. weight: math.unit(225, "lb"),
  28118. name: "Back",
  28119. image: {
  28120. source: "./media/characters/epona/back.svg",
  28121. extra: 2546 / 2408,
  28122. bottom: 44 / 2589
  28123. }
  28124. },
  28125. genitals: {
  28126. height: math.unit(1.5, "feet"),
  28127. name: "Genitals",
  28128. image: {
  28129. source: "./media/characters/epona/genitals.svg"
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(7 + 7 / 12, "feet"),
  28137. default: true
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(7, "feet"),
  28146. weight: math.unit(518, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/avia-bloodbourn/front.svg",
  28150. extra: 1466 / 1350,
  28151. bottom: 65 / 1527
  28152. }
  28153. },
  28154. },
  28155. [
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(9.35, "feet"),
  28163. weight: math.unit(600, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/amera/front.svg",
  28167. extra: 891 / 818,
  28168. bottom: 30 / 922.7
  28169. }
  28170. },
  28171. back: {
  28172. height: math.unit(9.35, "feet"),
  28173. weight: math.unit(600, "lb"),
  28174. name: "Back",
  28175. image: {
  28176. source: "./media/characters/amera/back.svg",
  28177. extra: 876 / 824,
  28178. bottom: 6.8 / 884
  28179. }
  28180. },
  28181. dick: {
  28182. height: math.unit(2.14, "feet"),
  28183. name: "Dick",
  28184. image: {
  28185. source: "./media/characters/amera/dick.svg"
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(9.35, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28199. {
  28200. kneeling: {
  28201. height: math.unit(3 + 4 / 12, "feet"),
  28202. weight: math.unit(90, "lb"),
  28203. name: "Kneeling",
  28204. image: {
  28205. source: "./media/characters/rosewen/kneeling.svg",
  28206. extra: 1835 / 1571,
  28207. bottom: 27.7 / 1862
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(3 + 4 / 12, "feet"),
  28215. default: true
  28216. },
  28217. ]
  28218. ))
  28219. characterMakers.push(() => makeCharacter(
  28220. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28221. {
  28222. front: {
  28223. height: math.unit(5 + 10 / 12, "feet"),
  28224. weight: math.unit(200, "lb"),
  28225. name: "Front",
  28226. image: {
  28227. source: "./media/characters/sabah/front.svg",
  28228. extra: 849 / 763,
  28229. bottom: 33.9 / 881
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(5 + 10 / 12, "feet"),
  28237. default: true
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28243. {
  28244. front: {
  28245. height: math.unit(3 + 5 / 12, "feet"),
  28246. weight: math.unit(40, "kg"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/purple-flame/front.svg",
  28250. extra: 1577 / 1412,
  28251. bottom: 97 / 1694
  28252. }
  28253. },
  28254. frontDressed: {
  28255. height: math.unit(3 + 5 / 12, "feet"),
  28256. weight: math.unit(40, "kg"),
  28257. name: "Front (Dressed)",
  28258. image: {
  28259. source: "./media/characters/purple-flame/front-dressed.svg",
  28260. extra: 1577 / 1412,
  28261. bottom: 97 / 1694
  28262. }
  28263. },
  28264. headphones: {
  28265. height: math.unit(0.85, "feet"),
  28266. name: "Headphones",
  28267. image: {
  28268. source: "./media/characters/purple-flame/headphones.svg"
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Really Small",
  28275. height: math.unit(5, "cm")
  28276. },
  28277. {
  28278. name: "Micro",
  28279. height: math.unit(1 + 5 / 12, "feet")
  28280. },
  28281. {
  28282. name: "Normal",
  28283. height: math.unit(3 + 5 / 12, "feet"),
  28284. default: true
  28285. },
  28286. {
  28287. name: "Minimacro",
  28288. height: math.unit(125, "feet")
  28289. },
  28290. {
  28291. name: "Macro",
  28292. height: math.unit(0.5, "miles")
  28293. },
  28294. {
  28295. name: "Megamacro",
  28296. height: math.unit(50, "miles")
  28297. },
  28298. {
  28299. name: "Gigantic",
  28300. height: math.unit(750, "miles")
  28301. },
  28302. {
  28303. name: "Planetary",
  28304. height: math.unit(15000, "miles")
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28310. {
  28311. front: {
  28312. height: math.unit(14, "feet"),
  28313. weight: math.unit(959, "lb"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/arsenal/front.svg",
  28317. extra: 2357 / 2157,
  28318. bottom: 93 / 2458
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(14, "feet"),
  28326. default: true
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28332. {
  28333. front: {
  28334. height: math.unit(6, "feet"),
  28335. weight: math.unit(150, "lb"),
  28336. name: "Front",
  28337. image: {
  28338. source: "./media/characters/adira/front.svg",
  28339. extra: 1078 / 1029,
  28340. bottom: 87 / 1166
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Micro",
  28347. height: math.unit(4, "inches"),
  28348. default: true
  28349. },
  28350. {
  28351. name: "Macro",
  28352. height: math.unit(50, "feet")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(16, "feet"),
  28361. weight: math.unit(1000, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/grim/front.svg",
  28365. extra: 622 / 614,
  28366. bottom: 18.1 / 642
  28367. }
  28368. },
  28369. back: {
  28370. height: math.unit(16, "feet"),
  28371. weight: math.unit(1000, "lb"),
  28372. name: "Back",
  28373. image: {
  28374. source: "./media/characters/grim/back.svg",
  28375. extra: 610.6 / 602,
  28376. bottom: 40.8 / 652
  28377. }
  28378. },
  28379. hunched: {
  28380. height: math.unit(9.75, "feet"),
  28381. weight: math.unit(1000, "lb"),
  28382. name: "Hunched",
  28383. image: {
  28384. source: "./media/characters/grim/hunched.svg",
  28385. extra: 304 / 297,
  28386. bottom: 35.4 / 394
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(16, "feet"),
  28394. default: true
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(2.3, "meters"),
  28403. weight: math.unit(300, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/sinja/front-sfw.svg",
  28407. extra: 1393 / 1294,
  28408. bottom: 70 / 1463
  28409. }
  28410. },
  28411. frontNsfw: {
  28412. height: math.unit(2.3, "meters"),
  28413. weight: math.unit(300, "lb"),
  28414. name: "Front (NSFW)",
  28415. image: {
  28416. source: "./media/characters/sinja/front-nsfw.svg",
  28417. extra: 1393 / 1294,
  28418. bottom: 70 / 1463
  28419. }
  28420. },
  28421. back: {
  28422. height: math.unit(2.3, "meters"),
  28423. weight: math.unit(300, "lb"),
  28424. name: "Back",
  28425. image: {
  28426. source: "./media/characters/sinja/back.svg",
  28427. extra: 1393 / 1294,
  28428. bottom: 70 / 1463
  28429. }
  28430. },
  28431. head: {
  28432. height: math.unit(1.771, "feet"),
  28433. name: "Head",
  28434. image: {
  28435. source: "./media/characters/sinja/head.svg"
  28436. }
  28437. },
  28438. slit: {
  28439. height: math.unit(0.8, "feet"),
  28440. name: "Slit",
  28441. image: {
  28442. source: "./media/characters/sinja/slit.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(2.3, "meters")
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(91, "meters"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Megamacro",
  28458. height: math.unit(91440, "meters")
  28459. },
  28460. {
  28461. name: "Gigamacro",
  28462. height: math.unit(60960000, "meters")
  28463. },
  28464. {
  28465. name: "Teramacro",
  28466. height: math.unit(9144000000, "meters")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(1.7, "meters"),
  28475. weight: math.unit(130, "lb"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/kyu/front.svg",
  28479. extra: 415 / 395,
  28480. bottom: 5 / 420
  28481. }
  28482. },
  28483. head: {
  28484. height: math.unit(1.75, "feet"),
  28485. name: "Head",
  28486. image: {
  28487. source: "./media/characters/kyu/head.svg"
  28488. }
  28489. },
  28490. foot: {
  28491. height: math.unit(0.81, "feet"),
  28492. name: "Foot",
  28493. image: {
  28494. source: "./media/characters/kyu/foot.svg"
  28495. }
  28496. },
  28497. },
  28498. [
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(1.7, "meters")
  28502. },
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(131, "feet"),
  28506. default: true
  28507. },
  28508. {
  28509. name: "Megamacro",
  28510. height: math.unit(91440, "meters")
  28511. },
  28512. {
  28513. name: "Gigamacro",
  28514. height: math.unit(60960000, "meters")
  28515. },
  28516. {
  28517. name: "Teramacro",
  28518. height: math.unit(9144000000, "meters")
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(7 + 1 / 12, "feet"),
  28527. weight: math.unit(250, "lb"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/joey/front.svg",
  28531. extra: 1791 / 1537,
  28532. bottom: 28 / 1816
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Micro",
  28539. height: math.unit(3, "inches")
  28540. },
  28541. {
  28542. name: "Normal",
  28543. height: math.unit(7 + 1 / 12, "feet"),
  28544. default: true
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(165, "cm"),
  28553. weight: math.unit(140, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/sam-evans/front.svg",
  28557. extra: 3417 / 3230,
  28558. bottom: 41.3 / 3417
  28559. }
  28560. },
  28561. frontSixTails: {
  28562. height: math.unit(165, "cm"),
  28563. weight: math.unit(140, "lb"),
  28564. name: "Front-six-tails",
  28565. image: {
  28566. source: "./media/characters/sam-evans/front-six-tails.svg",
  28567. extra: 3417 / 3230,
  28568. bottom: 41.3 / 3417
  28569. }
  28570. },
  28571. back: {
  28572. height: math.unit(165, "cm"),
  28573. weight: math.unit(140, "lb"),
  28574. name: "Back",
  28575. image: {
  28576. source: "./media/characters/sam-evans/back.svg",
  28577. extra: 3227 / 3032,
  28578. bottom: 6.8 / 3234
  28579. }
  28580. },
  28581. face: {
  28582. height: math.unit(0.68, "feet"),
  28583. name: "Face",
  28584. image: {
  28585. source: "./media/characters/sam-evans/face.svg"
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(165, "cm"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(100, "meters")
  28598. },
  28599. {
  28600. name: "Macro+",
  28601. height: math.unit(800, "meters")
  28602. },
  28603. {
  28604. name: "Macro++",
  28605. height: math.unit(3, "km")
  28606. },
  28607. {
  28608. name: "Macro+++",
  28609. height: math.unit(30, "km")
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(10, "feet"),
  28618. weight: math.unit(750, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/juliet-a/front.svg",
  28622. extra: 1766 / 1720,
  28623. bottom: 43 / 1809
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(10, "feet"),
  28628. weight: math.unit(750, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/juliet-a/back.svg",
  28632. extra: 1781 / 1734,
  28633. bottom: 35 / 1810,
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(10, "feet"),
  28641. default: true
  28642. },
  28643. {
  28644. name: "Dragon Form",
  28645. height: math.unit(250, "feet")
  28646. },
  28647. {
  28648. name: "Macro",
  28649. height: math.unit(1000, "feet")
  28650. },
  28651. {
  28652. name: "Megamacro",
  28653. height: math.unit(10000, "feet")
  28654. }
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28659. {
  28660. regular: {
  28661. height: math.unit(7 + 3 / 12, "feet"),
  28662. weight: math.unit(260, "lb"),
  28663. name: "Regular",
  28664. image: {
  28665. source: "./media/characters/wild/regular.svg",
  28666. extra: 97.45 / 92,
  28667. bottom: 6.8 / 104.3
  28668. }
  28669. },
  28670. biggums: {
  28671. height: math.unit(8 + 6 / 12, "feet"),
  28672. weight: math.unit(425, "lb"),
  28673. name: "Biggums",
  28674. image: {
  28675. source: "./media/characters/wild/biggums.svg",
  28676. extra: 97.45 / 92,
  28677. bottom: 7.5 / 132.34
  28678. }
  28679. },
  28680. mawRegular: {
  28681. height: math.unit(1.24, "feet"),
  28682. name: "Maw (Regular)",
  28683. image: {
  28684. source: "./media/characters/wild/maw.svg"
  28685. }
  28686. },
  28687. mawBiggums: {
  28688. height: math.unit(1.47, "feet"),
  28689. name: "Maw (Biggums)",
  28690. image: {
  28691. source: "./media/characters/wild/maw.svg"
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(7 + 3 / 12, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28705. {
  28706. front: {
  28707. height: math.unit(2.5, "meters"),
  28708. weight: math.unit(200, "kg"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/vidar/front.svg",
  28712. extra: 2994 / 2795,
  28713. bottom: 56 / 3061
  28714. }
  28715. },
  28716. back: {
  28717. height: math.unit(2.5, "meters"),
  28718. weight: math.unit(200, "kg"),
  28719. name: "Back",
  28720. image: {
  28721. source: "./media/characters/vidar/back.svg",
  28722. extra: 3131 / 2928,
  28723. bottom: 13.5 / 3141.5
  28724. }
  28725. },
  28726. feral: {
  28727. height: math.unit(2.5, "meters"),
  28728. weight: math.unit(2000, "kg"),
  28729. name: "Feral",
  28730. image: {
  28731. source: "./media/characters/vidar/feral.svg",
  28732. extra: 2790 / 1765,
  28733. bottom: 6 / 2796
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(2.5, "meters"),
  28741. default: true
  28742. },
  28743. {
  28744. name: "Macro",
  28745. height: math.unit(100, "meters")
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(5 + 9 / 12, "feet"),
  28754. weight: math.unit(120, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/ash/front.svg",
  28758. extra: 2189 / 1961,
  28759. bottom: 5.2 / 2194
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(5 + 9 / 12, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(9, "feet"),
  28776. weight: math.unit(10000, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/gygabite/front.svg",
  28780. bottom: 31.7 / 537.8,
  28781. extra: 505 / 370
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(9, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(12, "feet"),
  28798. weight: math.unit(4000, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/p0tat0/front.svg",
  28802. extra: 1065 / 921,
  28803. bottom: 55.7 / 1121.25
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(12, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28817. {
  28818. side: {
  28819. height: math.unit(6.5, "feet"),
  28820. weight: math.unit(800, "lb"),
  28821. name: "Side",
  28822. image: {
  28823. source: "./media/characters/dusk/side.svg",
  28824. extra: 615 / 373,
  28825. bottom: 53 / 664
  28826. }
  28827. },
  28828. sitting: {
  28829. height: math.unit(7, "feet"),
  28830. weight: math.unit(800, "lb"),
  28831. name: "Sitting",
  28832. image: {
  28833. source: "./media/characters/dusk/sitting.svg",
  28834. extra: 753 / 425,
  28835. bottom: 33 / 774
  28836. }
  28837. },
  28838. head: {
  28839. height: math.unit(6.1, "feet"),
  28840. name: "Head",
  28841. image: {
  28842. source: "./media/characters/dusk/head.svg"
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(7, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28856. {
  28857. front: {
  28858. height: math.unit(15, "feet"),
  28859. weight: math.unit(7000, "lb"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/jay-direwolf/front.svg",
  28863. extra: 1810 / 1732,
  28864. bottom: 66 / 1892
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(15, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(4 + 9 / 12, "feet"),
  28881. weight: math.unit(130, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/anchovie/front.svg",
  28885. extra: 382 / 350,
  28886. bottom: 25 / 409
  28887. }
  28888. },
  28889. back: {
  28890. height: math.unit(4 + 9 / 12, "feet"),
  28891. weight: math.unit(130, "lb"),
  28892. name: "Back",
  28893. image: {
  28894. source: "./media/characters/anchovie/back.svg",
  28895. extra: 385 / 352,
  28896. bottom: 16.6 / 402
  28897. }
  28898. },
  28899. frontDressed: {
  28900. height: math.unit(4 + 9 / 12, "feet"),
  28901. weight: math.unit(130, "lb"),
  28902. name: "Front (Dressed)",
  28903. image: {
  28904. source: "./media/characters/anchovie/front-dressed.svg",
  28905. extra: 382 / 350,
  28906. bottom: 25 / 409
  28907. }
  28908. },
  28909. backDressed: {
  28910. height: math.unit(4 + 9 / 12, "feet"),
  28911. weight: math.unit(130, "lb"),
  28912. name: "Back (Dressed)",
  28913. image: {
  28914. source: "./media/characters/anchovie/back-dressed.svg",
  28915. extra: 385 / 352,
  28916. bottom: 16.6 / 402
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Micro",
  28923. height: math.unit(6.4, "inches")
  28924. },
  28925. {
  28926. name: "Normal",
  28927. height: math.unit(4 + 9 / 12, "feet"),
  28928. default: true
  28929. },
  28930. ]
  28931. ))
  28932. characterMakers.push(() => makeCharacter(
  28933. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28934. {
  28935. front: {
  28936. height: math.unit(2, "meters"),
  28937. weight: math.unit(180, "lb"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/acidrenamon/front.svg",
  28941. extra: 987 / 890,
  28942. bottom: 22.8 / 1009
  28943. }
  28944. },
  28945. back: {
  28946. height: math.unit(2, "meters"),
  28947. weight: math.unit(180, "lb"),
  28948. name: "Back",
  28949. image: {
  28950. source: "./media/characters/acidrenamon/back.svg",
  28951. extra: 983 / 891,
  28952. bottom: 8.4 / 992
  28953. }
  28954. },
  28955. head: {
  28956. height: math.unit(1.92, "feet"),
  28957. name: "Head",
  28958. image: {
  28959. source: "./media/characters/acidrenamon/head.svg"
  28960. }
  28961. },
  28962. rump: {
  28963. height: math.unit(1.72, "feet"),
  28964. name: "Rump",
  28965. image: {
  28966. source: "./media/characters/acidrenamon/rump.svg"
  28967. }
  28968. },
  28969. tail: {
  28970. height: math.unit(4.2, "feet"),
  28971. name: "Tail",
  28972. image: {
  28973. source: "./media/characters/acidrenamon/tail.svg"
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(2, "meters"),
  28981. default: true
  28982. },
  28983. {
  28984. name: "Minimacro",
  28985. height: math.unit(7, "meters")
  28986. },
  28987. {
  28988. name: "Macro",
  28989. height: math.unit(200, "meters")
  28990. },
  28991. {
  28992. name: "Gigamacro",
  28993. height: math.unit(0.2, "earths")
  28994. },
  28995. ]
  28996. ))
  28997. characterMakers.push(() => makeCharacter(
  28998. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28999. {
  29000. front: {
  29001. height: math.unit(152, "feet"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/kenzie-lee/front.svg",
  29005. extra: 1869/1774,
  29006. bottom: 128/1997
  29007. }
  29008. },
  29009. side: {
  29010. height: math.unit(86, "feet"),
  29011. name: "Side",
  29012. image: {
  29013. source: "./media/characters/kenzie-lee/side.svg",
  29014. extra: 930/815,
  29015. bottom: 177/1107
  29016. }
  29017. },
  29018. paw: {
  29019. height: math.unit(15, "feet"),
  29020. name: "Paw",
  29021. image: {
  29022. source: "./media/characters/kenzie-lee/paw.svg"
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Kenzie Flea",
  29029. height: math.unit(2, "mm"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Micro",
  29034. height: math.unit(2, "inches")
  29035. },
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(152, "feet")
  29039. },
  29040. {
  29041. name: "Megamacro",
  29042. height: math.unit(7, "miles")
  29043. },
  29044. {
  29045. name: "Gigamacro",
  29046. height: math.unit(8000, "miles")
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. name: "Front",
  29056. image: {
  29057. source: "./media/characters/withers/front.svg",
  29058. extra: 1935/1760,
  29059. bottom: 72/2007
  29060. }
  29061. },
  29062. back: {
  29063. height: math.unit(6, "feet"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/withers/back.svg",
  29067. extra: 1944/1792,
  29068. bottom: 12/1956
  29069. }
  29070. },
  29071. dressed: {
  29072. height: math.unit(6, "feet"),
  29073. name: "Dressed",
  29074. image: {
  29075. source: "./media/characters/withers/dressed.svg",
  29076. extra: 1937/1765,
  29077. bottom: 73/2010
  29078. }
  29079. },
  29080. phase1: {
  29081. height: math.unit(1.1, "feet"),
  29082. name: "Phase 1",
  29083. image: {
  29084. source: "./media/characters/withers/phase-1.svg",
  29085. extra: 1885/1232,
  29086. bottom: 0/1885
  29087. }
  29088. },
  29089. phase2: {
  29090. height: math.unit(1.05, "feet"),
  29091. name: "Phase 2",
  29092. image: {
  29093. source: "./media/characters/withers/phase-2.svg",
  29094. extra: 1792/1090,
  29095. bottom: 0/1792
  29096. }
  29097. },
  29098. partyWipe: {
  29099. height: math.unit(1.1, "feet"),
  29100. name: "Party Wipe",
  29101. image: {
  29102. source: "./media/characters/withers/party-wipe.svg",
  29103. extra: 1864/1207,
  29104. bottom: 0/1864
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Macro",
  29111. height: math.unit(167, "feet"),
  29112. default: true
  29113. },
  29114. {
  29115. name: "Megamacro",
  29116. height: math.unit(15, "miles")
  29117. }
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(6 + 7 / 12, "feet"),
  29125. weight: math.unit(250, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/nemoskii/front.svg",
  29129. extra: 2270 / 1734,
  29130. bottom: 86 / 2354
  29131. }
  29132. },
  29133. back: {
  29134. height: math.unit(6 + 7 / 12, "feet"),
  29135. weight: math.unit(250, "lb"),
  29136. name: "Back",
  29137. image: {
  29138. source: "./media/characters/nemoskii/back.svg",
  29139. extra: 1845 / 1788,
  29140. bottom: 10.5 / 1852
  29141. }
  29142. },
  29143. head: {
  29144. height: math.unit(1.31, "feet"),
  29145. name: "Head",
  29146. image: {
  29147. source: "./media/characters/nemoskii/head.svg"
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Micro",
  29154. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29155. },
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(6 + 7 / 12, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit((6 + 7 / 12) * 150, "feet")
  29164. },
  29165. {
  29166. name: "Macro+",
  29167. height: math.unit((6 + 7 / 12) * 500, "feet")
  29168. },
  29169. {
  29170. name: "Megamacro",
  29171. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(1, "mile"),
  29180. weight: math.unit(265261.9, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/shui/front.svg",
  29184. extra: 1633 / 1564,
  29185. bottom: 91.5 / 1726
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Macro",
  29192. height: math.unit(1, "mile"),
  29193. default: true
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(12 + 6 / 12, "feet"),
  29202. weight: math.unit(1342, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/arokh-takakura/front.svg",
  29206. extra: 1089 / 1043,
  29207. bottom: 77.4 / 1176.7
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(12 + 6 / 12, "feet"),
  29212. weight: math.unit(1342, "lb"),
  29213. name: "Back",
  29214. image: {
  29215. source: "./media/characters/arokh-takakura/back.svg",
  29216. extra: 1046 / 1019,
  29217. bottom: 102 / 1150
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Big",
  29224. height: math.unit(12 + 6 / 12, "feet"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(5 + 6 / 12, "feet"),
  29234. weight: math.unit(150, "lb"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/theo/front.svg",
  29238. extra: 1184 / 1131,
  29239. bottom: 7.4 / 1191
  29240. }
  29241. },
  29242. },
  29243. [
  29244. {
  29245. name: "Micro",
  29246. height: math.unit(5, "inches")
  29247. },
  29248. {
  29249. name: "Normal",
  29250. height: math.unit(5 + 6 / 12, "feet"),
  29251. default: true
  29252. },
  29253. ]
  29254. ))
  29255. characterMakers.push(() => makeCharacter(
  29256. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29257. {
  29258. front: {
  29259. height: math.unit(5 + 9 / 12, "feet"),
  29260. weight: math.unit(130, "lb"),
  29261. name: "Front",
  29262. image: {
  29263. source: "./media/characters/cecelia-swift/front.svg",
  29264. extra: 502 / 484,
  29265. bottom: 23 / 523
  29266. }
  29267. },
  29268. back: {
  29269. height: math.unit(5 + 9 / 12, "feet"),
  29270. weight: math.unit(130, "lb"),
  29271. name: "Back",
  29272. image: {
  29273. source: "./media/characters/cecelia-swift/back.svg",
  29274. extra: 499 / 485,
  29275. bottom: 12 / 511
  29276. }
  29277. },
  29278. head: {
  29279. height: math.unit(0.90, "feet"),
  29280. name: "Head",
  29281. image: {
  29282. source: "./media/characters/cecelia-swift/head.svg"
  29283. }
  29284. },
  29285. rump: {
  29286. height: math.unit(1.75, "feet"),
  29287. name: "Rump",
  29288. image: {
  29289. source: "./media/characters/cecelia-swift/rump.svg"
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(5 + 9 / 12, "feet"),
  29297. default: true
  29298. },
  29299. {
  29300. name: "Big",
  29301. height: math.unit(50, "feet")
  29302. },
  29303. {
  29304. name: "Macro",
  29305. height: math.unit(100, "feet")
  29306. },
  29307. {
  29308. name: "Macro+",
  29309. height: math.unit(500, "feet")
  29310. },
  29311. {
  29312. name: "Macro++",
  29313. height: math.unit(1000, "feet")
  29314. },
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(6, "feet"),
  29322. weight: math.unit(150, "lb"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/kaunan/front.svg",
  29326. extra: 2890 / 2523,
  29327. bottom: 49 / 2939
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(150, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29341. {
  29342. dressed: {
  29343. height: math.unit(175, "cm"),
  29344. weight: math.unit(60, "kg"),
  29345. name: "Dressed",
  29346. image: {
  29347. source: "./media/characters/fei/dressed.svg",
  29348. extra: 1402/1278,
  29349. bottom: 27/1429
  29350. }
  29351. },
  29352. nude: {
  29353. height: math.unit(175, "cm"),
  29354. weight: math.unit(60, "kg"),
  29355. name: "Nude",
  29356. image: {
  29357. source: "./media/characters/fei/nude.svg",
  29358. extra: 1402/1278,
  29359. bottom: 27/1429
  29360. }
  29361. },
  29362. heels: {
  29363. height: math.unit(0.466, "feet"),
  29364. name: "Heels",
  29365. image: {
  29366. source: "./media/characters/fei/heels.svg",
  29367. extra: 156/152,
  29368. bottom: 28/184
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Mortal",
  29375. height: math.unit(175, "cm")
  29376. },
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(3500, "m")
  29380. },
  29381. {
  29382. name: "Stroll",
  29383. height: math.unit(18.4, "km"),
  29384. default: true
  29385. },
  29386. {
  29387. name: "Showoff",
  29388. height: math.unit(175, "km")
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(7, "feet"),
  29397. weight: math.unit(1000, "kg"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/edrax/front.svg",
  29401. extra: 2838 / 2550,
  29402. bottom: 130 / 2968
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Small",
  29409. height: math.unit(7, "feet")
  29410. },
  29411. {
  29412. name: "Normal",
  29413. height: math.unit(1500, "meters")
  29414. },
  29415. {
  29416. name: "Mega",
  29417. height: math.unit(12000000, "km"),
  29418. default: true
  29419. },
  29420. {
  29421. name: "Megamacro",
  29422. height: math.unit(10600000, "lightyears")
  29423. },
  29424. {
  29425. name: "Hypermacro",
  29426. height: math.unit(256, "yottameters")
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29432. {
  29433. front: {
  29434. height: math.unit(10, "feet"),
  29435. weight: math.unit(750, "lb"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/clove/front.svg",
  29439. extra: 1918/1751,
  29440. bottom: 52/1970
  29441. }
  29442. },
  29443. back: {
  29444. height: math.unit(10, "feet"),
  29445. weight: math.unit(750, "lb"),
  29446. name: "Back",
  29447. image: {
  29448. source: "./media/characters/clove/back.svg",
  29449. extra: 1912/1747,
  29450. bottom: 50/1962
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Normal",
  29457. height: math.unit(10, "feet"),
  29458. default: true
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(4, "feet"),
  29467. weight: math.unit(50, "lb"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/alex-rabbit/front.svg",
  29471. extra: 507 / 458,
  29472. bottom: 18.5 / 527
  29473. }
  29474. },
  29475. back: {
  29476. height: math.unit(4, "feet"),
  29477. weight: math.unit(50, "lb"),
  29478. name: "Back",
  29479. image: {
  29480. source: "./media/characters/alex-rabbit/back.svg",
  29481. extra: 502 / 460,
  29482. bottom: 18.9 / 521
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Normal",
  29489. height: math.unit(4, "feet"),
  29490. default: true
  29491. },
  29492. ]
  29493. ))
  29494. characterMakers.push(() => makeCharacter(
  29495. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29496. {
  29497. front: {
  29498. height: math.unit(1 + 3 / 12, "feet"),
  29499. weight: math.unit(80, "lb"),
  29500. name: "Front",
  29501. image: {
  29502. source: "./media/characters/zander-rose/front.svg",
  29503. extra: 916 / 797,
  29504. bottom: 17 / 933
  29505. }
  29506. },
  29507. back: {
  29508. height: math.unit(1 + 3 / 12, "feet"),
  29509. weight: math.unit(80, "lb"),
  29510. name: "Back",
  29511. image: {
  29512. source: "./media/characters/zander-rose/back.svg",
  29513. extra: 903 / 779,
  29514. bottom: 31 / 934
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Normal",
  29521. height: math.unit(1 + 3 / 12, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29528. {
  29529. anthro: {
  29530. height: math.unit(6, "feet"),
  29531. weight: math.unit(150, "lb"),
  29532. name: "Anthro",
  29533. image: {
  29534. source: "./media/characters/razz/anthro.svg",
  29535. extra: 1437 / 1343,
  29536. bottom: 48 / 1485
  29537. }
  29538. },
  29539. feral: {
  29540. height: math.unit(6, "feet"),
  29541. weight: math.unit(150, "lb"),
  29542. name: "Feral",
  29543. image: {
  29544. source: "./media/characters/razz/feral.svg",
  29545. extra: 2569 / 1385,
  29546. bottom: 95 / 2664
  29547. }
  29548. },
  29549. },
  29550. [
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(6, "feet"),
  29554. default: true
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(9 + 4 / 12, "feet"),
  29563. weight: math.unit(500, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/morrigan/front.svg",
  29567. extra: 2707 / 2579,
  29568. bottom: 156 / 2863
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(9 + 4 / 12, "feet"),
  29576. default: true
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(5, "stories"),
  29585. weight: math.unit(4000, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/jenene/front.svg",
  29589. extra: 1780 / 1710,
  29590. bottom: 57 / 1837
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(5, "stories"),
  29598. default: true
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29604. {
  29605. taurSfw: {
  29606. height: math.unit(10, "meters"),
  29607. weight: math.unit(17500, "kg"),
  29608. name: "Taur",
  29609. image: {
  29610. source: "./media/characters/faey/taur-sfw.svg",
  29611. extra: 1200 / 968,
  29612. bottom: 41 / 1241
  29613. }
  29614. },
  29615. chestmaw: {
  29616. height: math.unit(2.01, "meters"),
  29617. name: "Chestmaw",
  29618. image: {
  29619. source: "./media/characters/faey/chestmaw.svg"
  29620. }
  29621. },
  29622. foot: {
  29623. height: math.unit(2.43, "meters"),
  29624. name: "Foot",
  29625. image: {
  29626. source: "./media/characters/faey/foot.svg"
  29627. }
  29628. },
  29629. jaws: {
  29630. height: math.unit(1.66, "meters"),
  29631. name: "Jaws",
  29632. image: {
  29633. source: "./media/characters/faey/jaws.svg"
  29634. }
  29635. },
  29636. tongues: {
  29637. height: math.unit(2.01, "meters"),
  29638. name: "Tongues",
  29639. image: {
  29640. source: "./media/characters/faey/tongues.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Small",
  29647. height: math.unit(10, "meters"),
  29648. default: true
  29649. },
  29650. {
  29651. name: "Big",
  29652. height: math.unit(500000, "km")
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29658. {
  29659. front: {
  29660. height: math.unit(7, "feet"),
  29661. weight: math.unit(275, "lb"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/roku/front.svg",
  29665. extra: 903 / 878,
  29666. bottom: 37 / 940
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(7, "feet"),
  29674. default: true
  29675. },
  29676. {
  29677. name: "Macro",
  29678. height: math.unit(500, "feet")
  29679. },
  29680. {
  29681. name: "Megamacro",
  29682. height: math.unit(200, "miles")
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(6 + 2 / 12, "feet"),
  29691. weight: math.unit(150, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/lira/front.svg",
  29695. extra: 1727 / 1605,
  29696. bottom: 26 / 1753
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(6 + 2 / 12, "feet"),
  29701. weight: math.unit(150, "lb"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/lira/back.svg",
  29705. extra: 1713/1621,
  29706. bottom: 20/1733
  29707. }
  29708. },
  29709. hand: {
  29710. height: math.unit(0.75, "feet"),
  29711. name: "Hand",
  29712. image: {
  29713. source: "./media/characters/lira/hand.svg"
  29714. }
  29715. },
  29716. maw: {
  29717. height: math.unit(0.65, "feet"),
  29718. name: "Maw",
  29719. image: {
  29720. source: "./media/characters/lira/maw.svg"
  29721. }
  29722. },
  29723. pawDigi: {
  29724. height: math.unit(1.6, "feet"),
  29725. name: "Paw Digi",
  29726. image: {
  29727. source: "./media/characters/lira/paw-digi.svg"
  29728. }
  29729. },
  29730. pawPlanti: {
  29731. height: math.unit(1.4, "feet"),
  29732. name: "Paw Planti",
  29733. image: {
  29734. source: "./media/characters/lira/paw-planti.svg"
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(6 + 2 / 12, "feet"),
  29742. default: true
  29743. },
  29744. {
  29745. name: "Macro",
  29746. height: math.unit(100, "feet")
  29747. },
  29748. {
  29749. name: "Macro²",
  29750. height: math.unit(1600, "feet")
  29751. },
  29752. {
  29753. name: "Planetary",
  29754. height: math.unit(20, "earths")
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(6, "feet"),
  29763. weight: math.unit(150, "lb"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/hadjet/front.svg",
  29767. extra: 1480 / 1346,
  29768. bottom: 26 / 1506
  29769. }
  29770. },
  29771. frontNsfw: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front (NSFW)",
  29775. image: {
  29776. source: "./media/characters/hadjet/front-nsfw.svg",
  29777. extra: 1440 / 1358,
  29778. bottom: 52 / 1492
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Macro",
  29785. height: math.unit(10, "stories"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Megamacro",
  29790. height: math.unit(1.5, "miles")
  29791. },
  29792. {
  29793. name: "Megamacro+",
  29794. height: math.unit(5, "miles")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29800. {
  29801. side: {
  29802. height: math.unit(106, "feet"),
  29803. weight: math.unit(500, "tonnes"),
  29804. name: "Side",
  29805. image: {
  29806. source: "./media/characters/kodran/side.svg",
  29807. extra: 553 / 480,
  29808. bottom: 33 / 586
  29809. }
  29810. },
  29811. front: {
  29812. height: math.unit(132, "feet"),
  29813. weight: math.unit(500, "tonnes"),
  29814. name: "Front",
  29815. image: {
  29816. source: "./media/characters/kodran/front.svg",
  29817. extra: 667 / 643,
  29818. bottom: 42 / 709
  29819. }
  29820. },
  29821. flying: {
  29822. height: math.unit(350, "feet"),
  29823. weight: math.unit(500, "tonnes"),
  29824. name: "Flying",
  29825. image: {
  29826. source: "./media/characters/kodran/flying.svg"
  29827. }
  29828. },
  29829. foot: {
  29830. height: math.unit(33, "feet"),
  29831. name: "Foot",
  29832. image: {
  29833. source: "./media/characters/kodran/foot.svg"
  29834. }
  29835. },
  29836. footFront: {
  29837. height: math.unit(19, "feet"),
  29838. name: "Foot (Front)",
  29839. image: {
  29840. source: "./media/characters/kodran/foot-front.svg",
  29841. extra: 261 / 261,
  29842. bottom: 91 / 352
  29843. }
  29844. },
  29845. headFront: {
  29846. height: math.unit(53, "feet"),
  29847. name: "Head (Front)",
  29848. image: {
  29849. source: "./media/characters/kodran/head-front.svg"
  29850. }
  29851. },
  29852. headSide: {
  29853. height: math.unit(65, "feet"),
  29854. name: "Head (Side)",
  29855. image: {
  29856. source: "./media/characters/kodran/head-side.svg"
  29857. }
  29858. },
  29859. throat: {
  29860. height: math.unit(79, "feet"),
  29861. name: "Throat",
  29862. image: {
  29863. source: "./media/characters/kodran/throat.svg"
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Large",
  29870. height: math.unit(106, "feet"),
  29871. default: true
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29877. {
  29878. side: {
  29879. height: math.unit(11, "feet"),
  29880. weight: math.unit(150, "lb"),
  29881. name: "Side",
  29882. image: {
  29883. source: "./media/characters/pyxaron/side.svg",
  29884. extra: 305 / 195,
  29885. bottom: 17 / 322
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(11, "feet"),
  29893. default: true
  29894. },
  29895. ]
  29896. ))
  29897. characterMakers.push(() => makeCharacter(
  29898. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29899. {
  29900. front: {
  29901. height: math.unit(6, "feet"),
  29902. weight: math.unit(150, "lb"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/meep/front.svg",
  29906. extra: 88 / 80,
  29907. bottom: 6 / 94
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Fun Sized",
  29914. height: math.unit(2, "inches"),
  29915. default: true
  29916. },
  29917. {
  29918. name: "Friend Sized",
  29919. height: math.unit(8, "inches")
  29920. },
  29921. ]
  29922. ))
  29923. characterMakers.push(() => makeCharacter(
  29924. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29925. {
  29926. front: {
  29927. height: math.unit(15, "feet"),
  29928. weight: math.unit(2500, "lb"),
  29929. name: "Front",
  29930. image: {
  29931. source: "./media/characters/holly-rabbit/front.svg",
  29932. extra: 1433 / 1233,
  29933. bottom: 125 / 1558
  29934. }
  29935. },
  29936. dick: {
  29937. height: math.unit(4.6, "feet"),
  29938. name: "Dick",
  29939. image: {
  29940. source: "./media/characters/holly-rabbit/dick.svg"
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(15, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Macro",
  29952. height: math.unit(250, "feet")
  29953. },
  29954. {
  29955. name: "Macro+",
  29956. height: math.unit(2500, "feet")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(3.02, "meters"),
  29965. weight: math.unit(500, "kg"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/drena/front.svg",
  29969. extra: 282 / 243,
  29970. bottom: 8 / 290
  29971. }
  29972. },
  29973. side: {
  29974. height: math.unit(3.02, "meters"),
  29975. weight: math.unit(500, "kg"),
  29976. name: "Side",
  29977. image: {
  29978. source: "./media/characters/drena/side.svg",
  29979. extra: 280 / 245,
  29980. bottom: 10 / 290
  29981. }
  29982. },
  29983. back: {
  29984. height: math.unit(3.02, "meters"),
  29985. weight: math.unit(500, "kg"),
  29986. name: "Back",
  29987. image: {
  29988. source: "./media/characters/drena/back.svg",
  29989. extra: 278 / 243,
  29990. bottom: 2 / 280
  29991. }
  29992. },
  29993. foot: {
  29994. height: math.unit(0.75, "meters"),
  29995. name: "Foot",
  29996. image: {
  29997. source: "./media/characters/drena/foot.svg"
  29998. }
  29999. },
  30000. maw: {
  30001. height: math.unit(0.82, "meters"),
  30002. name: "Maw",
  30003. image: {
  30004. source: "./media/characters/drena/maw.svg"
  30005. }
  30006. },
  30007. eating: {
  30008. height: math.unit(0.75, "meters"),
  30009. name: "Eating",
  30010. image: {
  30011. source: "./media/characters/drena/eating.svg"
  30012. }
  30013. },
  30014. rump: {
  30015. height: math.unit(0.93, "meters"),
  30016. name: "Rump",
  30017. image: {
  30018. source: "./media/characters/drena/rump.svg"
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(3.02, "meters"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(6 + 4 / 12, "feet"),
  30035. weight: math.unit(250, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/remmyzilla/front.svg",
  30039. extra: 4033 / 3588,
  30040. bottom: 123 / 4156
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(6 + 4 / 12, "feet"),
  30045. weight: math.unit(250, "lb"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/remmyzilla/back.svg",
  30049. extra: 2687 / 2555,
  30050. bottom: 48 / 2735
  30051. }
  30052. },
  30053. paw: {
  30054. height: math.unit(1.73, "feet"),
  30055. name: "Paw",
  30056. image: {
  30057. source: "./media/characters/remmyzilla/paw.svg"
  30058. },
  30059. extraAttributes: {
  30060. "toeSize": {
  30061. name: "Toe Size",
  30062. power: 2,
  30063. type: "area",
  30064. base: math.unit(0.0035, "m^2")
  30065. },
  30066. "padSize": {
  30067. name: "Pad Size",
  30068. power: 2,
  30069. type: "area",
  30070. base: math.unit(0.015, "m^2")
  30071. },
  30072. "pawsize": {
  30073. name: "Paw Size",
  30074. power: 2,
  30075. type: "area",
  30076. base: math.unit(0.072, "m^2")
  30077. },
  30078. }
  30079. },
  30080. maw: {
  30081. height: math.unit(1.73, "feet"),
  30082. name: "Maw",
  30083. image: {
  30084. source: "./media/characters/remmyzilla/maw.svg"
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(6 + 4 / 12, "feet")
  30092. },
  30093. {
  30094. name: "Minimacro",
  30095. height: math.unit(12 + 8 / 12, "feet")
  30096. },
  30097. {
  30098. name: "Normal",
  30099. height: math.unit(640, "feet"),
  30100. default: true
  30101. },
  30102. {
  30103. name: "Megamacro",
  30104. height: math.unit(6400, "feet")
  30105. },
  30106. {
  30107. name: "Gigamacro",
  30108. height: math.unit(64000, "miles")
  30109. },
  30110. ]
  30111. ))
  30112. characterMakers.push(() => makeCharacter(
  30113. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30114. {
  30115. front: {
  30116. height: math.unit(2.5, "meters"),
  30117. weight: math.unit(300, "lb"),
  30118. name: "Front",
  30119. image: {
  30120. source: "./media/characters/lawrence/front.svg",
  30121. extra: 357 / 335,
  30122. bottom: 30 / 387
  30123. }
  30124. },
  30125. back: {
  30126. height: math.unit(2.5, "meters"),
  30127. weight: math.unit(300, "lb"),
  30128. name: "Back",
  30129. image: {
  30130. source: "./media/characters/lawrence/back.svg",
  30131. extra: 357 / 338,
  30132. bottom: 16 / 373
  30133. }
  30134. },
  30135. head: {
  30136. height: math.unit(0.9, "meter"),
  30137. name: "Head",
  30138. image: {
  30139. source: "./media/characters/lawrence/head.svg"
  30140. }
  30141. },
  30142. maw: {
  30143. height: math.unit(0.7, "meter"),
  30144. name: "Maw",
  30145. image: {
  30146. source: "./media/characters/lawrence/maw.svg"
  30147. }
  30148. },
  30149. footBottom: {
  30150. height: math.unit(0.5, "meter"),
  30151. name: "Foot (Bottom)",
  30152. image: {
  30153. source: "./media/characters/lawrence/foot-bottom.svg"
  30154. }
  30155. },
  30156. footTop: {
  30157. height: math.unit(0.5, "meter"),
  30158. name: "Foot (Top)",
  30159. image: {
  30160. source: "./media/characters/lawrence/foot-top.svg"
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Normal",
  30167. height: math.unit(2.5, "meters"),
  30168. default: true
  30169. },
  30170. {
  30171. name: "Macro",
  30172. height: math.unit(95, "meters")
  30173. },
  30174. {
  30175. name: "Megamacro",
  30176. height: math.unit(150, "km")
  30177. },
  30178. ]
  30179. ))
  30180. characterMakers.push(() => makeCharacter(
  30181. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30182. {
  30183. front: {
  30184. height: math.unit(4.2, "meters"),
  30185. name: "Front",
  30186. image: {
  30187. source: "./media/characters/sydney/front.svg",
  30188. extra: 1323 / 1277,
  30189. bottom: 111 / 1434
  30190. }
  30191. },
  30192. },
  30193. [
  30194. {
  30195. name: "Normal",
  30196. height: math.unit(4.2, "meters"),
  30197. default: true
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30203. {
  30204. back: {
  30205. height: math.unit(201, "feet"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/jessica/back.svg",
  30209. extra: 273 / 259,
  30210. bottom: 7 / 280
  30211. }
  30212. },
  30213. },
  30214. [
  30215. {
  30216. name: "Normal",
  30217. height: math.unit(201, "feet"),
  30218. default: true
  30219. },
  30220. {
  30221. name: "Megamacro",
  30222. height: math.unit(8, "miles")
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30228. {
  30229. side: {
  30230. height: math.unit(5.6, "m"),
  30231. weight: math.unit(8000, "kg"),
  30232. name: "Side",
  30233. image: {
  30234. source: "./media/characters/victoria/side.svg",
  30235. extra: 1542/1229,
  30236. bottom: 124/1666
  30237. }
  30238. },
  30239. maw: {
  30240. height: math.unit(7.14, "feet"),
  30241. name: "Maw",
  30242. image: {
  30243. source: "./media/characters/victoria/maw.svg"
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(5.6, "m"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30257. {
  30258. front: {
  30259. height: math.unit(5 + 6 / 12, "feet"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/cat/front.svg",
  30263. extra: 1449/1295,
  30264. bottom: 34/1483
  30265. },
  30266. form: "cat",
  30267. default: true
  30268. },
  30269. back: {
  30270. height: math.unit(5 + 6 / 12, "feet"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/cat/back.svg",
  30274. extra: 1466/1301,
  30275. bottom: 19/1485
  30276. },
  30277. form: "cat"
  30278. },
  30279. taur: {
  30280. height: math.unit(7, "feet"),
  30281. name: "Taur",
  30282. image: {
  30283. source: "./media/characters/cat/taur.svg",
  30284. extra: 1389/1233,
  30285. bottom: 83/1472
  30286. },
  30287. form: "taur",
  30288. default: true
  30289. },
  30290. lucarioFront: {
  30291. height: math.unit(4, "feet"),
  30292. name: "Lucario (Front)",
  30293. image: {
  30294. source: "./media/characters/cat/lucario-front.svg",
  30295. extra: 1149/1019,
  30296. bottom: 84/1233
  30297. },
  30298. form: "lucario",
  30299. default: true
  30300. },
  30301. lucarioBack: {
  30302. height: math.unit(4, "feet"),
  30303. name: "Lucario (Back)",
  30304. image: {
  30305. source: "./media/characters/cat/lucario-back.svg",
  30306. extra: 1190/1059,
  30307. bottom: 33/1223
  30308. },
  30309. form: "lucario"
  30310. },
  30311. megaLucario: {
  30312. height: math.unit(4, "feet"),
  30313. name: "Mega Lucario",
  30314. image: {
  30315. source: "./media/characters/cat/mega-lucario.svg",
  30316. extra: 1515 / 1319,
  30317. bottom: 63 / 1578
  30318. },
  30319. form: "lucario"
  30320. },
  30321. nickit: {
  30322. height: math.unit(2, "feet"),
  30323. name: "Nickit",
  30324. image: {
  30325. source: "./media/characters/cat/nickit.svg",
  30326. extra: 1980 / 1585,
  30327. bottom: 102 / 2082
  30328. },
  30329. form: "nickit",
  30330. default: true
  30331. },
  30332. lopunnyFront: {
  30333. height: math.unit(5, "feet"),
  30334. name: "Lopunny (Front)",
  30335. image: {
  30336. source: "./media/characters/cat/lopunny-front.svg",
  30337. extra: 1782 / 1469,
  30338. bottom: 38 / 1820
  30339. },
  30340. form: "lopunny",
  30341. default: true
  30342. },
  30343. lopunnyBack: {
  30344. height: math.unit(5, "feet"),
  30345. name: "Lopunny (Back)",
  30346. image: {
  30347. source: "./media/characters/cat/lopunny-back.svg",
  30348. extra: 1660 / 1490,
  30349. bottom: 25 / 1685
  30350. },
  30351. form: "lopunny"
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Really small",
  30357. height: math.unit(1, "nm")
  30358. },
  30359. {
  30360. name: "Micro",
  30361. height: math.unit(5, "inches")
  30362. },
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(5 + 6 / 12, "feet"),
  30366. default: true
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(50, "feet")
  30371. },
  30372. {
  30373. name: "Macro+",
  30374. height: math.unit(150, "feet")
  30375. },
  30376. {
  30377. name: "Megamacro",
  30378. height: math.unit(100, "miles")
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(63.4, "meters"),
  30387. weight: math.unit(3.28349e+6, "kilograms"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/kirina-violet/front.svg",
  30391. extra: 2812 / 2725,
  30392. bottom: 0 / 2812
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(63.4, "meters"),
  30397. weight: math.unit(3.28349e+6, "kilograms"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/kirina-violet/back.svg",
  30401. extra: 2812 / 2725,
  30402. bottom: 0 / 2812
  30403. }
  30404. },
  30405. mouth: {
  30406. height: math.unit(4.35, "meters"),
  30407. name: "Mouth",
  30408. image: {
  30409. source: "./media/characters/kirina-violet/mouth.svg"
  30410. }
  30411. },
  30412. paw: {
  30413. height: math.unit(5.6, "meters"),
  30414. name: "Paw",
  30415. image: {
  30416. source: "./media/characters/kirina-violet/paw.svg"
  30417. }
  30418. },
  30419. tail: {
  30420. height: math.unit(18, "meters"),
  30421. name: "Tail",
  30422. image: {
  30423. source: "./media/characters/kirina-violet/tail.svg"
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Macro",
  30430. height: math.unit(63.4, "meters"),
  30431. default: true
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(75, "feet"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/cat-gigachu/front.svg",
  30443. extra: 1239/1027,
  30444. bottom: 32/1271
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(75, "feet"),
  30449. name: "Back",
  30450. image: {
  30451. source: "./media/characters/cat-gigachu/back.svg",
  30452. extra: 1229/1030,
  30453. bottom: 9/1238
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Dynamax",
  30460. height: math.unit(75, "feet"),
  30461. default: true
  30462. },
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(6, "feet"),
  30470. weight: math.unit(150, "lb"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/sfaiyan/front.svg",
  30474. extra: 999 / 978,
  30475. bottom: 5 / 1004
  30476. }
  30477. },
  30478. },
  30479. [
  30480. {
  30481. name: "Normal",
  30482. height: math.unit(1.82, "meters")
  30483. },
  30484. {
  30485. name: "Giant",
  30486. height: math.unit(2.27, "km"),
  30487. default: true
  30488. },
  30489. ]
  30490. ))
  30491. characterMakers.push(() => makeCharacter(
  30492. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30493. {
  30494. front: {
  30495. height: math.unit(179, "cm"),
  30496. weight: math.unit(100, "kg"),
  30497. name: "Front",
  30498. image: {
  30499. source: "./media/characters/raunehkeli/front.svg",
  30500. extra: 1934 / 1926,
  30501. bottom: 0 / 1934
  30502. }
  30503. },
  30504. },
  30505. [
  30506. {
  30507. name: "Normal",
  30508. height: math.unit(179, "cm")
  30509. },
  30510. {
  30511. name: "Maximum",
  30512. height: math.unit(575, "meters"),
  30513. default: true
  30514. },
  30515. ]
  30516. ))
  30517. characterMakers.push(() => makeCharacter(
  30518. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30519. {
  30520. front: {
  30521. height: math.unit(6, "feet"),
  30522. weight: math.unit(150, "lb"),
  30523. name: "Front",
  30524. image: {
  30525. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30526. extra: 2625 / 2518,
  30527. bottom: 60 / 2685
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(6 + 2 / 12, "feet")
  30535. },
  30536. {
  30537. name: "Macro",
  30538. height: math.unit(1180, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(5 + 6 / 12, "feet"),
  30548. weight: math.unit(108, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/lilith-zott/front.svg",
  30552. extra: 2510 / 2238,
  30553. bottom: 100 / 2610
  30554. }
  30555. },
  30556. frontDressed: {
  30557. height: math.unit(5 + 6 / 12, "feet"),
  30558. weight: math.unit(108, "lb"),
  30559. name: "Front (Dressed)",
  30560. image: {
  30561. source: "./media/characters/lilith-zott/front-dressed.svg",
  30562. extra: 2510 / 2238,
  30563. bottom: 100 / 2610
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(5 + 6 / 12, "feet")
  30571. },
  30572. {
  30573. name: "Macro",
  30574. height: math.unit(1030, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(6, "feet"),
  30584. weight: math.unit(150, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30588. extra: 2567 / 2435,
  30589. bottom: 39 / 2606
  30590. }
  30591. },
  30592. frontSuper: {
  30593. height: math.unit(6, "feet"),
  30594. name: "Front (Super)",
  30595. image: {
  30596. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30597. extra: 2567 / 2435,
  30598. bottom: 39 / 2606
  30599. }
  30600. },
  30601. },
  30602. [
  30603. {
  30604. name: "Normal",
  30605. height: math.unit(5 + 10 / 12, "feet")
  30606. },
  30607. {
  30608. name: "Macro",
  30609. height: math.unit(1100, "feet"),
  30610. default: true
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(100, "miles"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/sona/front.svg",
  30622. extra: 2433 / 2201,
  30623. bottom: 53 / 2486
  30624. }
  30625. },
  30626. foot: {
  30627. height: math.unit(16.1, "miles"),
  30628. name: "Foot",
  30629. image: {
  30630. source: "./media/characters/sona/foot.svg"
  30631. }
  30632. },
  30633. },
  30634. [
  30635. {
  30636. name: "Macro",
  30637. height: math.unit(100, "miles"),
  30638. default: true
  30639. },
  30640. ]
  30641. ))
  30642. characterMakers.push(() => makeCharacter(
  30643. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30644. {
  30645. front: {
  30646. height: math.unit(6, "feet"),
  30647. weight: math.unit(150, "lb"),
  30648. name: "Front",
  30649. image: {
  30650. source: "./media/characters/bailey/front.svg",
  30651. extra: 1778 / 1724,
  30652. bottom: 30 / 1808
  30653. }
  30654. },
  30655. },
  30656. [
  30657. {
  30658. name: "Micro",
  30659. height: math.unit(4, "inches")
  30660. },
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(5 + 5 / 12, "feet"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "Macro",
  30668. height: math.unit(250, "feet")
  30669. },
  30670. {
  30671. name: "Megamacro",
  30672. height: math.unit(100, "miles")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(5 + 2 / 12, "feet"),
  30681. weight: math.unit(120, "lb"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/snaps/front.svg",
  30685. extra: 2370 / 2177,
  30686. bottom: 48 / 2418
  30687. }
  30688. },
  30689. back: {
  30690. height: math.unit(5 + 2 / 12, "feet"),
  30691. weight: math.unit(120, "lb"),
  30692. name: "Back",
  30693. image: {
  30694. source: "./media/characters/snaps/back.svg",
  30695. extra: 2408 / 2258,
  30696. bottom: 15 / 2423
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Micro",
  30703. height: math.unit(9, "inches")
  30704. },
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(5 + 2 / 12, "feet"),
  30708. default: true
  30709. },
  30710. {
  30711. name: "Mini Macro",
  30712. height: math.unit(10, "feet")
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(1.8, "meters"),
  30721. weight: math.unit(85, "kg"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/azteck/front.svg",
  30725. extra: 2815 / 2625,
  30726. bottom: 89 / 2904
  30727. }
  30728. },
  30729. back: {
  30730. height: math.unit(1.8, "meters"),
  30731. weight: math.unit(85, "kg"),
  30732. name: "Back",
  30733. image: {
  30734. source: "./media/characters/azteck/back.svg",
  30735. extra: 2856 / 2648,
  30736. bottom: 85 / 2941
  30737. }
  30738. },
  30739. frontDressed: {
  30740. height: math.unit(1.8, "meters"),
  30741. weight: math.unit(85, "kg"),
  30742. name: "Front (Dressed)",
  30743. image: {
  30744. source: "./media/characters/azteck/front-dressed.svg",
  30745. extra: 2147 / 2003,
  30746. bottom: 68 / 2215
  30747. }
  30748. },
  30749. head: {
  30750. height: math.unit(0.47, "meters"),
  30751. weight: math.unit(85, "kg"),
  30752. name: "Head",
  30753. image: {
  30754. source: "./media/characters/azteck/head.svg"
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Bite sized",
  30761. height: math.unit(16, "cm")
  30762. },
  30763. {
  30764. name: "Normal",
  30765. height: math.unit(1.8, "meters"),
  30766. default: true
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(6, "feet"),
  30775. weight: math.unit(150, "lb"),
  30776. name: "Front",
  30777. image: {
  30778. source: "./media/characters/pidge/front.svg",
  30779. extra: 1936/1820,
  30780. bottom: 0/1936
  30781. }
  30782. },
  30783. back: {
  30784. height: math.unit(6, "feet"),
  30785. weight: math.unit(150, "lb"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/pidge/back.svg",
  30789. extra: 1938/1843,
  30790. bottom: 0/1938
  30791. }
  30792. },
  30793. casual: {
  30794. height: math.unit(6, "feet"),
  30795. weight: math.unit(150, "lb"),
  30796. name: "Casual",
  30797. image: {
  30798. source: "./media/characters/pidge/casual.svg",
  30799. extra: 1936/1820,
  30800. bottom: 0/1936
  30801. }
  30802. },
  30803. tech: {
  30804. height: math.unit(6, "feet"),
  30805. weight: math.unit(150, "lb"),
  30806. name: "Tech",
  30807. image: {
  30808. source: "./media/characters/pidge/tech.svg",
  30809. extra: 1802/1682,
  30810. bottom: 0/1802
  30811. }
  30812. },
  30813. head: {
  30814. height: math.unit(1.61, "feet"),
  30815. name: "Head",
  30816. image: {
  30817. source: "./media/characters/pidge/head.svg"
  30818. }
  30819. },
  30820. collar: {
  30821. height: math.unit(0.82, "feet"),
  30822. name: "Collar",
  30823. image: {
  30824. source: "./media/characters/pidge/collar.svg"
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Macro",
  30831. height: math.unit(2, "mile"),
  30832. default: true
  30833. },
  30834. {
  30835. name: "PUPPY",
  30836. height: math.unit(20, "miles")
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(6, "feet"),
  30845. weight: math.unit(150, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/en/front.svg",
  30849. extra: 1697 / 1563,
  30850. bottom: 103 / 1800
  30851. }
  30852. },
  30853. back: {
  30854. height: math.unit(6, "feet"),
  30855. weight: math.unit(150, "lb"),
  30856. name: "Back",
  30857. image: {
  30858. source: "./media/characters/en/back.svg",
  30859. extra: 1700 / 1570,
  30860. bottom: 51 / 1751
  30861. }
  30862. },
  30863. frontDressed: {
  30864. height: math.unit(6, "feet"),
  30865. weight: math.unit(150, "lb"),
  30866. name: "Front (Dressed)",
  30867. image: {
  30868. source: "./media/characters/en/front-dressed.svg",
  30869. extra: 1697 / 1563,
  30870. bottom: 103 / 1800
  30871. }
  30872. },
  30873. backDressed: {
  30874. height: math.unit(6, "feet"),
  30875. weight: math.unit(150, "lb"),
  30876. name: "Back (Dressed)",
  30877. image: {
  30878. source: "./media/characters/en/back-dressed.svg",
  30879. extra: 1700 / 1570,
  30880. bottom: 51 / 1751
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Macro",
  30887. height: math.unit(210, "feet"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(150, "lb"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/haze-orris/front.svg",
  30901. extra: 3975 / 3525,
  30902. bottom: 137 / 4112
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Micro",
  30909. height: math.unit(150, "mm"),
  30910. default: true
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(6, "feet"),
  30919. weight: math.unit(150, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/casselene-yaro/front.svg",
  30923. extra: 4721 / 4541,
  30924. bottom: 82 / 4803
  30925. }
  30926. },
  30927. back: {
  30928. height: math.unit(6, "feet"),
  30929. weight: math.unit(150, "lb"),
  30930. name: "Back",
  30931. image: {
  30932. source: "./media/characters/casselene-yaro/back.svg",
  30933. extra: 4569 / 4377,
  30934. bottom: 69 / 4638
  30935. }
  30936. },
  30937. dressed: {
  30938. height: math.unit(6, "feet"),
  30939. weight: math.unit(150, "lb"),
  30940. name: "Dressed",
  30941. image: {
  30942. source: "./media/characters/casselene-yaro/dressed.svg",
  30943. extra: 4721 / 4541,
  30944. bottom: 82 / 4803
  30945. }
  30946. },
  30947. maw: {
  30948. height: math.unit(1, "feet"),
  30949. name: "Maw",
  30950. image: {
  30951. source: "./media/characters/casselene-yaro/maw.svg"
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Macro",
  30958. height: math.unit(190, "feet"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(10, "feet"),
  30968. weight: math.unit(15015, "lb"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/platine/front.svg",
  30972. extra: 1741/1650,
  30973. bottom: 84/1825
  30974. }
  30975. },
  30976. side: {
  30977. height: math.unit(10, "feet"),
  30978. weight: math.unit(15015, "lb"),
  30979. name: "Side",
  30980. image: {
  30981. source: "./media/characters/platine/side.svg",
  30982. extra: 1790/1705,
  30983. bottom: 29/1819
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(10, "feet"),
  30991. default: true
  30992. },
  30993. {
  30994. name: "Macro",
  30995. height: math.unit(100, "feet")
  30996. },
  30997. {
  30998. name: "Megamacro",
  30999. height: math.unit(1000, "feet")
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(15 + 5 / 12, "feet"),
  31008. weight: math.unit(4600, "lb"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/neapolitan-ananassa/front.svg",
  31012. extra: 2903 / 2736,
  31013. bottom: 0 / 2903
  31014. }
  31015. },
  31016. side: {
  31017. height: math.unit(15 + 5 / 12, "feet"),
  31018. weight: math.unit(4600, "lb"),
  31019. name: "Side",
  31020. image: {
  31021. source: "./media/characters/neapolitan-ananassa/side.svg",
  31022. extra: 2925 / 2719,
  31023. bottom: 0 / 2925
  31024. }
  31025. },
  31026. back: {
  31027. height: math.unit(15 + 5 / 12, "feet"),
  31028. weight: math.unit(4600, "lb"),
  31029. name: "Back",
  31030. image: {
  31031. source: "./media/characters/neapolitan-ananassa/back.svg",
  31032. extra: 2903 / 2736,
  31033. bottom: 0 / 2903
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(15 + 5 / 12, "feet"),
  31041. default: true
  31042. },
  31043. {
  31044. name: "Post-Millenium",
  31045. height: math.unit(35 + 5 / 12, "feet")
  31046. },
  31047. {
  31048. name: "Post-Era",
  31049. height: math.unit(450 + 5 / 12, "feet")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(300, "meters"),
  31058. weight: math.unit(125000, "tonnes"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/pazuzu/front.svg",
  31062. extra: 877 / 794,
  31063. bottom: 47 / 924
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(300, "meters"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31077. {
  31078. side: {
  31079. height: math.unit(10 + 7 / 12, "feet"),
  31080. weight: math.unit(2.5, "tons"),
  31081. name: "Side",
  31082. image: {
  31083. source: "./media/characters/aasha/side.svg",
  31084. extra: 1345 / 1245,
  31085. bottom: 111 / 1456
  31086. }
  31087. },
  31088. back: {
  31089. height: math.unit(10 + 7 / 12, "feet"),
  31090. weight: math.unit(2.5, "tons"),
  31091. name: "Back",
  31092. image: {
  31093. source: "./media/characters/aasha/back.svg",
  31094. extra: 1133 / 1057,
  31095. bottom: 257 / 1390
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(10 + 7 / 12, "feet"),
  31103. default: true
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31109. {
  31110. front: {
  31111. height: math.unit(6 + 3 / 12, "feet"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/nevan/front.svg",
  31115. extra: 704 / 704,
  31116. bottom: 28 / 732
  31117. }
  31118. },
  31119. back: {
  31120. height: math.unit(6 + 3 / 12, "feet"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/nevan/back.svg",
  31124. extra: 714 / 714,
  31125. bottom: 21 / 735
  31126. }
  31127. },
  31128. frontFlaccid: {
  31129. height: math.unit(6 + 3 / 12, "feet"),
  31130. name: "Front (Flaccid)",
  31131. image: {
  31132. source: "./media/characters/nevan/front-flaccid.svg",
  31133. extra: 704 / 704,
  31134. bottom: 28 / 732
  31135. }
  31136. },
  31137. frontErect: {
  31138. height: math.unit(6 + 3 / 12, "feet"),
  31139. name: "Front (Erect)",
  31140. image: {
  31141. source: "./media/characters/nevan/front-erect.svg",
  31142. extra: 704 / 704,
  31143. bottom: 28 / 732
  31144. }
  31145. },
  31146. backFlaccid: {
  31147. height: math.unit(6 + 3 / 12, "feet"),
  31148. name: "Back (Flaccid)",
  31149. image: {
  31150. source: "./media/characters/nevan/back-flaccid.svg",
  31151. extra: 714 / 714,
  31152. bottom: 21 / 735
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(6 + 3 / 12, "feet"),
  31160. default: true
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(4, "feet"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/arhan/front.svg",
  31172. extra: 3368 / 3133,
  31173. bottom: 0 / 3368
  31174. }
  31175. },
  31176. side: {
  31177. height: math.unit(4, "feet"),
  31178. name: "Side",
  31179. image: {
  31180. source: "./media/characters/arhan/side.svg",
  31181. extra: 3347 / 3105,
  31182. bottom: 0 / 3347
  31183. }
  31184. },
  31185. tongue: {
  31186. height: math.unit(1.42, "feet"),
  31187. name: "Tongue",
  31188. image: {
  31189. source: "./media/characters/arhan/tongue.svg"
  31190. }
  31191. },
  31192. head: {
  31193. height: math.unit(0.85, "feet"),
  31194. name: "Head",
  31195. image: {
  31196. source: "./media/characters/arhan/head.svg"
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(4, "feet"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31210. {
  31211. front: {
  31212. height: math.unit(5 + 7.5 / 12, "feet"),
  31213. weight: math.unit(120, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/digi-duncan/front.svg",
  31217. extra: 330 / 326,
  31218. bottom: 16 / 346
  31219. }
  31220. },
  31221. side: {
  31222. height: math.unit(5 + 7.5 / 12, "feet"),
  31223. weight: math.unit(120, "lb"),
  31224. name: "Side",
  31225. image: {
  31226. source: "./media/characters/digi-duncan/side.svg",
  31227. extra: 341 / 337,
  31228. bottom: 1 / 342
  31229. }
  31230. },
  31231. back: {
  31232. height: math.unit(5 + 7.5 / 12, "feet"),
  31233. weight: math.unit(120, "lb"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/digi-duncan/back.svg",
  31237. extra: 330 / 326,
  31238. bottom: 12 / 342
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Speck",
  31245. height: math.unit(0.25, "mm")
  31246. },
  31247. {
  31248. name: "Micro",
  31249. height: math.unit(5, "mm")
  31250. },
  31251. {
  31252. name: "Tiny",
  31253. height: math.unit(0.5, "inches"),
  31254. default: true
  31255. },
  31256. {
  31257. name: "Human",
  31258. height: math.unit(5 + 7.5 / 12, "feet")
  31259. },
  31260. {
  31261. name: "Minigiant",
  31262. height: math.unit(8 + 5.25, "feet")
  31263. },
  31264. {
  31265. name: "Giant",
  31266. height: math.unit(2000, "feet")
  31267. },
  31268. {
  31269. name: "Mega",
  31270. height: math.unit(371.1, "miles")
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(2, "meters"),
  31279. weight: math.unit(350, "kg"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31283. extra: 898 / 838,
  31284. bottom: 9 / 907
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Micro",
  31291. height: math.unit(8, "meters")
  31292. },
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(50, "meters"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(500, "meters")
  31301. },
  31302. ]
  31303. ))
  31304. characterMakers.push(() => makeCharacter(
  31305. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31306. {
  31307. front: {
  31308. height: math.unit(6 + 6 / 12, "feet"),
  31309. name: "Front",
  31310. image: {
  31311. source: "./media/characters/khardesh/front.svg",
  31312. extra: 1788/1596,
  31313. bottom: 66/1854
  31314. }
  31315. },
  31316. back: {
  31317. height: math.unit(6 + 6 / 12, "feet"),
  31318. name: "Back",
  31319. image: {
  31320. source: "./media/characters/khardesh/back.svg",
  31321. extra: 1781/1584,
  31322. bottom: 68/1849
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Normal",
  31329. height: math.unit(6 + 6 / 12, "feet"),
  31330. default: true
  31331. },
  31332. {
  31333. name: "Normal+",
  31334. height: math.unit(4, "meters")
  31335. },
  31336. {
  31337. name: "Macro",
  31338. height: math.unit(50, "meters")
  31339. },
  31340. {
  31341. name: "Macro+",
  31342. height: math.unit(100, "meters")
  31343. },
  31344. {
  31345. name: "Megamacro",
  31346. height: math.unit(20, "km")
  31347. },
  31348. ]
  31349. ))
  31350. characterMakers.push(() => makeCharacter(
  31351. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31352. {
  31353. front: {
  31354. height: math.unit(6, "feet"),
  31355. weight: math.unit(150, "lb"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/kosho/front.svg",
  31359. extra: 1847 / 1847,
  31360. bottom: 86 / 1933
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Second-stage micro",
  31367. height: math.unit(0.5, "inches")
  31368. },
  31369. {
  31370. name: "First-stage micro",
  31371. height: math.unit(6, "inches")
  31372. },
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(6, "feet"),
  31376. default: true
  31377. },
  31378. {
  31379. name: "First-stage macro",
  31380. height: math.unit(72, "feet")
  31381. },
  31382. {
  31383. name: "Second-stage macro",
  31384. height: math.unit(864, "feet")
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31390. {
  31391. normal: {
  31392. height: math.unit(4 + 6 / 12, "feet"),
  31393. name: "Normal",
  31394. image: {
  31395. source: "./media/characters/hydra/normal.svg",
  31396. extra: 2833 / 2634,
  31397. bottom: 68 / 2901
  31398. }
  31399. },
  31400. smol: {
  31401. height: math.unit(0.705, "inches"),
  31402. name: "Smol",
  31403. image: {
  31404. source: "./media/characters/hydra/smol.svg",
  31405. extra: 2715 / 2540,
  31406. bottom: 0 / 2715
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Normal",
  31413. height: math.unit(4 + 6 / 12, "feet"),
  31414. default: true
  31415. }
  31416. ]
  31417. ))
  31418. characterMakers.push(() => makeCharacter(
  31419. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31420. {
  31421. front: {
  31422. height: math.unit(0.6, "cm"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/daz/front.svg",
  31426. extra: 1682 / 1164,
  31427. bottom: 42 / 1724
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(0.6, "cm"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31441. {
  31442. front: {
  31443. height: math.unit(6, "feet"),
  31444. weight: math.unit(235, "lb"),
  31445. name: "Front",
  31446. image: {
  31447. source: "./media/characters/theo-pangolin/front.svg",
  31448. extra: 1996 / 1969,
  31449. bottom: 115 / 2111
  31450. }
  31451. },
  31452. back: {
  31453. height: math.unit(6, "feet"),
  31454. weight: math.unit(235, "lb"),
  31455. name: "Back",
  31456. image: {
  31457. source: "./media/characters/theo-pangolin/back.svg",
  31458. extra: 1979 / 1979,
  31459. bottom: 40 / 2019
  31460. }
  31461. },
  31462. feral: {
  31463. height: math.unit(2, "feet"),
  31464. weight: math.unit(30, "lb"),
  31465. name: "Feral",
  31466. image: {
  31467. source: "./media/characters/theo-pangolin/feral.svg",
  31468. extra: 803 / 791,
  31469. bottom: 181 / 984
  31470. }
  31471. },
  31472. footFive: {
  31473. height: math.unit(1.43, "feet"),
  31474. name: "Foot (Five Toes)",
  31475. image: {
  31476. source: "./media/characters/theo-pangolin/foot-five.svg"
  31477. }
  31478. },
  31479. footFour: {
  31480. height: math.unit(1.43, "feet"),
  31481. name: "Foot (Four Toes)",
  31482. image: {
  31483. source: "./media/characters/theo-pangolin/foot-four.svg"
  31484. }
  31485. },
  31486. handFour: {
  31487. height: math.unit(0.81, "feet"),
  31488. name: "Hand (Four Fingers)",
  31489. image: {
  31490. source: "./media/characters/theo-pangolin/hand-four.svg"
  31491. }
  31492. },
  31493. handThree: {
  31494. height: math.unit(0.81, "feet"),
  31495. name: "Hand (Three Fingers)",
  31496. image: {
  31497. source: "./media/characters/theo-pangolin/hand-three.svg"
  31498. }
  31499. },
  31500. headFront: {
  31501. height: math.unit(1.37, "feet"),
  31502. name: "Head (Front)",
  31503. image: {
  31504. source: "./media/characters/theo-pangolin/head-front.svg"
  31505. }
  31506. },
  31507. headSide: {
  31508. height: math.unit(1.43, "feet"),
  31509. name: "Head (Side)",
  31510. image: {
  31511. source: "./media/characters/theo-pangolin/head-side.svg"
  31512. }
  31513. },
  31514. tongue: {
  31515. height: math.unit(2.29, "feet"),
  31516. name: "Tongue",
  31517. image: {
  31518. source: "./media/characters/theo-pangolin/tongue.svg"
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(6, "feet")
  31526. },
  31527. {
  31528. name: "Macro",
  31529. height: math.unit(400, "feet"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(6, "inches"),
  31539. weight: math.unit(0.036, "kg"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/renée/front.svg",
  31543. extra: 900 / 886,
  31544. bottom: 8 / 908
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Nano",
  31551. height: math.unit(1, "nm")
  31552. },
  31553. {
  31554. name: "Micro",
  31555. height: math.unit(1, "mm")
  31556. },
  31557. {
  31558. name: "Normal",
  31559. height: math.unit(6, "inches")
  31560. },
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(2000, "feet"),
  31564. default: true
  31565. },
  31566. {
  31567. name: "Megamacro",
  31568. height: math.unit(2, "km")
  31569. },
  31570. {
  31571. name: "Gigamacro",
  31572. height: math.unit(2000, "km")
  31573. },
  31574. {
  31575. name: "Teramacro",
  31576. height: math.unit(250000, "km")
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(4, "meters"),
  31585. weight: math.unit(150, "kg"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/caledvwlch/front.svg",
  31589. extra: 1760 / 1551,
  31590. bottom: 28 / 1788
  31591. }
  31592. },
  31593. side: {
  31594. height: math.unit(4, "meters"),
  31595. weight: math.unit(150, "kg"),
  31596. name: "Side",
  31597. image: {
  31598. source: "./media/characters/caledvwlch/side.svg",
  31599. extra: 1605 / 1536,
  31600. bottom: 31 / 1636
  31601. }
  31602. },
  31603. back: {
  31604. height: math.unit(4, "meters"),
  31605. weight: math.unit(150, "kg"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/caledvwlch/back.svg",
  31609. extra: 1635 / 1565,
  31610. bottom: 27 / 1662
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "\"Incognito\"",
  31617. height: math.unit(4, "meters")
  31618. },
  31619. {
  31620. name: "Small rampage",
  31621. height: math.unit(600, "meters")
  31622. },
  31623. {
  31624. name: "Mega",
  31625. height: math.unit(30, "km")
  31626. },
  31627. {
  31628. name: "Home-size",
  31629. height: math.unit(50, "km"),
  31630. default: true
  31631. },
  31632. {
  31633. name: "Giga",
  31634. height: math.unit(300, "km")
  31635. },
  31636. {
  31637. name: "Lounging",
  31638. height: math.unit(11000, "km")
  31639. },
  31640. {
  31641. name: "Planet snacking",
  31642. height: math.unit(2000000, "km")
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(6, "feet"),
  31651. weight: math.unit(215, "lb"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/sapphire-svell/front.svg",
  31655. extra: 495 / 455,
  31656. bottom: 20 / 515
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(6, "feet"),
  31661. weight: math.unit(216, "lb"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/sapphire-svell/back.svg",
  31665. extra: 497 / 477,
  31666. bottom: 7 / 504
  31667. }
  31668. },
  31669. maw: {
  31670. height: math.unit(1.57, "feet"),
  31671. name: "Maw",
  31672. image: {
  31673. source: "./media/characters/sapphire-svell/maw.svg"
  31674. }
  31675. },
  31676. foot: {
  31677. height: math.unit(1.07, "feet"),
  31678. name: "Foot",
  31679. image: {
  31680. source: "./media/characters/sapphire-svell/foot.svg"
  31681. }
  31682. },
  31683. toering: {
  31684. height: math.unit(1.7, "inch"),
  31685. name: "Toering",
  31686. image: {
  31687. source: "./media/characters/sapphire-svell/toering.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(300, "feet"),
  31695. default: true
  31696. },
  31697. {
  31698. name: "Augmented",
  31699. height: math.unit(1250, "feet")
  31700. },
  31701. {
  31702. name: "Unleashed",
  31703. height: math.unit(3000, "feet")
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31709. {
  31710. side: {
  31711. height: math.unit(2 + 3 / 12, "feet"),
  31712. weight: math.unit(110, "lb"),
  31713. name: "Side",
  31714. image: {
  31715. source: "./media/characters/glitch-flux/side.svg",
  31716. extra: 997 / 805,
  31717. bottom: 20 / 1017
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Normal",
  31724. height: math.unit(2 + 3 / 12, "feet"),
  31725. default: true
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(4, "meters"),
  31734. name: "Front",
  31735. image: {
  31736. source: "./media/characters/mid/front.svg",
  31737. extra: 507 / 476,
  31738. bottom: 17 / 524
  31739. }
  31740. },
  31741. back: {
  31742. height: math.unit(4, "meters"),
  31743. name: "Back",
  31744. image: {
  31745. source: "./media/characters/mid/back.svg",
  31746. extra: 519 / 487,
  31747. bottom: 7 / 526
  31748. }
  31749. },
  31750. stuck: {
  31751. height: math.unit(2.2, "meters"),
  31752. name: "Stuck",
  31753. image: {
  31754. source: "./media/characters/mid/stuck.svg",
  31755. extra: 1951 / 1869,
  31756. bottom: 88 / 2039
  31757. }
  31758. }
  31759. },
  31760. [
  31761. {
  31762. name: "Normal",
  31763. height: math.unit(4, "meters"),
  31764. default: true
  31765. },
  31766. {
  31767. name: "Big",
  31768. height: math.unit(10, "meters")
  31769. },
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(800, "meters")
  31773. },
  31774. {
  31775. name: "Megamacro",
  31776. height: math.unit(100, "km")
  31777. },
  31778. {
  31779. name: "Overgrown",
  31780. height: math.unit(1, "parsec")
  31781. },
  31782. ]
  31783. ))
  31784. characterMakers.push(() => makeCharacter(
  31785. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31786. {
  31787. front: {
  31788. height: math.unit(2.5, "meters"),
  31789. weight: math.unit(225, "kg"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/iris/front.svg",
  31793. extra: 3348 / 3251,
  31794. bottom: 205 / 3553
  31795. }
  31796. },
  31797. maw: {
  31798. height: math.unit(0.56, "meter"),
  31799. name: "Maw",
  31800. image: {
  31801. source: "./media/characters/iris/maw.svg"
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Mewter cat",
  31808. height: math.unit(1.2, "meters")
  31809. },
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(2.5, "meters"),
  31813. default: true
  31814. },
  31815. {
  31816. name: "Minimacro",
  31817. height: math.unit(18, "feet")
  31818. },
  31819. {
  31820. name: "Macro",
  31821. height: math.unit(140, "feet")
  31822. },
  31823. {
  31824. name: "Macro+",
  31825. height: math.unit(180, "meters")
  31826. },
  31827. {
  31828. name: "Megamacro",
  31829. height: math.unit(2746, "meters")
  31830. },
  31831. ]
  31832. ))
  31833. characterMakers.push(() => makeCharacter(
  31834. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31835. {
  31836. front: {
  31837. height: math.unit(6, "feet"),
  31838. weight: math.unit(135, "lb"),
  31839. name: "Front",
  31840. image: {
  31841. source: "./media/characters/axel/front.svg",
  31842. extra: 908 / 908,
  31843. bottom: 58 / 966
  31844. }
  31845. },
  31846. side: {
  31847. height: math.unit(6, "feet"),
  31848. weight: math.unit(135, "lb"),
  31849. name: "Side",
  31850. image: {
  31851. source: "./media/characters/axel/side.svg",
  31852. extra: 958 / 958,
  31853. bottom: 11 / 969
  31854. }
  31855. },
  31856. back: {
  31857. height: math.unit(6, "feet"),
  31858. weight: math.unit(135, "lb"),
  31859. name: "Back",
  31860. image: {
  31861. source: "./media/characters/axel/back.svg",
  31862. extra: 887 / 887,
  31863. bottom: 34 / 921
  31864. }
  31865. },
  31866. head: {
  31867. height: math.unit(1.07, "feet"),
  31868. name: "Head",
  31869. image: {
  31870. source: "./media/characters/axel/head.svg"
  31871. }
  31872. },
  31873. beak: {
  31874. height: math.unit(1.4, "feet"),
  31875. name: "Beak",
  31876. image: {
  31877. source: "./media/characters/axel/beak.svg"
  31878. }
  31879. },
  31880. beakSide: {
  31881. height: math.unit(1.4, "feet"),
  31882. name: "Beak Side",
  31883. image: {
  31884. source: "./media/characters/axel/beak-side.svg"
  31885. }
  31886. },
  31887. sheath: {
  31888. height: math.unit(0.5, "feet"),
  31889. name: "Sheath",
  31890. image: {
  31891. source: "./media/characters/axel/sheath.svg"
  31892. }
  31893. },
  31894. dick: {
  31895. height: math.unit(0.98, "feet"),
  31896. name: "Dick",
  31897. image: {
  31898. source: "./media/characters/axel/dick.svg"
  31899. }
  31900. },
  31901. },
  31902. [
  31903. {
  31904. name: "Macro",
  31905. height: math.unit(68, "meters"),
  31906. default: true
  31907. },
  31908. ]
  31909. ))
  31910. characterMakers.push(() => makeCharacter(
  31911. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31912. {
  31913. front: {
  31914. height: math.unit(3.5, "meters"),
  31915. weight: math.unit(1200, "kg"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/joanna/front.svg",
  31919. extra: 1596 / 1488,
  31920. bottom: 29 / 1625
  31921. }
  31922. },
  31923. back: {
  31924. height: math.unit(3.5, "meters"),
  31925. weight: math.unit(1200, "kg"),
  31926. name: "Back",
  31927. image: {
  31928. source: "./media/characters/joanna/back.svg",
  31929. extra: 1594 / 1495,
  31930. bottom: 26 / 1620
  31931. }
  31932. },
  31933. frontShorts: {
  31934. height: math.unit(3.5, "meters"),
  31935. weight: math.unit(1200, "kg"),
  31936. name: "Front (Shorts)",
  31937. image: {
  31938. source: "./media/characters/joanna/front-shorts.svg",
  31939. extra: 1596 / 1488,
  31940. bottom: 29 / 1625
  31941. }
  31942. },
  31943. frontBiker: {
  31944. height: math.unit(3.5, "meters"),
  31945. weight: math.unit(1200, "kg"),
  31946. name: "Front (Biker)",
  31947. image: {
  31948. source: "./media/characters/joanna/front-biker.svg",
  31949. extra: 1596 / 1488,
  31950. bottom: 29 / 1625
  31951. }
  31952. },
  31953. backBiker: {
  31954. height: math.unit(3.5, "meters"),
  31955. weight: math.unit(1200, "kg"),
  31956. name: "Back (Biker)",
  31957. image: {
  31958. source: "./media/characters/joanna/back-biker.svg",
  31959. extra: 1594 / 1495,
  31960. bottom: 88 / 1682
  31961. }
  31962. },
  31963. bikeLeft: {
  31964. height: math.unit(2.4, "meters"),
  31965. weight: math.unit(1600, "kg"),
  31966. name: "Bike (Left)",
  31967. image: {
  31968. source: "./media/characters/joanna/bike-left.svg",
  31969. extra: 720 / 720,
  31970. bottom: 8 / 728
  31971. }
  31972. },
  31973. bikeRight: {
  31974. height: math.unit(2.4, "meters"),
  31975. weight: math.unit(1600, "kg"),
  31976. name: "Bike (Right)",
  31977. image: {
  31978. source: "./media/characters/joanna/bike-right.svg",
  31979. extra: 720 / 720,
  31980. bottom: 8 / 728
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Incognito",
  31987. height: math.unit(3.5, "meters")
  31988. },
  31989. {
  31990. name: "Casual Big",
  31991. height: math.unit(200, "meters")
  31992. },
  31993. {
  31994. name: "Macro",
  31995. height: math.unit(600, "meters")
  31996. },
  31997. {
  31998. name: "Original",
  31999. height: math.unit(20, "km"),
  32000. default: true
  32001. },
  32002. {
  32003. name: "Giga",
  32004. height: math.unit(400, "km")
  32005. },
  32006. {
  32007. name: "Lounging",
  32008. height: math.unit(1500, "km")
  32009. },
  32010. {
  32011. name: "Planetary",
  32012. height: math.unit(200000, "km")
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(6, "feet"),
  32021. weight: math.unit(150, "lb"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/hugo-sigil/front.svg",
  32025. extra: 522 / 500,
  32026. bottom: 2 / 524
  32027. }
  32028. },
  32029. back: {
  32030. height: math.unit(6, "feet"),
  32031. weight: math.unit(150, "lb"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/hugo-sigil/back.svg",
  32035. extra: 519 / 495,
  32036. bottom: 5 / 524
  32037. }
  32038. },
  32039. maw: {
  32040. height: math.unit(1.4, "feet"),
  32041. weight: math.unit(150, "lb"),
  32042. name: "Maw",
  32043. image: {
  32044. source: "./media/characters/hugo-sigil/maw.svg"
  32045. }
  32046. },
  32047. feet: {
  32048. height: math.unit(1.56, "feet"),
  32049. weight: math.unit(150, "lb"),
  32050. name: "Feet",
  32051. image: {
  32052. source: "./media/characters/hugo-sigil/feet.svg",
  32053. extra: 177 / 177,
  32054. bottom: 12 / 189
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(6, "feet")
  32062. },
  32063. {
  32064. name: "Macro",
  32065. height: math.unit(200, "feet"),
  32066. default: true
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32072. {
  32073. front: {
  32074. height: math.unit(6, "feet"),
  32075. weight: math.unit(150, "lb"),
  32076. name: "Front",
  32077. image: {
  32078. source: "./media/characters/peri/front.svg",
  32079. extra: 2354 / 2233,
  32080. bottom: 49 / 2403
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Really Small",
  32087. height: math.unit(1, "nm")
  32088. },
  32089. {
  32090. name: "Micro",
  32091. height: math.unit(4, "inches")
  32092. },
  32093. {
  32094. name: "Normal",
  32095. height: math.unit(7, "inches"),
  32096. default: true
  32097. },
  32098. {
  32099. name: "Macro",
  32100. height: math.unit(400, "feet")
  32101. },
  32102. {
  32103. name: "Megamacro",
  32104. height: math.unit(100, "miles")
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32110. {
  32111. frontSlim: {
  32112. height: math.unit(7, "feet"),
  32113. name: "Front (Slim)",
  32114. image: {
  32115. source: "./media/characters/issilora/front-slim.svg",
  32116. extra: 529 / 449,
  32117. bottom: 53 / 582
  32118. }
  32119. },
  32120. sideSlim: {
  32121. height: math.unit(7, "feet"),
  32122. name: "Side (Slim)",
  32123. image: {
  32124. source: "./media/characters/issilora/side-slim.svg",
  32125. extra: 570 / 480,
  32126. bottom: 30 / 600
  32127. }
  32128. },
  32129. backSlim: {
  32130. height: math.unit(7, "feet"),
  32131. name: "Back (Slim)",
  32132. image: {
  32133. source: "./media/characters/issilora/back-slim.svg",
  32134. extra: 537 / 455,
  32135. bottom: 46 / 583
  32136. }
  32137. },
  32138. frontBuff: {
  32139. height: math.unit(7, "feet"),
  32140. name: "Front (Buff)",
  32141. image: {
  32142. source: "./media/characters/issilora/front-buff.svg",
  32143. extra: 2310 / 2035,
  32144. bottom: 335 / 2645
  32145. }
  32146. },
  32147. head: {
  32148. height: math.unit(1.94, "feet"),
  32149. name: "Head",
  32150. image: {
  32151. source: "./media/characters/issilora/head.svg"
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Minimum",
  32158. height: math.unit(7, "feet")
  32159. },
  32160. {
  32161. name: "Comfortable",
  32162. height: math.unit(17, "feet")
  32163. },
  32164. {
  32165. name: "Fun Size",
  32166. height: math.unit(47, "feet")
  32167. },
  32168. {
  32169. name: "Natural Macro",
  32170. height: math.unit(137, "feet"),
  32171. default: true
  32172. },
  32173. {
  32174. name: "Maximum Kaiju",
  32175. height: math.unit(397, "feet")
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32181. {
  32182. front: {
  32183. height: math.unit(50 + 9/12, "feet"),
  32184. weight: math.unit(32.8, "tons"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/irb'iiritaahn/front.svg",
  32188. extra: 1878/1826,
  32189. bottom: 326/2204
  32190. }
  32191. },
  32192. back: {
  32193. height: math.unit(50 + 9/12, "feet"),
  32194. weight: math.unit(32.8, "tons"),
  32195. name: "Back",
  32196. image: {
  32197. source: "./media/characters/irb'iiritaahn/back.svg",
  32198. extra: 2052/2018,
  32199. bottom: 152/2204
  32200. }
  32201. },
  32202. head: {
  32203. height: math.unit(12.86, "feet"),
  32204. name: "Head",
  32205. image: {
  32206. source: "./media/characters/irb'iiritaahn/head.svg"
  32207. }
  32208. },
  32209. maw: {
  32210. height: math.unit(9.66, "feet"),
  32211. name: "Maw",
  32212. image: {
  32213. source: "./media/characters/irb'iiritaahn/maw.svg"
  32214. }
  32215. },
  32216. frontDick: {
  32217. height: math.unit(8.78461, "feet"),
  32218. name: "Front Dick",
  32219. image: {
  32220. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32221. }
  32222. },
  32223. rearDick: {
  32224. height: math.unit(8.78461, "feet"),
  32225. name: "Rear Dick",
  32226. image: {
  32227. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32228. }
  32229. },
  32230. rearDickUnfolded: {
  32231. height: math.unit(8.78, "feet"),
  32232. name: "Rear Dick (Unfolded)",
  32233. image: {
  32234. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32235. }
  32236. },
  32237. wings: {
  32238. height: math.unit(43, "feet"),
  32239. name: "Wings",
  32240. image: {
  32241. source: "./media/characters/irb'iiritaahn/wings.svg"
  32242. }
  32243. },
  32244. },
  32245. [
  32246. {
  32247. name: "Macro",
  32248. height: math.unit(50 + 9/12, "feet"),
  32249. default: true
  32250. },
  32251. ]
  32252. ))
  32253. characterMakers.push(() => makeCharacter(
  32254. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32255. {
  32256. front: {
  32257. height: math.unit(205, "cm"),
  32258. weight: math.unit(102, "kg"),
  32259. name: "Front",
  32260. image: {
  32261. source: "./media/characters/irbisgreif/front.svg",
  32262. extra: 785/706,
  32263. bottom: 13/798
  32264. }
  32265. },
  32266. back: {
  32267. height: math.unit(205, "cm"),
  32268. weight: math.unit(102, "kg"),
  32269. name: "Back",
  32270. image: {
  32271. source: "./media/characters/irbisgreif/back.svg",
  32272. extra: 713/701,
  32273. bottom: 26/739
  32274. }
  32275. },
  32276. frontDressed: {
  32277. height: math.unit(216, "cm"),
  32278. weight: math.unit(102, "kg"),
  32279. name: "Front-dressed",
  32280. image: {
  32281. source: "./media/characters/irbisgreif/front-dressed.svg",
  32282. extra: 902/776,
  32283. bottom: 14/916
  32284. }
  32285. },
  32286. sideDressed: {
  32287. height: math.unit(195, "cm"),
  32288. weight: math.unit(102, "kg"),
  32289. name: "Side-dressed",
  32290. image: {
  32291. source: "./media/characters/irbisgreif/side-dressed.svg",
  32292. extra: 788/688,
  32293. bottom: 21/809
  32294. }
  32295. },
  32296. backDressed: {
  32297. height: math.unit(216, "cm"),
  32298. weight: math.unit(102, "kg"),
  32299. name: "Back-dressed",
  32300. image: {
  32301. source: "./media/characters/irbisgreif/back-dressed.svg",
  32302. extra: 901/783,
  32303. bottom: 10/911
  32304. }
  32305. },
  32306. dick: {
  32307. height: math.unit(0.49, "feet"),
  32308. name: "Dick",
  32309. image: {
  32310. source: "./media/characters/irbisgreif/dick.svg"
  32311. }
  32312. },
  32313. wingTop: {
  32314. height: math.unit(1.93 , "feet"),
  32315. name: "Wing-top",
  32316. image: {
  32317. source: "./media/characters/irbisgreif/wing-top.svg"
  32318. }
  32319. },
  32320. wingBottom: {
  32321. height: math.unit(1.93 , "feet"),
  32322. name: "Wing-bottom",
  32323. image: {
  32324. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(216, "cm"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(6, "feet"),
  32341. weight: math.unit(150, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/pride/front.svg",
  32345. extra: 1299/1230,
  32346. bottom: 18/1317
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Normal",
  32353. height: math.unit(7, "feet")
  32354. },
  32355. {
  32356. name: "Mini-macro",
  32357. height: math.unit(11, "feet")
  32358. },
  32359. {
  32360. name: "Macro",
  32361. height: math.unit(15, "meters"),
  32362. default: true
  32363. },
  32364. {
  32365. name: "Macro+",
  32366. height: math.unit(40, "meters")
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32372. {
  32373. front: {
  32374. height: math.unit(4 + 2 / 12, "feet"),
  32375. weight: math.unit(95, "lb"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/vaelophis-nyx/front.svg",
  32379. extra: 2532/2330,
  32380. bottom: 0/2532
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(4 + 2 / 12, "feet"),
  32385. weight: math.unit(95, "lb"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/vaelophis-nyx/back.svg",
  32389. extra: 2484/2361,
  32390. bottom: 0/2484
  32391. }
  32392. },
  32393. feralSide: {
  32394. height: math.unit(2 + 1/12, "feet"),
  32395. weight: math.unit(20, "lb"),
  32396. name: "Feral (Side)",
  32397. image: {
  32398. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32399. extra: 1721/1581,
  32400. bottom: 70/1791
  32401. }
  32402. },
  32403. feralLazing: {
  32404. height: math.unit(1.08, "feet"),
  32405. weight: math.unit(20, "lb"),
  32406. name: "Feral (Lazing)",
  32407. image: {
  32408. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32409. extra: 822/822,
  32410. bottom: 248/1070
  32411. }
  32412. },
  32413. ear: {
  32414. height: math.unit(0.416, "feet"),
  32415. name: "Ear",
  32416. image: {
  32417. source: "./media/characters/vaelophis-nyx/ear.svg"
  32418. }
  32419. },
  32420. eye: {
  32421. height: math.unit(0.0748, "feet"),
  32422. name: "Eye",
  32423. image: {
  32424. source: "./media/characters/vaelophis-nyx/eye.svg"
  32425. }
  32426. },
  32427. mouth: {
  32428. height: math.unit(0.378, "feet"),
  32429. name: "Mouth",
  32430. image: {
  32431. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32432. }
  32433. },
  32434. spade: {
  32435. height: math.unit(0.55, "feet"),
  32436. name: "Spade",
  32437. image: {
  32438. source: "./media/characters/vaelophis-nyx/spade.svg"
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Normal",
  32445. height: math.unit(4 + 2/12, "feet"),
  32446. default: true
  32447. },
  32448. ]
  32449. ))
  32450. characterMakers.push(() => makeCharacter(
  32451. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32452. {
  32453. front: {
  32454. height: math.unit(7, "feet"),
  32455. weight: math.unit(231, "lb"),
  32456. name: "Front",
  32457. image: {
  32458. source: "./media/characters/flux/front.svg",
  32459. extra: 919/871,
  32460. bottom: 0/919
  32461. }
  32462. },
  32463. back: {
  32464. height: math.unit(7, "feet"),
  32465. weight: math.unit(231, "lb"),
  32466. name: "Back",
  32467. image: {
  32468. source: "./media/characters/flux/back.svg",
  32469. extra: 1040/992,
  32470. bottom: 0/1040
  32471. }
  32472. },
  32473. frontDressed: {
  32474. height: math.unit(7, "feet"),
  32475. weight: math.unit(231, "lb"),
  32476. name: "Front (Dressed)",
  32477. image: {
  32478. source: "./media/characters/flux/front-dressed.svg",
  32479. extra: 919/871,
  32480. bottom: 0/919
  32481. }
  32482. },
  32483. feralSide: {
  32484. height: math.unit(5, "feet"),
  32485. weight: math.unit(150, "lb"),
  32486. name: "Feral (Side)",
  32487. image: {
  32488. source: "./media/characters/flux/feral-side.svg",
  32489. extra: 598/528,
  32490. bottom: 28/626
  32491. }
  32492. },
  32493. head: {
  32494. height: math.unit(1.585, "feet"),
  32495. name: "Head",
  32496. image: {
  32497. source: "./media/characters/flux/head.svg"
  32498. }
  32499. },
  32500. headSide: {
  32501. height: math.unit(1.74, "feet"),
  32502. name: "Head (Side)",
  32503. image: {
  32504. source: "./media/characters/flux/head-side.svg"
  32505. }
  32506. },
  32507. headSideFire: {
  32508. height: math.unit(1.76, "feet"),
  32509. name: "Head (Side, Fire)",
  32510. image: {
  32511. source: "./media/characters/flux/head-side-fire.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(7, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(9, "feet"),
  32528. weight: math.unit(1012, "lb"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/ulfra-lupae/front.svg",
  32532. extra: 1083/1011,
  32533. bottom: 67/1150
  32534. }
  32535. },
  32536. },
  32537. [
  32538. {
  32539. name: "Micro",
  32540. height: math.unit(6, "inches")
  32541. },
  32542. {
  32543. name: "Socializing",
  32544. height: math.unit(6 + 5/12, "feet")
  32545. },
  32546. {
  32547. name: "Normal",
  32548. height: math.unit(9, "feet"),
  32549. default: true
  32550. },
  32551. {
  32552. name: "Macro",
  32553. height: math.unit(150, "feet")
  32554. },
  32555. ]
  32556. ))
  32557. characterMakers.push(() => makeCharacter(
  32558. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32559. {
  32560. front: {
  32561. height: math.unit(5 + 2/12, "feet"),
  32562. weight: math.unit(120, "lb"),
  32563. name: "Front",
  32564. image: {
  32565. source: "./media/characters/timber/front.svg",
  32566. extra: 2814/2705,
  32567. bottom: 181/2995
  32568. }
  32569. },
  32570. },
  32571. [
  32572. {
  32573. name: "Normal",
  32574. height: math.unit(5 + 2/12, "feet"),
  32575. default: true
  32576. },
  32577. ]
  32578. ))
  32579. characterMakers.push(() => makeCharacter(
  32580. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32581. {
  32582. front: {
  32583. height: math.unit(9, "feet"),
  32584. name: "Front",
  32585. image: {
  32586. source: "./media/characters/nicki/front.svg",
  32587. extra: 1240/990,
  32588. bottom: 45/1285
  32589. },
  32590. form: "anthro",
  32591. default: true
  32592. },
  32593. side: {
  32594. height: math.unit(9, "feet"),
  32595. name: "Side",
  32596. image: {
  32597. source: "./media/characters/nicki/side.svg",
  32598. extra: 1047/973,
  32599. bottom: 61/1108
  32600. },
  32601. form: "anthro"
  32602. },
  32603. back: {
  32604. height: math.unit(9, "feet"),
  32605. name: "Back",
  32606. image: {
  32607. source: "./media/characters/nicki/back.svg",
  32608. extra: 1006/965,
  32609. bottom: 39/1045
  32610. },
  32611. form: "anthro"
  32612. },
  32613. taur: {
  32614. height: math.unit(15, "feet"),
  32615. name: "Taur",
  32616. image: {
  32617. source: "./media/characters/nicki/taur.svg",
  32618. extra: 1592/1347,
  32619. bottom: 0/1592
  32620. },
  32621. form: "taur",
  32622. default: true
  32623. },
  32624. },
  32625. [
  32626. {
  32627. name: "Normal",
  32628. height: math.unit(9, "feet"),
  32629. form: "anthro",
  32630. default: true
  32631. },
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(15, "feet"),
  32635. form: "taur",
  32636. default: true
  32637. }
  32638. ],
  32639. {
  32640. "anthro": {
  32641. name: "Anthro",
  32642. default: true
  32643. },
  32644. "taur": {
  32645. name: "Taur"
  32646. }
  32647. }
  32648. ))
  32649. characterMakers.push(() => makeCharacter(
  32650. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32651. {
  32652. front: {
  32653. height: math.unit(7 + 10/12, "feet"),
  32654. weight: math.unit(3.5, "tons"),
  32655. name: "Front",
  32656. image: {
  32657. source: "./media/characters/lee/front.svg",
  32658. extra: 1773/1615,
  32659. bottom: 86/1859
  32660. }
  32661. },
  32662. hand: {
  32663. height: math.unit(1.78, "feet"),
  32664. name: "Hand",
  32665. image: {
  32666. source: "./media/characters/lee/hand.svg"
  32667. }
  32668. },
  32669. maw: {
  32670. height: math.unit(1.18, "feet"),
  32671. name: "Maw",
  32672. image: {
  32673. source: "./media/characters/lee/maw.svg"
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Normal",
  32680. height: math.unit(7 + 10/12, "feet"),
  32681. default: true
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32687. {
  32688. front: {
  32689. height: math.unit(9, "feet"),
  32690. name: "Front",
  32691. image: {
  32692. source: "./media/characters/guti/front.svg",
  32693. extra: 4551/4355,
  32694. bottom: 123/4674
  32695. }
  32696. },
  32697. tongue: {
  32698. height: math.unit(1, "feet"),
  32699. name: "Tongue",
  32700. image: {
  32701. source: "./media/characters/guti/tongue.svg"
  32702. }
  32703. },
  32704. paw: {
  32705. height: math.unit(1.18, "feet"),
  32706. name: "Paw",
  32707. image: {
  32708. source: "./media/characters/guti/paw.svg"
  32709. }
  32710. },
  32711. },
  32712. [
  32713. {
  32714. name: "Normal",
  32715. height: math.unit(9, "feet"),
  32716. default: true
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32722. {
  32723. side: {
  32724. height: math.unit(5, "meters"),
  32725. name: "Side",
  32726. image: {
  32727. source: "./media/characters/vesper/side.svg",
  32728. extra: 1605/1518,
  32729. bottom: 0/1605
  32730. }
  32731. },
  32732. },
  32733. [
  32734. {
  32735. name: "Small",
  32736. height: math.unit(5, "meters")
  32737. },
  32738. {
  32739. name: "Sage",
  32740. height: math.unit(100, "meters"),
  32741. default: true
  32742. },
  32743. {
  32744. name: "Fun Size",
  32745. height: math.unit(600, "meters")
  32746. },
  32747. {
  32748. name: "Goddess",
  32749. height: math.unit(20000, "km")
  32750. },
  32751. {
  32752. name: "Maximum",
  32753. height: math.unit(5, "galaxies")
  32754. },
  32755. ]
  32756. ))
  32757. characterMakers.push(() => makeCharacter(
  32758. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32759. {
  32760. front: {
  32761. height: math.unit(6 + 3/12, "feet"),
  32762. weight: math.unit(190, "lb"),
  32763. name: "Front",
  32764. image: {
  32765. source: "./media/characters/gawain/front.svg",
  32766. extra: 2222/2139,
  32767. bottom: 90/2312
  32768. }
  32769. },
  32770. back: {
  32771. height: math.unit(6 + 3/12, "feet"),
  32772. weight: math.unit(190, "lb"),
  32773. name: "Back",
  32774. image: {
  32775. source: "./media/characters/gawain/back.svg",
  32776. extra: 2199/2111,
  32777. bottom: 73/2272
  32778. }
  32779. },
  32780. },
  32781. [
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(6 + 3/12, "feet"),
  32785. default: true
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32791. {
  32792. side: {
  32793. height: math.unit(3.5, "meters"),
  32794. weight: math.unit(16000, "lb"),
  32795. name: "Side",
  32796. image: {
  32797. source: "./media/characters/dascalti/side.svg",
  32798. extra: 392/273,
  32799. bottom: 47/439
  32800. }
  32801. },
  32802. breath: {
  32803. height: math.unit(7.4, "feet"),
  32804. name: "Breath",
  32805. image: {
  32806. source: "./media/characters/dascalti/breath.svg"
  32807. }
  32808. },
  32809. fed: {
  32810. height: math.unit(3.6, "meters"),
  32811. weight: math.unit(16000, "lb"),
  32812. name: "Fed",
  32813. image: {
  32814. source: "./media/characters/dascalti/fed.svg",
  32815. extra: 1419/820,
  32816. bottom: 95/1514
  32817. }
  32818. },
  32819. },
  32820. [
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(3.5, "meters"),
  32824. default: true
  32825. },
  32826. ]
  32827. ))
  32828. characterMakers.push(() => makeCharacter(
  32829. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32830. {
  32831. front: {
  32832. height: math.unit(3 + 5/12, "feet"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/mauve/front.svg",
  32836. extra: 1126/1033,
  32837. bottom: 65/1191
  32838. }
  32839. },
  32840. side: {
  32841. height: math.unit(3 + 5/12, "feet"),
  32842. name: "Side",
  32843. image: {
  32844. source: "./media/characters/mauve/side.svg",
  32845. extra: 1089/1001,
  32846. bottom: 29/1118
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(3 + 5/12, "feet"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/mauve/back.svg",
  32854. extra: 1173/1053,
  32855. bottom: 109/1282
  32856. }
  32857. },
  32858. },
  32859. [
  32860. {
  32861. name: "Normal",
  32862. height: math.unit(3 + 5/12, "feet"),
  32863. default: true
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(6 + 3/12, "feet"),
  32872. weight: math.unit(430, "lb"),
  32873. name: "Front",
  32874. image: {
  32875. source: "./media/characters/carlos/front.svg",
  32876. extra: 1964/1913,
  32877. bottom: 70/2034
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(6 + 3/12, "feet"),
  32885. default: true
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32891. {
  32892. back: {
  32893. height: math.unit(5 + 10/12, "feet"),
  32894. weight: math.unit(200, "lb"),
  32895. name: "Back",
  32896. image: {
  32897. source: "./media/characters/jax/back.svg",
  32898. extra: 764/739,
  32899. bottom: 25/789
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(5 + 10/12, "feet"),
  32907. default: true
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32913. {
  32914. front: {
  32915. height: math.unit(8, "feet"),
  32916. weight: math.unit(250, "lb"),
  32917. name: "Front",
  32918. image: {
  32919. source: "./media/characters/eikthynir/front.svg",
  32920. extra: 1332/1166,
  32921. bottom: 82/1414
  32922. }
  32923. },
  32924. back: {
  32925. height: math.unit(8, "feet"),
  32926. weight: math.unit(250, "lb"),
  32927. name: "Back",
  32928. image: {
  32929. source: "./media/characters/eikthynir/back.svg",
  32930. extra: 1342/1190,
  32931. bottom: 19/1361
  32932. }
  32933. },
  32934. dick: {
  32935. height: math.unit(2.35, "feet"),
  32936. name: "Dick",
  32937. image: {
  32938. source: "./media/characters/eikthynir/dick.svg"
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(8, "feet"),
  32946. default: true
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32952. {
  32953. front: {
  32954. height: math.unit(99, "meters"),
  32955. weight: math.unit(13000, "tons"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/zlmos/front.svg",
  32959. extra: 2202/1992,
  32960. bottom: 315/2517
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Macro",
  32967. height: math.unit(99, "meters"),
  32968. default: true
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(6 + 5/12, "feet"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/purri/front.svg",
  32980. extra: 1698/1610,
  32981. bottom: 32/1730
  32982. }
  32983. },
  32984. frontAlt: {
  32985. height: math.unit(6 + 5/12, "feet"),
  32986. name: "Front (Alt)",
  32987. image: {
  32988. source: "./media/characters/purri/front-alt.svg",
  32989. extra: 450/420,
  32990. bottom: 26/476
  32991. }
  32992. },
  32993. boots: {
  32994. height: math.unit(5.5, "feet"),
  32995. name: "Boots",
  32996. image: {
  32997. source: "./media/characters/purri/boots.svg",
  32998. extra: 905/853,
  32999. bottom: 18/923
  33000. }
  33001. },
  33002. lying: {
  33003. height: math.unit(2, "feet"),
  33004. name: "Lying",
  33005. image: {
  33006. source: "./media/characters/purri/lying.svg",
  33007. extra: 940/843,
  33008. bottom: 146/1086
  33009. }
  33010. },
  33011. devious: {
  33012. height: math.unit(1.77, "feet"),
  33013. name: "Devious",
  33014. image: {
  33015. source: "./media/characters/purri/devious.svg",
  33016. extra: 1440/1155,
  33017. bottom: 147/1587
  33018. }
  33019. },
  33020. bean: {
  33021. height: math.unit(1.94, "feet"),
  33022. name: "Bean",
  33023. image: {
  33024. source: "./media/characters/purri/bean.svg"
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Micro",
  33031. height: math.unit(1, "mm")
  33032. },
  33033. {
  33034. name: "Normal",
  33035. height: math.unit(6 + 5/12, "feet"),
  33036. default: true
  33037. },
  33038. {
  33039. name: "Macro :3c",
  33040. height: math.unit(2, "miles")
  33041. },
  33042. ]
  33043. ))
  33044. characterMakers.push(() => makeCharacter(
  33045. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33046. {
  33047. front: {
  33048. height: math.unit(6 + 2/12, "feet"),
  33049. weight: math.unit(250, "lb"),
  33050. name: "Front",
  33051. image: {
  33052. source: "./media/characters/moonlight/front.svg",
  33053. extra: 1044/908,
  33054. bottom: 56/1100
  33055. }
  33056. },
  33057. feral: {
  33058. height: math.unit(3 + 1/12, "feet"),
  33059. weight: math.unit(50, "kg"),
  33060. name: "Feral",
  33061. image: {
  33062. source: "./media/characters/moonlight/feral.svg",
  33063. extra: 3705/2791,
  33064. bottom: 145/3850
  33065. }
  33066. },
  33067. paw: {
  33068. height: math.unit(1, "feet"),
  33069. name: "Paw",
  33070. image: {
  33071. source: "./media/characters/moonlight/paw.svg"
  33072. }
  33073. },
  33074. paws: {
  33075. height: math.unit(0.98, "feet"),
  33076. name: "Paws",
  33077. image: {
  33078. source: "./media/characters/moonlight/paws.svg",
  33079. extra: 939/939,
  33080. bottom: 50/989
  33081. }
  33082. },
  33083. mouth: {
  33084. height: math.unit(0.48, "feet"),
  33085. name: "Mouth",
  33086. image: {
  33087. source: "./media/characters/moonlight/mouth.svg"
  33088. }
  33089. },
  33090. dick: {
  33091. height: math.unit(1.46, "feet"),
  33092. name: "Dick",
  33093. image: {
  33094. source: "./media/characters/moonlight/dick.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Normal",
  33101. height: math.unit(6 + 2/12, "feet"),
  33102. default: true
  33103. },
  33104. {
  33105. name: "Macro",
  33106. height: math.unit(300, "feet")
  33107. },
  33108. {
  33109. name: "Macro+",
  33110. height: math.unit(1, "mile")
  33111. },
  33112. {
  33113. name: "Mt. Moon",
  33114. height: math.unit(5, "miles")
  33115. },
  33116. {
  33117. name: "Megamacro",
  33118. height: math.unit(15, "miles")
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33124. {
  33125. back: {
  33126. height: math.unit(6, "feet"),
  33127. weight: math.unit(150, "lb"),
  33128. name: "Back",
  33129. image: {
  33130. source: "./media/characters/sylen/back.svg",
  33131. extra: 1335/1273,
  33132. bottom: 107/1442
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(5 + 5/12, "feet")
  33140. },
  33141. {
  33142. name: "Megamacro",
  33143. height: math.unit(3, "miles"),
  33144. default: true
  33145. },
  33146. ]
  33147. ))
  33148. characterMakers.push(() => makeCharacter(
  33149. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33150. {
  33151. front: {
  33152. height: math.unit(6, "feet"),
  33153. weight: math.unit(190, "lb"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/huttser/front.svg",
  33157. extra: 1152/1058,
  33158. bottom: 23/1175
  33159. }
  33160. },
  33161. side: {
  33162. height: math.unit(6, "feet"),
  33163. weight: math.unit(190, "lb"),
  33164. name: "Side",
  33165. image: {
  33166. source: "./media/characters/huttser/side.svg",
  33167. extra: 1174/1065,
  33168. bottom: 18/1192
  33169. }
  33170. },
  33171. back: {
  33172. height: math.unit(6, "feet"),
  33173. weight: math.unit(190, "lb"),
  33174. name: "Back",
  33175. image: {
  33176. source: "./media/characters/huttser/back.svg",
  33177. extra: 1158/1056,
  33178. bottom: 12/1170
  33179. }
  33180. },
  33181. },
  33182. [
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33187. {
  33188. side: {
  33189. height: math.unit(12 + 9/12, "feet"),
  33190. weight: math.unit(15000, "lb"),
  33191. name: "Side",
  33192. image: {
  33193. source: "./media/characters/faan/side.svg",
  33194. extra: 2747/2697,
  33195. bottom: 0/2747
  33196. }
  33197. },
  33198. front: {
  33199. height: math.unit(12 + 9/12, "feet"),
  33200. weight: math.unit(15000, "lb"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/faan/front.svg",
  33204. extra: 607/571,
  33205. bottom: 24/631
  33206. }
  33207. },
  33208. head: {
  33209. height: math.unit(2.85, "feet"),
  33210. name: "Head",
  33211. image: {
  33212. source: "./media/characters/faan/head.svg"
  33213. }
  33214. },
  33215. headAlt: {
  33216. height: math.unit(3.13, "feet"),
  33217. name: "Head-alt",
  33218. image: {
  33219. source: "./media/characters/faan/head-alt.svg"
  33220. }
  33221. },
  33222. },
  33223. [
  33224. {
  33225. name: "Normal",
  33226. height: math.unit(12 + 9/12, "feet"),
  33227. default: true
  33228. },
  33229. ]
  33230. ))
  33231. characterMakers.push(() => makeCharacter(
  33232. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33233. {
  33234. front: {
  33235. height: math.unit(6, "feet"),
  33236. weight: math.unit(300, "lb"),
  33237. name: "Front",
  33238. image: {
  33239. source: "./media/characters/tanio/front.svg",
  33240. extra: 711/673,
  33241. bottom: 25/736
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(6, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(3, "inches"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/noboru/front.svg",
  33261. extra: 1039/932,
  33262. bottom: 18/1057
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Micro",
  33269. height: math.unit(3, "inches"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(1.85, "meters"),
  33279. weight: math.unit(80, "kg"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/daniel-barrett/front.svg",
  33283. extra: 355/337,
  33284. bottom: 9/364
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Pico",
  33291. height: math.unit(0.0433, "mm")
  33292. },
  33293. {
  33294. name: "Nano",
  33295. height: math.unit(1.5, "mm")
  33296. },
  33297. {
  33298. name: "Micro",
  33299. height: math.unit(5.3, "cm"),
  33300. default: true
  33301. },
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(1.85, "meters")
  33305. },
  33306. {
  33307. name: "Macro",
  33308. height: math.unit(64.7, "meters")
  33309. },
  33310. {
  33311. name: "Megamacro",
  33312. height: math.unit(2.26, "km")
  33313. },
  33314. {
  33315. name: "Gigamacro",
  33316. height: math.unit(79, "km")
  33317. },
  33318. {
  33319. name: "Teramacro",
  33320. height: math.unit(2765, "km")
  33321. },
  33322. {
  33323. name: "Petamacro",
  33324. height: math.unit(96678, "km")
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33330. {
  33331. front: {
  33332. height: math.unit(30, "meters"),
  33333. weight: math.unit(400, "tons"),
  33334. name: "Front",
  33335. image: {
  33336. source: "./media/characters/zeel/front.svg",
  33337. extra: 2599/2599,
  33338. bottom: 226/2825
  33339. }
  33340. },
  33341. },
  33342. [
  33343. {
  33344. name: "Macro",
  33345. height: math.unit(30, "meters"),
  33346. default: true
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33352. {
  33353. front: {
  33354. height: math.unit(6 + 7/12, "feet"),
  33355. weight: math.unit(210, "lb"),
  33356. name: "Front",
  33357. image: {
  33358. source: "./media/characters/tarn/front.svg",
  33359. extra: 3517/3220,
  33360. bottom: 91/3608
  33361. }
  33362. },
  33363. back: {
  33364. height: math.unit(6 + 7/12, "feet"),
  33365. weight: math.unit(210, "lb"),
  33366. name: "Back",
  33367. image: {
  33368. source: "./media/characters/tarn/back.svg",
  33369. extra: 3566/3241,
  33370. bottom: 34/3600
  33371. }
  33372. },
  33373. dick: {
  33374. height: math.unit(1.65, "feet"),
  33375. name: "Dick",
  33376. image: {
  33377. source: "./media/characters/tarn/dick.svg"
  33378. }
  33379. },
  33380. paw: {
  33381. height: math.unit(1.80, "feet"),
  33382. name: "Paw",
  33383. image: {
  33384. source: "./media/characters/tarn/paw.svg"
  33385. }
  33386. },
  33387. tongue: {
  33388. height: math.unit(0.97, "feet"),
  33389. name: "Tongue",
  33390. image: {
  33391. source: "./media/characters/tarn/tongue.svg"
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Micro",
  33398. height: math.unit(4, "inches")
  33399. },
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(6 + 7/12, "feet"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Macro",
  33407. height: math.unit(300, "feet")
  33408. },
  33409. ]
  33410. ))
  33411. characterMakers.push(() => makeCharacter(
  33412. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33413. {
  33414. front: {
  33415. height: math.unit(5 + 7/12, "feet"),
  33416. weight: math.unit(80, "kg"),
  33417. name: "Front",
  33418. image: {
  33419. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33420. extra: 3023/2865,
  33421. bottom: 33/3056
  33422. }
  33423. },
  33424. back: {
  33425. height: math.unit(5 + 7/12, "feet"),
  33426. weight: math.unit(80, "kg"),
  33427. name: "Back",
  33428. image: {
  33429. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33430. extra: 3020/2886,
  33431. bottom: 30/3050
  33432. }
  33433. },
  33434. dick: {
  33435. height: math.unit(0.98, "feet"),
  33436. name: "Dick",
  33437. image: {
  33438. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33439. }
  33440. },
  33441. anatomy: {
  33442. height: math.unit(2.86, "feet"),
  33443. name: "Anatomy",
  33444. image: {
  33445. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Really Small",
  33452. height: math.unit(2, "inches")
  33453. },
  33454. {
  33455. name: "Micro",
  33456. height: math.unit(5.583, "inches")
  33457. },
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(5 + 7/12, "feet"),
  33461. default: true
  33462. },
  33463. {
  33464. name: "Macro",
  33465. height: math.unit(67, "feet")
  33466. },
  33467. {
  33468. name: "Megamacro",
  33469. height: math.unit(134, "feet")
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(9, "feet"),
  33478. weight: math.unit(120, "lb"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/sally/front.svg",
  33482. extra: 1506/1349,
  33483. bottom: 66/1572
  33484. }
  33485. },
  33486. },
  33487. [
  33488. {
  33489. name: "Normal",
  33490. height: math.unit(9, "feet"),
  33491. default: true
  33492. },
  33493. ]
  33494. ))
  33495. characterMakers.push(() => makeCharacter(
  33496. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33497. {
  33498. front: {
  33499. height: math.unit(8, "feet"),
  33500. weight: math.unit(900, "lb"),
  33501. name: "Front",
  33502. image: {
  33503. source: "./media/characters/owen/front.svg",
  33504. extra: 1761/1657,
  33505. bottom: 74/1835
  33506. }
  33507. },
  33508. side: {
  33509. height: math.unit(8, "feet"),
  33510. weight: math.unit(900, "lb"),
  33511. name: "Side",
  33512. image: {
  33513. source: "./media/characters/owen/side.svg",
  33514. extra: 1797/1734,
  33515. bottom: 30/1827
  33516. }
  33517. },
  33518. back: {
  33519. height: math.unit(8, "feet"),
  33520. weight: math.unit(900, "lb"),
  33521. name: "Back",
  33522. image: {
  33523. source: "./media/characters/owen/back.svg",
  33524. extra: 1796/1706,
  33525. bottom: 59/1855
  33526. }
  33527. },
  33528. maw: {
  33529. height: math.unit(1.76, "feet"),
  33530. name: "Maw",
  33531. image: {
  33532. source: "./media/characters/owen/maw.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(8, "feet"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33546. {
  33547. front: {
  33548. height: math.unit(4, "feet"),
  33549. weight: math.unit(400, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/ryth/front.svg",
  33553. extra: 1920/1748,
  33554. bottom: 42/1962
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(4, "feet"),
  33559. weight: math.unit(400, "lb"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/ryth/back.svg",
  33563. extra: 1897/1690,
  33564. bottom: 89/1986
  33565. }
  33566. },
  33567. mouth: {
  33568. height: math.unit(1.39, "feet"),
  33569. name: "Mouth",
  33570. image: {
  33571. source: "./media/characters/ryth/mouth.svg"
  33572. }
  33573. },
  33574. tailmaw: {
  33575. height: math.unit(1.23, "feet"),
  33576. name: "Tailmaw",
  33577. image: {
  33578. source: "./media/characters/ryth/tailmaw.svg"
  33579. }
  33580. },
  33581. goia: {
  33582. height: math.unit(4, "meters"),
  33583. weight: math.unit(10800, "lb"),
  33584. name: "Goia",
  33585. image: {
  33586. source: "./media/characters/ryth/goia.svg",
  33587. extra: 745/640,
  33588. bottom: 107/852
  33589. }
  33590. },
  33591. goiaFront: {
  33592. height: math.unit(4, "meters"),
  33593. weight: math.unit(10800, "lb"),
  33594. name: "Goia (Front)",
  33595. image: {
  33596. source: "./media/characters/ryth/goia-front.svg",
  33597. extra: 750/586,
  33598. bottom: 114/864
  33599. }
  33600. },
  33601. goiaMaw: {
  33602. height: math.unit(5.55, "feet"),
  33603. name: "Goia Maw",
  33604. image: {
  33605. source: "./media/characters/ryth/goia-maw.svg"
  33606. }
  33607. },
  33608. goiaForepaw: {
  33609. height: math.unit(3.5, "feet"),
  33610. name: "Goia Forepaw",
  33611. image: {
  33612. source: "./media/characters/ryth/goia-forepaw.svg"
  33613. }
  33614. },
  33615. goiaHindpaw: {
  33616. height: math.unit(5.55, "feet"),
  33617. name: "Goia Hindpaw",
  33618. image: {
  33619. source: "./media/characters/ryth/goia-hindpaw.svg"
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Normal",
  33626. height: math.unit(4, "feet"),
  33627. default: true
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33633. {
  33634. front: {
  33635. height: math.unit(7, "feet"),
  33636. weight: math.unit(180, "lb"),
  33637. name: "Front",
  33638. image: {
  33639. source: "./media/characters/necrolance/front.svg",
  33640. extra: 1062/947,
  33641. bottom: 41/1103
  33642. }
  33643. },
  33644. back: {
  33645. height: math.unit(7, "feet"),
  33646. weight: math.unit(180, "lb"),
  33647. name: "Back",
  33648. image: {
  33649. source: "./media/characters/necrolance/back.svg",
  33650. extra: 1045/984,
  33651. bottom: 14/1059
  33652. }
  33653. },
  33654. wing: {
  33655. height: math.unit(2.67, "feet"),
  33656. name: "Wing",
  33657. image: {
  33658. source: "./media/characters/necrolance/wing.svg"
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(7, "feet"),
  33666. default: true
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33672. {
  33673. front: {
  33674. height: math.unit(76, "meters"),
  33675. weight: math.unit(30000, "tons"),
  33676. name: "Front",
  33677. image: {
  33678. source: "./media/characters/tyler/front.svg",
  33679. extra: 1640/1640,
  33680. bottom: 114/1754
  33681. }
  33682. },
  33683. },
  33684. [
  33685. {
  33686. name: "Macro",
  33687. height: math.unit(76, "meters"),
  33688. default: true
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33694. {
  33695. front: {
  33696. height: math.unit(4 + 11/12, "feet"),
  33697. weight: math.unit(132, "lb"),
  33698. name: "Front",
  33699. image: {
  33700. source: "./media/characters/icey/front.svg",
  33701. extra: 2750/2550,
  33702. bottom: 33/2783
  33703. }
  33704. },
  33705. back: {
  33706. height: math.unit(4 + 11/12, "feet"),
  33707. weight: math.unit(132, "lb"),
  33708. name: "Back",
  33709. image: {
  33710. source: "./media/characters/icey/back.svg",
  33711. extra: 2624/2481,
  33712. bottom: 35/2659
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Normal",
  33719. height: math.unit(4 + 11/12, "feet"),
  33720. default: true
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(100, "feet"),
  33729. weight: math.unit(0, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/smile/front.svg",
  33733. extra: 2983/2912,
  33734. bottom: 162/3145
  33735. }
  33736. },
  33737. back: {
  33738. height: math.unit(100, "feet"),
  33739. weight: math.unit(0, "lb"),
  33740. name: "Back",
  33741. image: {
  33742. source: "./media/characters/smile/back.svg",
  33743. extra: 3143/3031,
  33744. bottom: 91/3234
  33745. }
  33746. },
  33747. head: {
  33748. height: math.unit(26.3, "feet"),
  33749. weight: math.unit(0, "lb"),
  33750. name: "Head",
  33751. image: {
  33752. source: "./media/characters/smile/head.svg"
  33753. }
  33754. },
  33755. collar: {
  33756. height: math.unit(5.3, "feet"),
  33757. weight: math.unit(0, "lb"),
  33758. name: "Collar",
  33759. image: {
  33760. source: "./media/characters/smile/collar.svg"
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Macro",
  33767. height: math.unit(100, "feet"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33774. {
  33775. dragon: {
  33776. height: math.unit(26, "feet"),
  33777. weight: math.unit(36, "tons"),
  33778. name: "Dragon",
  33779. image: {
  33780. source: "./media/characters/arimphae/dragon.svg",
  33781. extra: 1574/983,
  33782. bottom: 357/1931
  33783. }
  33784. },
  33785. drake: {
  33786. height: math.unit(9, "feet"),
  33787. weight: math.unit(1.5, "tons"),
  33788. name: "Drake",
  33789. image: {
  33790. source: "./media/characters/arimphae/drake.svg",
  33791. extra: 1120/925,
  33792. bottom: 435/1555
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Small",
  33799. height: math.unit(26*5/9, "feet")
  33800. },
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(26, "feet"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(8 + 9/12, "feet"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/xander/front.svg",
  33816. extra: 1237/974,
  33817. bottom: 94/1331
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(8 + 9/12, "feet"),
  33825. default: true
  33826. },
  33827. {
  33828. name: "Gaze Grabber",
  33829. height: math.unit(13 + 8/12, "feet")
  33830. },
  33831. {
  33832. name: "Jaw Dropper",
  33833. height: math.unit(27, "feet")
  33834. },
  33835. {
  33836. name: "Show Stopper",
  33837. height: math.unit(136, "feet")
  33838. },
  33839. {
  33840. name: "Superstar",
  33841. height: math.unit(1.9e6, "miles")
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33847. {
  33848. side: {
  33849. height: math.unit(2100, "feet"),
  33850. name: "Side",
  33851. image: {
  33852. source: "./media/characters/osiris/side.svg",
  33853. extra: 1105/939,
  33854. bottom: 167/1272
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Macro",
  33861. height: math.unit(2100, "feet"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(6 + 8/12, "feet"),
  33871. weight: math.unit(225, "lb"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/rhys-londe/front.svg",
  33875. extra: 2258/2141,
  33876. bottom: 188/2446
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(6 + 8/12, "feet"),
  33881. weight: math.unit(225, "lb"),
  33882. name: "Back",
  33883. image: {
  33884. source: "./media/characters/rhys-londe/back.svg",
  33885. extra: 2237/2137,
  33886. bottom: 63/2300
  33887. }
  33888. },
  33889. frontNsfw: {
  33890. height: math.unit(6 + 8/12, "feet"),
  33891. weight: math.unit(225, "lb"),
  33892. name: "Front (NSFW)",
  33893. image: {
  33894. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33895. extra: 2258/2141,
  33896. bottom: 188/2446
  33897. }
  33898. },
  33899. backNsfw: {
  33900. height: math.unit(6 + 8/12, "feet"),
  33901. weight: math.unit(225, "lb"),
  33902. name: "Back (NSFW)",
  33903. image: {
  33904. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33905. extra: 2237/2137,
  33906. bottom: 63/2300
  33907. }
  33908. },
  33909. dick: {
  33910. height: math.unit(30, "inches"),
  33911. name: "Dick",
  33912. image: {
  33913. source: "./media/characters/rhys-londe/dick.svg"
  33914. }
  33915. },
  33916. maw: {
  33917. height: math.unit(1.6, "feet"),
  33918. name: "Maw",
  33919. image: {
  33920. source: "./media/characters/rhys-londe/maw.svg"
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Normal",
  33927. height: math.unit(6 + 8/12, "feet"),
  33928. default: true
  33929. },
  33930. ]
  33931. ))
  33932. characterMakers.push(() => makeCharacter(
  33933. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33934. {
  33935. front: {
  33936. height: math.unit(3 + 10/12, "feet"),
  33937. weight: math.unit(90, "lb"),
  33938. name: "Front",
  33939. image: {
  33940. source: "./media/characters/taivas-ensim/front.svg",
  33941. extra: 1327/1216,
  33942. bottom: 96/1423
  33943. }
  33944. },
  33945. back: {
  33946. height: math.unit(3 + 10/12, "feet"),
  33947. weight: math.unit(90, "lb"),
  33948. name: "Back",
  33949. image: {
  33950. source: "./media/characters/taivas-ensim/back.svg",
  33951. extra: 1355/1247,
  33952. bottom: 11/1366
  33953. }
  33954. },
  33955. frontNsfw: {
  33956. height: math.unit(3 + 10/12, "feet"),
  33957. weight: math.unit(90, "lb"),
  33958. name: "Front (NSFW)",
  33959. image: {
  33960. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33961. extra: 1327/1216,
  33962. bottom: 96/1423
  33963. }
  33964. },
  33965. backNsfw: {
  33966. height: math.unit(3 + 10/12, "feet"),
  33967. weight: math.unit(90, "lb"),
  33968. name: "Back (NSFW)",
  33969. image: {
  33970. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33971. extra: 1355/1247,
  33972. bottom: 11/1366
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Normal",
  33979. height: math.unit(3 + 10/12, "feet"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(9 + 6/12, "feet"),
  33989. weight: math.unit(940, "lb"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/byliss/front.svg",
  33993. extra: 1327/1290,
  33994. bottom: 82/1409
  33995. }
  33996. },
  33997. back: {
  33998. height: math.unit(9 + 6/12, "feet"),
  33999. weight: math.unit(940, "lb"),
  34000. name: "Back",
  34001. image: {
  34002. source: "./media/characters/byliss/back.svg",
  34003. extra: 1376/1349,
  34004. bottom: 9/1385
  34005. }
  34006. },
  34007. frontNsfw: {
  34008. height: math.unit(9 + 6/12, "feet"),
  34009. weight: math.unit(940, "lb"),
  34010. name: "Front (NSFW)",
  34011. image: {
  34012. source: "./media/characters/byliss/front-nsfw.svg",
  34013. extra: 1327/1290,
  34014. bottom: 82/1409
  34015. }
  34016. },
  34017. backNsfw: {
  34018. height: math.unit(9 + 6/12, "feet"),
  34019. weight: math.unit(940, "lb"),
  34020. name: "Back (NSFW)",
  34021. image: {
  34022. source: "./media/characters/byliss/back-nsfw.svg",
  34023. extra: 1376/1349,
  34024. bottom: 9/1385
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Normal",
  34031. height: math.unit(9 + 6/12, "feet"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(5 + 2/12, "feet"),
  34041. weight: math.unit(200, "lb"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/noraly/front.svg",
  34045. extra: 4985/4773,
  34046. bottom: 150/5135
  34047. }
  34048. },
  34049. full: {
  34050. height: math.unit(5 + 2/12, "feet"),
  34051. weight: math.unit(164, "lb"),
  34052. name: "Full",
  34053. image: {
  34054. source: "./media/characters/noraly/full.svg",
  34055. extra: 1114/1059,
  34056. bottom: 35/1149
  34057. }
  34058. },
  34059. fuller: {
  34060. height: math.unit(5 + 2/12, "feet"),
  34061. weight: math.unit(230, "lb"),
  34062. name: "Fuller",
  34063. image: {
  34064. source: "./media/characters/noraly/fuller.svg",
  34065. extra: 1114/1059,
  34066. bottom: 35/1149
  34067. }
  34068. },
  34069. fullest: {
  34070. height: math.unit(5 + 2/12, "feet"),
  34071. weight: math.unit(300, "lb"),
  34072. name: "Fullest",
  34073. image: {
  34074. source: "./media/characters/noraly/fullest.svg",
  34075. extra: 1114/1059,
  34076. bottom: 35/1149
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Normal",
  34083. height: math.unit(5 + 2/12, "feet"),
  34084. default: true
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34090. {
  34091. front: {
  34092. height: math.unit(5 + 2/12, "feet"),
  34093. weight: math.unit(210, "lb"),
  34094. name: "Front",
  34095. image: {
  34096. source: "./media/characters/pera/front.svg",
  34097. extra: 1560/1531,
  34098. bottom: 165/1725
  34099. }
  34100. },
  34101. back: {
  34102. height: math.unit(5 + 2/12, "feet"),
  34103. weight: math.unit(210, "lb"),
  34104. name: "Back",
  34105. image: {
  34106. source: "./media/characters/pera/back.svg",
  34107. extra: 1523/1493,
  34108. bottom: 152/1675
  34109. }
  34110. },
  34111. dick: {
  34112. height: math.unit(2.4, "feet"),
  34113. name: "Dick",
  34114. image: {
  34115. source: "./media/characters/pera/dick.svg"
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(5 + 2/12, "feet"),
  34123. default: true
  34124. },
  34125. ]
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(12, "feet"),
  34132. weight: math.unit(3200, "lb"),
  34133. name: "Front",
  34134. image: {
  34135. source: "./media/characters/julian/front.svg",
  34136. extra: 2962/2701,
  34137. bottom: 184/3146
  34138. }
  34139. },
  34140. maw: {
  34141. height: math.unit(5.35, "feet"),
  34142. name: "Maw",
  34143. image: {
  34144. source: "./media/characters/julian/maw.svg"
  34145. }
  34146. },
  34147. paw: {
  34148. height: math.unit(3.07, "feet"),
  34149. name: "Paw",
  34150. image: {
  34151. source: "./media/characters/julian/paw.svg"
  34152. }
  34153. },
  34154. },
  34155. [
  34156. {
  34157. name: "Default",
  34158. height: math.unit(12, "feet"),
  34159. default: true
  34160. },
  34161. {
  34162. name: "Big",
  34163. height: math.unit(50, "feet")
  34164. },
  34165. {
  34166. name: "Really Big",
  34167. height: math.unit(1, "mile")
  34168. },
  34169. {
  34170. name: "Extremely Big",
  34171. height: math.unit(100, "miles")
  34172. },
  34173. {
  34174. name: "Planet Hugger",
  34175. height: math.unit(200, "megameters")
  34176. },
  34177. {
  34178. name: "Unreasonably Big",
  34179. height: math.unit(1e300, "meters")
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34185. {
  34186. solgooleo: {
  34187. height: math.unit(4, "meters"),
  34188. weight: math.unit(6000*1.5, "kg"),
  34189. volume: math.unit(6000, "liters"),
  34190. name: "Solgooleo",
  34191. image: {
  34192. source: "./media/characters/pi/solgooleo.svg",
  34193. extra: 388/331,
  34194. bottom: 29/417
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(4, "meters"),
  34202. default: true
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(8, "feet"),
  34211. weight: math.unit(4, "tons"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/shaun/front.svg",
  34215. extra: 503/495,
  34216. bottom: 20/523
  34217. }
  34218. },
  34219. back: {
  34220. height: math.unit(8, "feet"),
  34221. weight: math.unit(4, "tons"),
  34222. name: "Back",
  34223. image: {
  34224. source: "./media/characters/shaun/back.svg",
  34225. extra: 487/480,
  34226. bottom: 20/507
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Lorg",
  34233. height: math.unit(8, "feet"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34240. {
  34241. frontAnthro: {
  34242. height: math.unit(7, "feet"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/sini/front-anthro.svg",
  34246. extra: 726/678,
  34247. bottom: 35/761
  34248. },
  34249. form: "anthro",
  34250. default: true
  34251. },
  34252. backAnthro: {
  34253. height: math.unit(7, "feet"),
  34254. name: "Back",
  34255. image: {
  34256. source: "./media/characters/sini/back-anthro.svg",
  34257. extra: 743/701,
  34258. bottom: 12/755
  34259. },
  34260. form: "anthro",
  34261. },
  34262. frontAnthroNsfw: {
  34263. height: math.unit(7, "feet"),
  34264. name: "Front (NSFW)",
  34265. image: {
  34266. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34267. extra: 726/678,
  34268. bottom: 35/761
  34269. },
  34270. form: "anthro"
  34271. },
  34272. backAnthroNsfw: {
  34273. height: math.unit(7, "feet"),
  34274. name: "Back (NSFW)",
  34275. image: {
  34276. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34277. extra: 743/701,
  34278. bottom: 12/755
  34279. },
  34280. form: "anthro",
  34281. },
  34282. mawAnthro: {
  34283. height: math.unit(2.14, "feet"),
  34284. name: "Maw",
  34285. image: {
  34286. source: "./media/characters/sini/maw-anthro.svg"
  34287. },
  34288. form: "anthro"
  34289. },
  34290. dick: {
  34291. height: math.unit(1.45, "feet"),
  34292. name: "Dick",
  34293. image: {
  34294. source: "./media/characters/sini/dick-anthro.svg"
  34295. },
  34296. form: "anthro"
  34297. },
  34298. feral: {
  34299. height: math.unit(16, "feet"),
  34300. name: "Feral",
  34301. image: {
  34302. source: "./media/characters/sini/feral.svg",
  34303. extra: 814/605,
  34304. bottom: 11/825
  34305. },
  34306. form: "feral",
  34307. default: true
  34308. },
  34309. feralNsfw: {
  34310. height: math.unit(16, "feet"),
  34311. name: "Feral (NSFW)",
  34312. image: {
  34313. source: "./media/characters/sini/feral-nsfw.svg",
  34314. extra: 814/605,
  34315. bottom: 11/825
  34316. },
  34317. form: "feral"
  34318. },
  34319. mawFeral: {
  34320. height: math.unit(5.66, "feet"),
  34321. name: "Maw",
  34322. image: {
  34323. source: "./media/characters/sini/maw-feral.svg"
  34324. },
  34325. form: "feral",
  34326. },
  34327. pawFeral: {
  34328. height: math.unit(5.17, "feet"),
  34329. name: "Paw",
  34330. image: {
  34331. source: "./media/characters/sini/paw-feral.svg"
  34332. },
  34333. form: "feral",
  34334. },
  34335. rumpFeral: {
  34336. height: math.unit(13.11, "feet"),
  34337. name: "Rump",
  34338. image: {
  34339. source: "./media/characters/sini/rump-feral.svg"
  34340. },
  34341. form: "feral",
  34342. },
  34343. dickFeral: {
  34344. height: math.unit(1, "feet"),
  34345. name: "Dick",
  34346. image: {
  34347. source: "./media/characters/sini/dick-feral.svg"
  34348. },
  34349. form: "feral",
  34350. },
  34351. eyeFeral: {
  34352. height: math.unit(1.23, "feet"),
  34353. name: "Eye",
  34354. image: {
  34355. source: "./media/characters/sini/eye-feral.svg"
  34356. },
  34357. form: "feral",
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(7, "feet"),
  34364. default: true,
  34365. form: "anthro"
  34366. },
  34367. {
  34368. name: "Normal",
  34369. height: math.unit(16, "feet"),
  34370. default: true,
  34371. form: "feral"
  34372. },
  34373. ],
  34374. {
  34375. "anthro": {
  34376. name: "Anthro",
  34377. default: true
  34378. },
  34379. "feral": {
  34380. name: "Feral",
  34381. }
  34382. }
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34386. {
  34387. side: {
  34388. height: math.unit(47.2, "meters"),
  34389. weight: math.unit(10000, "tons"),
  34390. name: "Side",
  34391. image: {
  34392. source: "./media/characters/raylldo/side.svg",
  34393. extra: 2363/642,
  34394. bottom: 221/2584
  34395. }
  34396. },
  34397. top: {
  34398. height: math.unit(240, "meters"),
  34399. weight: math.unit(10000, "tons"),
  34400. name: "Top",
  34401. image: {
  34402. source: "./media/characters/raylldo/top.svg"
  34403. }
  34404. },
  34405. bottom: {
  34406. height: math.unit(240, "meters"),
  34407. weight: math.unit(10000, "tons"),
  34408. name: "Bottom",
  34409. image: {
  34410. source: "./media/characters/raylldo/bottom.svg"
  34411. }
  34412. },
  34413. head: {
  34414. height: math.unit(38.6, "meters"),
  34415. name: "Head",
  34416. image: {
  34417. source: "./media/characters/raylldo/head.svg",
  34418. extra: 1335/1112,
  34419. bottom: 0/1335
  34420. }
  34421. },
  34422. maw: {
  34423. height: math.unit(16.37, "meters"),
  34424. name: "Maw",
  34425. image: {
  34426. source: "./media/characters/raylldo/maw.svg",
  34427. extra: 883/660,
  34428. bottom: 0/883
  34429. },
  34430. extraAttributes: {
  34431. preyCapacity: {
  34432. name: "Capacity",
  34433. power: 3,
  34434. type: "volume",
  34435. base: math.unit(1000, "people")
  34436. },
  34437. tongueSize: {
  34438. name: "Tongue Size",
  34439. power: 2,
  34440. type: "area",
  34441. base: math.unit(21, "m^2")
  34442. }
  34443. }
  34444. },
  34445. forepaw: {
  34446. height: math.unit(18, "meters"),
  34447. name: "Forepaw",
  34448. image: {
  34449. source: "./media/characters/raylldo/forepaw.svg"
  34450. }
  34451. },
  34452. hindpaw: {
  34453. height: math.unit(23, "meters"),
  34454. name: "Hindpaw",
  34455. image: {
  34456. source: "./media/characters/raylldo/hindpaw.svg"
  34457. }
  34458. },
  34459. genitals: {
  34460. height: math.unit(42, "meters"),
  34461. name: "Genitals",
  34462. image: {
  34463. source: "./media/characters/raylldo/genitals.svg"
  34464. }
  34465. },
  34466. },
  34467. [
  34468. {
  34469. name: "Normal",
  34470. height: math.unit(47.2, "meters"),
  34471. default: true
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34477. {
  34478. anthroFront: {
  34479. height: math.unit(9, "feet"),
  34480. weight: math.unit(600, "lb"),
  34481. name: "Anthro (Front)",
  34482. image: {
  34483. source: "./media/characters/glint/anthro-front.svg",
  34484. extra: 1097/1018,
  34485. bottom: 28/1125
  34486. }
  34487. },
  34488. anthroBack: {
  34489. height: math.unit(9, "feet"),
  34490. weight: math.unit(600, "lb"),
  34491. name: "Anthro (Back)",
  34492. image: {
  34493. source: "./media/characters/glint/anthro-back.svg",
  34494. extra: 1154/997,
  34495. bottom: 36/1190
  34496. }
  34497. },
  34498. feral: {
  34499. height: math.unit(11, "feet"),
  34500. weight: math.unit(50000, "lb"),
  34501. name: "Feral",
  34502. image: {
  34503. source: "./media/characters/glint/feral.svg",
  34504. extra: 3035/1585,
  34505. bottom: 1169/4204
  34506. }
  34507. },
  34508. dickAnthro: {
  34509. height: math.unit(0.7, "meters"),
  34510. name: "Dick (Anthro)",
  34511. image: {
  34512. source: "./media/characters/glint/dick-anthro.svg"
  34513. }
  34514. },
  34515. dickFeral: {
  34516. height: math.unit(2.65, "meters"),
  34517. name: "Dick (Feral)",
  34518. image: {
  34519. source: "./media/characters/glint/dick-feral.svg"
  34520. }
  34521. },
  34522. slitHidden: {
  34523. height: math.unit(5.85, "meters"),
  34524. name: "Slit (Hidden)",
  34525. image: {
  34526. source: "./media/characters/glint/slit-hidden.svg"
  34527. }
  34528. },
  34529. slitErect: {
  34530. height: math.unit(5.85, "meters"),
  34531. name: "Slit (Erect)",
  34532. image: {
  34533. source: "./media/characters/glint/slit-erect.svg"
  34534. }
  34535. },
  34536. mawAnthro: {
  34537. height: math.unit(0.63, "meters"),
  34538. name: "Maw (Anthro)",
  34539. image: {
  34540. source: "./media/characters/glint/maw.svg"
  34541. }
  34542. },
  34543. mawFeral: {
  34544. height: math.unit(2.89, "meters"),
  34545. name: "Maw (Feral)",
  34546. image: {
  34547. source: "./media/characters/glint/maw.svg"
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(9, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34561. {
  34562. side: {
  34563. height: math.unit(15, "feet"),
  34564. weight: math.unit(5000, "kg"),
  34565. name: "Side",
  34566. image: {
  34567. source: "./media/characters/kairne/side.svg",
  34568. extra: 979/811,
  34569. bottom: 13/992
  34570. }
  34571. },
  34572. front: {
  34573. height: math.unit(15, "feet"),
  34574. weight: math.unit(5000, "kg"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/kairne/front.svg",
  34578. extra: 908/814,
  34579. bottom: 26/934
  34580. }
  34581. },
  34582. sideNsfw: {
  34583. height: math.unit(15, "feet"),
  34584. weight: math.unit(5000, "kg"),
  34585. name: "Side (NSFW)",
  34586. image: {
  34587. source: "./media/characters/kairne/side-nsfw.svg",
  34588. extra: 979/811,
  34589. bottom: 13/992
  34590. }
  34591. },
  34592. frontNsfw: {
  34593. height: math.unit(15, "feet"),
  34594. weight: math.unit(5000, "kg"),
  34595. name: "Front (NSFW)",
  34596. image: {
  34597. source: "./media/characters/kairne/front-nsfw.svg",
  34598. extra: 908/814,
  34599. bottom: 26/934
  34600. }
  34601. },
  34602. dickCaged: {
  34603. height: math.unit(0.65, "meters"),
  34604. name: "Dick-caged",
  34605. image: {
  34606. source: "./media/characters/kairne/dick-caged.svg"
  34607. }
  34608. },
  34609. dick: {
  34610. height: math.unit(0.79, "meters"),
  34611. name: "Dick",
  34612. image: {
  34613. source: "./media/characters/kairne/dick.svg"
  34614. }
  34615. },
  34616. genitals: {
  34617. height: math.unit(1.29, "meters"),
  34618. name: "Genitals",
  34619. image: {
  34620. source: "./media/characters/kairne/genitals.svg"
  34621. }
  34622. },
  34623. maw: {
  34624. height: math.unit(1.73, "meters"),
  34625. name: "Maw",
  34626. image: {
  34627. source: "./media/characters/kairne/maw.svg"
  34628. }
  34629. },
  34630. },
  34631. [
  34632. {
  34633. name: "Normal",
  34634. height: math.unit(15, "feet"),
  34635. default: true
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34641. {
  34642. front: {
  34643. height: math.unit(5 + 8/12, "feet"),
  34644. weight: math.unit(139, "lb"),
  34645. name: "Front",
  34646. image: {
  34647. source: "./media/characters/biscuit-jackal/front.svg",
  34648. extra: 2106/1961,
  34649. bottom: 58/2164
  34650. }
  34651. },
  34652. back: {
  34653. height: math.unit(5 + 8/12, "feet"),
  34654. weight: math.unit(139, "lb"),
  34655. name: "Back",
  34656. image: {
  34657. source: "./media/characters/biscuit-jackal/back.svg",
  34658. extra: 2132/1976,
  34659. bottom: 57/2189
  34660. }
  34661. },
  34662. werejackal: {
  34663. height: math.unit(6 + 3/12, "feet"),
  34664. weight: math.unit(188, "lb"),
  34665. name: "Werejackal",
  34666. image: {
  34667. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34668. extra: 2373/2178,
  34669. bottom: 53/2426
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(5 + 8/12, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(140, "cm"),
  34686. weight: math.unit(45, "kg"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/tayra-white/front.svg",
  34690. extra: 2229/2192,
  34691. bottom: 75/2304
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(140, "cm"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(4 + 5/12, "feet"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/scoop/front.svg",
  34711. extra: 1257/1136,
  34712. bottom: 69/1326
  34713. }
  34714. },
  34715. back: {
  34716. height: math.unit(4 + 5/12, "feet"),
  34717. name: "Back",
  34718. image: {
  34719. source: "./media/characters/scoop/back.svg",
  34720. extra: 1321/1152,
  34721. bottom: 32/1353
  34722. }
  34723. },
  34724. maw: {
  34725. height: math.unit(0.68, "feet"),
  34726. name: "Maw",
  34727. image: {
  34728. source: "./media/characters/scoop/maw.svg"
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Really Small",
  34735. height: math.unit(1, "mm")
  34736. },
  34737. {
  34738. name: "Micro",
  34739. height: math.unit(1, "inch")
  34740. },
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(4 + 5/12, "feet"),
  34744. default: true
  34745. },
  34746. {
  34747. name: "Macro",
  34748. height: math.unit(200, "feet")
  34749. },
  34750. {
  34751. name: "Megamacro",
  34752. height: math.unit(3240, "feet")
  34753. },
  34754. {
  34755. name: "Teramacro",
  34756. height: math.unit(2500, "miles")
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(15 + 7/12, "feet"),
  34765. weight: math.unit(1150, "tons"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/saphinara/front.svg",
  34769. extra: 1837/1643,
  34770. bottom: 84/1921
  34771. },
  34772. form: "normal",
  34773. default: true
  34774. },
  34775. side: {
  34776. height: math.unit(15 + 7/12, "feet"),
  34777. weight: math.unit(1150, "tons"),
  34778. name: "Side",
  34779. image: {
  34780. source: "./media/characters/saphinara/side.svg",
  34781. extra: 605/547,
  34782. bottom: 6/611
  34783. },
  34784. form: "normal"
  34785. },
  34786. back: {
  34787. height: math.unit(15 + 7/12, "feet"),
  34788. weight: math.unit(1150, "tons"),
  34789. name: "Back",
  34790. image: {
  34791. source: "./media/characters/saphinara/back.svg",
  34792. extra: 591/531,
  34793. bottom: 13/604
  34794. },
  34795. form: "normal"
  34796. },
  34797. frontTail: {
  34798. height: math.unit(15 + 7/12, "feet"),
  34799. weight: math.unit(1150, "tons"),
  34800. name: "Front (Full Tail)",
  34801. image: {
  34802. source: "./media/characters/saphinara/front-tail.svg",
  34803. extra: 2256/1630,
  34804. bottom: 261/2517
  34805. },
  34806. form: "normal"
  34807. },
  34808. insides: {
  34809. height: math.unit(11.92, "feet"),
  34810. name: "Insides",
  34811. image: {
  34812. source: "./media/characters/saphinara/insides.svg"
  34813. },
  34814. form: "normal"
  34815. },
  34816. head: {
  34817. height: math.unit(4.17, "feet"),
  34818. name: "Head",
  34819. image: {
  34820. source: "./media/characters/saphinara/head.svg"
  34821. },
  34822. form: "normal"
  34823. },
  34824. tongue: {
  34825. height: math.unit(4.60, "feet"),
  34826. name: "Tongue",
  34827. image: {
  34828. source: "./media/characters/saphinara/tongue.svg"
  34829. },
  34830. form: "normal"
  34831. },
  34832. headEnraged: {
  34833. height: math.unit(5.55, "feet"),
  34834. name: "Head (Enraged)",
  34835. image: {
  34836. source: "./media/characters/saphinara/head-enraged.svg"
  34837. },
  34838. form: "normal"
  34839. },
  34840. wings: {
  34841. height: math.unit(11.95, "feet"),
  34842. name: "Wings",
  34843. image: {
  34844. source: "./media/characters/saphinara/wings.svg"
  34845. },
  34846. form: "normal"
  34847. },
  34848. feathers: {
  34849. height: math.unit(8.92, "feet"),
  34850. name: "Feathers",
  34851. image: {
  34852. source: "./media/characters/saphinara/feathers.svg"
  34853. },
  34854. form: "normal"
  34855. },
  34856. shackles: {
  34857. height: math.unit(2, "feet"),
  34858. name: "Shackles",
  34859. image: {
  34860. source: "./media/characters/saphinara/shackles.svg"
  34861. },
  34862. form: "normal"
  34863. },
  34864. eyes: {
  34865. height: math.unit(1.331, "feet"),
  34866. name: "Eyes",
  34867. image: {
  34868. source: "./media/characters/saphinara/eyes.svg"
  34869. },
  34870. form: "normal"
  34871. },
  34872. eyesEnraged: {
  34873. height: math.unit(1.331, "feet"),
  34874. name: "Eyes (Enraged)",
  34875. image: {
  34876. source: "./media/characters/saphinara/eyes-enraged.svg"
  34877. },
  34878. form: "normal"
  34879. },
  34880. trueFormSide: {
  34881. height: math.unit(200, "feet"),
  34882. weight: math.unit(1e7, "tons"),
  34883. name: "Side",
  34884. image: {
  34885. source: "./media/characters/saphinara/true-form-side.svg",
  34886. extra: 1399/770,
  34887. bottom: 97/1496
  34888. },
  34889. form: "true-form",
  34890. default: true
  34891. },
  34892. trueFormMaw: {
  34893. height: math.unit(71.5, "feet"),
  34894. name: "Maw",
  34895. image: {
  34896. source: "./media/characters/saphinara/true-form-maw.svg",
  34897. extra: 2302/1453,
  34898. bottom: 0/2302
  34899. },
  34900. form: "true-form"
  34901. },
  34902. meowberusSide: {
  34903. height: math.unit(75, "feet"),
  34904. weight: math.unit(180000, "kg"),
  34905. preyCapacity: math.unit(50000, "people"),
  34906. name: "Side",
  34907. image: {
  34908. source: "./media/characters/saphinara/meowberus-side.svg",
  34909. extra: 1400/711,
  34910. bottom: 126/1526
  34911. },
  34912. form: "meowberus",
  34913. extraAttributes: {
  34914. "pawArea": {
  34915. name: "Paw Size",
  34916. power: 2,
  34917. type: "area",
  34918. base: math.unit(35, "m^2")
  34919. }
  34920. }
  34921. },
  34922. },
  34923. [
  34924. {
  34925. name: "Normal",
  34926. height: math.unit(15 + 7/12, "feet"),
  34927. default: true,
  34928. form: "normal"
  34929. },
  34930. {
  34931. name: "Angry",
  34932. height: math.unit(30 + 6/12, "feet"),
  34933. form: "normal"
  34934. },
  34935. {
  34936. name: "Enraged",
  34937. height: math.unit(102 + 1/12, "feet"),
  34938. form: "normal"
  34939. },
  34940. {
  34941. name: "True",
  34942. height: math.unit(200, "feet"),
  34943. default: true,
  34944. form: "true-form"
  34945. },
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(75, "feet"),
  34949. default: true,
  34950. form: "meowberus"
  34951. },
  34952. ],
  34953. {
  34954. "normal": {
  34955. name: "Normal",
  34956. default: true
  34957. },
  34958. "true-form": {
  34959. name: "True Form"
  34960. },
  34961. "meowberus": {
  34962. name: "Meowberus",
  34963. },
  34964. }
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(6 + 8/12, "feet"),
  34971. weight: math.unit(300, "lb"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/jrain/front.svg",
  34975. extra: 3039/2865,
  34976. bottom: 399/3438
  34977. }
  34978. },
  34979. back: {
  34980. height: math.unit(6 + 8/12, "feet"),
  34981. weight: math.unit(300, "lb"),
  34982. name: "Back",
  34983. image: {
  34984. source: "./media/characters/jrain/back.svg",
  34985. extra: 3089/2938,
  34986. bottom: 172/3261
  34987. }
  34988. },
  34989. head: {
  34990. height: math.unit(2.14, "feet"),
  34991. name: "Head",
  34992. image: {
  34993. source: "./media/characters/jrain/head.svg"
  34994. }
  34995. },
  34996. maw: {
  34997. height: math.unit(1.77, "feet"),
  34998. name: "Maw",
  34999. image: {
  35000. source: "./media/characters/jrain/maw.svg"
  35001. }
  35002. },
  35003. leftHand: {
  35004. height: math.unit(1.1, "feet"),
  35005. name: "Left Hand",
  35006. image: {
  35007. source: "./media/characters/jrain/left-hand.svg"
  35008. }
  35009. },
  35010. rightHand: {
  35011. height: math.unit(1.1, "feet"),
  35012. name: "Right Hand",
  35013. image: {
  35014. source: "./media/characters/jrain/right-hand.svg"
  35015. }
  35016. },
  35017. eye: {
  35018. height: math.unit(0.35, "feet"),
  35019. name: "Eye",
  35020. image: {
  35021. source: "./media/characters/jrain/eye.svg"
  35022. }
  35023. },
  35024. },
  35025. [
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(6 + 8/12, "feet"),
  35029. default: true
  35030. },
  35031. {
  35032. name: "Casually Large",
  35033. height: math.unit(25, "feet")
  35034. },
  35035. {
  35036. name: "Giant",
  35037. height: math.unit(100, "feet")
  35038. },
  35039. {
  35040. name: "Kaiju",
  35041. height: math.unit(300, "feet")
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35047. {
  35048. dragon: {
  35049. height: math.unit(5, "meters"),
  35050. name: "Dragon",
  35051. image: {
  35052. source: "./media/characters/sabrina/dragon.svg",
  35053. extra: 3670 / 2365,
  35054. bottom: 333 / 4003
  35055. }
  35056. },
  35057. gryphon: {
  35058. height: math.unit(3, "meters"),
  35059. name: "Gryphon",
  35060. image: {
  35061. source: "./media/characters/sabrina/gryphon.svg",
  35062. extra: 1576 / 945,
  35063. bottom: 71 / 1647
  35064. }
  35065. },
  35066. snake: {
  35067. height: math.unit(12, "meters"),
  35068. name: "Snake",
  35069. image: {
  35070. source: "./media/characters/sabrina/snake.svg",
  35071. extra: 1758 / 1320,
  35072. bottom: 186 / 1944
  35073. }
  35074. },
  35075. collar: {
  35076. height: math.unit(1.86, "meters"),
  35077. name: "Collar",
  35078. image: {
  35079. source: "./media/characters/sabrina/collar.svg"
  35080. }
  35081. },
  35082. eye: {
  35083. height: math.unit(0.53, "meters"),
  35084. name: "Eye",
  35085. image: {
  35086. source: "./media/characters/sabrina/eye.svg"
  35087. }
  35088. },
  35089. foot: {
  35090. height: math.unit(1.86, "meters"),
  35091. name: "Foot",
  35092. image: {
  35093. source: "./media/characters/sabrina/foot.svg"
  35094. }
  35095. },
  35096. hand: {
  35097. height: math.unit(1.32, "meters"),
  35098. name: "Hand",
  35099. image: {
  35100. source: "./media/characters/sabrina/hand.svg"
  35101. }
  35102. },
  35103. head: {
  35104. height: math.unit(2.44, "meters"),
  35105. name: "Head",
  35106. image: {
  35107. source: "./media/characters/sabrina/head.svg"
  35108. }
  35109. },
  35110. headAngry: {
  35111. height: math.unit(2.44, "meters"),
  35112. name: "Head (Angry))",
  35113. image: {
  35114. source: "./media/characters/sabrina/head-angry.svg"
  35115. }
  35116. },
  35117. maw: {
  35118. height: math.unit(1.65, "meters"),
  35119. name: "Maw",
  35120. image: {
  35121. source: "./media/characters/sabrina/maw.svg"
  35122. }
  35123. },
  35124. spikes: {
  35125. height: math.unit(1.69, "meters"),
  35126. name: "Spikes",
  35127. image: {
  35128. source: "./media/characters/sabrina/spikes.svg"
  35129. }
  35130. },
  35131. stomach: {
  35132. height: math.unit(1.15, "meters"),
  35133. name: "Stomach",
  35134. image: {
  35135. source: "./media/characters/sabrina/stomach.svg"
  35136. }
  35137. },
  35138. tongue: {
  35139. height: math.unit(1.27, "meters"),
  35140. name: "Tongue",
  35141. image: {
  35142. source: "./media/characters/sabrina/tongue.svg"
  35143. }
  35144. },
  35145. wingDorsal: {
  35146. height: math.unit(4.85, "meters"),
  35147. name: "Wing (Dorsal)",
  35148. image: {
  35149. source: "./media/characters/sabrina/wing-dorsal.svg"
  35150. }
  35151. },
  35152. wingVentral: {
  35153. height: math.unit(4.85, "meters"),
  35154. name: "Wing (Ventral)",
  35155. image: {
  35156. source: "./media/characters/sabrina/wing-ventral.svg"
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(5, "meters"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35170. {
  35171. frontMaid: {
  35172. height: math.unit(5 + 5/12, "feet"),
  35173. weight: math.unit(130, "lb"),
  35174. name: "Front (Maid)",
  35175. image: {
  35176. source: "./media/characters/midnight-tales/front-maid.svg",
  35177. extra: 489/454,
  35178. bottom: 61/550
  35179. }
  35180. },
  35181. frontFormal: {
  35182. height: math.unit(5 + 5/12, "feet"),
  35183. weight: math.unit(130, "lb"),
  35184. name: "Front (Formal)",
  35185. image: {
  35186. source: "./media/characters/midnight-tales/front-formal.svg",
  35187. extra: 489/454,
  35188. bottom: 61/550
  35189. }
  35190. },
  35191. back: {
  35192. height: math.unit(5 + 5/12, "feet"),
  35193. weight: math.unit(130, "lb"),
  35194. name: "Back",
  35195. image: {
  35196. source: "./media/characters/midnight-tales/back.svg",
  35197. extra: 498/456,
  35198. bottom: 33/531
  35199. }
  35200. },
  35201. frontBeast: {
  35202. height: math.unit(40, "feet"),
  35203. weight: math.unit(64000, "lb"),
  35204. name: "Front (Beast)",
  35205. image: {
  35206. source: "./media/characters/midnight-tales/front-beast.svg",
  35207. extra: 927/860,
  35208. bottom: 53/980
  35209. }
  35210. },
  35211. backBeast: {
  35212. height: math.unit(40, "feet"),
  35213. weight: math.unit(64000, "lb"),
  35214. name: "Back (Beast)",
  35215. image: {
  35216. source: "./media/characters/midnight-tales/back-beast.svg",
  35217. extra: 929/855,
  35218. bottom: 16/945
  35219. }
  35220. },
  35221. footBeast: {
  35222. height: math.unit(6.7, "feet"),
  35223. name: "Foot (Beast)",
  35224. image: {
  35225. source: "./media/characters/midnight-tales/foot-beast.svg"
  35226. }
  35227. },
  35228. headBeast: {
  35229. height: math.unit(8, "feet"),
  35230. name: "Head (Beast)",
  35231. image: {
  35232. source: "./media/characters/midnight-tales/head-beast.svg"
  35233. }
  35234. },
  35235. },
  35236. [
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(5 + 5 / 12, "feet"),
  35240. default: true
  35241. },
  35242. {
  35243. name: "Macro",
  35244. height: math.unit(25, "feet")
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(5 + 10/12, "feet"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/argon/front.svg",
  35256. extra: 2009/1935,
  35257. bottom: 118/2127
  35258. }
  35259. },
  35260. back: {
  35261. height: math.unit(5 + 10/12, "feet"),
  35262. name: "Back",
  35263. image: {
  35264. source: "./media/characters/argon/back.svg",
  35265. extra: 2047/1992,
  35266. bottom: 20/2067
  35267. }
  35268. },
  35269. frontDressed: {
  35270. height: math.unit(5 + 10/12, "feet"),
  35271. name: "Front (Dressed)",
  35272. image: {
  35273. source: "./media/characters/argon/front-dressed.svg",
  35274. extra: 2009/1935,
  35275. bottom: 118/2127
  35276. }
  35277. },
  35278. },
  35279. [
  35280. {
  35281. name: "Normal",
  35282. height: math.unit(5 + 10/12, "feet"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35289. {
  35290. front: {
  35291. height: math.unit(8 + 6/12, "feet"),
  35292. weight: math.unit(1150, "lb"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/kichi/front.svg",
  35296. extra: 1267/1164,
  35297. bottom: 61/1328
  35298. }
  35299. },
  35300. back: {
  35301. height: math.unit(8 + 6/12, "feet"),
  35302. weight: math.unit(1150, "lb"),
  35303. name: "Back",
  35304. image: {
  35305. source: "./media/characters/kichi/back.svg",
  35306. extra: 1273/1166,
  35307. bottom: 33/1306
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Normal",
  35314. height: math.unit(8 + 6/12, "feet"),
  35315. default: true
  35316. },
  35317. ]
  35318. ))
  35319. characterMakers.push(() => makeCharacter(
  35320. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35321. {
  35322. front: {
  35323. height: math.unit(6, "feet"),
  35324. weight: math.unit(210, "lb"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/manetel-greyscale/front.svg",
  35328. extra: 350/312,
  35329. bottom: 8/358
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Micro",
  35336. height: math.unit(2, "inches")
  35337. },
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(6, "feet"),
  35341. default: true
  35342. },
  35343. {
  35344. name: "Minimacro",
  35345. height: math.unit(17, "feet")
  35346. },
  35347. {
  35348. name: "Macro",
  35349. height: math.unit(117, "feet")
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35355. {
  35356. side: {
  35357. height: math.unit(5 + 1/12, "feet"),
  35358. weight: math.unit(418, "lb"),
  35359. name: "Side",
  35360. image: {
  35361. source: "./media/characters/softpurr/side.svg",
  35362. extra: 1993/1945,
  35363. bottom: 134/2127
  35364. }
  35365. },
  35366. front: {
  35367. height: math.unit(5 + 1/12, "feet"),
  35368. weight: math.unit(418, "lb"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/softpurr/front.svg",
  35372. extra: 1950/1856,
  35373. bottom: 174/2124
  35374. }
  35375. },
  35376. paw: {
  35377. height: math.unit(1, "feet"),
  35378. name: "Paw",
  35379. image: {
  35380. source: "./media/characters/softpurr/paw.svg"
  35381. }
  35382. },
  35383. },
  35384. [
  35385. {
  35386. name: "Normal",
  35387. height: math.unit(5 + 1/12, "feet"),
  35388. default: true
  35389. },
  35390. ]
  35391. ))
  35392. characterMakers.push(() => makeCharacter(
  35393. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35394. {
  35395. front: {
  35396. height: math.unit(260, "meters"),
  35397. name: "Front",
  35398. image: {
  35399. source: "./media/characters/anahita/front.svg",
  35400. extra: 665/635,
  35401. bottom: 89/754
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Macro",
  35408. height: math.unit(260, "meters"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(4 + 10/12, "feet"),
  35418. weight: math.unit(160, "lb"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/chip-mouse/front.svg",
  35422. extra: 3528/3408,
  35423. bottom: 0/3528
  35424. }
  35425. },
  35426. frontNsfw: {
  35427. height: math.unit(4 + 10/12, "feet"),
  35428. weight: math.unit(160, "lb"),
  35429. name: "Front (NSFW)",
  35430. image: {
  35431. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35432. extra: 3528/3408,
  35433. bottom: 0/3528
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(4 + 10/12, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35447. {
  35448. side: {
  35449. height: math.unit(10, "feet"),
  35450. weight: math.unit(14000, "lb"),
  35451. name: "Side",
  35452. image: {
  35453. source: "./media/characters/kremm/side.svg",
  35454. extra: 1390/1053,
  35455. bottom: 90/1480
  35456. }
  35457. },
  35458. gut: {
  35459. height: math.unit(5.8, "feet"),
  35460. name: "Gut",
  35461. image: {
  35462. source: "./media/characters/kremm/gut.svg"
  35463. }
  35464. },
  35465. ass: {
  35466. height: math.unit(6.1, "feet"),
  35467. name: "Ass",
  35468. image: {
  35469. source: "./media/characters/kremm/ass.svg"
  35470. }
  35471. },
  35472. jaws: {
  35473. height: math.unit(2.2, "feet"),
  35474. name: "Jaws",
  35475. image: {
  35476. source: "./media/characters/kremm/jaws.svg"
  35477. }
  35478. },
  35479. dick: {
  35480. height: math.unit(4.26, "feet"),
  35481. name: "Dick",
  35482. image: {
  35483. source: "./media/characters/kremm/dick.svg"
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(10, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(30, "stories"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/kai/front.svg",
  35503. extra: 1892/1718,
  35504. bottom: 162/2054
  35505. }
  35506. },
  35507. },
  35508. [
  35509. {
  35510. name: "Macro",
  35511. height: math.unit(30, "stories"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(6 + 4/12, "feet"),
  35521. weight: math.unit(145, "lb"),
  35522. name: "Front",
  35523. image: {
  35524. source: "./media/characters/sykes/front.svg",
  35525. extra: 1321 / 1187,
  35526. bottom: 66 / 1387
  35527. }
  35528. },
  35529. back: {
  35530. height: math.unit(6 + 4/12, "feet"),
  35531. weight: math.unit(145, "lb"),
  35532. name: "Back",
  35533. image: {
  35534. source: "./media/characters/sykes/back.svg",
  35535. extra: 1326/1181,
  35536. bottom: 31/1357
  35537. }
  35538. },
  35539. traditionalOutfit: {
  35540. height: math.unit(6 + 4/12, "feet"),
  35541. weight: math.unit(145, "lb"),
  35542. name: "Traditional Outfit",
  35543. image: {
  35544. source: "./media/characters/sykes/traditional-outfit.svg",
  35545. extra: 1321 / 1187,
  35546. bottom: 66 / 1387
  35547. }
  35548. },
  35549. adventureOutfit: {
  35550. height: math.unit(6 + 4/12, "feet"),
  35551. weight: math.unit(145, "lb"),
  35552. name: "Adventure Outfit",
  35553. image: {
  35554. source: "./media/characters/sykes/adventure-outfit.svg",
  35555. extra: 1321 / 1187,
  35556. bottom: 66 / 1387
  35557. }
  35558. },
  35559. handLeft: {
  35560. height: math.unit(0.9, "feet"),
  35561. name: "Hand (Left)",
  35562. image: {
  35563. source: "./media/characters/sykes/hand-left.svg"
  35564. }
  35565. },
  35566. handRight: {
  35567. height: math.unit(0.839, "feet"),
  35568. name: "Hand (Right)",
  35569. image: {
  35570. source: "./media/characters/sykes/hand-right.svg"
  35571. }
  35572. },
  35573. leftFoot: {
  35574. height: math.unit(1.2, "feet"),
  35575. name: "Foot (Left)",
  35576. image: {
  35577. source: "./media/characters/sykes/foot-left.svg"
  35578. }
  35579. },
  35580. rightFoot: {
  35581. height: math.unit(1.2, "feet"),
  35582. name: "Foot (Right)",
  35583. image: {
  35584. source: "./media/characters/sykes/foot-right.svg"
  35585. }
  35586. },
  35587. maw: {
  35588. height: math.unit(1.93, "feet"),
  35589. name: "Maw",
  35590. image: {
  35591. source: "./media/characters/sykes/maw.svg"
  35592. }
  35593. },
  35594. teeth: {
  35595. height: math.unit(0.51, "feet"),
  35596. name: "Teeth",
  35597. image: {
  35598. source: "./media/characters/sykes/teeth.svg"
  35599. }
  35600. },
  35601. tongue: {
  35602. height: math.unit(2.13, "feet"),
  35603. name: "Tongue",
  35604. image: {
  35605. source: "./media/characters/sykes/tongue.svg"
  35606. }
  35607. },
  35608. uvula: {
  35609. height: math.unit(0.16, "feet"),
  35610. name: "Uvula",
  35611. image: {
  35612. source: "./media/characters/sykes/uvula.svg"
  35613. }
  35614. },
  35615. collar: {
  35616. height: math.unit(0.287, "feet"),
  35617. name: "Collar",
  35618. image: {
  35619. source: "./media/characters/sykes/collar.svg"
  35620. }
  35621. },
  35622. tail: {
  35623. height: math.unit(3.8, "feet"),
  35624. name: "Tail",
  35625. image: {
  35626. source: "./media/characters/sykes/tail.svg"
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Shrunken",
  35633. height: math.unit(5, "inches")
  35634. },
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(6 + 4 / 12, "feet"),
  35638. default: true
  35639. },
  35640. {
  35641. name: "Big",
  35642. height: math.unit(15, "feet")
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(5 + 8/12, "feet"),
  35651. weight: math.unit(190, "lb"),
  35652. name: "Front",
  35653. image: {
  35654. source: "./media/characters/oven-otter/front.svg",
  35655. extra: 1809/1740,
  35656. bottom: 181/1990
  35657. }
  35658. },
  35659. back: {
  35660. height: math.unit(5 + 8/12, "feet"),
  35661. weight: math.unit(190, "lb"),
  35662. name: "Back",
  35663. image: {
  35664. source: "./media/characters/oven-otter/back.svg",
  35665. extra: 1709/1635,
  35666. bottom: 118/1827
  35667. }
  35668. },
  35669. hand: {
  35670. height: math.unit(1.07, "feet"),
  35671. name: "Hand",
  35672. image: {
  35673. source: "./media/characters/oven-otter/hand.svg"
  35674. }
  35675. },
  35676. beans: {
  35677. height: math.unit(1.74, "feet"),
  35678. name: "Beans",
  35679. image: {
  35680. source: "./media/characters/oven-otter/beans.svg"
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Micro",
  35687. height: math.unit(0.5, "inches")
  35688. },
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(5 + 8/12, "feet"),
  35692. default: true
  35693. },
  35694. {
  35695. name: "Macro",
  35696. height: math.unit(250, "feet")
  35697. },
  35698. {
  35699. name: "Really High",
  35700. height: math.unit(420, "feet")
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(5, "meters"),
  35709. weight: math.unit(292000000000000, "kg"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/devourer/front.svg",
  35713. extra: 1800/1733,
  35714. bottom: 211/2011
  35715. }
  35716. },
  35717. maw: {
  35718. height: math.unit(1.1, "meter"),
  35719. name: "Maw",
  35720. image: {
  35721. source: "./media/characters/devourer/maw.svg"
  35722. }
  35723. },
  35724. },
  35725. [
  35726. {
  35727. name: "Small",
  35728. height: math.unit(3, "meters")
  35729. },
  35730. {
  35731. name: "Large",
  35732. height: math.unit(5, "meters"),
  35733. default: true
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35739. {
  35740. front: {
  35741. height: math.unit(6, "feet"),
  35742. weight: math.unit(400, "lb"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/ellarby/front.svg",
  35746. extra: 1909/1763,
  35747. bottom: 80/1989
  35748. }
  35749. },
  35750. back: {
  35751. height: math.unit(6, "feet"),
  35752. weight: math.unit(400, "lb"),
  35753. name: "Back",
  35754. image: {
  35755. source: "./media/characters/ellarby/back.svg",
  35756. extra: 1914/1784,
  35757. bottom: 172/2086
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Mischief",
  35764. height: math.unit(18, "inches")
  35765. },
  35766. {
  35767. name: "Trouble",
  35768. height: math.unit(12, "feet")
  35769. },
  35770. {
  35771. name: "Havoc",
  35772. height: math.unit(200, "feet"),
  35773. default: true
  35774. },
  35775. {
  35776. name: "Pandemonium",
  35777. height: math.unit(1, "mile")
  35778. },
  35779. {
  35780. name: "Catastrophe",
  35781. height: math.unit(100, "miles")
  35782. },
  35783. ]
  35784. ))
  35785. characterMakers.push(() => makeCharacter(
  35786. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35787. {
  35788. front: {
  35789. height: math.unit(4.7, "meters"),
  35790. weight: math.unit(6500, "kg"),
  35791. name: "Front",
  35792. image: {
  35793. source: "./media/characters/vex/front.svg",
  35794. extra: 1288/1140,
  35795. bottom: 100/1388
  35796. }
  35797. },
  35798. },
  35799. [
  35800. {
  35801. name: "Normal",
  35802. height: math.unit(4.7, "meters"),
  35803. default: true
  35804. },
  35805. ]
  35806. ))
  35807. characterMakers.push(() => makeCharacter(
  35808. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35809. {
  35810. normal: {
  35811. height: math.unit(6, "feet"),
  35812. weight: math.unit(350, "lb"),
  35813. name: "Normal",
  35814. image: {
  35815. source: "./media/characters/teshy/normal.svg",
  35816. extra: 1795/1735,
  35817. bottom: 16/1811
  35818. }
  35819. },
  35820. monsterFront: {
  35821. height: math.unit(12, "feet"),
  35822. weight: math.unit(4700, "lb"),
  35823. name: "Monster (Front)",
  35824. image: {
  35825. source: "./media/characters/teshy/monster-front.svg",
  35826. extra: 2042/2034,
  35827. bottom: 128/2170
  35828. }
  35829. },
  35830. monsterSide: {
  35831. height: math.unit(12, "feet"),
  35832. weight: math.unit(4700, "lb"),
  35833. name: "Monster (Side)",
  35834. image: {
  35835. source: "./media/characters/teshy/monster-side.svg",
  35836. extra: 2067/2056,
  35837. bottom: 70/2137
  35838. }
  35839. },
  35840. monsterBack: {
  35841. height: math.unit(12, "feet"),
  35842. weight: math.unit(4700, "lb"),
  35843. name: "Monster (Back)",
  35844. image: {
  35845. source: "./media/characters/teshy/monster-back.svg",
  35846. extra: 1921/1914,
  35847. bottom: 171/2092
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(6, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35861. {
  35862. front: {
  35863. height: math.unit(6, "feet"),
  35864. name: "Front",
  35865. image: {
  35866. source: "./media/characters/ramey/front.svg",
  35867. extra: 790/787,
  35868. bottom: 27/817
  35869. }
  35870. },
  35871. },
  35872. [
  35873. {
  35874. name: "Normal",
  35875. height: math.unit(6, "feet"),
  35876. default: true
  35877. },
  35878. ]
  35879. ))
  35880. characterMakers.push(() => makeCharacter(
  35881. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35882. {
  35883. front: {
  35884. height: math.unit(5 + 5/12, "feet"),
  35885. weight: math.unit(120, "lb"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/phirae/front.svg",
  35889. extra: 2491/2436,
  35890. bottom: 38/2529
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Normal",
  35897. height: math.unit(5 + 5/12, "feet"),
  35898. default: true
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35904. {
  35905. front: {
  35906. height: math.unit(5 + 3/12, "feet"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/stagglas/front.svg",
  35910. extra: 962/882,
  35911. bottom: 53/1015
  35912. }
  35913. },
  35914. feral: {
  35915. height: math.unit(335, "cm"),
  35916. name: "Feral",
  35917. image: {
  35918. source: "./media/characters/stagglas/feral.svg",
  35919. extra: 1732/1090,
  35920. bottom: 48/1780
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(5 + 3/12, "feet"),
  35928. default: true
  35929. },
  35930. ]
  35931. ))
  35932. characterMakers.push(() => makeCharacter(
  35933. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35934. {
  35935. front: {
  35936. height: math.unit(5 + 4/12, "feet"),
  35937. weight: math.unit(145, "lb"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/starra/front.svg",
  35941. extra: 1790/1691,
  35942. bottom: 91/1881
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(5 + 4/12, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(2.2, "meters"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35962. extra: 1248/972,
  35963. bottom: 38/1286
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(2.2, "meters"),
  35971. default: true
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35977. {
  35978. side: {
  35979. height: math.unit(8 + 2/12, "feet"),
  35980. weight: math.unit(1240, "lb"),
  35981. name: "Side",
  35982. image: {
  35983. source: "./media/characters/mika-valentine/side.svg",
  35984. extra: 2670/2501,
  35985. bottom: 250/2920
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(8 + 2/12, "feet"),
  35993. default: true
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35999. {
  36000. front: {
  36001. height: math.unit(7 + 2/12, "feet"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/xoltol/front.svg",
  36005. extra: 2212/2124,
  36006. bottom: 84/2296
  36007. }
  36008. },
  36009. side: {
  36010. height: math.unit(7 + 2/12, "feet"),
  36011. name: "Side",
  36012. image: {
  36013. source: "./media/characters/xoltol/side.svg",
  36014. extra: 2273/2197,
  36015. bottom: 26/2299
  36016. }
  36017. },
  36018. hand: {
  36019. height: math.unit(2.5, "feet"),
  36020. name: "Hand",
  36021. image: {
  36022. source: "./media/characters/xoltol/hand.svg"
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Small-ish",
  36029. height: math.unit(5 + 11/12, "feet")
  36030. },
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(7 + 2/12, "feet")
  36034. },
  36035. {
  36036. name: "\"Macro\"",
  36037. height: math.unit(14 + 9/12, "feet"),
  36038. default: true
  36039. },
  36040. {
  36041. name: "Alternate Height",
  36042. height: math.unit(20, "feet")
  36043. },
  36044. {
  36045. name: "Actually Macro",
  36046. height: math.unit(100, "feet")
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(5 + 2/12, "feet"),
  36055. name: "Front",
  36056. image: {
  36057. source: "./media/characters/kotetsu-redwood/front.svg",
  36058. extra: 1053/942,
  36059. bottom: 60/1113
  36060. }
  36061. },
  36062. },
  36063. [
  36064. {
  36065. name: "Normal",
  36066. height: math.unit(5 + 2/12, "feet"),
  36067. default: true
  36068. },
  36069. ]
  36070. ))
  36071. characterMakers.push(() => makeCharacter(
  36072. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36073. {
  36074. front: {
  36075. height: math.unit(2.4, "meters"),
  36076. weight: math.unit(125, "kg"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/lilith/front.svg",
  36080. extra: 1590/1513,
  36081. bottom: 203/1793
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Humanoid",
  36088. height: math.unit(2.4, "meters")
  36089. },
  36090. {
  36091. name: "Normal",
  36092. height: math.unit(6, "meters"),
  36093. default: true
  36094. },
  36095. {
  36096. name: "Largest",
  36097. height: math.unit(55, "meters")
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(8 + 4/12, "feet"),
  36106. weight: math.unit(535, "lb"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/beh'kah-bolger/front.svg",
  36110. extra: 1660/1603,
  36111. bottom: 37/1697
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(8 + 4/12, "feet"),
  36119. default: true
  36120. },
  36121. {
  36122. name: "Kaiju",
  36123. height: math.unit(250, "feet")
  36124. },
  36125. {
  36126. name: "Still Growing",
  36127. height: math.unit(10, "miles")
  36128. },
  36129. {
  36130. name: "Continental",
  36131. height: math.unit(5000, "miles")
  36132. },
  36133. {
  36134. name: "Final Form",
  36135. height: math.unit(2500000, "miles")
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(7 + 2/12, "feet"),
  36144. weight: math.unit(230, "kg"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/tatyana-milewska/front.svg",
  36148. extra: 1199/1150,
  36149. bottom: 86/1285
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(7 + 2/12, "feet"),
  36157. default: true
  36158. },
  36159. {
  36160. name: "Big",
  36161. height: math.unit(12, "feet")
  36162. },
  36163. {
  36164. name: "Minimacro",
  36165. height: math.unit(20, "feet")
  36166. },
  36167. {
  36168. name: "Macro",
  36169. height: math.unit(120, "feet")
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(7 + 8/12, "feet"),
  36178. weight: math.unit(152, "kg"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/helen-arri/front.svg",
  36182. extra: 440/423,
  36183. bottom: 14/454
  36184. }
  36185. },
  36186. back: {
  36187. height: math.unit(7 + 8/12, "feet"),
  36188. weight: math.unit(152, "kg"),
  36189. name: "Back",
  36190. image: {
  36191. source: "./media/characters/helen-arri/back.svg",
  36192. extra: 443/426,
  36193. bottom: 8/451
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(7 + 8/12, "feet"),
  36201. default: true
  36202. },
  36203. {
  36204. name: "Big",
  36205. height: math.unit(14, "feet")
  36206. },
  36207. {
  36208. name: "Minimacro",
  36209. height: math.unit(24, "feet")
  36210. },
  36211. {
  36212. name: "Macro",
  36213. height: math.unit(140, "feet")
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(6, "meters"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/ehanu-rehu/front.svg",
  36225. extra: 1800/1800,
  36226. bottom: 59/1859
  36227. }
  36228. },
  36229. },
  36230. [
  36231. {
  36232. name: "Normal",
  36233. height: math.unit(6, "meters"),
  36234. default: true
  36235. },
  36236. ]
  36237. ))
  36238. characterMakers.push(() => makeCharacter(
  36239. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36240. {
  36241. front: {
  36242. height: math.unit(7 + 3/12, "feet"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/renholder/front.svg",
  36246. extra: 3096/2960,
  36247. bottom: 250/3346
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal Bat",
  36254. height: math.unit(7 + 3/12, "feet"),
  36255. default: true
  36256. },
  36257. {
  36258. name: "Slightly Tall Bat",
  36259. height: math.unit(100, "feet")
  36260. },
  36261. {
  36262. name: "Big Bat",
  36263. height: math.unit(1000, "feet")
  36264. },
  36265. {
  36266. name: "City-Sized Bat",
  36267. height: math.unit(200000, "feet")
  36268. },
  36269. {
  36270. name: "Bigger Bat",
  36271. height: math.unit(10000, "miles")
  36272. },
  36273. {
  36274. name: "Solar Sized Bat",
  36275. height: math.unit(100, "AU")
  36276. },
  36277. {
  36278. name: "Galactic Bat",
  36279. height: math.unit(200000, "lightyears")
  36280. },
  36281. {
  36282. name: "Universally Known Bat",
  36283. height: math.unit(1, "universe")
  36284. },
  36285. ]
  36286. ))
  36287. characterMakers.push(() => makeCharacter(
  36288. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36289. {
  36290. front: {
  36291. height: math.unit(6 + 11/12, "feet"),
  36292. weight: math.unit(250, "lb"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/cookiecat/front.svg",
  36296. extra: 893/827,
  36297. bottom: 14/907
  36298. }
  36299. },
  36300. },
  36301. [
  36302. {
  36303. name: "Micro",
  36304. height: math.unit(3, "inches")
  36305. },
  36306. {
  36307. name: "Normal",
  36308. height: math.unit(6 + 11/12, "feet"),
  36309. default: true
  36310. },
  36311. {
  36312. name: "Macro",
  36313. height: math.unit(100, "feet")
  36314. },
  36315. {
  36316. name: "Macro+",
  36317. height: math.unit(404, "feet")
  36318. },
  36319. {
  36320. name: "Megamacro",
  36321. height: math.unit(165, "miles")
  36322. },
  36323. {
  36324. name: "Planetary",
  36325. height: math.unit(4600, "miles")
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36331. {
  36332. front: {
  36333. height: math.unit(10 + 3/12, "feet"),
  36334. weight: math.unit(1500, "lb"),
  36335. name: "Front",
  36336. image: {
  36337. source: "./media/characters/tux-kusanagi/front.svg",
  36338. extra: 944/840,
  36339. bottom: 39/983
  36340. }
  36341. },
  36342. back: {
  36343. height: math.unit(10 + 3/12, "feet"),
  36344. weight: math.unit(1500, "lb"),
  36345. name: "Back",
  36346. image: {
  36347. source: "./media/characters/tux-kusanagi/back.svg",
  36348. extra: 941/842,
  36349. bottom: 28/969
  36350. }
  36351. },
  36352. rump: {
  36353. height: math.unit(5.25, "feet"),
  36354. name: "Rump",
  36355. image: {
  36356. source: "./media/characters/tux-kusanagi/rump.svg"
  36357. }
  36358. },
  36359. beak: {
  36360. height: math.unit(1.54, "feet"),
  36361. name: "Beak",
  36362. image: {
  36363. source: "./media/characters/tux-kusanagi/beak.svg"
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(10 + 3/12, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(58, "feet"),
  36380. weight: math.unit(200, "tons"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/uzarmazari/front.svg",
  36384. extra: 1575/1455,
  36385. bottom: 152/1727
  36386. }
  36387. },
  36388. back: {
  36389. height: math.unit(58, "feet"),
  36390. weight: math.unit(200, "tons"),
  36391. name: "Back",
  36392. image: {
  36393. source: "./media/characters/uzarmazari/back.svg",
  36394. extra: 1585/1510,
  36395. bottom: 157/1742
  36396. }
  36397. },
  36398. head: {
  36399. height: math.unit(26, "feet"),
  36400. name: "Head",
  36401. image: {
  36402. source: "./media/characters/uzarmazari/head.svg"
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(58, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36416. {
  36417. side: {
  36418. height: math.unit(15, "feet"),
  36419. name: "Side",
  36420. image: {
  36421. source: "./media/characters/akitu/side.svg",
  36422. extra: 1421/1321,
  36423. bottom: 157/1578
  36424. }
  36425. },
  36426. front: {
  36427. height: math.unit(15, "feet"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/akitu/front.svg",
  36431. extra: 1435/1326,
  36432. bottom: 232/1667
  36433. }
  36434. },
  36435. },
  36436. [
  36437. {
  36438. name: "Normal",
  36439. height: math.unit(15, "feet"),
  36440. default: true
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36446. {
  36447. front: {
  36448. height: math.unit(10 + 8/12, "feet"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/azalie-croixland/front.svg",
  36452. extra: 1972/1856,
  36453. bottom: 31/2003
  36454. }
  36455. },
  36456. },
  36457. [
  36458. {
  36459. name: "Original Height",
  36460. height: math.unit(5 + 4/12, "feet")
  36461. },
  36462. {
  36463. name: "Normal Height",
  36464. height: math.unit(10 + 8/12, "feet"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36471. {
  36472. side: {
  36473. height: math.unit(7 + 1/12, "feet"),
  36474. weight: math.unit(245, "lb"),
  36475. name: "Side",
  36476. image: {
  36477. source: "./media/characters/kavus-kazian/side.svg",
  36478. extra: 349/342,
  36479. bottom: 15/364
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(7 + 1/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36493. {
  36494. normalFront: {
  36495. height: math.unit(5 + 11/12, "feet"),
  36496. name: "Front",
  36497. image: {
  36498. source: "./media/characters/moonlight-rose/normal-front.svg",
  36499. extra: 1980/1825,
  36500. bottom: 18/1998
  36501. },
  36502. form: "normal",
  36503. default: true
  36504. },
  36505. normalBack: {
  36506. height: math.unit(5 + 11/12, "feet"),
  36507. name: "Back",
  36508. image: {
  36509. source: "./media/characters/moonlight-rose/normal-back.svg",
  36510. extra: 2010/1839,
  36511. bottom: 10/2020
  36512. },
  36513. form: "normal"
  36514. },
  36515. demonFront: {
  36516. height: math.unit(1.5, "earths"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/moonlight-rose/demon.svg",
  36520. extra: 1400/1294,
  36521. bottom: 45/1445
  36522. },
  36523. form: "demon",
  36524. default: true
  36525. },
  36526. terraFront: {
  36527. height: math.unit(1.5, "earths"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/moonlight-rose/terra.svg"
  36531. },
  36532. form: "terra",
  36533. default: true
  36534. },
  36535. jupiterFront: {
  36536. height: math.unit(69911*2, "km"),
  36537. name: "Front",
  36538. image: {
  36539. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36540. extra: 1367/1286,
  36541. bottom: 55/1422
  36542. },
  36543. form: "jupiter",
  36544. default: true
  36545. },
  36546. neptuneFront: {
  36547. height: math.unit(24622*2, "feet"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36551. extra: 1851/1712,
  36552. bottom: 0/1851
  36553. },
  36554. form: "neptune",
  36555. default: true
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "\"Natural\" Height",
  36561. height: math.unit(5 + 11/12, "feet"),
  36562. form: "normal"
  36563. },
  36564. {
  36565. name: "Smallest comfortable size",
  36566. height: math.unit(40, "meters"),
  36567. form: "normal"
  36568. },
  36569. {
  36570. name: "Common size",
  36571. height: math.unit(50, "km"),
  36572. form: "normal",
  36573. default: true
  36574. },
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(1.5, "earths"),
  36578. form: "demon",
  36579. default: true
  36580. },
  36581. {
  36582. name: "Universal",
  36583. height: math.unit(15, "universes"),
  36584. form: "demon"
  36585. },
  36586. {
  36587. name: "Earth",
  36588. height: math.unit(1.5, "earths"),
  36589. form: "terra",
  36590. default: true
  36591. },
  36592. {
  36593. name: "Super Earth",
  36594. height: math.unit(67.5, "earths"),
  36595. form: "terra"
  36596. },
  36597. {
  36598. name: "Doesn't fit in a solar system...",
  36599. height: math.unit(1, "galaxy"),
  36600. form: "terra"
  36601. },
  36602. {
  36603. name: "Saturn",
  36604. height: math.unit(58232*2, "km"),
  36605. form: "jupiter"
  36606. },
  36607. {
  36608. name: "Jupiter",
  36609. height: math.unit(69911*2, "km"),
  36610. form: "jupiter",
  36611. default: true
  36612. },
  36613. {
  36614. name: "HD 100546 b",
  36615. height: math.unit(482938, "km"),
  36616. form: "jupiter"
  36617. },
  36618. {
  36619. name: "Enceladus",
  36620. height: math.unit(513*2, "km"),
  36621. form: "neptune"
  36622. },
  36623. {
  36624. name: "Europe",
  36625. height: math.unit(1560*2, "km"),
  36626. form: "neptune"
  36627. },
  36628. {
  36629. name: "Neptune",
  36630. height: math.unit(24622*2, "km"),
  36631. form: "neptune",
  36632. default: true
  36633. },
  36634. {
  36635. name: "CoRoT-9b",
  36636. height: math.unit(75067*2, "km"),
  36637. form: "neptune"
  36638. },
  36639. ],
  36640. {
  36641. "normal": {
  36642. name: "Normal",
  36643. default: true
  36644. },
  36645. "demon": {
  36646. name: "Demon"
  36647. },
  36648. "terra": {
  36649. name: "Terra"
  36650. },
  36651. "jupiter": {
  36652. name: "Jupiter"
  36653. },
  36654. "neptune": {
  36655. name: "Neptune"
  36656. }
  36657. }
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(16, "feet"),
  36664. weight: math.unit(610, "kg"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/huckle/front.svg",
  36668. extra: 1731/1625,
  36669. bottom: 33/1764
  36670. }
  36671. },
  36672. back: {
  36673. height: math.unit(16, "feet"),
  36674. weight: math.unit(610, "kg"),
  36675. name: "Back",
  36676. image: {
  36677. source: "./media/characters/huckle/back.svg",
  36678. extra: 1738/1651,
  36679. bottom: 37/1775
  36680. }
  36681. },
  36682. laughing: {
  36683. height: math.unit(3.75, "feet"),
  36684. name: "Laughing",
  36685. image: {
  36686. source: "./media/characters/huckle/laughing.svg"
  36687. }
  36688. },
  36689. angry: {
  36690. height: math.unit(4.15, "feet"),
  36691. name: "Angry",
  36692. image: {
  36693. source: "./media/characters/huckle/angry.svg"
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(16, "feet"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Mini Macro",
  36705. height: math.unit(463, "feet")
  36706. },
  36707. {
  36708. name: "Macro",
  36709. height: math.unit(1680, "meters")
  36710. },
  36711. {
  36712. name: "Mega Macro",
  36713. height: math.unit(175, "km")
  36714. },
  36715. {
  36716. name: "Terra Macro",
  36717. height: math.unit(32, "gigameters")
  36718. },
  36719. {
  36720. name: "Multiverse+",
  36721. height: math.unit(2.56e23, "yottameters")
  36722. },
  36723. ]
  36724. ))
  36725. characterMakers.push(() => makeCharacter(
  36726. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36727. {
  36728. front: {
  36729. height: math.unit(6 + 9/12, "feet"),
  36730. weight: math.unit(280, "lb"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/candy/front.svg",
  36734. extra: 234/217,
  36735. bottom: 11/245
  36736. }
  36737. },
  36738. },
  36739. [
  36740. {
  36741. name: "Really Small",
  36742. height: math.unit(0.1, "nm")
  36743. },
  36744. {
  36745. name: "Micro",
  36746. height: math.unit(2, "inches")
  36747. },
  36748. {
  36749. name: "Normal",
  36750. height: math.unit(6 + 9/12, "feet"),
  36751. default: true
  36752. },
  36753. {
  36754. name: "Small Macro",
  36755. height: math.unit(69, "feet")
  36756. },
  36757. {
  36758. name: "Macro",
  36759. height: math.unit(160, "feet")
  36760. },
  36761. {
  36762. name: "Megamacro",
  36763. height: math.unit(22000, "miles")
  36764. },
  36765. {
  36766. name: "Gigamacro",
  36767. height: math.unit(50000, "miles")
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(4, "feet"),
  36776. weight: math.unit(90, "lb"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/joey-mcdonald/front.svg",
  36780. extra: 1059/852,
  36781. bottom: 33/1092
  36782. }
  36783. },
  36784. back: {
  36785. height: math.unit(4, "feet"),
  36786. weight: math.unit(90, "lb"),
  36787. name: "Back",
  36788. image: {
  36789. source: "./media/characters/joey-mcdonald/back.svg",
  36790. extra: 1077/879,
  36791. bottom: 5/1082
  36792. }
  36793. },
  36794. frontKobold: {
  36795. height: math.unit(4, "feet"),
  36796. weight: math.unit(100, "lb"),
  36797. name: "Front-kobold",
  36798. image: {
  36799. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36800. extra: 1480/1367,
  36801. bottom: 0/1480
  36802. }
  36803. },
  36804. backKobold: {
  36805. height: math.unit(4, "feet"),
  36806. weight: math.unit(100, "lb"),
  36807. name: "Back-kobold",
  36808. image: {
  36809. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36810. extra: 1449/1361,
  36811. bottom: 0/1449
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(4, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(12 + 6/12, "feet"),
  36828. name: "Front",
  36829. image: {
  36830. source: "./media/characters/kass-lockheed/front.svg",
  36831. extra: 354/343,
  36832. bottom: 9/363
  36833. }
  36834. },
  36835. back: {
  36836. height: math.unit(12 + 6/12, "feet"),
  36837. name: "Back",
  36838. image: {
  36839. source: "./media/characters/kass-lockheed/back.svg",
  36840. extra: 364/352,
  36841. bottom: 3/367
  36842. }
  36843. },
  36844. dick: {
  36845. height: math.unit(3.12, "feet"),
  36846. name: "Dick",
  36847. image: {
  36848. source: "./media/characters/kass-lockheed/dick.svg"
  36849. }
  36850. },
  36851. head: {
  36852. height: math.unit(2.6, "feet"),
  36853. name: "Head",
  36854. image: {
  36855. source: "./media/characters/kass-lockheed/head.svg"
  36856. }
  36857. },
  36858. bleh: {
  36859. height: math.unit(2.85, "feet"),
  36860. name: "Bleh",
  36861. image: {
  36862. source: "./media/characters/kass-lockheed/bleh.svg"
  36863. }
  36864. },
  36865. smug: {
  36866. height: math.unit(2.85, "feet"),
  36867. name: "Smug",
  36868. image: {
  36869. source: "./media/characters/kass-lockheed/smug.svg"
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(12 + 6/12, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(6 + 2/12, "feet"),
  36886. name: "Front",
  36887. image: {
  36888. source: "./media/characters/taylor/front.svg",
  36889. extra: 639/495,
  36890. bottom: 12/651
  36891. }
  36892. },
  36893. },
  36894. [
  36895. {
  36896. name: "Normal",
  36897. height: math.unit(6 + 2/12, "feet"),
  36898. default: true
  36899. },
  36900. {
  36901. name: "Big",
  36902. height: math.unit(15, "feet")
  36903. },
  36904. {
  36905. name: "Lorg",
  36906. height: math.unit(80, "feet")
  36907. },
  36908. {
  36909. name: "Too Lorg",
  36910. height: math.unit(120, "feet")
  36911. },
  36912. ]
  36913. ))
  36914. characterMakers.push(() => makeCharacter(
  36915. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36916. {
  36917. front: {
  36918. height: math.unit(15, "feet"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/kaizer/front.svg",
  36922. extra: 1612/1436,
  36923. bottom: 43/1655
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(15, "feet"),
  36931. default: true
  36932. },
  36933. ]
  36934. ))
  36935. characterMakers.push(() => makeCharacter(
  36936. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36937. {
  36938. front: {
  36939. height: math.unit(2, "feet"),
  36940. weight: math.unit(30, "lb"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/sandy/front.svg",
  36944. extra: 1439/1307,
  36945. bottom: 194/1633
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Normal",
  36952. height: math.unit(2, "feet"),
  36953. default: true
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36959. {
  36960. front: {
  36961. height: math.unit(3, "feet"),
  36962. name: "Front",
  36963. image: {
  36964. source: "./media/characters/mellvi/front.svg",
  36965. extra: 1831/1630,
  36966. bottom: 58/1889
  36967. }
  36968. },
  36969. },
  36970. [
  36971. {
  36972. name: "Normal",
  36973. height: math.unit(3, "feet"),
  36974. default: true
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(5 + 11/12, "feet"),
  36983. weight: math.unit(200, "lb"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/shirou/front.svg",
  36987. extra: 2491/2383,
  36988. bottom: 189/2680
  36989. }
  36990. },
  36991. back: {
  36992. height: math.unit(5 + 11/12, "feet"),
  36993. weight: math.unit(200, "lb"),
  36994. name: "Back",
  36995. image: {
  36996. source: "./media/characters/shirou/back.svg",
  36997. extra: 2554/2450,
  36998. bottom: 76/2630
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(5 + 11/12, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(6 + 3/12, "feet"),
  37015. weight: math.unit(177, "lb"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/noryu/front.svg",
  37019. extra: 973/885,
  37020. bottom: 10/983
  37021. }
  37022. },
  37023. },
  37024. [
  37025. {
  37026. name: "Normal",
  37027. height: math.unit(6 + 3/12, "feet"),
  37028. default: true
  37029. },
  37030. ]
  37031. ))
  37032. characterMakers.push(() => makeCharacter(
  37033. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37034. {
  37035. front: {
  37036. height: math.unit(5 + 6/12, "feet"),
  37037. weight: math.unit(170, "lb"),
  37038. name: "Front",
  37039. image: {
  37040. source: "./media/characters/mevolas-rubenido/front.svg",
  37041. extra: 2109/1901,
  37042. bottom: 96/2205
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(5 + 6/12, "feet"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37056. {
  37057. front: {
  37058. height: math.unit(100, "feet"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/dee/front.svg",
  37062. extra: 2153/2036,
  37063. bottom: 59/2212
  37064. }
  37065. },
  37066. back: {
  37067. height: math.unit(100, "feet"),
  37068. name: "Back",
  37069. image: {
  37070. source: "./media/characters/dee/back.svg",
  37071. extra: 2183/2058,
  37072. bottom: 75/2258
  37073. }
  37074. },
  37075. foot: {
  37076. height: math.unit(19.43, "feet"),
  37077. name: "Foot",
  37078. image: {
  37079. source: "./media/characters/dee/foot.svg"
  37080. }
  37081. },
  37082. hoof: {
  37083. height: math.unit(20.6, "feet"),
  37084. name: "Hoof",
  37085. image: {
  37086. source: "./media/characters/dee/hoof.svg"
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Macro",
  37093. height: math.unit(100, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(5 + 6/12, "feet"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/teh/front.svg",
  37106. extra: 1002/847,
  37107. bottom: 62/1064
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(5 + 6/12, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37121. {
  37122. side: {
  37123. height: math.unit(6 + 1/12, "feet"),
  37124. weight: math.unit(204, "lb"),
  37125. name: "Side",
  37126. image: {
  37127. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37128. extra: 974/775,
  37129. bottom: 169/1143
  37130. }
  37131. },
  37132. sitting: {
  37133. height: math.unit(6 + 2/12, "feet"),
  37134. weight: math.unit(204, "lb"),
  37135. name: "Sitting",
  37136. image: {
  37137. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37138. extra: 1175/964,
  37139. bottom: 378/1553
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(6 + 1/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(6, "inches"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/tululi/front.svg",
  37159. extra: 1997/1876,
  37160. bottom: 20/2017
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(6, "inches"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(4 + 1/12, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/star/front.svg",
  37180. extra: 1493/1189,
  37181. bottom: 48/1541
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(4 + 1/12, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(6 + 3/12, "feet"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/comet/front.svg",
  37201. extra: 1681/1462,
  37202. bottom: 26/1707
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(6 + 3/12, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(950, "feet"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/vortex/front.svg",
  37222. extra: 1497/1434,
  37223. bottom: 56/1553
  37224. }
  37225. },
  37226. maw: {
  37227. height: math.unit(285, "feet"),
  37228. name: "Maw",
  37229. image: {
  37230. source: "./media/characters/vortex/maw.svg"
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Macro",
  37237. height: math.unit(950, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(600, "feet"),
  37247. weight: math.unit(0.02, "grams"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/doodle/front.svg",
  37251. extra: 1578/1413,
  37252. bottom: 37/1615
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Macro",
  37259. height: math.unit(600, "feet"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(6 + 6/12, "feet"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/jai/front.svg",
  37272. extra: 1645/1534,
  37273. bottom: 115/1760
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(6 + 6/12, "feet"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(6 + 8/12, "feet"),
  37290. name: "Front",
  37291. image: {
  37292. source: "./media/characters/pixel/front.svg",
  37293. extra: 1900/1735,
  37294. bottom: 63/1963
  37295. }
  37296. },
  37297. },
  37298. [
  37299. {
  37300. name: "Normal",
  37301. height: math.unit(6 + 8/12, "feet"),
  37302. default: true
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37308. {
  37309. back: {
  37310. height: math.unit(4 + 1/12, "feet"),
  37311. weight: math.unit(75, "lb"),
  37312. name: "Back",
  37313. image: {
  37314. source: "./media/characters/rhett/back.svg",
  37315. extra: 930/878,
  37316. bottom: 25/955
  37317. }
  37318. },
  37319. front: {
  37320. height: math.unit(4 + 1/12, "feet"),
  37321. weight: math.unit(75, "lb"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/rhett/front.svg",
  37325. extra: 1682/1586,
  37326. bottom: 92/1774
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Micro",
  37333. height: math.unit(8, "inches")
  37334. },
  37335. {
  37336. name: "Tiny",
  37337. height: math.unit(2, "feet")
  37338. },
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(4 + 1/12, "feet"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(3 + 3/12, "feet"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/penny/front.svg",
  37354. extra: 1406/1311,
  37355. bottom: 26/1432
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(3 + 3/12, "feet"),
  37363. default: true
  37364. },
  37365. ]
  37366. ))
  37367. characterMakers.push(() => makeCharacter(
  37368. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37369. {
  37370. front: {
  37371. height: math.unit(4 + 11/12, "feet"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/monty/front.svg",
  37375. extra: 1479/1209,
  37376. bottom: 0/1479
  37377. }
  37378. },
  37379. },
  37380. [
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(4 + 11/12, "feet"),
  37384. default: true
  37385. },
  37386. ]
  37387. ))
  37388. characterMakers.push(() => makeCharacter(
  37389. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37390. {
  37391. front: {
  37392. height: math.unit(8 + 4/12, "feet"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/sterling/front.svg",
  37396. extra: 1420/1236,
  37397. bottom: 27/1447
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(8 + 4/12, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(15, "feet"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/marble/front.svg",
  37417. extra: 973/937,
  37418. bottom: 32/1005
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(15, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37432. {
  37433. front: {
  37434. height: math.unit(3, "inches"),
  37435. name: "Front",
  37436. image: {
  37437. source: "./media/characters/powder/front.svg",
  37438. extra: 1504/1334,
  37439. bottom: 518/2022
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(3, "inches"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(4 + 5/12, "feet"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/joey-raccoon/front.svg",
  37459. extra: 1273/1197,
  37460. bottom: 0/1273
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(4 + 5/12, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(8 + 4/12, "feet"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/vick/front.svg",
  37480. extra: 2187/2118,
  37481. bottom: 47/2234
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(8 + 4/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(5 + 5/12, "feet"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/mitsy/front.svg",
  37501. extra: 1842/1695,
  37502. bottom: 0/1842
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(5 + 5/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(6 + 3/12, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/silvy/front.svg",
  37522. extra: 1995/1836,
  37523. bottom: 225/2220
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(6 + 3/12, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(3 + 8/12, "feet"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/rodney/front.svg",
  37543. extra: 1956/1747,
  37544. bottom: 31/1987
  37545. }
  37546. },
  37547. frontDressed: {
  37548. height: math.unit(2.9, "feet"),
  37549. name: "Front (Dressed)",
  37550. image: {
  37551. source: "./media/characters/rodney/front-dressed.svg",
  37552. extra: 1382/1241,
  37553. bottom: 385/1767
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(3 + 8/12, "feet"),
  37561. default: true
  37562. },
  37563. ]
  37564. ))
  37565. characterMakers.push(() => makeCharacter(
  37566. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37567. {
  37568. front: {
  37569. height: math.unit(5 + 9/12, "feet"),
  37570. weight: math.unit(194, "lbs"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/zakail-sudekai/front.svg",
  37574. extra: 2696/2533,
  37575. bottom: 248/2944
  37576. }
  37577. },
  37578. maw: {
  37579. height: math.unit(1.35, "feet"),
  37580. name: "Maw",
  37581. image: {
  37582. source: "./media/characters/zakail-sudekai/maw.svg"
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Normal",
  37589. height: math.unit(5 + 9/12, "feet"),
  37590. default: true
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(8 + 4/12, "feet"),
  37599. weight: math.unit(1200, "lb"),
  37600. name: "Front",
  37601. image: {
  37602. source: "./media/characters/eleanor/front.svg",
  37603. extra: 1226/1192,
  37604. bottom: 52/1278
  37605. }
  37606. },
  37607. back: {
  37608. height: math.unit(8 + 4/12, "feet"),
  37609. weight: math.unit(1200, "lb"),
  37610. name: "Back",
  37611. image: {
  37612. source: "./media/characters/eleanor/back.svg",
  37613. extra: 1242/1184,
  37614. bottom: 60/1302
  37615. }
  37616. },
  37617. head: {
  37618. height: math.unit(2.62, "feet"),
  37619. name: "Head",
  37620. image: {
  37621. source: "./media/characters/eleanor/head.svg"
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Normal",
  37628. height: math.unit(8 + 4/12, "feet"),
  37629. default: true
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37635. {
  37636. front: {
  37637. height: math.unit(8 + 4/12, "feet"),
  37638. weight: math.unit(750, "lb"),
  37639. name: "Front",
  37640. image: {
  37641. source: "./media/characters/tanya/front.svg",
  37642. extra: 1749/1615,
  37643. bottom: 33/1782
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(8 + 4/12, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37657. {
  37658. front: {
  37659. height: math.unit(5, "feet"),
  37660. weight: math.unit(225, "lb"),
  37661. name: "Front",
  37662. image: {
  37663. source: "./media/characters/cindy/front.svg",
  37664. extra: 1320/1250,
  37665. bottom: 42/1362
  37666. }
  37667. },
  37668. frontDressed: {
  37669. height: math.unit(5, "feet"),
  37670. weight: math.unit(225, "lb"),
  37671. name: "Front (Dressed)",
  37672. image: {
  37673. source: "./media/characters/cindy/front-dressed.svg",
  37674. extra: 1320/1250,
  37675. bottom: 42/1362
  37676. }
  37677. },
  37678. back: {
  37679. height: math.unit(5, "feet"),
  37680. weight: math.unit(225, "lb"),
  37681. name: "Back",
  37682. image: {
  37683. source: "./media/characters/cindy/back.svg",
  37684. extra: 1384/1346,
  37685. bottom: 14/1398
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(5, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(6 + 9/12, "feet"),
  37702. weight: math.unit(440, "lb"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/wilbur-owen/front.svg",
  37706. extra: 1575/1448,
  37707. bottom: 72/1647
  37708. }
  37709. },
  37710. back: {
  37711. height: math.unit(6 + 9/12, "feet"),
  37712. weight: math.unit(440, "lb"),
  37713. name: "Back",
  37714. image: {
  37715. source: "./media/characters/wilbur-owen/back.svg",
  37716. extra: 1578/1445,
  37717. bottom: 36/1614
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(6 + 9/12, "feet"),
  37725. default: true
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(6 + 5/12, "feet"),
  37734. weight: math.unit(650, "lb"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/keegan/front.svg",
  37738. extra: 2387/2198,
  37739. bottom: 33/2420
  37740. }
  37741. },
  37742. side: {
  37743. height: math.unit(6 + 5/12, "feet"),
  37744. weight: math.unit(650, "lb"),
  37745. name: "Side",
  37746. image: {
  37747. source: "./media/characters/keegan/side.svg",
  37748. extra: 2390/2202,
  37749. bottom: 47/2437
  37750. }
  37751. },
  37752. back: {
  37753. height: math.unit(6 + 5/12, "feet"),
  37754. weight: math.unit(650, "lb"),
  37755. name: "Back",
  37756. image: {
  37757. source: "./media/characters/keegan/back.svg",
  37758. extra: 2418/2268,
  37759. bottom: 15/2433
  37760. }
  37761. },
  37762. frontSfw: {
  37763. height: math.unit(6 + 5/12, "feet"),
  37764. weight: math.unit(650, "lb"),
  37765. name: "Front (SFW)",
  37766. image: {
  37767. source: "./media/characters/keegan/front-sfw.svg",
  37768. extra: 2387/2198,
  37769. bottom: 33/2420
  37770. }
  37771. },
  37772. beans: {
  37773. height: math.unit(1.85, "feet"),
  37774. name: "Beans",
  37775. image: {
  37776. source: "./media/characters/keegan/beans.svg"
  37777. }
  37778. },
  37779. },
  37780. [
  37781. {
  37782. name: "Normal",
  37783. height: math.unit(6 + 5/12, "feet"),
  37784. default: true
  37785. },
  37786. ]
  37787. ))
  37788. characterMakers.push(() => makeCharacter(
  37789. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37790. {
  37791. front: {
  37792. height: math.unit(9, "feet"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/colton/front.svg",
  37796. extra: 1589/1326,
  37797. bottom: 139/1728
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(9, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(2 + 9/12, "feet"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/bora/front.svg",
  37817. extra: 1265/1250,
  37818. bottom: 24/1289
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(2 + 9/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(8, "feet"),
  37835. name: "Front",
  37836. image: {
  37837. source: "./media/characters/myu-myu/front.svg",
  37838. extra: 1949/1857,
  37839. bottom: 90/2039
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Normal",
  37846. height: math.unit(8, "feet"),
  37847. default: true
  37848. },
  37849. {
  37850. name: "Big",
  37851. height: math.unit(15, "feet")
  37852. },
  37853. {
  37854. name: "BIG",
  37855. height: math.unit(25, "feet")
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37861. {
  37862. side: {
  37863. height: math.unit(7 + 5/12, "feet"),
  37864. weight: math.unit(2800, "lb"),
  37865. name: "Side",
  37866. image: {
  37867. source: "./media/characters/haloren/side.svg",
  37868. extra: 1793/409,
  37869. bottom: 59/1852
  37870. }
  37871. },
  37872. frontPaw: {
  37873. height: math.unit(2.36, "feet"),
  37874. name: "Front paw",
  37875. image: {
  37876. source: "./media/characters/haloren/front-paw.svg"
  37877. }
  37878. },
  37879. hindPaw: {
  37880. height: math.unit(3.18, "feet"),
  37881. name: "Hind paw",
  37882. image: {
  37883. source: "./media/characters/haloren/hind-paw.svg"
  37884. }
  37885. },
  37886. maw: {
  37887. height: math.unit(5.05, "feet"),
  37888. name: "Maw",
  37889. image: {
  37890. source: "./media/characters/haloren/maw.svg"
  37891. }
  37892. },
  37893. dick: {
  37894. height: math.unit(2.90, "feet"),
  37895. name: "Dick",
  37896. image: {
  37897. source: "./media/characters/haloren/dick.svg"
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(7 + 5/12, "feet"),
  37905. default: true
  37906. },
  37907. {
  37908. name: "Enhanced",
  37909. height: math.unit(14 + 3/12, "feet")
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(171, "cm"),
  37918. name: "Front",
  37919. image: {
  37920. source: "./media/characters/kimmy/front.svg",
  37921. extra: 1491/1435,
  37922. bottom: 53/1544
  37923. }
  37924. },
  37925. },
  37926. [
  37927. {
  37928. name: "Small",
  37929. height: math.unit(9, "cm")
  37930. },
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(171, "cm"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(8, "feet"),
  37943. weight: math.unit(300, "lb"),
  37944. name: "Front",
  37945. image: {
  37946. source: "./media/characters/galeboomer/front.svg",
  37947. extra: 4651/4415,
  37948. bottom: 162/4813
  37949. }
  37950. },
  37951. back: {
  37952. height: math.unit(8, "feet"),
  37953. weight: math.unit(300, "lb"),
  37954. name: "Back",
  37955. image: {
  37956. source: "./media/characters/galeboomer/back.svg",
  37957. extra: 4544/4314,
  37958. bottom: 16/4560
  37959. }
  37960. },
  37961. frontAlt: {
  37962. height: math.unit(8, "feet"),
  37963. weight: math.unit(300, "lb"),
  37964. name: "Front (Alt)",
  37965. image: {
  37966. source: "./media/characters/galeboomer/front-alt.svg",
  37967. extra: 4458/4228,
  37968. bottom: 68/4526
  37969. }
  37970. },
  37971. maw: {
  37972. height: math.unit(1.2, "feet"),
  37973. name: "Maw",
  37974. image: {
  37975. source: "./media/characters/galeboomer/maw.svg"
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(8, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(5 + 9/12, "feet"),
  37992. weight: math.unit(120, "lb"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/chyr/front.svg",
  37996. extra: 1323/1254,
  37997. bottom: 63/1386
  37998. }
  37999. },
  38000. back: {
  38001. height: math.unit(5 + 9/12, "feet"),
  38002. weight: math.unit(120, "lb"),
  38003. name: "Back",
  38004. image: {
  38005. source: "./media/characters/chyr/back.svg",
  38006. extra: 1323/1252,
  38007. bottom: 48/1371
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(5 + 9/12, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(7, "feet"),
  38024. weight: math.unit(310, "lb"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/solarus/front.svg",
  38028. extra: 2415/2021,
  38029. bottom: 103/2518
  38030. }
  38031. },
  38032. back: {
  38033. height: math.unit(7, "feet"),
  38034. weight: math.unit(310, "lb"),
  38035. name: "Back",
  38036. image: {
  38037. source: "./media/characters/solarus/back.svg",
  38038. extra: 2463/2089,
  38039. bottom: 79/2542
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(7, "feet"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(16, "feet"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38059. extra: 1844/1780,
  38060. bottom: 58/1902
  38061. }
  38062. },
  38063. winterCoat: {
  38064. height: math.unit(16, "feet"),
  38065. name: "Winter Coat",
  38066. image: {
  38067. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38068. extra: 1807/1775,
  38069. bottom: 69/1876
  38070. }
  38071. },
  38072. },
  38073. [
  38074. {
  38075. name: "Normal",
  38076. height: math.unit(16, "feet"),
  38077. default: true
  38078. },
  38079. {
  38080. name: "Chicago Size",
  38081. height: math.unit(560, "feet")
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(11 + 6/12, "feet"),
  38090. weight: math.unit(1366, "lb"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/lexor/front.svg",
  38094. extra: 1560/1481,
  38095. bottom: 211/1771
  38096. }
  38097. },
  38098. back: {
  38099. height: math.unit(11 + 6/12, "feet"),
  38100. weight: math.unit(1366, "lb"),
  38101. name: "Back",
  38102. image: {
  38103. source: "./media/characters/lexor/back.svg",
  38104. extra: 1614/1533,
  38105. bottom: 76/1690
  38106. }
  38107. },
  38108. maw: {
  38109. height: math.unit(3, "feet"),
  38110. name: "Maw",
  38111. image: {
  38112. source: "./media/characters/lexor/maw.svg"
  38113. }
  38114. },
  38115. dick: {
  38116. height: math.unit(2.59, "feet"),
  38117. name: "Dick",
  38118. image: {
  38119. source: "./media/characters/lexor/dick.svg"
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(11 + 6/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38133. {
  38134. front: {
  38135. height: math.unit(5 + 8/12, "feet"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/magnum/front.svg",
  38139. extra: 942/855,
  38140. bottom: 26/968
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(5 + 8/12, "feet"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38154. {
  38155. front: {
  38156. height: math.unit(18 + 4/12, "feet"),
  38157. weight: math.unit(1500, "kg"),
  38158. name: "Front",
  38159. image: {
  38160. source: "./media/characters/solas-sharpsman/front.svg",
  38161. extra: 1698/1589,
  38162. bottom: 0/1698
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Normal",
  38169. height: math.unit(18 + 4/12, "feet"),
  38170. default: true
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(5 + 5/12, "feet"),
  38179. weight: math.unit(180, "lb"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/october/front.svg",
  38183. extra: 1800/1650,
  38184. bottom: 0/1800
  38185. }
  38186. },
  38187. frontNsfw: {
  38188. height: math.unit(5 + 5/12, "feet"),
  38189. weight: math.unit(180, "lb"),
  38190. name: "Front (NSFW)",
  38191. image: {
  38192. source: "./media/characters/october/front-nsfw.svg",
  38193. extra: 1392/1307,
  38194. bottom: 42/1434
  38195. }
  38196. },
  38197. },
  38198. [
  38199. {
  38200. name: "Normal",
  38201. height: math.unit(5 + 5/12, "feet"),
  38202. default: true
  38203. },
  38204. ]
  38205. ))
  38206. characterMakers.push(() => makeCharacter(
  38207. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38208. {
  38209. front: {
  38210. height: math.unit(8 + 6/12, "feet"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/essynkardi/front.svg",
  38214. extra: 1914/1846,
  38215. bottom: 22/1936
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(8 + 6/12, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(6 + 6/12, "feet"),
  38232. weight: math.unit(7, "lb"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/icky/front.svg",
  38236. extra: 813/782,
  38237. bottom: 66/879
  38238. }
  38239. },
  38240. back: {
  38241. height: math.unit(6 + 6/12, "feet"),
  38242. weight: math.unit(7, "lb"),
  38243. name: "Back",
  38244. image: {
  38245. source: "./media/characters/icky/back.svg",
  38246. extra: 754/735,
  38247. bottom: 56/810
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6 + 6/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(15, "feet"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/rojas/front.svg",
  38267. extra: 1462/1408,
  38268. bottom: 95/1557
  38269. }
  38270. },
  38271. back: {
  38272. height: math.unit(15, "feet"),
  38273. name: "Back",
  38274. image: {
  38275. source: "./media/characters/rojas/back.svg",
  38276. extra: 1023/954,
  38277. bottom: 28/1051
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(15, "feet"),
  38285. default: true
  38286. },
  38287. ]
  38288. ))
  38289. characterMakers.push(() => makeCharacter(
  38290. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38291. {
  38292. frontHuman: {
  38293. height: math.unit(5 + 7/12, "feet"),
  38294. name: "Front (Human)",
  38295. image: {
  38296. source: "./media/characters/alek-dryagan/front-human.svg",
  38297. extra: 1687/1667,
  38298. bottom: 69/1756
  38299. }
  38300. },
  38301. backHuman: {
  38302. height: math.unit(5 + 7/12, "feet"),
  38303. name: "Back (Human)",
  38304. image: {
  38305. source: "./media/characters/alek-dryagan/back-human.svg",
  38306. extra: 1670/1649,
  38307. bottom: 65/1735
  38308. }
  38309. },
  38310. frontDemi: {
  38311. height: math.unit(65, "feet"),
  38312. name: "Front (Demi)",
  38313. image: {
  38314. source: "./media/characters/alek-dryagan/front-demi.svg",
  38315. extra: 1669/1642,
  38316. bottom: 49/1718
  38317. }
  38318. },
  38319. backDemi: {
  38320. height: math.unit(65, "feet"),
  38321. name: "Back (Demi)",
  38322. image: {
  38323. source: "./media/characters/alek-dryagan/back-demi.svg",
  38324. extra: 1658/1637,
  38325. bottom: 40/1698
  38326. }
  38327. },
  38328. mawHuman: {
  38329. height: math.unit(0.3, "feet"),
  38330. name: "Maw (Human)",
  38331. image: {
  38332. source: "./media/characters/alek-dryagan/maw-human.svg"
  38333. }
  38334. },
  38335. mawDemi: {
  38336. height: math.unit(3.8, "feet"),
  38337. name: "Maw (Demi)",
  38338. image: {
  38339. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38340. }
  38341. },
  38342. },
  38343. [
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(5 + 7/12, "feet"),
  38347. default: true
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38353. {
  38354. frontHuman: {
  38355. height: math.unit(5 + 2/12, "feet"),
  38356. name: "Front (Human)",
  38357. image: {
  38358. source: "./media/characters/gen/front-human.svg",
  38359. extra: 1627/1538,
  38360. bottom: 71/1698
  38361. }
  38362. },
  38363. backHuman: {
  38364. height: math.unit(5 + 2/12, "feet"),
  38365. name: "Back (Human)",
  38366. image: {
  38367. source: "./media/characters/gen/back-human.svg",
  38368. extra: 1638/1548,
  38369. bottom: 69/1707
  38370. }
  38371. },
  38372. frontDemi: {
  38373. height: math.unit(5 + 2/12, "feet"),
  38374. name: "Front (Demi)",
  38375. image: {
  38376. source: "./media/characters/gen/front-demi.svg",
  38377. extra: 1627/1538,
  38378. bottom: 71/1698
  38379. }
  38380. },
  38381. backDemi: {
  38382. height: math.unit(5 + 2/12, "feet"),
  38383. name: "Back (Demi)",
  38384. image: {
  38385. source: "./media/characters/gen/back-demi.svg",
  38386. extra: 1638/1548,
  38387. bottom: 69/1707
  38388. }
  38389. },
  38390. },
  38391. [
  38392. {
  38393. name: "Normal",
  38394. height: math.unit(5 + 2/12, "feet"),
  38395. default: true
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38401. {
  38402. frontImp: {
  38403. height: math.unit(1 + 11/12, "feet"),
  38404. name: "Front (Imp)",
  38405. image: {
  38406. source: "./media/characters/max-kobold/front-imp.svg",
  38407. extra: 1238/1134,
  38408. bottom: 81/1319
  38409. }
  38410. },
  38411. backImp: {
  38412. height: math.unit(1 + 11/12, "feet"),
  38413. name: "Back (Imp)",
  38414. image: {
  38415. source: "./media/characters/max-kobold/back-imp.svg",
  38416. extra: 1334/1175,
  38417. bottom: 34/1368
  38418. }
  38419. },
  38420. frontDemi: {
  38421. height: math.unit(5 + 9/12, "feet"),
  38422. name: "Front (Demi)",
  38423. image: {
  38424. source: "./media/characters/max-kobold/front-demi.svg",
  38425. extra: 1715/1685,
  38426. bottom: 54/1769
  38427. }
  38428. },
  38429. backDemi: {
  38430. height: math.unit(5 + 9/12, "feet"),
  38431. name: "Back (Demi)",
  38432. image: {
  38433. source: "./media/characters/max-kobold/back-demi.svg",
  38434. extra: 1752/1729,
  38435. bottom: 41/1793
  38436. }
  38437. },
  38438. handImp: {
  38439. height: math.unit(0.45, "feet"),
  38440. name: "Hand (Imp)",
  38441. image: {
  38442. source: "./media/characters/max-kobold/hand.svg"
  38443. }
  38444. },
  38445. pawImp: {
  38446. height: math.unit(0.46, "feet"),
  38447. name: "Paw (Imp)",
  38448. image: {
  38449. source: "./media/characters/max-kobold/paw.svg"
  38450. }
  38451. },
  38452. handDemi: {
  38453. height: math.unit(0.80, "feet"),
  38454. name: "Hand (Demi)",
  38455. image: {
  38456. source: "./media/characters/max-kobold/hand.svg"
  38457. }
  38458. },
  38459. pawDemi: {
  38460. height: math.unit(1.1, "feet"),
  38461. name: "Paw (Demi)",
  38462. image: {
  38463. source: "./media/characters/max-kobold/paw.svg"
  38464. }
  38465. },
  38466. headImp: {
  38467. height: math.unit(1.33, "feet"),
  38468. name: "Head (Imp)",
  38469. image: {
  38470. source: "./media/characters/max-kobold/head-imp.svg"
  38471. }
  38472. },
  38473. mawImp: {
  38474. height: math.unit(0.75, "feet"),
  38475. name: "Maw (Imp)",
  38476. image: {
  38477. source: "./media/characters/max-kobold/maw-imp.svg"
  38478. }
  38479. },
  38480. mawDemi: {
  38481. height: math.unit(0.42, "feet"),
  38482. name: "Maw (Demi)",
  38483. image: {
  38484. source: "./media/characters/max-kobold/maw-demi.svg"
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(1 + 11/12, "feet"),
  38492. default: true
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(7 + 5/12, "feet"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/carbon/front.svg",
  38504. extra: 1754/1689,
  38505. bottom: 65/1819
  38506. }
  38507. },
  38508. back: {
  38509. height: math.unit(7 + 5/12, "feet"),
  38510. name: "Back",
  38511. image: {
  38512. source: "./media/characters/carbon/back.svg",
  38513. extra: 1762/1695,
  38514. bottom: 24/1786
  38515. }
  38516. },
  38517. frontGigantamax: {
  38518. height: math.unit(150, "feet"),
  38519. name: "Front (Gigantamax)",
  38520. image: {
  38521. source: "./media/characters/carbon/front-gigantamax.svg",
  38522. extra: 1826/1669,
  38523. bottom: 59/1885
  38524. }
  38525. },
  38526. backGigantamax: {
  38527. height: math.unit(150, "feet"),
  38528. name: "Back (Gigantamax)",
  38529. image: {
  38530. source: "./media/characters/carbon/back-gigantamax.svg",
  38531. extra: 1796/1653,
  38532. bottom: 53/1849
  38533. }
  38534. },
  38535. maw: {
  38536. height: math.unit(0.48, "feet"),
  38537. name: "Maw",
  38538. image: {
  38539. source: "./media/characters/carbon/maw.svg"
  38540. }
  38541. },
  38542. mawGigantamax: {
  38543. height: math.unit(7.5, "feet"),
  38544. name: "Maw (Gigantamax)",
  38545. image: {
  38546. source: "./media/characters/carbon/maw-gigantamax.svg"
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(7 + 5/12, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(6, "feet"),
  38563. name: "Front",
  38564. image: {
  38565. source: "./media/characters/maverick/front.svg",
  38566. extra: 1672/1661,
  38567. bottom: 85/1757
  38568. }
  38569. },
  38570. back: {
  38571. height: math.unit(6, "feet"),
  38572. name: "Back",
  38573. image: {
  38574. source: "./media/characters/maverick/back.svg",
  38575. extra: 1642/1631,
  38576. bottom: 38/1680
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(6, "feet"),
  38584. default: true
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(15, "feet"),
  38593. weight: math.unit(615, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/grockle/front.svg",
  38597. extra: 1535/1427,
  38598. bottom: 56/1591
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(15, "feet"),
  38606. default: true
  38607. },
  38608. {
  38609. name: "Large",
  38610. height: math.unit(150, "feet")
  38611. },
  38612. {
  38613. name: "Macro",
  38614. height: math.unit(1876, "feet")
  38615. },
  38616. {
  38617. name: "Mega Macro",
  38618. height: math.unit(121940, "feet")
  38619. },
  38620. {
  38621. name: "Giga Macro",
  38622. height: math.unit(750, "km")
  38623. },
  38624. {
  38625. name: "Tera Macro",
  38626. height: math.unit(750000, "km")
  38627. },
  38628. {
  38629. name: "Galactic",
  38630. height: math.unit(1.4e5, "km")
  38631. },
  38632. {
  38633. name: "Godlike",
  38634. height: math.unit(9.8e280, "galaxies")
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(11, "meters"),
  38643. weight: math.unit(20, "tonnes"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/alistair/front.svg",
  38647. extra: 1265/1009,
  38648. bottom: 93/1358
  38649. }
  38650. },
  38651. },
  38652. [
  38653. {
  38654. name: "Normal",
  38655. height: math.unit(11, "meters"),
  38656. default: true
  38657. },
  38658. ]
  38659. ))
  38660. characterMakers.push(() => makeCharacter(
  38661. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38662. {
  38663. front: {
  38664. height: math.unit(5 + 8/12, "feet"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/haruka/front.svg",
  38668. extra: 2012/1952,
  38669. bottom: 0/2012
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(5 + 8/12, "feet"),
  38677. default: true
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38683. {
  38684. back: {
  38685. height: math.unit(9, "feet"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/vivian-sylveon/back.svg",
  38689. extra: 1853/1714,
  38690. bottom: 0/1853
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(9, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Macro",
  38702. height: math.unit(500, "feet")
  38703. },
  38704. {
  38705. name: "Megamacro",
  38706. height: math.unit(600, "miles")
  38707. },
  38708. {
  38709. name: "Gigamacro",
  38710. height: math.unit(30000, "miles")
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38716. {
  38717. anthro: {
  38718. height: math.unit(5 + 10/12, "feet"),
  38719. weight: math.unit(100, "lb"),
  38720. name: "Anthro",
  38721. image: {
  38722. source: "./media/characters/daiki/anthro.svg",
  38723. extra: 1115/1027,
  38724. bottom: 69/1184
  38725. }
  38726. },
  38727. feral: {
  38728. height: math.unit(200, "feet"),
  38729. name: "Feral",
  38730. image: {
  38731. source: "./media/characters/daiki/feral.svg",
  38732. extra: 1256/313,
  38733. bottom: 39/1295
  38734. }
  38735. },
  38736. feralHead: {
  38737. height: math.unit(171, "feet"),
  38738. name: "Feral Head",
  38739. image: {
  38740. source: "./media/characters/daiki/feral-head.svg"
  38741. }
  38742. },
  38743. manaDragon: {
  38744. height: math.unit(170, "meters"),
  38745. name: "Mana-dragon",
  38746. image: {
  38747. source: "./media/characters/daiki/mana-dragon.svg",
  38748. extra: 763/420,
  38749. bottom: 97/860
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(5 + 10/12, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38763. {
  38764. fullyEquippedFront: {
  38765. height: math.unit(3 + 1/12, "feet"),
  38766. weight: math.unit(24, "lb"),
  38767. name: "Fully Equipped (Front)",
  38768. image: {
  38769. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38770. extra: 687/605,
  38771. bottom: 18/705
  38772. }
  38773. },
  38774. fullyEquippedBack: {
  38775. height: math.unit(3 + 1/12, "feet"),
  38776. weight: math.unit(24, "lb"),
  38777. name: "Fully Equipped (Back)",
  38778. image: {
  38779. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38780. extra: 689/590,
  38781. bottom: 18/707
  38782. }
  38783. },
  38784. dailyWear: {
  38785. height: math.unit(3 + 1/12, "feet"),
  38786. weight: math.unit(24, "lb"),
  38787. name: "Daily Wear",
  38788. image: {
  38789. source: "./media/characters/tea-spot/daily-wear.svg",
  38790. extra: 701/620,
  38791. bottom: 21/722
  38792. }
  38793. },
  38794. maidWork: {
  38795. height: math.unit(3 + 1/12, "feet"),
  38796. weight: math.unit(24, "lb"),
  38797. name: "Maid Work",
  38798. image: {
  38799. source: "./media/characters/tea-spot/maid-work.svg",
  38800. extra: 693/609,
  38801. bottom: 15/708
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(3 + 1/12, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(175, "cm"),
  38818. weight: math.unit(75, "kg"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/chee/front.svg",
  38822. extra: 1796/1740,
  38823. bottom: 40/1836
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Micro-Micro",
  38830. height: math.unit(1, "nm")
  38831. },
  38832. {
  38833. name: "Micro-erst",
  38834. height: math.unit(1, "micrometer")
  38835. },
  38836. {
  38837. name: "Micro-er",
  38838. height: math.unit(1, "cm")
  38839. },
  38840. {
  38841. name: "Normal",
  38842. height: math.unit(175, "cm"),
  38843. default: true
  38844. },
  38845. {
  38846. name: "Macro",
  38847. height: math.unit(100, "m")
  38848. },
  38849. {
  38850. name: "Macro-er",
  38851. height: math.unit(1, "km")
  38852. },
  38853. {
  38854. name: "Macro-erst",
  38855. height: math.unit(10, "km")
  38856. },
  38857. {
  38858. name: "Macro-Macro",
  38859. height: math.unit(100, "km")
  38860. },
  38861. ]
  38862. ))
  38863. characterMakers.push(() => makeCharacter(
  38864. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38865. {
  38866. front: {
  38867. height: math.unit(11 + 9/12, "feet"),
  38868. weight: math.unit(935, "lb"),
  38869. name: "Front",
  38870. image: {
  38871. source: "./media/characters/kingsley/front.svg",
  38872. extra: 1803/1674,
  38873. bottom: 127/1930
  38874. }
  38875. },
  38876. frontNude: {
  38877. height: math.unit(11 + 9/12, "feet"),
  38878. weight: math.unit(935, "lb"),
  38879. name: "Front (Nude)",
  38880. image: {
  38881. source: "./media/characters/kingsley/front-nude.svg",
  38882. extra: 1803/1674,
  38883. bottom: 127/1930
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(11 + 9/12, "feet"),
  38891. default: true
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38897. {
  38898. side: {
  38899. height: math.unit(9, "feet"),
  38900. name: "Side",
  38901. image: {
  38902. source: "./media/characters/rymel/side.svg",
  38903. extra: 792/469,
  38904. bottom: 121/913
  38905. }
  38906. },
  38907. maw: {
  38908. height: math.unit(2.4, "meters"),
  38909. name: "Maw",
  38910. image: {
  38911. source: "./media/characters/rymel/maw.svg"
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "House Drake",
  38918. height: math.unit(2, "feet")
  38919. },
  38920. {
  38921. name: "Reduced",
  38922. height: math.unit(4.5, "feet")
  38923. },
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(9, "feet"),
  38927. default: true
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38933. {
  38934. front: {
  38935. height: math.unit(1.74, "meters"),
  38936. weight: math.unit(55, "kg"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/rubus/front.svg",
  38940. extra: 1894/1742,
  38941. bottom: 44/1938
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Normal",
  38948. height: math.unit(1.74, "meters"),
  38949. default: true
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(5 + 2/12, "feet"),
  38958. weight: math.unit(112, "lb"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/cassie-kingston/front.svg",
  38962. extra: 1438/1390,
  38963. bottom: 47/1485
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(5 + 2/12, "feet"),
  38971. default: true
  38972. },
  38973. {
  38974. name: "Macro",
  38975. height: math.unit(128, "feet")
  38976. },
  38977. {
  38978. name: "Megamacro",
  38979. height: math.unit(2.56, "miles")
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(7, "feet"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/fox/front.svg",
  38991. extra: 1798/1703,
  38992. bottom: 55/1853
  38993. }
  38994. },
  38995. back: {
  38996. height: math.unit(7, "feet"),
  38997. name: "Back",
  38998. image: {
  38999. source: "./media/characters/fox/back.svg",
  39000. extra: 1748/1649,
  39001. bottom: 32/1780
  39002. }
  39003. },
  39004. head: {
  39005. height: math.unit(1.95, "feet"),
  39006. name: "Head",
  39007. image: {
  39008. source: "./media/characters/fox/head.svg"
  39009. }
  39010. },
  39011. dick: {
  39012. height: math.unit(1.33, "feet"),
  39013. name: "Dick",
  39014. image: {
  39015. source: "./media/characters/fox/dick.svg"
  39016. }
  39017. },
  39018. foot: {
  39019. height: math.unit(1, "feet"),
  39020. name: "Foot",
  39021. image: {
  39022. source: "./media/characters/fox/foot.svg"
  39023. }
  39024. },
  39025. paw: {
  39026. height: math.unit(0.92, "feet"),
  39027. name: "Paw",
  39028. image: {
  39029. source: "./media/characters/fox/paw.svg"
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Small",
  39036. height: math.unit(3, "inches")
  39037. },
  39038. {
  39039. name: "\"Realistic\"",
  39040. height: math.unit(7, "feet")
  39041. },
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(150, "feet"),
  39045. default: true
  39046. },
  39047. {
  39048. name: "BIG",
  39049. height: math.unit(1200, "feet")
  39050. },
  39051. {
  39052. name: "👀",
  39053. height: math.unit(5, "miles")
  39054. },
  39055. {
  39056. name: "👀👀👀",
  39057. height: math.unit(64, "miles")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(625, "feet"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/asonja-rossa/front.svg",
  39069. extra: 1833/1686,
  39070. bottom: 24/1857
  39071. }
  39072. },
  39073. back: {
  39074. height: math.unit(625, "feet"),
  39075. name: "Back",
  39076. image: {
  39077. source: "./media/characters/asonja-rossa/back.svg",
  39078. extra: 1852/1753,
  39079. bottom: 26/1878
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Macro",
  39086. height: math.unit(625, "feet"),
  39087. default: true
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39093. {
  39094. side: {
  39095. height: math.unit(8, "feet"),
  39096. name: "Side",
  39097. image: {
  39098. source: "./media/characters/rezukii/side.svg",
  39099. extra: 979/542,
  39100. bottom: 87/1066
  39101. }
  39102. },
  39103. sitting: {
  39104. height: math.unit(14.6, "feet"),
  39105. name: "Sitting",
  39106. image: {
  39107. source: "./media/characters/rezukii/sitting.svg",
  39108. extra: 1023/813,
  39109. bottom: 45/1068
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Tiny",
  39116. height: math.unit(2, "feet")
  39117. },
  39118. {
  39119. name: "Smol",
  39120. height: math.unit(4, "feet")
  39121. },
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(8, "feet"),
  39125. default: true
  39126. },
  39127. {
  39128. name: "Big",
  39129. height: math.unit(12, "feet")
  39130. },
  39131. {
  39132. name: "Macro",
  39133. height: math.unit(30, "feet")
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(14, "feet"),
  39142. weight: math.unit(9.5, "tonnes"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/dawnheart/front.svg",
  39146. extra: 2792/2675,
  39147. bottom: 64/2856
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(14, "feet"),
  39155. default: true
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39161. {
  39162. front: {
  39163. height: math.unit(1.7, "m"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/gladi/front.svg",
  39167. extra: 1460/1362,
  39168. bottom: 19/1479
  39169. }
  39170. },
  39171. back: {
  39172. height: math.unit(1.7, "m"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/gladi/back.svg",
  39176. extra: 1459/1357,
  39177. bottom: 12/1471
  39178. }
  39179. },
  39180. feral: {
  39181. height: math.unit(2.05, "m"),
  39182. name: "Feral",
  39183. image: {
  39184. source: "./media/characters/gladi/feral.svg",
  39185. extra: 821/557,
  39186. bottom: 91/912
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Shortest",
  39193. height: math.unit(70, "cm")
  39194. },
  39195. {
  39196. name: "Normal",
  39197. height: math.unit(1.7, "m")
  39198. },
  39199. {
  39200. name: "Macro",
  39201. height: math.unit(10, "m"),
  39202. default: true
  39203. },
  39204. {
  39205. name: "Tallest",
  39206. height: math.unit(200, "m")
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39212. {
  39213. front: {
  39214. height: math.unit(5 + 7/12, "feet"),
  39215. weight: math.unit(2, "tons"),
  39216. name: "Front",
  39217. image: {
  39218. source: "./media/characters/erdno/front.svg",
  39219. extra: 1234/1129,
  39220. bottom: 35/1269
  39221. }
  39222. },
  39223. angled: {
  39224. height: math.unit(5 + 7/12, "feet"),
  39225. weight: math.unit(2, "tons"),
  39226. name: "Angled",
  39227. image: {
  39228. source: "./media/characters/erdno/angled.svg",
  39229. extra: 1185/1139,
  39230. bottom: 36/1221
  39231. }
  39232. },
  39233. side: {
  39234. height: math.unit(5 + 7/12, "feet"),
  39235. weight: math.unit(2, "tons"),
  39236. name: "Side",
  39237. image: {
  39238. source: "./media/characters/erdno/side.svg",
  39239. extra: 1191/1144,
  39240. bottom: 40/1231
  39241. }
  39242. },
  39243. back: {
  39244. height: math.unit(5 + 7/12, "feet"),
  39245. weight: math.unit(2, "tons"),
  39246. name: "Back",
  39247. image: {
  39248. source: "./media/characters/erdno/back.svg",
  39249. extra: 1202/1146,
  39250. bottom: 17/1219
  39251. }
  39252. },
  39253. frontNsfw: {
  39254. height: math.unit(5 + 7/12, "feet"),
  39255. weight: math.unit(2, "tons"),
  39256. name: "Front (NSFW)",
  39257. image: {
  39258. source: "./media/characters/erdno/front-nsfw.svg",
  39259. extra: 1234/1129,
  39260. bottom: 35/1269
  39261. }
  39262. },
  39263. angledNsfw: {
  39264. height: math.unit(5 + 7/12, "feet"),
  39265. weight: math.unit(2, "tons"),
  39266. name: "Angled (NSFW)",
  39267. image: {
  39268. source: "./media/characters/erdno/angled-nsfw.svg",
  39269. extra: 1185/1139,
  39270. bottom: 36/1221
  39271. }
  39272. },
  39273. sideNsfw: {
  39274. height: math.unit(5 + 7/12, "feet"),
  39275. weight: math.unit(2, "tons"),
  39276. name: "Side (NSFW)",
  39277. image: {
  39278. source: "./media/characters/erdno/side-nsfw.svg",
  39279. extra: 1191/1144,
  39280. bottom: 40/1231
  39281. }
  39282. },
  39283. backNsfw: {
  39284. height: math.unit(5 + 7/12, "feet"),
  39285. weight: math.unit(2, "tons"),
  39286. name: "Back (NSFW)",
  39287. image: {
  39288. source: "./media/characters/erdno/back-nsfw.svg",
  39289. extra: 1202/1146,
  39290. bottom: 17/1219
  39291. }
  39292. },
  39293. frontHyper: {
  39294. height: math.unit(5 + 7/12, "feet"),
  39295. weight: math.unit(2, "tons"),
  39296. name: "Front (Hyper)",
  39297. image: {
  39298. source: "./media/characters/erdno/front-hyper.svg",
  39299. extra: 1298/1136,
  39300. bottom: 35/1333
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(5 + 7/12, "feet"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Big",
  39312. height: math.unit(5.7, "meters")
  39313. },
  39314. {
  39315. name: "Macro",
  39316. height: math.unit(5.7, "kilometers")
  39317. },
  39318. {
  39319. name: "Megamacro",
  39320. height: math.unit(5.7, "earths")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(5 + 10/12, "feet"),
  39329. weight: math.unit(150, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/jamie/front.svg",
  39333. extra: 1908/1768,
  39334. bottom: 19/1927
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Minimum",
  39341. height: math.unit(2, "cm")
  39342. },
  39343. {
  39344. name: "Micro",
  39345. height: math.unit(3, "inches")
  39346. },
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(5 + 10/12, "feet"),
  39350. default: true
  39351. },
  39352. {
  39353. name: "Macro",
  39354. height: math.unit(150, "feet")
  39355. },
  39356. {
  39357. name: "Megamacro",
  39358. height: math.unit(10000, "m")
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(2, "meters"),
  39367. weight: math.unit(100, "kg"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/shiron/front.svg",
  39371. extra: 2103/1985,
  39372. bottom: 98/2201
  39373. }
  39374. },
  39375. back: {
  39376. height: math.unit(2, "meters"),
  39377. weight: math.unit(100, "kg"),
  39378. name: "Back",
  39379. image: {
  39380. source: "./media/characters/shiron/back.svg",
  39381. extra: 2110/2015,
  39382. bottom: 89/2199
  39383. }
  39384. },
  39385. hand: {
  39386. height: math.unit(0.96, "feet"),
  39387. name: "Hand",
  39388. image: {
  39389. source: "./media/characters/shiron/hand.svg"
  39390. }
  39391. },
  39392. foot: {
  39393. height: math.unit(1.464, "feet"),
  39394. name: "Foot",
  39395. image: {
  39396. source: "./media/characters/shiron/foot.svg"
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(2, "meters")
  39404. },
  39405. {
  39406. name: "Macro",
  39407. height: math.unit(500, "meters"),
  39408. default: true
  39409. },
  39410. {
  39411. name: "Megamacro",
  39412. height: math.unit(20, "km")
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(6, "feet"),
  39421. name: "Front",
  39422. image: {
  39423. source: "./media/characters/sam/front.svg",
  39424. extra: 849/826,
  39425. bottom: 19/868
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Normal",
  39432. height: math.unit(6, "feet"),
  39433. default: true
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39439. {
  39440. front: {
  39441. height: math.unit(8 + 4/12, "feet"),
  39442. weight: math.unit(122, "kg"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/namori-kurogawa/front.svg",
  39446. extra: 1894/1576,
  39447. bottom: 34/1928
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(8 + 4/12, "feet"),
  39455. default: true
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39461. {
  39462. front: {
  39463. height: math.unit(9, "feet"),
  39464. weight: math.unit(621, "lb"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/unmru/front.svg",
  39468. extra: 1853/1747,
  39469. bottom: 73/1926
  39470. }
  39471. },
  39472. side: {
  39473. height: math.unit(9, "feet"),
  39474. weight: math.unit(621, "lb"),
  39475. name: "Side",
  39476. image: {
  39477. source: "./media/characters/unmru/side.svg",
  39478. extra: 1781/1671,
  39479. bottom: 127/1908
  39480. }
  39481. },
  39482. back: {
  39483. height: math.unit(9, "feet"),
  39484. weight: math.unit(621, "lb"),
  39485. name: "Back",
  39486. image: {
  39487. source: "./media/characters/unmru/back.svg",
  39488. extra: 1894/1765,
  39489. bottom: 75/1969
  39490. }
  39491. },
  39492. dick: {
  39493. height: math.unit(3, "feet"),
  39494. weight: math.unit(35, "lb"),
  39495. name: "Dick",
  39496. image: {
  39497. source: "./media/characters/unmru/dick.svg"
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Normal",
  39504. height: math.unit(9, "feet")
  39505. },
  39506. {
  39507. name: "Natural",
  39508. height: math.unit(27, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Giant",
  39513. height: math.unit(90, "feet")
  39514. },
  39515. {
  39516. name: "Kaiju",
  39517. height: math.unit(270, "feet")
  39518. },
  39519. {
  39520. name: "Macro",
  39521. height: math.unit(900, "feet")
  39522. },
  39523. {
  39524. name: "Macro+",
  39525. height: math.unit(2700, "feet")
  39526. },
  39527. {
  39528. name: "Megamacro",
  39529. height: math.unit(9000, "feet")
  39530. },
  39531. {
  39532. name: "City-Crushing",
  39533. height: math.unit(27000, "feet")
  39534. },
  39535. {
  39536. name: "Mountain-Mashing",
  39537. height: math.unit(90000, "feet")
  39538. },
  39539. {
  39540. name: "Earth-Eclipsing",
  39541. height: math.unit(2.7e8, "feet")
  39542. },
  39543. {
  39544. name: "Sol-Swallowing",
  39545. height: math.unit(9e10, "feet")
  39546. },
  39547. {
  39548. name: "Majoris-Munching",
  39549. height: math.unit(2.7e13, "feet")
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39555. {
  39556. front: {
  39557. height: math.unit(1, "inch"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/squeaks-mouse/front.svg",
  39561. extra: 352/308,
  39562. bottom: 25/377
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Micro",
  39569. height: math.unit(1, "inch"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39576. {
  39577. side: {
  39578. height: math.unit(35, "feet"),
  39579. name: "Side",
  39580. image: {
  39581. source: "./media/characters/sayko/side.svg",
  39582. extra: 1697/1021,
  39583. bottom: 82/1779
  39584. }
  39585. },
  39586. head: {
  39587. height: math.unit(16, "feet"),
  39588. name: "Head",
  39589. image: {
  39590. source: "./media/characters/sayko/head.svg"
  39591. }
  39592. },
  39593. forepaw: {
  39594. height: math.unit(7.85, "feet"),
  39595. name: "Forepaw",
  39596. image: {
  39597. source: "./media/characters/sayko/forepaw.svg"
  39598. }
  39599. },
  39600. hindpaw: {
  39601. height: math.unit(8.8, "feet"),
  39602. name: "Hindpaw",
  39603. image: {
  39604. source: "./media/characters/sayko/hindpaw.svg"
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Normal",
  39611. height: math.unit(35, "feet"),
  39612. default: true
  39613. },
  39614. {
  39615. name: "Colossus",
  39616. height: math.unit(100, "meters")
  39617. },
  39618. {
  39619. name: "\"Small\" Deity",
  39620. height: math.unit(1, "km")
  39621. },
  39622. {
  39623. name: "\"Large\" Deity",
  39624. height: math.unit(15, "km")
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(6, "feet"),
  39633. weight: math.unit(250, "lb"),
  39634. name: "Front",
  39635. image: {
  39636. source: "./media/characters/mukiro/front.svg",
  39637. extra: 1368/1310,
  39638. bottom: 34/1402
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Normal",
  39645. height: math.unit(6, "feet"),
  39646. default: true
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39652. {
  39653. front: {
  39654. height: math.unit(12 + 4/12, "feet"),
  39655. name: "Front",
  39656. image: {
  39657. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39658. extra: 1346/1311,
  39659. bottom: 65/1411
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Base",
  39666. height: math.unit(12 + 4/12, "feet"),
  39667. default: true
  39668. },
  39669. {
  39670. name: "Macro",
  39671. height: math.unit(150, "feet")
  39672. },
  39673. {
  39674. name: "Mega",
  39675. height: math.unit(2, "miles")
  39676. },
  39677. {
  39678. name: "Demi God",
  39679. height: math.unit(4, "AU")
  39680. },
  39681. {
  39682. name: "God Size",
  39683. height: math.unit(1, "universe")
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(3 + 3/12, "feet"),
  39692. weight: math.unit(88, "lb"),
  39693. name: "Front",
  39694. image: {
  39695. source: "./media/characters/trey/front.svg",
  39696. extra: 1815/1509,
  39697. bottom: 60/1875
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(3 + 3/12, "feet"),
  39705. default: true
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39711. {
  39712. front: {
  39713. height: math.unit(4, "meters"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/adelonda/front.svg",
  39717. extra: 1077/982,
  39718. bottom: 39/1116
  39719. }
  39720. },
  39721. back: {
  39722. height: math.unit(4, "meters"),
  39723. name: "Back",
  39724. image: {
  39725. source: "./media/characters/adelonda/back.svg",
  39726. extra: 1105/1003,
  39727. bottom: 25/1130
  39728. }
  39729. },
  39730. feral: {
  39731. height: math.unit(40/1.5, "meters"),
  39732. name: "Feral",
  39733. image: {
  39734. source: "./media/characters/adelonda/feral.svg",
  39735. extra: 597/271,
  39736. bottom: 387/984
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Normal",
  39743. height: math.unit(4, "meters"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(8 + 4/12, "feet"),
  39753. weight: math.unit(670, "lb"),
  39754. name: "Front",
  39755. image: {
  39756. source: "./media/characters/acadiel/front.svg",
  39757. extra: 1901/1595,
  39758. bottom: 142/2043
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(8 + 4/12, "feet"),
  39766. default: true
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(200, "feet")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(6 + 2/12, "feet"),
  39779. weight: math.unit(185, "lb"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/kayne-ein/front.svg",
  39783. extra: 1780/1560,
  39784. bottom: 81/1861
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(6 + 2/12, "feet"),
  39792. default: true
  39793. },
  39794. {
  39795. name: "Transformation Stage",
  39796. height: math.unit(15, "feet")
  39797. },
  39798. {
  39799. name: "Macro",
  39800. height: math.unit(150, "feet")
  39801. },
  39802. {
  39803. name: "Earth's Shadow",
  39804. height: math.unit(6200, "miles")
  39805. },
  39806. {
  39807. name: "Universal Demon",
  39808. height: math.unit(28e9, "parsecs")
  39809. },
  39810. {
  39811. name: "Multiverse God",
  39812. height: math.unit(3, "multiverses")
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(5 + 5/12, "feet"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/fawn/front.svg",
  39824. extra: 1873/1731,
  39825. bottom: 95/1968
  39826. }
  39827. },
  39828. back: {
  39829. height: math.unit(5 + 5/12, "feet"),
  39830. name: "Back",
  39831. image: {
  39832. source: "./media/characters/fawn/back.svg",
  39833. extra: 1813/1700,
  39834. bottom: 14/1827
  39835. }
  39836. },
  39837. hoof: {
  39838. height: math.unit(1.45, "feet"),
  39839. name: "Hoof",
  39840. image: {
  39841. source: "./media/characters/fawn/hoof.svg"
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(5 + 5/12, "feet"),
  39849. default: true
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39855. {
  39856. front: {
  39857. height: math.unit(2 + 5/12, "feet"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/orion/front.svg",
  39861. extra: 1366/1304,
  39862. bottom: 43/1409
  39863. }
  39864. },
  39865. paw: {
  39866. height: math.unit(0.52, "feet"),
  39867. name: "Paw",
  39868. image: {
  39869. source: "./media/characters/orion/paw.svg"
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(2 + 5/12, "feet"),
  39877. default: true
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(5 + 10/12, "feet"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/vera/front.svg",
  39889. extra: 1680/1575,
  39890. bottom: 49/1729
  39891. }
  39892. },
  39893. back: {
  39894. height: math.unit(5 + 10/12, "feet"),
  39895. name: "Back",
  39896. image: {
  39897. source: "./media/characters/vera/back.svg",
  39898. extra: 1700/1588,
  39899. bottom: 18/1718
  39900. }
  39901. },
  39902. arcanine: {
  39903. height: math.unit(6 + 8/12, "feet"),
  39904. name: "Arcanine",
  39905. image: {
  39906. source: "./media/characters/vera/arcanine.svg",
  39907. extra: 1590/1511,
  39908. bottom: 71/1661
  39909. }
  39910. },
  39911. maw: {
  39912. height: math.unit(0.82, "feet"),
  39913. name: "Maw",
  39914. image: {
  39915. source: "./media/characters/vera/maw.svg"
  39916. }
  39917. },
  39918. mawArcanine: {
  39919. height: math.unit(0.97, "feet"),
  39920. name: "Maw (Arcanine)",
  39921. image: {
  39922. source: "./media/characters/vera/maw-arcanine.svg"
  39923. }
  39924. },
  39925. paw: {
  39926. height: math.unit(0.75, "feet"),
  39927. name: "Paw",
  39928. image: {
  39929. source: "./media/characters/vera/paw.svg"
  39930. }
  39931. },
  39932. pawprint: {
  39933. height: math.unit(0.52, "feet"),
  39934. name: "Pawprint",
  39935. image: {
  39936. source: "./media/characters/vera/pawprint.svg"
  39937. }
  39938. },
  39939. },
  39940. [
  39941. {
  39942. name: "Normal",
  39943. height: math.unit(5 + 10/12, "feet"),
  39944. default: true
  39945. },
  39946. {
  39947. name: "Macro",
  39948. height: math.unit(75, "feet")
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39954. {
  39955. front: {
  39956. height: math.unit(4, "feet"),
  39957. weight: math.unit(40, "lb"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/orvan-rabbit/front.svg",
  39961. extra: 1896/1642,
  39962. bottom: 29/1925
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Normal",
  39969. height: math.unit(4, "feet"),
  39970. default: true
  39971. },
  39972. ]
  39973. ))
  39974. characterMakers.push(() => makeCharacter(
  39975. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39976. {
  39977. front: {
  39978. height: math.unit(6, "feet"),
  39979. weight: math.unit(168, "lb"),
  39980. name: "Front",
  39981. image: {
  39982. source: "./media/characters/lisa/front.svg",
  39983. extra: 2065/1867,
  39984. bottom: 46/2111
  39985. }
  39986. },
  39987. back: {
  39988. height: math.unit(6, "feet"),
  39989. weight: math.unit(168, "lb"),
  39990. name: "Back",
  39991. image: {
  39992. source: "./media/characters/lisa/back.svg",
  39993. extra: 1982/1838,
  39994. bottom: 29/2011
  39995. }
  39996. },
  39997. maw: {
  39998. height: math.unit(0.81, "feet"),
  39999. name: "Maw",
  40000. image: {
  40001. source: "./media/characters/lisa/maw.svg"
  40002. }
  40003. },
  40004. paw: {
  40005. height: math.unit(0.9, "feet"),
  40006. name: "Paw",
  40007. image: {
  40008. source: "./media/characters/lisa/paw.svg"
  40009. }
  40010. },
  40011. caribousune: {
  40012. height: math.unit(7 + 2/12, "feet"),
  40013. weight: math.unit(268, "lb"),
  40014. name: "Caribousune",
  40015. image: {
  40016. source: "./media/characters/lisa/caribousune.svg",
  40017. extra: 1843/1633,
  40018. bottom: 29/1872
  40019. }
  40020. },
  40021. frontCaribousune: {
  40022. height: math.unit(7 + 2/12, "feet"),
  40023. weight: math.unit(268, "lb"),
  40024. name: "Front (Caribousune)",
  40025. image: {
  40026. source: "./media/characters/lisa/front-caribousune.svg",
  40027. extra: 1818/1638,
  40028. bottom: 52/1870
  40029. }
  40030. },
  40031. sideCaribousune: {
  40032. height: math.unit(7 + 2/12, "feet"),
  40033. weight: math.unit(268, "lb"),
  40034. name: "Side (Caribousune)",
  40035. image: {
  40036. source: "./media/characters/lisa/side-caribousune.svg",
  40037. extra: 1851/1635,
  40038. bottom: 16/1867
  40039. }
  40040. },
  40041. backCaribousune: {
  40042. height: math.unit(7 + 2/12, "feet"),
  40043. weight: math.unit(268, "lb"),
  40044. name: "Back (Caribousune)",
  40045. image: {
  40046. source: "./media/characters/lisa/back-caribousune.svg",
  40047. extra: 1801/1604,
  40048. bottom: 44/1845
  40049. }
  40050. },
  40051. caribou: {
  40052. height: math.unit(7 + 2/12, "feet"),
  40053. weight: math.unit(268, "lb"),
  40054. name: "Caribou",
  40055. image: {
  40056. source: "./media/characters/lisa/caribou.svg",
  40057. extra: 1843/1633,
  40058. bottom: 29/1872
  40059. }
  40060. },
  40061. frontCaribou: {
  40062. height: math.unit(7 + 2/12, "feet"),
  40063. weight: math.unit(268, "lb"),
  40064. name: "Front (Caribou)",
  40065. image: {
  40066. source: "./media/characters/lisa/front-caribou.svg",
  40067. extra: 1818/1638,
  40068. bottom: 52/1870
  40069. }
  40070. },
  40071. sideCaribou: {
  40072. height: math.unit(7 + 2/12, "feet"),
  40073. weight: math.unit(268, "lb"),
  40074. name: "Side (Caribou)",
  40075. image: {
  40076. source: "./media/characters/lisa/side-caribou.svg",
  40077. extra: 1851/1635,
  40078. bottom: 16/1867
  40079. }
  40080. },
  40081. backCaribou: {
  40082. height: math.unit(7 + 2/12, "feet"),
  40083. weight: math.unit(268, "lb"),
  40084. name: "Back (Caribou)",
  40085. image: {
  40086. source: "./media/characters/lisa/back-caribou.svg",
  40087. extra: 1801/1604,
  40088. bottom: 44/1845
  40089. }
  40090. },
  40091. mawCaribou: {
  40092. height: math.unit(1.45, "feet"),
  40093. name: "Maw (Caribou)",
  40094. image: {
  40095. source: "./media/characters/lisa/maw-caribou.svg"
  40096. }
  40097. },
  40098. mawCaribousune: {
  40099. height: math.unit(1.45, "feet"),
  40100. name: "Maw (Caribousune)",
  40101. image: {
  40102. source: "./media/characters/lisa/maw-caribousune.svg"
  40103. }
  40104. },
  40105. pawCaribousune: {
  40106. height: math.unit(1.61, "feet"),
  40107. name: "Paw (Caribou)",
  40108. image: {
  40109. source: "./media/characters/lisa/paw-caribousune.svg"
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Normal",
  40116. height: math.unit(6, "feet")
  40117. },
  40118. {
  40119. name: "God Size",
  40120. height: math.unit(72, "feet"),
  40121. default: true
  40122. },
  40123. {
  40124. name: "Towering",
  40125. height: math.unit(288, "feet")
  40126. },
  40127. {
  40128. name: "City Size",
  40129. height: math.unit(48384, "feet")
  40130. },
  40131. {
  40132. name: "Continental",
  40133. height: math.unit(4200, "miles")
  40134. },
  40135. {
  40136. name: "Planet Eater",
  40137. height: math.unit(42, "earths")
  40138. },
  40139. {
  40140. name: "Star Swallower",
  40141. height: math.unit(42, "solarradii")
  40142. },
  40143. {
  40144. name: "System Swallower",
  40145. height: math.unit(84000, "AU")
  40146. },
  40147. {
  40148. name: "Galaxy Gobbler",
  40149. height: math.unit(42, "galaxies")
  40150. },
  40151. {
  40152. name: "Universe Devourer",
  40153. height: math.unit(42, "universes")
  40154. },
  40155. {
  40156. name: "Multiverse Muncher",
  40157. height: math.unit(42, "multiverses")
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(36, "feet"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/shadow-rat/front.svg",
  40169. extra: 1845/1758,
  40170. bottom: 83/1928
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Macro",
  40177. height: math.unit(36, "feet"),
  40178. default: true
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40184. {
  40185. side: {
  40186. height: math.unit(8, "feet"),
  40187. weight: math.unit(2630, "lb"),
  40188. name: "Side",
  40189. image: {
  40190. source: "./media/characters/torallia/side.svg",
  40191. extra: 2164/2021,
  40192. bottom: 371/2535
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Mortal Interaction",
  40199. height: math.unit(8, "feet")
  40200. },
  40201. {
  40202. name: "Natural",
  40203. height: math.unit(24, "feet"),
  40204. default: true
  40205. },
  40206. {
  40207. name: "Giant",
  40208. height: math.unit(80, "feet")
  40209. },
  40210. {
  40211. name: "Kaiju",
  40212. height: math.unit(240, "feet")
  40213. },
  40214. {
  40215. name: "Macro",
  40216. height: math.unit(800, "feet")
  40217. },
  40218. {
  40219. name: "Macro+",
  40220. height: math.unit(2400, "feet")
  40221. },
  40222. {
  40223. name: "Macro++",
  40224. height: math.unit(8000, "feet")
  40225. },
  40226. {
  40227. name: "City-Crushing",
  40228. height: math.unit(24000, "feet")
  40229. },
  40230. {
  40231. name: "Mountain-Mashing",
  40232. height: math.unit(80000, "feet")
  40233. },
  40234. {
  40235. name: "District Demolisher",
  40236. height: math.unit(240000, "feet")
  40237. },
  40238. {
  40239. name: "Tri-County Terror",
  40240. height: math.unit(800000, "feet")
  40241. },
  40242. {
  40243. name: "State Smasher",
  40244. height: math.unit(2.4e6, "feet")
  40245. },
  40246. {
  40247. name: "Nation Nemesis",
  40248. height: math.unit(8e6, "feet")
  40249. },
  40250. {
  40251. name: "Continent Cracker",
  40252. height: math.unit(2.4e7, "feet")
  40253. },
  40254. {
  40255. name: "Planet-Pillaging",
  40256. height: math.unit(8e7, "feet")
  40257. },
  40258. {
  40259. name: "Earth-Eclipsing",
  40260. height: math.unit(2.4e8, "feet")
  40261. },
  40262. {
  40263. name: "Jovian-Jostling",
  40264. height: math.unit(8e8, "feet")
  40265. },
  40266. {
  40267. name: "Gas Giant Gulper",
  40268. height: math.unit(2.4e9, "feet")
  40269. },
  40270. {
  40271. name: "Astral Annihilator",
  40272. height: math.unit(8e9, "feet")
  40273. },
  40274. {
  40275. name: "Celestial Conqueror",
  40276. height: math.unit(2.4e10, "feet")
  40277. },
  40278. {
  40279. name: "Sol-Swallowing",
  40280. height: math.unit(8e10, "feet")
  40281. },
  40282. {
  40283. name: "Hunter of the Heavens",
  40284. height: math.unit(2.4e13, "feet")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(6 + 8/12, "feet"),
  40293. weight: math.unit(250, "kilograms"),
  40294. volume: math.unit(28, "liters"),
  40295. name: "Front",
  40296. image: {
  40297. source: "./media/characters/rebecca-pawlson/front.svg",
  40298. extra: 1737/1596,
  40299. bottom: 107/1844
  40300. }
  40301. },
  40302. back: {
  40303. height: math.unit(6 + 8/12, "feet"),
  40304. weight: math.unit(250, "kilograms"),
  40305. volume: math.unit(28, "liters"),
  40306. name: "Back",
  40307. image: {
  40308. source: "./media/characters/rebecca-pawlson/back.svg",
  40309. extra: 1702/1523,
  40310. bottom: 86/1788
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(6 + 8/12, "feet")
  40318. },
  40319. {
  40320. name: "Mini Macro",
  40321. height: math.unit(10, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Macro",
  40326. height: math.unit(100, "feet")
  40327. },
  40328. {
  40329. name: "Mega Macro",
  40330. height: math.unit(2500, "feet")
  40331. },
  40332. {
  40333. name: "Giga Macro",
  40334. height: math.unit(50, "miles")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(7 + 6/12, "feet"),
  40343. weight: math.unit(600, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/moxie-nova/front.svg",
  40347. extra: 1734/1652,
  40348. bottom: 41/1775
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(7 + 6/12, "feet"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40362. {
  40363. goat: {
  40364. height: math.unit(4, "feet"),
  40365. weight: math.unit(180, "lb"),
  40366. name: "Goat",
  40367. image: {
  40368. source: "./media/characters/tiffany/goat.svg",
  40369. extra: 1845/1595,
  40370. bottom: 106/1951
  40371. }
  40372. },
  40373. front: {
  40374. height: math.unit(5, "feet"),
  40375. weight: math.unit(150, "lb"),
  40376. name: "Foxcoon",
  40377. image: {
  40378. source: "./media/characters/tiffany/foxcoon.svg",
  40379. extra: 1941/1845,
  40380. bottom: 58/1999
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(5, "feet"),
  40388. default: true
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40394. {
  40395. front: {
  40396. height: math.unit(8, "feet"),
  40397. weight: math.unit(300, "lb"),
  40398. name: "Front",
  40399. image: {
  40400. source: "./media/characters/raxinath/front.svg",
  40401. extra: 1407/1309,
  40402. bottom: 39/1446
  40403. }
  40404. },
  40405. back: {
  40406. height: math.unit(8, "feet"),
  40407. weight: math.unit(300, "lb"),
  40408. name: "Back",
  40409. image: {
  40410. source: "./media/characters/raxinath/back.svg",
  40411. extra: 1405/1315,
  40412. bottom: 9/1414
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Speck",
  40419. height: math.unit(0.5, "nm")
  40420. },
  40421. {
  40422. name: "Micro",
  40423. height: math.unit(3, "inches")
  40424. },
  40425. {
  40426. name: "Kobold",
  40427. height: math.unit(3, "feet")
  40428. },
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(8, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Giant",
  40436. height: math.unit(50, "feet")
  40437. },
  40438. {
  40439. name: "Macro",
  40440. height: math.unit(1000, "feet")
  40441. },
  40442. {
  40443. name: "Megamacro",
  40444. height: math.unit(1, "mile")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(10, "feet"),
  40453. weight: math.unit(1442, "lb"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/mal-dragon/front.svg",
  40457. extra: 1515/1444,
  40458. bottom: 113/1628
  40459. }
  40460. },
  40461. back: {
  40462. height: math.unit(10, "feet"),
  40463. weight: math.unit(1442, "lb"),
  40464. name: "Back",
  40465. image: {
  40466. source: "./media/characters/mal-dragon/back.svg",
  40467. extra: 1527/1434,
  40468. bottom: 25/1552
  40469. }
  40470. },
  40471. },
  40472. [
  40473. {
  40474. name: "Mortal Interaction",
  40475. height: math.unit(10, "feet"),
  40476. default: true
  40477. },
  40478. {
  40479. name: "Large",
  40480. height: math.unit(30, "feet")
  40481. },
  40482. {
  40483. name: "Kaiju",
  40484. height: math.unit(300, "feet")
  40485. },
  40486. {
  40487. name: "Megamacro",
  40488. height: math.unit(10000, "feet")
  40489. },
  40490. {
  40491. name: "Continent Cracker",
  40492. height: math.unit(30000000, "feet")
  40493. },
  40494. {
  40495. name: "Sol-Swallowing",
  40496. height: math.unit(1e11, "feet")
  40497. },
  40498. {
  40499. name: "Light Universal",
  40500. height: math.unit(5, "universes")
  40501. },
  40502. {
  40503. name: "Universe Atoms",
  40504. height: math.unit(1.829e9, "universes")
  40505. },
  40506. {
  40507. name: "Light Multiversal",
  40508. height: math.unit(5, "multiverses")
  40509. },
  40510. {
  40511. name: "Multiverse Atoms",
  40512. height: math.unit(1.829e9, "multiverses")
  40513. },
  40514. {
  40515. name: "Fabric of Time",
  40516. height: math.unit(1e262, "multiverses")
  40517. },
  40518. ]
  40519. ))
  40520. characterMakers.push(() => makeCharacter(
  40521. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40522. {
  40523. front: {
  40524. height: math.unit(9, "feet"),
  40525. weight: math.unit(1050, "lb"),
  40526. name: "Front",
  40527. image: {
  40528. source: "./media/characters/tabitha/front.svg",
  40529. extra: 2083/1994,
  40530. bottom: 68/2151
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Baseline",
  40537. height: math.unit(9, "feet"),
  40538. default: true
  40539. },
  40540. {
  40541. name: "Giant",
  40542. height: math.unit(90, "feet")
  40543. },
  40544. {
  40545. name: "Macro",
  40546. height: math.unit(900, "feet")
  40547. },
  40548. {
  40549. name: "Megamacro",
  40550. height: math.unit(9000, "feet")
  40551. },
  40552. {
  40553. name: "City-Crushing",
  40554. height: math.unit(27000, "feet")
  40555. },
  40556. {
  40557. name: "Mountain-Mashing",
  40558. height: math.unit(90000, "feet")
  40559. },
  40560. {
  40561. name: "Nation Nemesis",
  40562. height: math.unit(9e6, "feet")
  40563. },
  40564. {
  40565. name: "Continent Cracker",
  40566. height: math.unit(27e6, "feet")
  40567. },
  40568. {
  40569. name: "Earth-Eclipsing",
  40570. height: math.unit(2.7e8, "feet")
  40571. },
  40572. {
  40573. name: "Gas Giant Gulper",
  40574. height: math.unit(2.7e9, "feet")
  40575. },
  40576. {
  40577. name: "Sol-Swallowing",
  40578. height: math.unit(9e10, "feet")
  40579. },
  40580. {
  40581. name: "Galaxy Gulper",
  40582. height: math.unit(9, "galaxies")
  40583. },
  40584. {
  40585. name: "Cosmos Churner",
  40586. height: math.unit(9, "universes")
  40587. },
  40588. ]
  40589. ))
  40590. characterMakers.push(() => makeCharacter(
  40591. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40592. {
  40593. front: {
  40594. height: math.unit(160, "cm"),
  40595. weight: math.unit(55, "kg"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/tow/front.svg",
  40599. extra: 1751/1722,
  40600. bottom: 74/1825
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Norm",
  40607. height: math.unit(160, "cm")
  40608. },
  40609. {
  40610. name: "Casual",
  40611. height: math.unit(3200, "m"),
  40612. default: true
  40613. },
  40614. {
  40615. name: "Show-Off",
  40616. height: math.unit(160, "km")
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40622. {
  40623. front: {
  40624. height: math.unit(7 + 11/12, "feet"),
  40625. weight: math.unit(342.8, "lb"),
  40626. name: "Front",
  40627. image: {
  40628. source: "./media/characters/vivian-orca-dragon/front.svg",
  40629. extra: 1890/1865,
  40630. bottom: 28/1918
  40631. }
  40632. },
  40633. },
  40634. [
  40635. {
  40636. name: "Micro",
  40637. height: math.unit(5, "inches")
  40638. },
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(7 + 11/12, "feet"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Macro",
  40646. height: math.unit(395 + 7/12, "feet")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40652. {
  40653. side: {
  40654. height: math.unit(10, "feet"),
  40655. weight: math.unit(1442, "lb"),
  40656. name: "Side",
  40657. image: {
  40658. source: "./media/characters/lotherakon/side.svg",
  40659. extra: 1604/1497,
  40660. bottom: 89/1693
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Mortal Interaction",
  40667. height: math.unit(10, "feet")
  40668. },
  40669. {
  40670. name: "Large",
  40671. height: math.unit(30, "feet"),
  40672. default: true
  40673. },
  40674. {
  40675. name: "Giant",
  40676. height: math.unit(100, "feet")
  40677. },
  40678. {
  40679. name: "Kaiju",
  40680. height: math.unit(300, "feet")
  40681. },
  40682. {
  40683. name: "Macro",
  40684. height: math.unit(1000, "feet")
  40685. },
  40686. {
  40687. name: "Macro+",
  40688. height: math.unit(3000, "feet")
  40689. },
  40690. {
  40691. name: "Megamacro",
  40692. height: math.unit(10000, "feet")
  40693. },
  40694. {
  40695. name: "City-Crushing",
  40696. height: math.unit(30000, "feet")
  40697. },
  40698. {
  40699. name: "Continent Cracker",
  40700. height: math.unit(30e6, "feet")
  40701. },
  40702. {
  40703. name: "Earth Eclipsing",
  40704. height: math.unit(3e8, "feet")
  40705. },
  40706. {
  40707. name: "Gas Giant Gulper",
  40708. height: math.unit(3e9, "feet")
  40709. },
  40710. {
  40711. name: "Sol-Swallowing",
  40712. height: math.unit(1e11, "feet")
  40713. },
  40714. {
  40715. name: "System Swallower",
  40716. height: math.unit(3e14, "feet")
  40717. },
  40718. {
  40719. name: "Galaxy Gulper",
  40720. height: math.unit(10, "galaxies")
  40721. },
  40722. {
  40723. name: "Light Universal",
  40724. height: math.unit(5, "universes")
  40725. },
  40726. {
  40727. name: "Universe Palm",
  40728. height: math.unit(20, "universes")
  40729. },
  40730. {
  40731. name: "Light Multiversal",
  40732. height: math.unit(5, "multiverses")
  40733. },
  40734. {
  40735. name: "Multiverse Palm",
  40736. height: math.unit(20, "multiverses")
  40737. },
  40738. {
  40739. name: "Inferno Incarnate",
  40740. height: math.unit(1e7, "multiverses")
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(8, "feet"),
  40749. weight: math.unit(1200, "lb"),
  40750. name: "Front",
  40751. image: {
  40752. source: "./media/characters/malithee/front.svg",
  40753. extra: 1675/1640,
  40754. bottom: 162/1837
  40755. }
  40756. },
  40757. },
  40758. [
  40759. {
  40760. name: "Mortal Interaction",
  40761. height: math.unit(8, "feet"),
  40762. default: true
  40763. },
  40764. {
  40765. name: "Large",
  40766. height: math.unit(24, "feet")
  40767. },
  40768. {
  40769. name: "Kaiju",
  40770. height: math.unit(240, "feet")
  40771. },
  40772. {
  40773. name: "Megamacro",
  40774. height: math.unit(8000, "feet")
  40775. },
  40776. {
  40777. name: "Continent Cracker",
  40778. height: math.unit(24e6, "feet")
  40779. },
  40780. {
  40781. name: "Earth-Eclipsing",
  40782. height: math.unit(2.4e8, "feet")
  40783. },
  40784. {
  40785. name: "Sol-Swallowing",
  40786. height: math.unit(8e10, "feet")
  40787. },
  40788. {
  40789. name: "Galaxy Gulper",
  40790. height: math.unit(8, "galaxies")
  40791. },
  40792. {
  40793. name: "Light Universal",
  40794. height: math.unit(4, "universes")
  40795. },
  40796. {
  40797. name: "Universe Atoms",
  40798. height: math.unit(1.829e9, "universes")
  40799. },
  40800. {
  40801. name: "Light Multiversal",
  40802. height: math.unit(4, "multiverses")
  40803. },
  40804. {
  40805. name: "Multiverse Atoms",
  40806. height: math.unit(1.829e9, "multiverses")
  40807. },
  40808. {
  40809. name: "Nigh-Omnipresence",
  40810. height: math.unit(8e261, "multiverses")
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(10, "feet"),
  40819. weight: math.unit(1500, "lb"),
  40820. name: "Front",
  40821. image: {
  40822. source: "./media/characters/miles-thestia/front.svg",
  40823. extra: 1812/1727,
  40824. bottom: 86/1898
  40825. }
  40826. },
  40827. back: {
  40828. height: math.unit(10, "feet"),
  40829. weight: math.unit(1500, "lb"),
  40830. name: "Back",
  40831. image: {
  40832. source: "./media/characters/miles-thestia/back.svg",
  40833. extra: 1799/1690,
  40834. bottom: 47/1846
  40835. }
  40836. },
  40837. frontNsfw: {
  40838. height: math.unit(10, "feet"),
  40839. weight: math.unit(1500, "lb"),
  40840. name: "Front (NSFW)",
  40841. image: {
  40842. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40843. extra: 1812/1727,
  40844. bottom: 86/1898
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Mini-Macro",
  40851. height: math.unit(10, "feet"),
  40852. default: true
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(25, "feet"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/titan-s-wulf/front.svg",
  40864. extra: 1560/1484,
  40865. bottom: 76/1636
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Smallest",
  40872. height: math.unit(25, "feet"),
  40873. default: true
  40874. },
  40875. {
  40876. name: "Normal",
  40877. height: math.unit(200, "feet")
  40878. },
  40879. {
  40880. name: "Macro",
  40881. height: math.unit(200000, "feet")
  40882. },
  40883. {
  40884. name: "Multiversal Original",
  40885. height: math.unit(10000, "multiverses")
  40886. },
  40887. ]
  40888. ))
  40889. characterMakers.push(() => makeCharacter(
  40890. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40891. {
  40892. front: {
  40893. height: math.unit(8, "feet"),
  40894. weight: math.unit(553, "lb"),
  40895. name: "Front",
  40896. image: {
  40897. source: "./media/characters/tawendeh/front.svg",
  40898. extra: 2365/2268,
  40899. bottom: 83/2448
  40900. }
  40901. },
  40902. frontClothed: {
  40903. height: math.unit(8, "feet"),
  40904. weight: math.unit(553, "lb"),
  40905. name: "Front (Clothed)",
  40906. image: {
  40907. source: "./media/characters/tawendeh/front-clothed.svg",
  40908. extra: 2365/2268,
  40909. bottom: 83/2448
  40910. }
  40911. },
  40912. back: {
  40913. height: math.unit(8, "feet"),
  40914. weight: math.unit(553, "lb"),
  40915. name: "Back",
  40916. image: {
  40917. source: "./media/characters/tawendeh/back.svg",
  40918. extra: 2397/2294,
  40919. bottom: 42/2439
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Mortal Interaction",
  40926. height: math.unit(8, "feet"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Giant",
  40931. height: math.unit(80, "feet")
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(800, "feet")
  40936. },
  40937. {
  40938. name: "Megamacro",
  40939. height: math.unit(8000, "feet")
  40940. },
  40941. {
  40942. name: "City-Crushing",
  40943. height: math.unit(24000, "feet")
  40944. },
  40945. {
  40946. name: "Mountain-Mashing",
  40947. height: math.unit(80000, "feet")
  40948. },
  40949. {
  40950. name: "Nation Nemesis",
  40951. height: math.unit(8e6, "feet")
  40952. },
  40953. {
  40954. name: "Continent Cracker",
  40955. height: math.unit(24e6, "feet")
  40956. },
  40957. {
  40958. name: "Earth-Eclipsing",
  40959. height: math.unit(2.4e8, "feet")
  40960. },
  40961. {
  40962. name: "Gas Giant Gulper",
  40963. height: math.unit(2.4e9, "feet")
  40964. },
  40965. {
  40966. name: "Sol-Swallowing",
  40967. height: math.unit(8e10, "feet")
  40968. },
  40969. {
  40970. name: "Galaxy Gulper",
  40971. height: math.unit(8, "galaxies")
  40972. },
  40973. {
  40974. name: "Cosmos Churner",
  40975. height: math.unit(8, "universes")
  40976. },
  40977. {
  40978. name: "Omnipotent Otter",
  40979. height: math.unit(80, "universes")
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(2.6, "meters"),
  40988. weight: math.unit(900, "kg"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/neesha/front.svg",
  40992. extra: 1803/1653,
  40993. bottom: 128/1931
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Normal",
  41000. height: math.unit(2.6, "meters"),
  41001. default: true
  41002. },
  41003. {
  41004. name: "Macro",
  41005. height: math.unit(50, "meters")
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(5, "feet"),
  41014. weight: math.unit(185, "lb"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/kyera/front.svg",
  41018. extra: 1875/1790,
  41019. bottom: 96/1971
  41020. }
  41021. },
  41022. },
  41023. [
  41024. {
  41025. name: "Normal",
  41026. height: math.unit(5, "feet"),
  41027. default: true
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(7 + 6/12, "feet"),
  41036. weight: math.unit(540, "lb"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/yuko/front.svg",
  41040. extra: 1282/1222,
  41041. bottom: 101/1383
  41042. }
  41043. },
  41044. frontClothed: {
  41045. height: math.unit(7 + 6/12, "feet"),
  41046. weight: math.unit(540, "lb"),
  41047. name: "Front (Clothed)",
  41048. image: {
  41049. source: "./media/characters/yuko/front-clothed.svg",
  41050. extra: 1282/1222,
  41051. bottom: 101/1383
  41052. }
  41053. },
  41054. },
  41055. [
  41056. {
  41057. name: "Normal",
  41058. height: math.unit(7 + 6/12, "feet"),
  41059. default: true
  41060. },
  41061. {
  41062. name: "Macro",
  41063. height: math.unit(26 + 9/12, "feet")
  41064. },
  41065. {
  41066. name: "Megamacro",
  41067. height: math.unit(300, "feet")
  41068. },
  41069. {
  41070. name: "Gigamacro",
  41071. height: math.unit(5000, "feet")
  41072. },
  41073. {
  41074. name: "Planetary",
  41075. height: math.unit(10000, "miles")
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(8 + 2/12, "feet"),
  41084. weight: math.unit(600, "lb"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/deam-nitrel/front.svg",
  41088. extra: 1308/1234,
  41089. bottom: 125/1433
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Normal",
  41096. height: math.unit(8 + 2/12, "feet"),
  41097. default: true
  41098. },
  41099. ]
  41100. ))
  41101. characterMakers.push(() => makeCharacter(
  41102. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41103. {
  41104. front: {
  41105. height: math.unit(6.1, "feet"),
  41106. weight: math.unit(180, "lb"),
  41107. name: "Front",
  41108. image: {
  41109. source: "./media/characters/skyress/front.svg",
  41110. extra: 1045/915,
  41111. bottom: 28/1073
  41112. }
  41113. },
  41114. maw: {
  41115. height: math.unit(1, "feet"),
  41116. name: "Maw",
  41117. image: {
  41118. source: "./media/characters/skyress/maw.svg"
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Normal",
  41125. height: math.unit(6.1, "feet"),
  41126. default: true
  41127. },
  41128. {
  41129. name: "Macro",
  41130. height: math.unit(200, "feet")
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41136. {
  41137. front: {
  41138. height: math.unit(4 + 2/12, "feet"),
  41139. weight: math.unit(40, "kg"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/amethyst-jones/front.svg",
  41143. extra: 1220/1150,
  41144. bottom: 101/1321
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(4 + 2/12, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(1.7, "m"),
  41161. weight: math.unit(135, "lb"),
  41162. name: "Front",
  41163. image: {
  41164. source: "./media/characters/jade/front.svg",
  41165. extra: 1818/1767,
  41166. bottom: 32/1850
  41167. }
  41168. },
  41169. back: {
  41170. height: math.unit(1.7, "m"),
  41171. weight: math.unit(135, "lb"),
  41172. name: "Back",
  41173. image: {
  41174. source: "./media/characters/jade/back.svg",
  41175. extra: 1869/1809,
  41176. bottom: 35/1904
  41177. }
  41178. },
  41179. hand: {
  41180. height: math.unit(0.24, "m"),
  41181. name: "Hand",
  41182. image: {
  41183. source: "./media/characters/jade/hand.svg"
  41184. }
  41185. },
  41186. foot: {
  41187. height: math.unit(0.263, "m"),
  41188. name: "Foot",
  41189. image: {
  41190. source: "./media/characters/jade/foot.svg"
  41191. }
  41192. },
  41193. dick: {
  41194. height: math.unit(0.47, "m"),
  41195. name: "Dick",
  41196. image: {
  41197. source: "./media/characters/jade/dick.svg"
  41198. }
  41199. },
  41200. },
  41201. [
  41202. {
  41203. name: "Micro",
  41204. height: math.unit(22, "cm")
  41205. },
  41206. {
  41207. name: "Normal",
  41208. height: math.unit(1.7, "m"),
  41209. default: true
  41210. },
  41211. {
  41212. name: "Macro",
  41213. height: math.unit(152, "m")
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(100, "miles"),
  41222. weight: math.unit(20000, "tons"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/cookie/front.svg",
  41226. extra: 1125/1070,
  41227. bottom: 30/1155
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Big",
  41234. height: math.unit(50, "feet")
  41235. },
  41236. {
  41237. name: "Macro",
  41238. height: math.unit(100, "miles"),
  41239. default: true
  41240. },
  41241. {
  41242. name: "Megamacro",
  41243. height: math.unit(90000, "miles")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(6, "feet"),
  41252. weight: math.unit(145, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/farzian/front.svg",
  41256. extra: 1902/1693,
  41257. bottom: 108/2010
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Macro",
  41264. height: math.unit(500, "feet"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(3 + 6/12, "feet"),
  41274. weight: math.unit(50, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/kimberly-tilson/front.svg",
  41278. extra: 1400/1322,
  41279. bottom: 36/1436
  41280. }
  41281. },
  41282. back: {
  41283. height: math.unit(3 + 6/12, "feet"),
  41284. weight: math.unit(50, "lb"),
  41285. name: "Back",
  41286. image: {
  41287. source: "./media/characters/kimberly-tilson/back.svg",
  41288. extra: 1370/1307,
  41289. bottom: 20/1390
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(3 + 6/12, "feet"),
  41297. default: true
  41298. },
  41299. ]
  41300. ))
  41301. characterMakers.push(() => makeCharacter(
  41302. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41303. {
  41304. front: {
  41305. height: math.unit(1148, "feet"),
  41306. weight: math.unit(34057, "lb"),
  41307. name: "Front",
  41308. image: {
  41309. source: "./media/characters/harthos/front.svg",
  41310. extra: 1391/1339,
  41311. bottom: 13/1404
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Macro",
  41318. height: math.unit(1148, "feet"),
  41319. default: true
  41320. },
  41321. ]
  41322. ))
  41323. characterMakers.push(() => makeCharacter(
  41324. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41325. {
  41326. front: {
  41327. height: math.unit(15, "feet"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/hypatia/front.svg",
  41331. extra: 1653/1591,
  41332. bottom: 79/1732
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(15, "feet")
  41340. },
  41341. {
  41342. name: "Small",
  41343. height: math.unit(300, "feet")
  41344. },
  41345. {
  41346. name: "Macro",
  41347. height: math.unit(2500, "feet"),
  41348. default: true
  41349. },
  41350. {
  41351. name: "Mega Macro",
  41352. height: math.unit(1500, "miles")
  41353. },
  41354. {
  41355. name: "Giga Macro",
  41356. height: math.unit(1.5e6, "miles")
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41362. {
  41363. front: {
  41364. height: math.unit(6, "feet"),
  41365. weight: math.unit(200, "lb"),
  41366. name: "Front",
  41367. image: {
  41368. source: "./media/characters/wulver/front.svg",
  41369. extra: 1724/1632,
  41370. bottom: 130/1854
  41371. }
  41372. },
  41373. frontNsfw: {
  41374. height: math.unit(6, "feet"),
  41375. weight: math.unit(200, "lb"),
  41376. name: "Front (NSFW)",
  41377. image: {
  41378. source: "./media/characters/wulver/front-nsfw.svg",
  41379. extra: 1724/1632,
  41380. bottom: 130/1854
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Human-Sized",
  41387. height: math.unit(6, "feet")
  41388. },
  41389. {
  41390. name: "Normal",
  41391. height: math.unit(4, "meters"),
  41392. default: true
  41393. },
  41394. {
  41395. name: "Large",
  41396. height: math.unit(6, "m")
  41397. },
  41398. ]
  41399. ))
  41400. characterMakers.push(() => makeCharacter(
  41401. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41402. {
  41403. front: {
  41404. height: math.unit(7, "feet"),
  41405. name: "Front",
  41406. image: {
  41407. source: "./media/characters/maru/front.svg",
  41408. extra: 1595/1570,
  41409. bottom: 0/1595
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Normal",
  41416. height: math.unit(7, "feet"),
  41417. default: true
  41418. },
  41419. {
  41420. name: "Macro",
  41421. height: math.unit(700, "feet")
  41422. },
  41423. {
  41424. name: "Mega Macro",
  41425. height: math.unit(25, "miles")
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(6, "feet"),
  41434. weight: math.unit(170, "lb"),
  41435. name: "Front",
  41436. image: {
  41437. source: "./media/characters/xenon/front.svg",
  41438. extra: 1376/1305,
  41439. bottom: 56/1432
  41440. }
  41441. },
  41442. back: {
  41443. height: math.unit(6, "feet"),
  41444. weight: math.unit(170, "lb"),
  41445. name: "Back",
  41446. image: {
  41447. source: "./media/characters/xenon/back.svg",
  41448. extra: 1328/1259,
  41449. bottom: 95/1423
  41450. }
  41451. },
  41452. maw: {
  41453. height: math.unit(0.52, "feet"),
  41454. name: "Maw",
  41455. image: {
  41456. source: "./media/characters/xenon/maw.svg"
  41457. }
  41458. },
  41459. handLeft: {
  41460. height: math.unit(0.82 * 169 / 153, "feet"),
  41461. name: "Hand (Left)",
  41462. image: {
  41463. source: "./media/characters/xenon/hand-left.svg"
  41464. }
  41465. },
  41466. handRight: {
  41467. height: math.unit(0.82, "feet"),
  41468. name: "Hand (Right)",
  41469. image: {
  41470. source: "./media/characters/xenon/hand-right.svg"
  41471. }
  41472. },
  41473. footLeft: {
  41474. height: math.unit(1.13, "feet"),
  41475. name: "Foot (Left)",
  41476. image: {
  41477. source: "./media/characters/xenon/foot-left.svg"
  41478. }
  41479. },
  41480. footRight: {
  41481. height: math.unit(1.13 * 194 / 196, "feet"),
  41482. name: "Foot (Right)",
  41483. image: {
  41484. source: "./media/characters/xenon/foot-right.svg"
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Micro",
  41491. height: math.unit(0.8, "inches")
  41492. },
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(6, "feet")
  41496. },
  41497. {
  41498. name: "Macro",
  41499. height: math.unit(50, "feet"),
  41500. default: true
  41501. },
  41502. {
  41503. name: "Macro+",
  41504. height: math.unit(250, "feet")
  41505. },
  41506. {
  41507. name: "Megamacro",
  41508. height: math.unit(1500, "feet")
  41509. },
  41510. ]
  41511. ))
  41512. characterMakers.push(() => makeCharacter(
  41513. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41514. {
  41515. front: {
  41516. height: math.unit(7 + 5/12, "feet"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/zane/front.svg",
  41520. extra: 1260/1203,
  41521. bottom: 94/1354
  41522. }
  41523. },
  41524. back: {
  41525. height: math.unit(5.05, "feet"),
  41526. name: "Back",
  41527. image: {
  41528. source: "./media/characters/zane/back.svg",
  41529. extra: 893/829,
  41530. bottom: 30/923
  41531. }
  41532. },
  41533. werewolf: {
  41534. height: math.unit(11, "feet"),
  41535. name: "Werewolf",
  41536. image: {
  41537. source: "./media/characters/zane/werewolf.svg",
  41538. extra: 1383/1323,
  41539. bottom: 89/1472
  41540. }
  41541. },
  41542. foot: {
  41543. height: math.unit(1.46, "feet"),
  41544. name: "Foot",
  41545. image: {
  41546. source: "./media/characters/zane/foot.svg"
  41547. }
  41548. },
  41549. footFront: {
  41550. height: math.unit(0.784, "feet"),
  41551. name: "Foot (Front)",
  41552. image: {
  41553. source: "./media/characters/zane/foot-front.svg"
  41554. }
  41555. },
  41556. dick: {
  41557. height: math.unit(1.95, "feet"),
  41558. name: "Dick",
  41559. image: {
  41560. source: "./media/characters/zane/dick.svg"
  41561. }
  41562. },
  41563. dickWerewolf: {
  41564. height: math.unit(3.77, "feet"),
  41565. name: "Dick (Werewolf)",
  41566. image: {
  41567. source: "./media/characters/zane/dick.svg"
  41568. }
  41569. },
  41570. },
  41571. [
  41572. {
  41573. name: "Normal",
  41574. height: math.unit(7 + 5/12, "feet"),
  41575. default: true
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41581. {
  41582. front: {
  41583. height: math.unit(6 + 2/12, "feet"),
  41584. weight: math.unit(284, "lb"),
  41585. name: "Front",
  41586. image: {
  41587. source: "./media/characters/benni-desparque/front.svg",
  41588. extra: 1353/1126,
  41589. bottom: 69/1422
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Civilian",
  41596. height: math.unit(6 + 2/12, "feet")
  41597. },
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(98, "feet"),
  41601. default: true
  41602. },
  41603. {
  41604. name: "Kaiju Fighter",
  41605. height: math.unit(268, "feet")
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41611. {
  41612. front: {
  41613. height: math.unit(5, "feet"),
  41614. weight: math.unit(105, "lb"),
  41615. name: "Front",
  41616. image: {
  41617. source: "./media/characters/maxine/front.svg",
  41618. extra: 1386/1250,
  41619. bottom: 71/1457
  41620. }
  41621. },
  41622. },
  41623. [
  41624. {
  41625. name: "Normal",
  41626. height: math.unit(5, "feet"),
  41627. default: true
  41628. },
  41629. ]
  41630. ))
  41631. characterMakers.push(() => makeCharacter(
  41632. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41633. {
  41634. front: {
  41635. height: math.unit(11 + 7/12, "feet"),
  41636. weight: math.unit(9576, "lb"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/scaly/front.svg",
  41640. extra: 888/867,
  41641. bottom: 36/924
  41642. }
  41643. },
  41644. },
  41645. [
  41646. {
  41647. name: "Normal",
  41648. height: math.unit(11 + 7/12, "feet"),
  41649. default: true
  41650. },
  41651. ]
  41652. ))
  41653. characterMakers.push(() => makeCharacter(
  41654. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41655. {
  41656. front: {
  41657. height: math.unit(6 + 3/12, "feet"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/saelria/front.svg",
  41661. extra: 1243/1138,
  41662. bottom: 46/1289
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Micro",
  41669. height: math.unit(6, "inches"),
  41670. },
  41671. {
  41672. name: "Normal",
  41673. height: math.unit(6 + 3/12, "feet"),
  41674. default: true
  41675. },
  41676. {
  41677. name: "Macro",
  41678. height: math.unit(25, "feet")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(80, "meters"),
  41687. weight: math.unit(7000, "tonnes"),
  41688. name: "Front",
  41689. image: {
  41690. source: "./media/characters/tef/front.svg",
  41691. extra: 2036/1991,
  41692. bottom: 54/2090
  41693. }
  41694. },
  41695. back: {
  41696. height: math.unit(80, "meters"),
  41697. weight: math.unit(7000, "tonnes"),
  41698. name: "Back",
  41699. image: {
  41700. source: "./media/characters/tef/back.svg",
  41701. extra: 2036/1991,
  41702. bottom: 54/2090
  41703. }
  41704. },
  41705. },
  41706. [
  41707. {
  41708. name: "Macro",
  41709. height: math.unit(80, "meters"),
  41710. default: true
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(13, "feet"),
  41719. weight: math.unit(6, "tons"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/rover/front.svg",
  41723. extra: 1233/1156,
  41724. bottom: 50/1283
  41725. }
  41726. },
  41727. back: {
  41728. height: math.unit(13, "feet"),
  41729. weight: math.unit(6, "tons"),
  41730. name: "Back",
  41731. image: {
  41732. source: "./media/characters/rover/back.svg",
  41733. extra: 1327/1258,
  41734. bottom: 39/1366
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Normal",
  41741. height: math.unit(13, "feet"),
  41742. default: true
  41743. },
  41744. {
  41745. name: "Macro",
  41746. height: math.unit(1300, "feet")
  41747. },
  41748. {
  41749. name: "Megamacro",
  41750. height: math.unit(1300, "miles")
  41751. },
  41752. {
  41753. name: "Gigamacro",
  41754. height: math.unit(1300000, "miles")
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(6, "feet"),
  41763. weight: math.unit(150, "lb"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/ariz/front.svg",
  41767. extra: 1401/1346,
  41768. bottom: 5/1406
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(10, "feet"),
  41776. default: true
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41782. {
  41783. front: {
  41784. height: math.unit(6, "feet"),
  41785. weight: math.unit(140, "lb"),
  41786. name: "Front",
  41787. image: {
  41788. source: "./media/characters/sigrun/front.svg",
  41789. extra: 1418/1359,
  41790. bottom: 27/1445
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Macro",
  41797. height: math.unit(35, "feet"),
  41798. default: true
  41799. },
  41800. ]
  41801. ))
  41802. characterMakers.push(() => makeCharacter(
  41803. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41804. {
  41805. front: {
  41806. height: math.unit(6, "feet"),
  41807. weight: math.unit(150, "lb"),
  41808. name: "Front",
  41809. image: {
  41810. source: "./media/characters/numin/front.svg",
  41811. extra: 1433/1388,
  41812. bottom: 12/1445
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Macro",
  41819. height: math.unit(21.5, "km"),
  41820. default: true
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(6, "feet"),
  41829. weight: math.unit(463, "lb"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/melwa/front.svg",
  41833. extra: 1307/1248,
  41834. bottom: 93/1400
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Macro",
  41841. height: math.unit(50, "meters"),
  41842. default: true
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(325, "feet"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/zorkaiju/front.svg",
  41854. extra: 1955/1814,
  41855. bottom: 40/1995
  41856. }
  41857. },
  41858. frontExtended: {
  41859. height: math.unit(325, "feet"),
  41860. name: "Front (Extended)",
  41861. image: {
  41862. source: "./media/characters/zorkaiju/front-extended.svg",
  41863. extra: 1955/1814,
  41864. bottom: 40/1995
  41865. }
  41866. },
  41867. side: {
  41868. height: math.unit(325, "feet"),
  41869. name: "Side",
  41870. image: {
  41871. source: "./media/characters/zorkaiju/side.svg",
  41872. extra: 1495/1396,
  41873. bottom: 17/1512
  41874. }
  41875. },
  41876. sideExtended: {
  41877. height: math.unit(325, "feet"),
  41878. name: "Side (Extended)",
  41879. image: {
  41880. source: "./media/characters/zorkaiju/side-extended.svg",
  41881. extra: 1495/1396,
  41882. bottom: 17/1512
  41883. }
  41884. },
  41885. back: {
  41886. height: math.unit(325, "feet"),
  41887. name: "Back",
  41888. image: {
  41889. source: "./media/characters/zorkaiju/back.svg",
  41890. extra: 1959/1821,
  41891. bottom: 31/1990
  41892. }
  41893. },
  41894. backExtended: {
  41895. height: math.unit(325, "feet"),
  41896. name: "Back (Extended)",
  41897. image: {
  41898. source: "./media/characters/zorkaiju/back-extended.svg",
  41899. extra: 1959/1821,
  41900. bottom: 31/1990
  41901. }
  41902. },
  41903. hand: {
  41904. height: math.unit(58.4, "feet"),
  41905. name: "Hand",
  41906. image: {
  41907. source: "./media/characters/zorkaiju/hand.svg"
  41908. }
  41909. },
  41910. handExtended: {
  41911. height: math.unit(61.4, "feet"),
  41912. name: "Hand (Extended)",
  41913. image: {
  41914. source: "./media/characters/zorkaiju/hand-extended.svg"
  41915. }
  41916. },
  41917. foot: {
  41918. height: math.unit(95, "feet"),
  41919. name: "Foot",
  41920. image: {
  41921. source: "./media/characters/zorkaiju/foot.svg"
  41922. }
  41923. },
  41924. leftArm: {
  41925. height: math.unit(59, "feet"),
  41926. name: "Left Arm",
  41927. image: {
  41928. source: "./media/characters/zorkaiju/left-arm.svg"
  41929. }
  41930. },
  41931. rightArm: {
  41932. height: math.unit(59, "feet"),
  41933. name: "Right Arm",
  41934. image: {
  41935. source: "./media/characters/zorkaiju/right-arm.svg"
  41936. }
  41937. },
  41938. leftArmExtended: {
  41939. height: math.unit(59 * 1.033546, "feet"),
  41940. name: "Left Arm (Extended)",
  41941. image: {
  41942. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41943. }
  41944. },
  41945. rightArmExtended: {
  41946. height: math.unit(59 * 1.0496, "feet"),
  41947. name: "Right Arm (Extended)",
  41948. image: {
  41949. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41950. }
  41951. },
  41952. tail: {
  41953. height: math.unit(104, "feet"),
  41954. name: "Tail",
  41955. image: {
  41956. source: "./media/characters/zorkaiju/tail.svg"
  41957. }
  41958. },
  41959. tailExtended: {
  41960. height: math.unit(104, "feet"),
  41961. name: "Tail (Extended)",
  41962. image: {
  41963. source: "./media/characters/zorkaiju/tail-extended.svg"
  41964. }
  41965. },
  41966. tailBottom: {
  41967. height: math.unit(104, "feet"),
  41968. name: "Tail Bottom",
  41969. image: {
  41970. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41971. }
  41972. },
  41973. crystal: {
  41974. height: math.unit(27.54, "feet"),
  41975. name: "Crystal",
  41976. image: {
  41977. source: "./media/characters/zorkaiju/crystal.svg"
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Kaiju",
  41984. height: math.unit(325, "feet"),
  41985. default: true
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(6 + 1/12, "feet"),
  41994. weight: math.unit(115, "lb"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/bailey-belfry/front.svg",
  41998. extra: 1240/1121,
  41999. bottom: 101/1341
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Normal",
  42006. height: math.unit(6 + 1/12, "feet"),
  42007. default: true
  42008. },
  42009. ]
  42010. ))
  42011. characterMakers.push(() => makeCharacter(
  42012. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42013. {
  42014. side: {
  42015. height: math.unit(4, "meters"),
  42016. weight: math.unit(250, "kg"),
  42017. name: "Side",
  42018. image: {
  42019. source: "./media/characters/blacky/side.svg",
  42020. extra: 1027/919,
  42021. bottom: 43/1070
  42022. }
  42023. },
  42024. maw: {
  42025. height: math.unit(1, "meters"),
  42026. name: "Maw",
  42027. image: {
  42028. source: "./media/characters/blacky/maw.svg"
  42029. }
  42030. },
  42031. paw: {
  42032. height: math.unit(1, "meters"),
  42033. name: "Paw",
  42034. image: {
  42035. source: "./media/characters/blacky/paw.svg"
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Normal",
  42042. height: math.unit(4, "meters"),
  42043. default: true
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42049. {
  42050. front: {
  42051. height: math.unit(170, "cm"),
  42052. weight: math.unit(66, "kg"),
  42053. name: "Front",
  42054. image: {
  42055. source: "./media/characters/thux-ei/front.svg",
  42056. extra: 1109/1011,
  42057. bottom: 8/1117
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(170, "cm"),
  42065. default: true
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42071. {
  42072. front: {
  42073. height: math.unit(5, "feet"),
  42074. weight: math.unit(120, "lb"),
  42075. name: "Front",
  42076. image: {
  42077. source: "./media/characters/roxanne-voltaire/front.svg",
  42078. extra: 1901/1779,
  42079. bottom: 53/1954
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Normal",
  42086. height: math.unit(5, "feet"),
  42087. default: true
  42088. },
  42089. {
  42090. name: "Giant",
  42091. height: math.unit(50, "feet")
  42092. },
  42093. {
  42094. name: "Titan",
  42095. height: math.unit(500, "feet")
  42096. },
  42097. {
  42098. name: "Macro",
  42099. height: math.unit(5000, "feet")
  42100. },
  42101. {
  42102. name: "Megamacro",
  42103. height: math.unit(50000, "feet")
  42104. },
  42105. {
  42106. name: "Gigamacro",
  42107. height: math.unit(500000, "feet")
  42108. },
  42109. {
  42110. name: "Teramacro",
  42111. height: math.unit(5e6, "feet")
  42112. },
  42113. ]
  42114. ))
  42115. characterMakers.push(() => makeCharacter(
  42116. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42117. {
  42118. front: {
  42119. height: math.unit(6 + 2/12, "feet"),
  42120. name: "Front",
  42121. image: {
  42122. source: "./media/characters/squeaks/front.svg",
  42123. extra: 1823/1768,
  42124. bottom: 138/1961
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Micro",
  42131. height: math.unit(0.5, "inches")
  42132. },
  42133. {
  42134. name: "Normal",
  42135. height: math.unit(6 + 2/12, "feet"),
  42136. default: true
  42137. },
  42138. {
  42139. name: "Macro",
  42140. height: math.unit(600, "feet")
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(1.72, "meters"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/archinger/front.svg",
  42152. extra: 1861/1675,
  42153. bottom: 125/1986
  42154. }
  42155. },
  42156. back: {
  42157. height: math.unit(1.72, "meters"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/archinger/back.svg",
  42161. extra: 1844/1701,
  42162. bottom: 104/1948
  42163. }
  42164. },
  42165. cock: {
  42166. height: math.unit(0.59, "feet"),
  42167. name: "Cock",
  42168. image: {
  42169. source: "./media/characters/archinger/cock.svg"
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Normal",
  42176. height: math.unit(1.72, "meters"),
  42177. default: true
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(84, "meters")
  42182. },
  42183. {
  42184. name: "Macro+",
  42185. height: math.unit(112, "meters")
  42186. },
  42187. {
  42188. name: "Macro++",
  42189. height: math.unit(960, "meters")
  42190. },
  42191. {
  42192. name: "Macro+++",
  42193. height: math.unit(4, "km")
  42194. },
  42195. {
  42196. name: "Macro++++",
  42197. height: math.unit(48, "km")
  42198. },
  42199. {
  42200. name: "Macro+++++",
  42201. height: math.unit(4500, "km")
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(5 + 5/12, "feet"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/alsnapz/front.svg",
  42213. extra: 1157/1065,
  42214. bottom: 42/1199
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Normal",
  42221. height: math.unit(5 + 5/12, "feet"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42228. {
  42229. side: {
  42230. height: math.unit(3.2, "earths"),
  42231. name: "Side",
  42232. image: {
  42233. source: "./media/characters/mag/side.svg",
  42234. extra: 1331/1008,
  42235. bottom: 52/1383
  42236. }
  42237. },
  42238. wing: {
  42239. height: math.unit(1.94, "earths"),
  42240. name: "Wing",
  42241. image: {
  42242. source: "./media/characters/mag/wing.svg"
  42243. }
  42244. },
  42245. dick: {
  42246. height: math.unit(1.8, "earths"),
  42247. name: "Dick",
  42248. image: {
  42249. source: "./media/characters/mag/dick.svg"
  42250. }
  42251. },
  42252. ass: {
  42253. height: math.unit(1.33, "earths"),
  42254. name: "Ass",
  42255. image: {
  42256. source: "./media/characters/mag/ass.svg"
  42257. }
  42258. },
  42259. head: {
  42260. height: math.unit(1.1, "earths"),
  42261. name: "Head",
  42262. image: {
  42263. source: "./media/characters/mag/head.svg"
  42264. }
  42265. },
  42266. maw: {
  42267. height: math.unit(1.62, "earths"),
  42268. name: "Maw",
  42269. image: {
  42270. source: "./media/characters/mag/maw.svg"
  42271. }
  42272. },
  42273. },
  42274. [
  42275. {
  42276. name: "Small",
  42277. height: math.unit(162, "feet")
  42278. },
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(3.2, "earths"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(512, "feet"),
  42291. weight: math.unit(63509, "tonnes"),
  42292. name: "Front",
  42293. image: {
  42294. source: "./media/characters/vorrel-harroc/front.svg",
  42295. extra: 1075/1063,
  42296. bottom: 62/1137
  42297. }
  42298. },
  42299. },
  42300. [
  42301. {
  42302. name: "Normal",
  42303. height: math.unit(10, "feet")
  42304. },
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(512, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Megamacro",
  42312. height: math.unit(256, "miles")
  42313. },
  42314. {
  42315. name: "Gigamacro",
  42316. height: math.unit(4096, "miles")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42322. {
  42323. side: {
  42324. height: math.unit(50, "feet"),
  42325. name: "Side",
  42326. image: {
  42327. source: "./media/characters/froimar/side.svg",
  42328. extra: 855/638,
  42329. bottom: 99/954
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Macro",
  42336. height: math.unit(50, "feet"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(210, "miles"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/timothy/front.svg",
  42349. extra: 1007/943,
  42350. bottom: 62/1069
  42351. }
  42352. },
  42353. frontSkirt: {
  42354. height: math.unit(210, "miles"),
  42355. name: "Front (Skirt)",
  42356. image: {
  42357. source: "./media/characters/timothy/front-skirt.svg",
  42358. extra: 1007/943,
  42359. bottom: 62/1069
  42360. }
  42361. },
  42362. frontCoat: {
  42363. height: math.unit(210, "miles"),
  42364. name: "Front (Coat)",
  42365. image: {
  42366. source: "./media/characters/timothy/front-coat.svg",
  42367. extra: 1007/943,
  42368. bottom: 62/1069
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Macro",
  42375. height: math.unit(210, "miles"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Megamacro",
  42380. height: math.unit(210000, "miles")
  42381. },
  42382. ]
  42383. ))
  42384. characterMakers.push(() => makeCharacter(
  42385. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42386. {
  42387. front: {
  42388. height: math.unit(188, "feet"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/pyotr/front.svg",
  42392. extra: 1912/1826,
  42393. bottom: 18/1930
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Macro",
  42400. height: math.unit(188, "feet"),
  42401. default: true
  42402. },
  42403. {
  42404. name: "Megamacro",
  42405. height: math.unit(8, "miles")
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42411. {
  42412. side: {
  42413. height: math.unit(10, "feet"),
  42414. weight: math.unit(4500, "lb"),
  42415. name: "Side",
  42416. image: {
  42417. source: "./media/characters/ackart/side.svg",
  42418. extra: 1776/1668,
  42419. bottom: 116/1892
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Normal",
  42426. height: math.unit(10, "feet"),
  42427. default: true
  42428. },
  42429. ]
  42430. ))
  42431. characterMakers.push(() => makeCharacter(
  42432. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42433. {
  42434. side: {
  42435. height: math.unit(21, "feet"),
  42436. name: "Side",
  42437. image: {
  42438. source: "./media/characters/nolow/side.svg",
  42439. extra: 1484/1434,
  42440. bottom: 85/1569
  42441. }
  42442. },
  42443. sideErect: {
  42444. height: math.unit(21, "feet"),
  42445. name: "Side-erect",
  42446. image: {
  42447. source: "./media/characters/nolow/side-erect.svg",
  42448. extra: 1484/1434,
  42449. bottom: 85/1569
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Regular",
  42456. height: math.unit(12, "feet")
  42457. },
  42458. {
  42459. name: "Big Chee",
  42460. height: math.unit(21, "feet"),
  42461. default: true
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(7, "feet"),
  42470. weight: math.unit(250, "lb"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/nines/front.svg",
  42474. extra: 1741/1607,
  42475. bottom: 41/1782
  42476. }
  42477. },
  42478. side: {
  42479. height: math.unit(7, "feet"),
  42480. weight: math.unit(250, "lb"),
  42481. name: "Side",
  42482. image: {
  42483. source: "./media/characters/nines/side.svg",
  42484. extra: 1854/1735,
  42485. bottom: 93/1947
  42486. }
  42487. },
  42488. back: {
  42489. height: math.unit(7, "feet"),
  42490. weight: math.unit(250, "lb"),
  42491. name: "Back",
  42492. image: {
  42493. source: "./media/characters/nines/back.svg",
  42494. extra: 1748/1615,
  42495. bottom: 20/1768
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Megamacro",
  42502. height: math.unit(99, "km"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(5 + 10/12, "feet"),
  42512. weight: math.unit(210, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/zenith/front.svg",
  42516. extra: 1531/1452,
  42517. bottom: 198/1729
  42518. }
  42519. },
  42520. back: {
  42521. height: math.unit(5 + 10/12, "feet"),
  42522. weight: math.unit(210, "lb"),
  42523. name: "Back",
  42524. image: {
  42525. source: "./media/characters/zenith/back.svg",
  42526. extra: 1571/1487,
  42527. bottom: 75/1646
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(5 + 10/12, "feet"),
  42535. default: true
  42536. }
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42541. {
  42542. front: {
  42543. height: math.unit(4, "feet"),
  42544. weight: math.unit(60, "lb"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/jasper/front.svg",
  42548. extra: 1450/1379,
  42549. bottom: 19/1469
  42550. }
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(4, "feet"),
  42557. default: true
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(6 + 5/12, "feet"),
  42566. weight: math.unit(290, "lb"),
  42567. name: "Front",
  42568. image: {
  42569. source: "./media/characters/tiberius-thyben/front.svg",
  42570. extra: 757/739,
  42571. bottom: 39/796
  42572. }
  42573. },
  42574. },
  42575. [
  42576. {
  42577. name: "Micro",
  42578. height: math.unit(1.5, "inches")
  42579. },
  42580. {
  42581. name: "Normal",
  42582. height: math.unit(6 + 5/12, "feet"),
  42583. default: true
  42584. },
  42585. {
  42586. name: "Macro",
  42587. height: math.unit(300, "feet")
  42588. },
  42589. ]
  42590. ))
  42591. characterMakers.push(() => makeCharacter(
  42592. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42593. {
  42594. front: {
  42595. height: math.unit(5 + 6/12, "feet"),
  42596. weight: math.unit(60, "kg"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/sabre/front.svg",
  42600. extra: 738/671,
  42601. bottom: 27/765
  42602. }
  42603. },
  42604. },
  42605. [
  42606. {
  42607. name: "Teeny",
  42608. height: math.unit(2, "inches")
  42609. },
  42610. {
  42611. name: "Smol",
  42612. height: math.unit(8, "inches")
  42613. },
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(5 + 6/12, "feet"),
  42617. default: true
  42618. },
  42619. {
  42620. name: "Mini-Macro",
  42621. height: math.unit(15, "feet")
  42622. },
  42623. {
  42624. name: "Macro",
  42625. height: math.unit(50, "feet")
  42626. },
  42627. ]
  42628. ))
  42629. characterMakers.push(() => makeCharacter(
  42630. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42631. {
  42632. front: {
  42633. height: math.unit(6 + 4/12, "feet"),
  42634. weight: math.unit(170, "lb"),
  42635. name: "Front",
  42636. image: {
  42637. source: "./media/characters/charlie/front.svg",
  42638. extra: 1348/1228,
  42639. bottom: 15/1363
  42640. }
  42641. },
  42642. },
  42643. [
  42644. {
  42645. name: "Macro",
  42646. height: math.unit(1700, "meters"),
  42647. default: true
  42648. },
  42649. {
  42650. name: "MegaMacro",
  42651. height: math.unit(20400, "meters")
  42652. },
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(6 + 3/12, "feet"),
  42660. weight: math.unit(185, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/susan-grant/front.svg",
  42664. extra: 1351/1327,
  42665. bottom: 26/1377
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(6 + 3/12, "feet"),
  42673. default: true
  42674. },
  42675. {
  42676. name: "Macro",
  42677. height: math.unit(225, "feet")
  42678. },
  42679. {
  42680. name: "Macro+",
  42681. height: math.unit(900, "feet")
  42682. },
  42683. {
  42684. name: "MegaMacro",
  42685. height: math.unit(14400, "feet")
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42691. {
  42692. front: {
  42693. height: math.unit(5 + 4/12, "feet"),
  42694. weight: math.unit(110, "lb"),
  42695. name: "Front",
  42696. image: {
  42697. source: "./media/characters/axel-isanov/front.svg",
  42698. extra: 1096/1065,
  42699. bottom: 13/1109
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(5 + 4/12, "feet"),
  42707. default: true
  42708. },
  42709. ]
  42710. ))
  42711. characterMakers.push(() => makeCharacter(
  42712. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42713. {
  42714. front: {
  42715. height: math.unit(9, "feet"),
  42716. weight: math.unit(467, "lb"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/necahual/front.svg",
  42720. extra: 920/873,
  42721. bottom: 26/946
  42722. }
  42723. },
  42724. back: {
  42725. height: math.unit(9, "feet"),
  42726. weight: math.unit(467, "lb"),
  42727. name: "Back",
  42728. image: {
  42729. source: "./media/characters/necahual/back.svg",
  42730. extra: 930/884,
  42731. bottom: 16/946
  42732. }
  42733. },
  42734. frontUnderwear: {
  42735. height: math.unit(9, "feet"),
  42736. weight: math.unit(467, "lb"),
  42737. name: "Front (Underwear)",
  42738. image: {
  42739. source: "./media/characters/necahual/front-underwear.svg",
  42740. extra: 920/873,
  42741. bottom: 26/946
  42742. }
  42743. },
  42744. frontDressed: {
  42745. height: math.unit(9, "feet"),
  42746. weight: math.unit(467, "lb"),
  42747. name: "Front (Dressed)",
  42748. image: {
  42749. source: "./media/characters/necahual/front-dressed.svg",
  42750. extra: 920/873,
  42751. bottom: 26/946
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Comprsesed",
  42758. height: math.unit(9, "feet")
  42759. },
  42760. {
  42761. name: "Natural",
  42762. height: math.unit(15, "feet"),
  42763. default: true
  42764. },
  42765. {
  42766. name: "Boosted",
  42767. height: math.unit(50, "feet")
  42768. },
  42769. {
  42770. name: "Boosted+",
  42771. height: math.unit(150, "feet")
  42772. },
  42773. {
  42774. name: "Max",
  42775. height: math.unit(500, "feet")
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(22 + 1/12, "feet"),
  42784. weight: math.unit(3200, "lb"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/theo-acacia/front.svg",
  42788. extra: 1796/1741,
  42789. bottom: 83/1879
  42790. }
  42791. },
  42792. frontUnderwear: {
  42793. height: math.unit(22 + 1/12, "feet"),
  42794. weight: math.unit(3200, "lb"),
  42795. name: "Front (Underwear)",
  42796. image: {
  42797. source: "./media/characters/theo-acacia/front-underwear.svg",
  42798. extra: 1796/1741,
  42799. bottom: 83/1879
  42800. }
  42801. },
  42802. frontNude: {
  42803. height: math.unit(22 + 1/12, "feet"),
  42804. weight: math.unit(3200, "lb"),
  42805. name: "Front (Nude)",
  42806. image: {
  42807. source: "./media/characters/theo-acacia/front-nude.svg",
  42808. extra: 1796/1741,
  42809. bottom: 83/1879
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Normal",
  42816. height: math.unit(22 + 1/12, "feet"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42823. {
  42824. front: {
  42825. height: math.unit(20, "feet"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/astra/front.svg",
  42829. extra: 1850/1714,
  42830. bottom: 106/1956
  42831. }
  42832. },
  42833. frontUndressed: {
  42834. height: math.unit(20, "feet"),
  42835. name: "Front (Undressed)",
  42836. image: {
  42837. source: "./media/characters/astra/front-undressed.svg",
  42838. extra: 1926/1749,
  42839. bottom: 0/1926
  42840. }
  42841. },
  42842. hand: {
  42843. height: math.unit(1.53, "feet"),
  42844. name: "Hand",
  42845. image: {
  42846. source: "./media/characters/astra/hand.svg"
  42847. }
  42848. },
  42849. paw: {
  42850. height: math.unit(1.53, "feet"),
  42851. name: "Paw",
  42852. image: {
  42853. source: "./media/characters/astra/paw.svg"
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Smallest",
  42860. height: math.unit(20, "feet")
  42861. },
  42862. {
  42863. name: "Normal",
  42864. height: math.unit(1e9, "miles"),
  42865. default: true
  42866. },
  42867. {
  42868. name: "Larger",
  42869. height: math.unit(5, "multiverses")
  42870. },
  42871. {
  42872. name: "Largest",
  42873. height: math.unit(1e9, "multiverses")
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42879. {
  42880. front: {
  42881. height: math.unit(8, "feet"),
  42882. name: "Front",
  42883. image: {
  42884. source: "./media/characters/breanna/front.svg",
  42885. extra: 1912/1632,
  42886. bottom: 33/1945
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Smallest",
  42893. height: math.unit(8, "feet")
  42894. },
  42895. {
  42896. name: "Normal",
  42897. height: math.unit(1, "mile"),
  42898. default: true
  42899. },
  42900. {
  42901. name: "Maximum",
  42902. height: math.unit(1500000000000, "lightyears")
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42908. {
  42909. front: {
  42910. height: math.unit(5 + 11/12, "feet"),
  42911. weight: math.unit(155, "lb"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/cai/front.svg",
  42915. extra: 1823/1702,
  42916. bottom: 32/1855
  42917. }
  42918. },
  42919. back: {
  42920. height: math.unit(5 + 11/12, "feet"),
  42921. weight: math.unit(155, "lb"),
  42922. name: "Back",
  42923. image: {
  42924. source: "./media/characters/cai/back.svg",
  42925. extra: 1809/1708,
  42926. bottom: 31/1840
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(5 + 11/12, "feet"),
  42934. default: true
  42935. },
  42936. {
  42937. name: "Big",
  42938. height: math.unit(15, "feet")
  42939. },
  42940. {
  42941. name: "Macro",
  42942. height: math.unit(200, "feet")
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(5 + 6/12, "feet"),
  42951. weight: math.unit(160, "lb"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42955. extra: 1227/1174,
  42956. bottom: 37/1264
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Macro",
  42963. height: math.unit(444, "meters"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(18 + 7/12, "feet"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/rex/front.svg",
  42976. extra: 1941/1807,
  42977. bottom: 66/2007
  42978. }
  42979. },
  42980. back: {
  42981. height: math.unit(18 + 7/12, "feet"),
  42982. name: "Back",
  42983. image: {
  42984. source: "./media/characters/rex/back.svg",
  42985. extra: 1937/1822,
  42986. bottom: 42/1979
  42987. }
  42988. },
  42989. boot: {
  42990. height: math.unit(3.45, "feet"),
  42991. name: "Boot",
  42992. image: {
  42993. source: "./media/characters/rex/boot.svg"
  42994. }
  42995. },
  42996. paw: {
  42997. height: math.unit(4.17, "feet"),
  42998. name: "Paw",
  42999. image: {
  43000. source: "./media/characters/rex/paw.svg"
  43001. }
  43002. },
  43003. head: {
  43004. height: math.unit(6.728, "feet"),
  43005. name: "Head",
  43006. image: {
  43007. source: "./media/characters/rex/head.svg"
  43008. }
  43009. },
  43010. },
  43011. [
  43012. {
  43013. name: "Nano",
  43014. height: math.unit(18 + 7/12, "feet")
  43015. },
  43016. {
  43017. name: "Micro",
  43018. height: math.unit(1.5, "megameters")
  43019. },
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(440, "megameters"),
  43023. default: true
  43024. },
  43025. {
  43026. name: "Macro",
  43027. height: math.unit(2.5, "gigameters")
  43028. },
  43029. {
  43030. name: "Gigamacro",
  43031. height: math.unit(2, "galaxies")
  43032. },
  43033. ]
  43034. ))
  43035. characterMakers.push(() => makeCharacter(
  43036. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43037. {
  43038. side: {
  43039. height: math.unit(32, "feet"),
  43040. weight: math.unit(250000, "lb"),
  43041. name: "Side",
  43042. image: {
  43043. source: "./media/characters/silverwing/side.svg",
  43044. extra: 1100/1019,
  43045. bottom: 204/1304
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(32, "feet"),
  43053. default: true
  43054. },
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43059. {
  43060. front: {
  43061. height: math.unit(6 + 6/12, "feet"),
  43062. weight: math.unit(350, "lb"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/tristan-hawthorne/front.svg",
  43066. extra: 1159/1124,
  43067. bottom: 37/1196
  43068. },
  43069. form: "labrador",
  43070. default: true
  43071. },
  43072. skunkFront: {
  43073. height: math.unit(4 + 6/12, "feet"),
  43074. weight: math.unit(120, "lb"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43078. extra: 1609/1551,
  43079. bottom: 169/1778
  43080. },
  43081. form: "skunk",
  43082. default: true
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Normal",
  43088. height: math.unit(6 + 6/12, "feet"),
  43089. form: "labrador",
  43090. default: true
  43091. },
  43092. {
  43093. name: "Normal",
  43094. height: math.unit(4 + 6/12, "feet"),
  43095. form: "skunk",
  43096. default: true
  43097. },
  43098. ],
  43099. {
  43100. "labrador": {
  43101. name: "Labrador",
  43102. default: true
  43103. },
  43104. "skunk": {
  43105. name: "Skunk"
  43106. }
  43107. }
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(5 + 11/12, "feet"),
  43114. weight: math.unit(190, "lb"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/mizu/front.svg",
  43118. extra: 1988/1788,
  43119. bottom: 14/2002
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(5 + 11/12, "feet"),
  43127. default: true
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(1.7, "feet"),
  43136. weight: math.unit(50, "lb"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/dechroma/front.svg",
  43140. extra: 1095/859,
  43141. bottom: 64/1159
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Normal",
  43148. height: math.unit(1.7, "feet"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43155. {
  43156. side: {
  43157. height: math.unit(30, "feet"),
  43158. name: "Side",
  43159. image: {
  43160. source: "./media/characters/veluren-thanazel/side.svg",
  43161. extra: 1611/633,
  43162. bottom: 118/1729
  43163. }
  43164. },
  43165. front: {
  43166. height: math.unit(30, "feet"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/veluren-thanazel/front.svg",
  43170. extra: 1486/636,
  43171. bottom: 238/1724
  43172. }
  43173. },
  43174. head: {
  43175. height: math.unit(21.4, "feet"),
  43176. name: "Head",
  43177. image: {
  43178. source: "./media/characters/veluren-thanazel/head.svg"
  43179. }
  43180. },
  43181. genitals: {
  43182. height: math.unit(19.4, "feet"),
  43183. name: "Genitals",
  43184. image: {
  43185. source: "./media/characters/veluren-thanazel/genitals.svg"
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Social",
  43192. height: math.unit(6, "feet")
  43193. },
  43194. {
  43195. name: "Play",
  43196. height: math.unit(12, "feet")
  43197. },
  43198. {
  43199. name: "True",
  43200. height: math.unit(30, "feet"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(7 + 6/12, "feet"),
  43210. weight: math.unit(500, "kg"),
  43211. name: "Front",
  43212. image: {
  43213. source: "./media/characters/arcturas/front.svg",
  43214. extra: 1700/1500,
  43215. bottom: 145/1845
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Normal",
  43222. height: math.unit(7 + 6/12, "feet"),
  43223. default: true
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43229. {
  43230. side: {
  43231. height: math.unit(6, "feet"),
  43232. weight: math.unit(2, "tons"),
  43233. name: "Side",
  43234. image: {
  43235. source: "./media/characters/vitaen/side.svg",
  43236. extra: 1157/617,
  43237. bottom: 122/1279
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Normal",
  43244. height: math.unit(6, "feet"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(19, "feet"),
  43254. name: "Front",
  43255. image: {
  43256. source: "./media/characters/fia-dreamweaver/front.svg",
  43257. extra: 1630/1504,
  43258. bottom: 25/1655
  43259. }
  43260. },
  43261. },
  43262. [
  43263. {
  43264. name: "Normal",
  43265. height: math.unit(19, "feet"),
  43266. default: true
  43267. },
  43268. ]
  43269. ))
  43270. characterMakers.push(() => makeCharacter(
  43271. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43272. {
  43273. front: {
  43274. height: math.unit(5 + 4/12, "feet"),
  43275. name: "Front",
  43276. image: {
  43277. source: "./media/characters/artan/front.svg",
  43278. extra: 1618/1535,
  43279. bottom: 46/1664
  43280. }
  43281. },
  43282. back: {
  43283. height: math.unit(5 + 4/12, "feet"),
  43284. name: "Back",
  43285. image: {
  43286. source: "./media/characters/artan/back.svg",
  43287. extra: 1618/1543,
  43288. bottom: 31/1649
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(5 + 4/12, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43302. {
  43303. side: {
  43304. height: math.unit(182, "cm"),
  43305. weight: math.unit(1000, "lb"),
  43306. name: "Side",
  43307. image: {
  43308. source: "./media/characters/silver-dragon/side.svg",
  43309. extra: 710/287,
  43310. bottom: 88/798
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(182, "cm"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43324. {
  43325. side: {
  43326. height: math.unit(6 + 6/12, "feet"),
  43327. weight: math.unit(1.5, "tons"),
  43328. name: "Side",
  43329. image: {
  43330. source: "./media/characters/zephyr/side.svg",
  43331. extra: 1433/586,
  43332. bottom: 109/1542
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(6 + 6/12, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43346. {
  43347. side: {
  43348. height: math.unit(1, "feet"),
  43349. name: "Side",
  43350. image: {
  43351. source: "./media/characters/vixye/side.svg",
  43352. extra: 632/541,
  43353. bottom: 0/632
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(1, "feet"),
  43361. default: true
  43362. },
  43363. {
  43364. name: "True",
  43365. height: math.unit(1e15, "multiverses")
  43366. },
  43367. ]
  43368. ))
  43369. characterMakers.push(() => makeCharacter(
  43370. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43371. {
  43372. front: {
  43373. height: math.unit(8 + 2/12, "feet"),
  43374. weight: math.unit(650, "lb"),
  43375. name: "Front",
  43376. image: {
  43377. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43378. extra: 1174/1137,
  43379. bottom: 82/1256
  43380. }
  43381. },
  43382. back: {
  43383. height: math.unit(8 + 2/12, "feet"),
  43384. weight: math.unit(650, "lb"),
  43385. name: "Back",
  43386. image: {
  43387. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43388. extra: 1204/1157,
  43389. bottom: 46/1250
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Wildform",
  43396. height: math.unit(8 + 2/12, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(18, "feet"),
  43406. name: "Front",
  43407. image: {
  43408. source: "./media/characters/cyphin/front.svg",
  43409. extra: 970/886,
  43410. bottom: 42/1012
  43411. }
  43412. },
  43413. back: {
  43414. height: math.unit(18, "feet"),
  43415. name: "Back",
  43416. image: {
  43417. source: "./media/characters/cyphin/back.svg",
  43418. extra: 1009/894,
  43419. bottom: 24/1033
  43420. }
  43421. },
  43422. head: {
  43423. height: math.unit(5.05, "feet"),
  43424. name: "Head",
  43425. image: {
  43426. source: "./media/characters/cyphin/head.svg"
  43427. }
  43428. },
  43429. tailbud: {
  43430. height: math.unit(5, "feet"),
  43431. name: "Tailbud",
  43432. image: {
  43433. source: "./media/characters/cyphin/tailbud.svg"
  43434. }
  43435. },
  43436. },
  43437. [
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43442. {
  43443. side: {
  43444. height: math.unit(10, "feet"),
  43445. weight: math.unit(6, "tons"),
  43446. name: "Side",
  43447. image: {
  43448. source: "./media/characters/raijin/side.svg",
  43449. extra: 1529/613,
  43450. bottom: 337/1866
  43451. }
  43452. },
  43453. },
  43454. [
  43455. {
  43456. name: "Normal",
  43457. height: math.unit(10, "feet"),
  43458. default: true
  43459. },
  43460. ]
  43461. ))
  43462. characterMakers.push(() => makeCharacter(
  43463. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43464. {
  43465. side: {
  43466. height: math.unit(9, "feet"),
  43467. name: "Side",
  43468. image: {
  43469. source: "./media/characters/nilghais/side.svg",
  43470. extra: 1047/744,
  43471. bottom: 91/1138
  43472. }
  43473. },
  43474. head: {
  43475. height: math.unit(3.14, "feet"),
  43476. name: "Head",
  43477. image: {
  43478. source: "./media/characters/nilghais/head.svg"
  43479. }
  43480. },
  43481. mouth: {
  43482. height: math.unit(4.6, "feet"),
  43483. name: "Mouth",
  43484. image: {
  43485. source: "./media/characters/nilghais/mouth.svg"
  43486. }
  43487. },
  43488. wings: {
  43489. height: math.unit(24, "feet"),
  43490. name: "Wings",
  43491. image: {
  43492. source: "./media/characters/nilghais/wings.svg"
  43493. }
  43494. },
  43495. ass: {
  43496. height: math.unit(6.12, "feet"),
  43497. name: "Ass",
  43498. image: {
  43499. source: "./media/characters/nilghais/ass.svg"
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Normal",
  43506. height: math.unit(9, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43513. {
  43514. regular: {
  43515. height: math.unit(16 + 2/12, "feet"),
  43516. weight: math.unit(2300, "lb"),
  43517. name: "Regular",
  43518. image: {
  43519. source: "./media/characters/zolgar/regular.svg",
  43520. extra: 1246/1004,
  43521. bottom: 124/1370
  43522. }
  43523. },
  43524. boxers: {
  43525. height: math.unit(16 + 2/12, "feet"),
  43526. weight: math.unit(2300, "lb"),
  43527. name: "Boxers",
  43528. image: {
  43529. source: "./media/characters/zolgar/boxers.svg",
  43530. extra: 1246/1004,
  43531. bottom: 124/1370
  43532. }
  43533. },
  43534. armored: {
  43535. height: math.unit(16 + 2/12, "feet"),
  43536. weight: math.unit(2300, "lb"),
  43537. name: "Armored",
  43538. image: {
  43539. source: "./media/characters/zolgar/armored.svg",
  43540. extra: 1246/1004,
  43541. bottom: 124/1370
  43542. }
  43543. },
  43544. goth: {
  43545. height: math.unit(16 + 2/12, "feet"),
  43546. weight: math.unit(2300, "lb"),
  43547. name: "Goth",
  43548. image: {
  43549. source: "./media/characters/zolgar/goth.svg",
  43550. extra: 1246/1004,
  43551. bottom: 124/1370
  43552. }
  43553. },
  43554. },
  43555. [
  43556. {
  43557. name: "Shrunken Down",
  43558. height: math.unit(9 + 2/12, "feet")
  43559. },
  43560. {
  43561. name: "Normal",
  43562. height: math.unit(16 + 2/12, "feet"),
  43563. default: true
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43569. {
  43570. front: {
  43571. height: math.unit(6, "feet"),
  43572. weight: math.unit(168, "lb"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/luca/front.svg",
  43576. extra: 841/667,
  43577. bottom: 102/943
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(6, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43591. {
  43592. side: {
  43593. height: math.unit(7 + 3/12, "feet"),
  43594. weight: math.unit(312, "lb"),
  43595. name: "Side",
  43596. image: {
  43597. source: "./media/characters/zezo/side.svg",
  43598. extra: 1192/1067,
  43599. bottom: 63/1255
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(7 + 3/12, "feet"),
  43607. default: true
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(5 + 5/12, "feet"),
  43616. weight: math.unit(170, "lb"),
  43617. name: "Front",
  43618. image: {
  43619. source: "./media/characters/mayso/front.svg",
  43620. extra: 1215/1108,
  43621. bottom: 16/1231
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Normal",
  43628. height: math.unit(5 + 5/12, "feet"),
  43629. default: true
  43630. },
  43631. ]
  43632. ))
  43633. characterMakers.push(() => makeCharacter(
  43634. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43635. {
  43636. front: {
  43637. height: math.unit(4 + 3/12, "feet"),
  43638. weight: math.unit(80, "lb"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/hess/front.svg",
  43642. extra: 1200/1123,
  43643. bottom: 16/1216
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(4 + 3/12, "feet"),
  43651. default: true
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43657. {
  43658. front: {
  43659. height: math.unit(1.9, "meters"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/ashgar/front.svg",
  43663. extra: 1177/1146,
  43664. bottom: 99/1276
  43665. }
  43666. },
  43667. back: {
  43668. height: math.unit(1.9, "meters"),
  43669. name: "Back",
  43670. image: {
  43671. source: "./media/characters/ashgar/back.svg",
  43672. extra: 1201/1183,
  43673. bottom: 53/1254
  43674. }
  43675. },
  43676. feral: {
  43677. height: math.unit(1.4, "meters"),
  43678. name: "Feral",
  43679. image: {
  43680. source: "./media/characters/ashgar/feral.svg",
  43681. extra: 370/345,
  43682. bottom: 45/415
  43683. }
  43684. },
  43685. },
  43686. [
  43687. {
  43688. name: "Normal",
  43689. height: math.unit(1.9, "meters"),
  43690. default: true
  43691. },
  43692. ]
  43693. ))
  43694. characterMakers.push(() => makeCharacter(
  43695. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43696. {
  43697. regular: {
  43698. height: math.unit(6, "feet"),
  43699. weight: math.unit(220, "lb"),
  43700. name: "Regular",
  43701. image: {
  43702. source: "./media/characters/phillip/regular.svg",
  43703. extra: 1373/1277,
  43704. bottom: 75/1448
  43705. }
  43706. },
  43707. dressed: {
  43708. height: math.unit(6, "feet"),
  43709. weight: math.unit(220, "lb"),
  43710. name: "Dressed",
  43711. image: {
  43712. source: "./media/characters/phillip/dressed.svg",
  43713. extra: 1373/1277,
  43714. bottom: 75/1448
  43715. }
  43716. },
  43717. paw: {
  43718. height: math.unit(1.44, "feet"),
  43719. name: "Paw",
  43720. image: {
  43721. source: "./media/characters/phillip/paw.svg"
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(6, "feet"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43735. {
  43736. side: {
  43737. height: math.unit(42, "feet"),
  43738. name: "Side",
  43739. image: {
  43740. source: "./media/characters/uvula/side.svg",
  43741. extra: 683/586,
  43742. bottom: 60/743
  43743. }
  43744. },
  43745. front: {
  43746. height: math.unit(42, "feet"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/uvula/front.svg",
  43750. extra: 705/613,
  43751. bottom: 54/759
  43752. }
  43753. },
  43754. maw: {
  43755. height: math.unit(23.5, "feet"),
  43756. name: "Maw",
  43757. image: {
  43758. source: "./media/characters/uvula/maw.svg"
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Original Size",
  43765. height: math.unit(14, "inches")
  43766. },
  43767. {
  43768. name: "Human Size",
  43769. height: math.unit(6, "feet")
  43770. },
  43771. {
  43772. name: "Big",
  43773. height: math.unit(42, "feet"),
  43774. default: true
  43775. },
  43776. {
  43777. name: "Bigger",
  43778. height: math.unit(100, "feet")
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43784. {
  43785. front: {
  43786. height: math.unit(5 + 11/12, "feet"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/lannah/front.svg",
  43790. extra: 1208/1113,
  43791. bottom: 97/1305
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(5 + 11/12, "feet"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43805. {
  43806. front: {
  43807. height: math.unit(6 + 3/12, "feet"),
  43808. weight: math.unit(3.5, "tons"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/emberflame/front.svg",
  43812. extra: 1198/672,
  43813. bottom: 82/1280
  43814. }
  43815. },
  43816. side: {
  43817. height: math.unit(6 + 3/12, "feet"),
  43818. weight: math.unit(3.5, "tons"),
  43819. name: "Side",
  43820. image: {
  43821. source: "./media/characters/emberflame/side.svg",
  43822. extra: 938/527,
  43823. bottom: 56/994
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Normal",
  43830. height: math.unit(6 + 3/12, "feet"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43837. {
  43838. side: {
  43839. height: math.unit(17.5, "feet"),
  43840. weight: math.unit(35, "tons"),
  43841. name: "Side",
  43842. image: {
  43843. source: "./media/characters/sophie-ambrose/side.svg",
  43844. extra: 1573/1242,
  43845. bottom: 71/1644
  43846. }
  43847. },
  43848. maw: {
  43849. height: math.unit(7.4, "feet"),
  43850. name: "Maw",
  43851. image: {
  43852. source: "./media/characters/sophie-ambrose/maw.svg"
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(17.5, "feet"),
  43860. default: true
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43866. {
  43867. front: {
  43868. height: math.unit(280, "feet"),
  43869. weight: math.unit(550, "tons"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/king-mugi/front.svg",
  43873. extra: 1102/947,
  43874. bottom: 104/1206
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "King Mugi",
  43881. height: math.unit(280, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(64, "meters"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/nova-fox/front.svg",
  43894. extra: 1310/1246,
  43895. bottom: 65/1375
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Macro",
  43902. height: math.unit(64, "meters"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(6 + 3/12, "feet"),
  43912. weight: math.unit(170, "lb"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/sam-bat/front.svg",
  43916. extra: 1601/1411,
  43917. bottom: 125/1726
  43918. }
  43919. },
  43920. back: {
  43921. height: math.unit(6 + 3/12, "feet"),
  43922. weight: math.unit(170, "lb"),
  43923. name: "Back",
  43924. image: {
  43925. source: "./media/characters/sam-bat/back.svg",
  43926. extra: 1577/1405,
  43927. bottom: 58/1635
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(6 + 3/12, "feet"),
  43935. default: true
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43941. {
  43942. front: {
  43943. height: math.unit(59, "feet"),
  43944. weight: math.unit(40000, "lb"),
  43945. name: "Front",
  43946. image: {
  43947. source: "./media/characters/inari/front.svg",
  43948. extra: 1884/1350,
  43949. bottom: 95/1979
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Gigantamax",
  43956. height: math.unit(59, "feet"),
  43957. default: true
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43963. {
  43964. front: {
  43965. height: math.unit(5 + 8/12, "feet"),
  43966. name: "Front",
  43967. image: {
  43968. source: "./media/characters/elizabeth/front.svg",
  43969. extra: 1395/1298,
  43970. bottom: 54/1449
  43971. }
  43972. },
  43973. mouth: {
  43974. height: math.unit(1.97, "feet"),
  43975. name: "Mouth",
  43976. image: {
  43977. source: "./media/characters/elizabeth/mouth.svg"
  43978. }
  43979. },
  43980. foot: {
  43981. height: math.unit(1.17, "feet"),
  43982. name: "Foot",
  43983. image: {
  43984. source: "./media/characters/elizabeth/foot.svg"
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(5 + 8/12, "feet"),
  43992. default: true
  43993. },
  43994. {
  43995. name: "Minimacro",
  43996. height: math.unit(18, "feet")
  43997. },
  43998. {
  43999. name: "Macro",
  44000. height: math.unit(180, "feet")
  44001. },
  44002. ]
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44006. {
  44007. front: {
  44008. height: math.unit(5 + 2/12, "feet"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/october-gossamer/front.svg",
  44012. extra: 505/454,
  44013. bottom: 7/512
  44014. }
  44015. },
  44016. back: {
  44017. height: math.unit(5 + 2/12, "feet"),
  44018. name: "Back",
  44019. image: {
  44020. source: "./media/characters/october-gossamer/back.svg",
  44021. extra: 501/454,
  44022. bottom: 11/512
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Normal",
  44029. height: math.unit(5 + 2/12, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(5, "feet"),
  44039. name: "Front",
  44040. image: {
  44041. source: "./media/characters/epiglottis/front.svg",
  44042. extra: 923/849,
  44043. bottom: 17/940
  44044. }
  44045. },
  44046. },
  44047. [
  44048. {
  44049. name: "Original Size",
  44050. height: math.unit(10, "inches")
  44051. },
  44052. {
  44053. name: "Human Size",
  44054. height: math.unit(5, "feet"),
  44055. default: true
  44056. },
  44057. {
  44058. name: "Big",
  44059. height: math.unit(25, "feet")
  44060. },
  44061. {
  44062. name: "Bigger",
  44063. height: math.unit(50, "feet")
  44064. },
  44065. {
  44066. name: "oh lawd",
  44067. height: math.unit(75, "feet")
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(2 + 4/12, "feet"),
  44076. weight: math.unit(60, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/lerm/front.svg",
  44080. extra: 796/790,
  44081. bottom: 79/875
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(2 + 4/12, "feet"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(5.5, "feet"),
  44098. weight: math.unit(130, "lb"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/xena-nebadon/front.svg",
  44102. extra: 1828/1730,
  44103. bottom: 79/1907
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Tiny Puppy",
  44110. height: math.unit(3, "inches")
  44111. },
  44112. {
  44113. name: "Normal",
  44114. height: math.unit(5.5, "feet"),
  44115. default: true
  44116. },
  44117. {
  44118. name: "Lotta Lady",
  44119. height: math.unit(12, "feet")
  44120. },
  44121. {
  44122. name: "Pretty Big",
  44123. height: math.unit(100, "feet")
  44124. },
  44125. {
  44126. name: "Big",
  44127. height: math.unit(500, "feet")
  44128. },
  44129. {
  44130. name: "Skyscraper Toys",
  44131. height: math.unit(2500, "feet")
  44132. },
  44133. {
  44134. name: "Plane Catcher",
  44135. height: math.unit(8, "miles")
  44136. },
  44137. {
  44138. name: "Planet Toys",
  44139. height: math.unit(15, "earths")
  44140. },
  44141. {
  44142. name: "Stardust",
  44143. height: math.unit(0.25, "galaxies")
  44144. },
  44145. {
  44146. name: "Snacks",
  44147. height: math.unit(70, "universes")
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(1.6, "meters"),
  44156. weight: math.unit(60, "kg"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/bounty/front.svg",
  44160. extra: 1426/1308,
  44161. bottom: 15/1441
  44162. }
  44163. },
  44164. back: {
  44165. height: math.unit(1.6, "meters"),
  44166. weight: math.unit(60, "kg"),
  44167. name: "Back",
  44168. image: {
  44169. source: "./media/characters/bounty/back.svg",
  44170. extra: 1417/1307,
  44171. bottom: 8/1425
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(1.6, "meters"),
  44179. default: true
  44180. },
  44181. {
  44182. name: "Macro",
  44183. height: math.unit(300, "meters")
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44189. {
  44190. front: {
  44191. height: math.unit(2 + 8/12, "feet"),
  44192. weight: math.unit(15, "lb"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/mochi/front.svg",
  44196. extra: 1022/852,
  44197. bottom: 435/1457
  44198. }
  44199. },
  44200. back: {
  44201. height: math.unit(2 + 8/12, "feet"),
  44202. weight: math.unit(15, "lb"),
  44203. name: "Back",
  44204. image: {
  44205. source: "./media/characters/mochi/back.svg",
  44206. extra: 1335/1119,
  44207. bottom: 39/1374
  44208. }
  44209. },
  44210. bird: {
  44211. height: math.unit(2 + 8/12, "feet"),
  44212. weight: math.unit(15, "lb"),
  44213. name: "Bird",
  44214. image: {
  44215. source: "./media/characters/mochi/bird.svg",
  44216. extra: 1251/1113,
  44217. bottom: 178/1429
  44218. }
  44219. },
  44220. kaiju: {
  44221. height: math.unit(154, "feet"),
  44222. weight: math.unit(1e7, "lb"),
  44223. name: "Kaiju",
  44224. image: {
  44225. source: "./media/characters/mochi/kaiju.svg",
  44226. extra: 460/324,
  44227. bottom: 40/500
  44228. }
  44229. },
  44230. head: {
  44231. height: math.unit(1.21, "feet"),
  44232. name: "Head",
  44233. image: {
  44234. source: "./media/characters/mochi/head.svg"
  44235. }
  44236. },
  44237. alternateTail: {
  44238. height: math.unit(2 + 8/12, "feet"),
  44239. weight: math.unit(45, "lb"),
  44240. name: "Alternate Tail",
  44241. image: {
  44242. source: "./media/characters/mochi/alternate-tail.svg",
  44243. extra: 139/76,
  44244. bottom: 45/184
  44245. }
  44246. },
  44247. },
  44248. [
  44249. {
  44250. name: "Micro",
  44251. height: math.unit(2, "inches")
  44252. },
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(2 + 8/12, "feet"),
  44256. default: true
  44257. },
  44258. {
  44259. name: "Macro",
  44260. height: math.unit(106, "feet")
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(5.67, "feet"),
  44269. weight: math.unit(135, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/sarel/front.svg",
  44273. extra: 865/788,
  44274. bottom: 97/962
  44275. }
  44276. },
  44277. back: {
  44278. height: math.unit(5.67, "feet"),
  44279. weight: math.unit(135, "lb"),
  44280. name: "Back",
  44281. image: {
  44282. source: "./media/characters/sarel/back.svg",
  44283. extra: 857/777,
  44284. bottom: 32/889
  44285. }
  44286. },
  44287. chozoan: {
  44288. height: math.unit(5.67, "feet"),
  44289. weight: math.unit(135, "lb"),
  44290. name: "Chozoan",
  44291. image: {
  44292. source: "./media/characters/sarel/chozoan.svg",
  44293. extra: 865/788,
  44294. bottom: 97/962
  44295. }
  44296. },
  44297. current: {
  44298. height: math.unit(5.67, "feet"),
  44299. weight: math.unit(135, "lb"),
  44300. name: "Current",
  44301. image: {
  44302. source: "./media/characters/sarel/current.svg",
  44303. extra: 865/788,
  44304. bottom: 97/962
  44305. }
  44306. },
  44307. head: {
  44308. height: math.unit(1.77, "feet"),
  44309. name: "Head",
  44310. image: {
  44311. source: "./media/characters/sarel/head.svg"
  44312. }
  44313. },
  44314. claws: {
  44315. height: math.unit(1.8, "feet"),
  44316. name: "Claws",
  44317. image: {
  44318. source: "./media/characters/sarel/claws.svg"
  44319. }
  44320. },
  44321. clawsAlt: {
  44322. height: math.unit(1.8, "feet"),
  44323. name: "Claws-alt",
  44324. image: {
  44325. source: "./media/characters/sarel/claws-alt.svg"
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(5.67, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5500, "feet"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/alyonia/front.svg",
  44345. extra: 1200/1135,
  44346. bottom: 29/1229
  44347. }
  44348. },
  44349. back: {
  44350. height: math.unit(5500, "feet"),
  44351. name: "Back",
  44352. image: {
  44353. source: "./media/characters/alyonia/back.svg",
  44354. extra: 1205/1138,
  44355. bottom: 10/1215
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Small",
  44362. height: math.unit(10, "feet")
  44363. },
  44364. {
  44365. name: "Macro",
  44366. height: math.unit(500, "feet")
  44367. },
  44368. {
  44369. name: "Mega Macro",
  44370. height: math.unit(5500, "feet"),
  44371. default: true
  44372. },
  44373. {
  44374. name: "Mega Macro+",
  44375. height: math.unit(500000, "feet")
  44376. },
  44377. {
  44378. name: "Giga Macro",
  44379. height: math.unit(3000, "miles")
  44380. },
  44381. {
  44382. name: "Tera Macro",
  44383. height: math.unit(2.8e6, "miles")
  44384. },
  44385. {
  44386. name: "Galactic",
  44387. height: math.unit(120000, "lightyears")
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44393. {
  44394. werewolf: {
  44395. height: math.unit(8, "feet"),
  44396. weight: math.unit(425, "lb"),
  44397. name: "Werewolf",
  44398. image: {
  44399. source: "./media/characters/autumn/werewolf.svg",
  44400. extra: 2154/2031,
  44401. bottom: 160/2314
  44402. }
  44403. },
  44404. human: {
  44405. height: math.unit(5 + 8/12, "feet"),
  44406. weight: math.unit(150, "lb"),
  44407. name: "Human",
  44408. image: {
  44409. source: "./media/characters/autumn/human.svg",
  44410. extra: 1200/1149,
  44411. bottom: 30/1230
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Normal",
  44418. height: math.unit(8, "feet"),
  44419. default: true
  44420. },
  44421. ]
  44422. ))
  44423. characterMakers.push(() => makeCharacter(
  44424. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44425. {
  44426. front: {
  44427. height: math.unit(8 + 5/12, "feet"),
  44428. weight: math.unit(825, "lb"),
  44429. name: "Front",
  44430. image: {
  44431. source: "./media/characters/cobalt-charizard/front.svg",
  44432. extra: 1268/1155,
  44433. bottom: 122/1390
  44434. }
  44435. },
  44436. side: {
  44437. height: math.unit(8 + 5/12, "feet"),
  44438. weight: math.unit(825, "lb"),
  44439. name: "Side",
  44440. image: {
  44441. source: "./media/characters/cobalt-charizard/side.svg",
  44442. extra: 1348/1257,
  44443. bottom: 58/1406
  44444. }
  44445. },
  44446. gMax: {
  44447. height: math.unit(134 + 11/12, "feet"),
  44448. name: "G-Max",
  44449. image: {
  44450. source: "./media/characters/cobalt-charizard/g-max.svg",
  44451. extra: 1835/1541,
  44452. bottom: 151/1986
  44453. }
  44454. },
  44455. },
  44456. [
  44457. {
  44458. name: "Normal",
  44459. height: math.unit(8 + 5/12, "feet"),
  44460. default: true
  44461. },
  44462. ]
  44463. ))
  44464. characterMakers.push(() => makeCharacter(
  44465. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44466. {
  44467. front: {
  44468. height: math.unit(6 + 3/12, "feet"),
  44469. weight: math.unit(210, "lb"),
  44470. name: "Front",
  44471. image: {
  44472. source: "./media/characters/stella/front.svg",
  44473. extra: 3549/3335,
  44474. bottom: 51/3600
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(6 + 3/12, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(5, "feet"),
  44491. weight: math.unit(90, "lb"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/riley-bishop/front.svg",
  44495. extra: 1450/1428,
  44496. bottom: 152/1602
  44497. }
  44498. },
  44499. },
  44500. [
  44501. {
  44502. name: "Normal",
  44503. height: math.unit(5, "feet"),
  44504. default: true
  44505. },
  44506. ]
  44507. ))
  44508. characterMakers.push(() => makeCharacter(
  44509. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44510. {
  44511. side: {
  44512. height: math.unit(8 + 2/12, "feet"),
  44513. weight: math.unit(500, "kg"),
  44514. name: "Side",
  44515. image: {
  44516. source: "./media/characters/theo-arcanine/side.svg",
  44517. extra: 1342/1074,
  44518. bottom: 111/1453
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(8 + 2/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(4, "feet"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/kali/front.svg",
  44538. extra: 1921/1357,
  44539. bottom: 70/1991
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(4, "feet"),
  44547. default: true
  44548. },
  44549. {
  44550. name: "Macro",
  44551. height: math.unit(32, "meters")
  44552. },
  44553. {
  44554. name: "Macro+",
  44555. height: math.unit(150, "meters")
  44556. },
  44557. {
  44558. name: "Megamacro",
  44559. height: math.unit(7500, "meters")
  44560. },
  44561. {
  44562. name: "Megamacro+",
  44563. height: math.unit(80, "kilometers")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44569. {
  44570. side: {
  44571. height: math.unit(5 + 11/12, "feet"),
  44572. weight: math.unit(236, "lb"),
  44573. name: "Side",
  44574. image: {
  44575. source: "./media/characters/gapp/side.svg",
  44576. extra: 775/340,
  44577. bottom: 58/833
  44578. }
  44579. },
  44580. mouth: {
  44581. height: math.unit(2.98, "feet"),
  44582. name: "Mouth",
  44583. image: {
  44584. source: "./media/characters/gapp/mouth.svg"
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(5 + 1/12, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(6, "feet"),
  44601. name: "Front",
  44602. image: {
  44603. source: "./media/characters/persephone/front.svg",
  44604. extra: 1895/1717,
  44605. bottom: 96/1991
  44606. }
  44607. },
  44608. back: {
  44609. height: math.unit(6, "feet"),
  44610. name: "Back",
  44611. image: {
  44612. source: "./media/characters/persephone/back.svg",
  44613. extra: 1868/1679,
  44614. bottom: 26/1894
  44615. }
  44616. },
  44617. casual: {
  44618. height: math.unit(6, "feet"),
  44619. name: "Casual",
  44620. image: {
  44621. source: "./media/characters/persephone/casual.svg",
  44622. extra: 1713/1541,
  44623. bottom: 76/1789
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Human Size",
  44630. height: math.unit(6, "feet")
  44631. },
  44632. {
  44633. name: "Big Steppy",
  44634. height: math.unit(600, "meters"),
  44635. default: true
  44636. },
  44637. {
  44638. name: "Galaxy Brain",
  44639. height: math.unit(1, "zettameter")
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(1.85, "meters"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/riley-foxthing/front.svg",
  44651. extra: 1495/1354,
  44652. bottom: 122/1617
  44653. }
  44654. },
  44655. frontAlt: {
  44656. height: math.unit(1.85, "meters"),
  44657. name: "Front (Alt)",
  44658. image: {
  44659. source: "./media/characters/riley-foxthing/front-alt.svg",
  44660. extra: 1572/1389,
  44661. bottom: 116/1688
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Normal Sized",
  44668. height: math.unit(1.85, "meters"),
  44669. default: true
  44670. },
  44671. {
  44672. name: "Quite Sizable",
  44673. height: math.unit(5, "meters")
  44674. },
  44675. {
  44676. name: "Rather Large",
  44677. height: math.unit(20, "meters")
  44678. },
  44679. {
  44680. name: "Macro",
  44681. height: math.unit(450, "meters")
  44682. },
  44683. {
  44684. name: "Giga",
  44685. height: math.unit(5, "km")
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(6, "feet"),
  44694. weight: math.unit(200, "lb"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/blizzard/front.svg",
  44698. extra: 1136/990,
  44699. bottom: 136/1272
  44700. }
  44701. },
  44702. back: {
  44703. height: math.unit(6, "feet"),
  44704. weight: math.unit(200, "lb"),
  44705. name: "Back",
  44706. image: {
  44707. source: "./media/characters/blizzard/back.svg",
  44708. extra: 1175/1034,
  44709. bottom: 97/1272
  44710. }
  44711. },
  44712. sitting: {
  44713. height: math.unit(3.725, "feet"),
  44714. weight: math.unit(200, "lb"),
  44715. name: "Sitting",
  44716. image: {
  44717. source: "./media/characters/blizzard/sitting.svg",
  44718. extra: 581/485,
  44719. bottom: 90/671
  44720. }
  44721. },
  44722. frontWizard: {
  44723. height: math.unit(7.9, "feet"),
  44724. weight: math.unit(200, "lb"),
  44725. name: "Front (Wizard)",
  44726. image: {
  44727. source: "./media/characters/blizzard/front-wizard.svg"
  44728. }
  44729. },
  44730. backWizard: {
  44731. height: math.unit(7.9, "feet"),
  44732. weight: math.unit(200, "lb"),
  44733. name: "Back (Wizard)",
  44734. image: {
  44735. source: "./media/characters/blizzard/back-wizard.svg"
  44736. }
  44737. },
  44738. frontNsfw: {
  44739. height: math.unit(6, "feet"),
  44740. weight: math.unit(200, "lb"),
  44741. name: "Front (NSFW)",
  44742. image: {
  44743. source: "./media/characters/blizzard/front-nsfw.svg",
  44744. extra: 1136/990,
  44745. bottom: 136/1272
  44746. }
  44747. },
  44748. backNsfw: {
  44749. height: math.unit(6, "feet"),
  44750. weight: math.unit(200, "lb"),
  44751. name: "Back (NSFW)",
  44752. image: {
  44753. source: "./media/characters/blizzard/back-nsfw.svg",
  44754. extra: 1175/1034,
  44755. bottom: 97/1272
  44756. }
  44757. },
  44758. sittingNsfw: {
  44759. height: math.unit(3.725, "feet"),
  44760. weight: math.unit(200, "lb"),
  44761. name: "Sitting (NSFW)",
  44762. image: {
  44763. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44764. extra: 581/485,
  44765. bottom: 90/671
  44766. }
  44767. },
  44768. wizardFrontNsfw: {
  44769. height: math.unit(7.9, "feet"),
  44770. weight: math.unit(200, "lb"),
  44771. name: "Wizard (Front, NSFW)",
  44772. image: {
  44773. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(6, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(5 + 2/12, "feet"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/lumi/front.svg",
  44793. extra: 1328/1268,
  44794. bottom: 103/1431
  44795. }
  44796. },
  44797. back: {
  44798. height: math.unit(5 + 2/12, "feet"),
  44799. name: "Back",
  44800. image: {
  44801. source: "./media/characters/lumi/back.svg",
  44802. extra: 1381/1327,
  44803. bottom: 43/1424
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Normal",
  44810. height: math.unit(5 + 2/12, "feet"),
  44811. default: true
  44812. },
  44813. ]
  44814. ))
  44815. characterMakers.push(() => makeCharacter(
  44816. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44817. {
  44818. front: {
  44819. height: math.unit(5 + 9/12, "feet"),
  44820. name: "Front",
  44821. image: {
  44822. source: "./media/characters/aliya-cotton/front.svg",
  44823. extra: 577/564,
  44824. bottom: 29/606
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Normal",
  44831. height: math.unit(5 + 9/12, "feet"),
  44832. default: true
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44838. {
  44839. front: {
  44840. height: math.unit(2.7, "meters"),
  44841. weight: math.unit(25000, "lb"),
  44842. name: "Front",
  44843. image: {
  44844. source: "./media/characters/noah-luxray/front.svg",
  44845. extra: 1644/825,
  44846. bottom: 339/1983
  44847. }
  44848. },
  44849. side: {
  44850. height: math.unit(2.97, "meters"),
  44851. weight: math.unit(25000, "lb"),
  44852. name: "Side",
  44853. image: {
  44854. source: "./media/characters/noah-luxray/side.svg",
  44855. extra: 1319/650,
  44856. bottom: 163/1482
  44857. }
  44858. },
  44859. dick: {
  44860. height: math.unit(7.4, "feet"),
  44861. weight: math.unit(2500, "lb"),
  44862. name: "Dick",
  44863. image: {
  44864. source: "./media/characters/noah-luxray/dick.svg"
  44865. }
  44866. },
  44867. dickAlt: {
  44868. height: math.unit(10.83, "feet"),
  44869. weight: math.unit(2500, "lb"),
  44870. name: "Dick-alt",
  44871. image: {
  44872. source: "./media/characters/noah-luxray/dick-alt.svg"
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "BIG",
  44879. height: math.unit(2.7, "meters"),
  44880. default: true
  44881. },
  44882. ]
  44883. ))
  44884. characterMakers.push(() => makeCharacter(
  44885. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44886. {
  44887. standing: {
  44888. height: math.unit(183, "cm"),
  44889. weight: math.unit(68, "kg"),
  44890. name: "Standing",
  44891. image: {
  44892. source: "./media/characters/arion/standing.svg",
  44893. extra: 1869/1807,
  44894. bottom: 93/1962
  44895. }
  44896. },
  44897. reclining: {
  44898. height: math.unit(70.5, "cm"),
  44899. weight: math.unit(68, "lb"),
  44900. name: "Reclining",
  44901. image: {
  44902. source: "./media/characters/arion/reclining.svg",
  44903. extra: 937/870,
  44904. bottom: 63/1000
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Colossus Size, Low",
  44911. height: math.unit(33, "meters"),
  44912. default: true
  44913. },
  44914. {
  44915. name: "Colossus Size, Mid",
  44916. height: math.unit(52, "meters")
  44917. },
  44918. {
  44919. name: "Colossus Size, High",
  44920. height: math.unit(60, "meters")
  44921. },
  44922. {
  44923. name: "Titan Size, Low",
  44924. height: math.unit(91, "meters"),
  44925. },
  44926. {
  44927. name: "Titan Size, Mid",
  44928. height: math.unit(122, "meters")
  44929. },
  44930. {
  44931. name: "Titan Size, High",
  44932. height: math.unit(162, "meters")
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44938. {
  44939. front: {
  44940. height: math.unit(53, "meters"),
  44941. name: "Front",
  44942. image: {
  44943. source: "./media/characters/stellar-marbey/front.svg",
  44944. extra: 1913/1805,
  44945. bottom: 92/2005
  44946. }
  44947. },
  44948. back: {
  44949. height: math.unit(53, "meters"),
  44950. name: "Back",
  44951. image: {
  44952. source: "./media/characters/stellar-marbey/back.svg",
  44953. extra: 1960/1851,
  44954. bottom: 28/1988
  44955. }
  44956. },
  44957. mouth: {
  44958. height: math.unit(3.5, "meters"),
  44959. name: "Mouth",
  44960. image: {
  44961. source: "./media/characters/stellar-marbey/mouth.svg"
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Macro",
  44968. height: math.unit(53, "meters"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44975. {
  44976. front: {
  44977. height: math.unit(8 + 1/12, "feet"),
  44978. weight: math.unit(233, "lb"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/matsu/front.svg",
  44982. extra: 832/772,
  44983. bottom: 40/872
  44984. }
  44985. },
  44986. back: {
  44987. height: math.unit(8 + 1/12, "feet"),
  44988. weight: math.unit(233, "lb"),
  44989. name: "Back",
  44990. image: {
  44991. source: "./media/characters/matsu/back.svg",
  44992. extra: 839/780,
  44993. bottom: 47/886
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(8 + 1/12, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45007. {
  45008. front: {
  45009. height: math.unit(4, "feet"),
  45010. weight: math.unit(148, "lb"),
  45011. name: "Front",
  45012. image: {
  45013. source: "./media/characters/thiz/front.svg",
  45014. extra: 1913/1748,
  45015. bottom: 62/1975
  45016. }
  45017. },
  45018. },
  45019. [
  45020. {
  45021. name: "Normal",
  45022. height: math.unit(4, "feet"),
  45023. default: true
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45029. {
  45030. front: {
  45031. height: math.unit(7 + 6/12, "feet"),
  45032. weight: math.unit(267, "lb"),
  45033. name: "Front",
  45034. image: {
  45035. source: "./media/characters/marcel/front.svg",
  45036. extra: 1221/1096,
  45037. bottom: 76/1297
  45038. }
  45039. },
  45040. },
  45041. [
  45042. {
  45043. name: "Normal",
  45044. height: math.unit(7 + 6/12, "feet"),
  45045. default: true
  45046. },
  45047. ]
  45048. ))
  45049. characterMakers.push(() => makeCharacter(
  45050. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45051. {
  45052. side: {
  45053. height: math.unit(42, "meters"),
  45054. name: "Side",
  45055. image: {
  45056. source: "./media/characters/flake/side.svg",
  45057. extra: 1525/1306,
  45058. bottom: 209/1734
  45059. }
  45060. },
  45061. },
  45062. [
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(42, "meters"),
  45066. default: true
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45072. {
  45073. dressed: {
  45074. height: math.unit(6 + 4/12, "feet"),
  45075. weight: math.unit(520, "lb"),
  45076. name: "Dressed",
  45077. image: {
  45078. source: "./media/characters/someonne/dressed.svg",
  45079. extra: 1020/1010,
  45080. bottom: 178/1198
  45081. }
  45082. },
  45083. undressed: {
  45084. height: math.unit(6 + 4/12, "feet"),
  45085. weight: math.unit(520, "lb"),
  45086. name: "Undressed",
  45087. image: {
  45088. source: "./media/characters/someonne/undressed.svg",
  45089. extra: 1019/1014,
  45090. bottom: 169/1188
  45091. }
  45092. },
  45093. },
  45094. [
  45095. {
  45096. name: "Normal",
  45097. height: math.unit(6 + 4/12, "feet"),
  45098. default: true
  45099. },
  45100. ]
  45101. ))
  45102. characterMakers.push(() => makeCharacter(
  45103. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45104. {
  45105. front: {
  45106. height: math.unit(3, "feet"),
  45107. weight: math.unit(30, "lb"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/till/front.svg",
  45111. extra: 892/823,
  45112. bottom: 55/947
  45113. }
  45114. },
  45115. },
  45116. [
  45117. {
  45118. name: "Normal",
  45119. height: math.unit(3, "feet"),
  45120. default: true
  45121. },
  45122. ]
  45123. ))
  45124. characterMakers.push(() => makeCharacter(
  45125. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45126. {
  45127. front: {
  45128. height: math.unit(9 + 8/12, "feet"),
  45129. weight: math.unit(800, "lb"),
  45130. name: "Front",
  45131. image: {
  45132. source: "./media/characters/sydney-heki/front.svg",
  45133. extra: 1360/1300,
  45134. bottom: 22/1382
  45135. }
  45136. },
  45137. back: {
  45138. height: math.unit(9 + 8/12, "feet"),
  45139. weight: math.unit(800, "lb"),
  45140. name: "Back",
  45141. image: {
  45142. source: "./media/characters/sydney-heki/back.svg",
  45143. extra: 1356/1293,
  45144. bottom: 12/1368
  45145. }
  45146. },
  45147. frontDressed: {
  45148. height: math.unit(9 + 8/12, "feet"),
  45149. weight: math.unit(800, "lb"),
  45150. name: "Front-dressed",
  45151. image: {
  45152. source: "./media/characters/sydney-heki/front-dressed.svg",
  45153. extra: 1360/1300,
  45154. bottom: 22/1382
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Normal",
  45161. height: math.unit(9 + 8/12, "feet"),
  45162. default: true
  45163. },
  45164. {
  45165. name: "Macro",
  45166. height: math.unit(500, "feet")
  45167. },
  45168. {
  45169. name: "Megamacro",
  45170. height: math.unit(3.6, "miles")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45176. {
  45177. front: {
  45178. height: math.unit(200, "cm"),
  45179. weight: math.unit(250, "lb"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/fowler-karlsson/front.svg",
  45183. extra: 897/845,
  45184. bottom: 123/1020
  45185. }
  45186. },
  45187. back: {
  45188. height: math.unit(200, "cm"),
  45189. weight: math.unit(250, "lb"),
  45190. name: "Back",
  45191. image: {
  45192. source: "./media/characters/fowler-karlsson/back.svg",
  45193. extra: 999/944,
  45194. bottom: 26/1025
  45195. }
  45196. },
  45197. dick: {
  45198. height: math.unit(1.92, "feet"),
  45199. weight: math.unit(150, "lb"),
  45200. name: "Dick",
  45201. image: {
  45202. source: "./media/characters/fowler-karlsson/dick.svg"
  45203. }
  45204. },
  45205. },
  45206. [
  45207. {
  45208. name: "Normal",
  45209. height: math.unit(200, "cm"),
  45210. default: true
  45211. },
  45212. {
  45213. name: "Smaller Macro",
  45214. height: math.unit(90, "m")
  45215. },
  45216. {
  45217. name: "Macro",
  45218. height: math.unit(150, "m")
  45219. },
  45220. {
  45221. name: "Bigger Macro",
  45222. height: math.unit(300, "m")
  45223. },
  45224. ]
  45225. ))
  45226. characterMakers.push(() => makeCharacter(
  45227. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45228. {
  45229. side: {
  45230. height: math.unit(8 + 2/12, "feet"),
  45231. weight: math.unit(1, "tonne"),
  45232. name: "Side",
  45233. image: {
  45234. source: "./media/characters/rylide/side.svg",
  45235. extra: 1318/1034,
  45236. bottom: 106/1424
  45237. }
  45238. },
  45239. sitting: {
  45240. height: math.unit(303, "cm"),
  45241. weight: math.unit(1, "tonne"),
  45242. name: "Sitting",
  45243. image: {
  45244. source: "./media/characters/rylide/sitting.svg",
  45245. extra: 1303/1103,
  45246. bottom: 36/1339
  45247. }
  45248. },
  45249. },
  45250. [
  45251. {
  45252. name: "Normal",
  45253. height: math.unit(8 + 2/12, "feet"),
  45254. default: true
  45255. },
  45256. ]
  45257. ))
  45258. characterMakers.push(() => makeCharacter(
  45259. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45260. {
  45261. front: {
  45262. height: math.unit(5 + 10/12, "feet"),
  45263. weight: math.unit(160, "lb"),
  45264. name: "Front",
  45265. image: {
  45266. source: "./media/characters/pudask/front.svg",
  45267. extra: 1616/1590,
  45268. bottom: 161/1777
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Ferret Height",
  45275. height: math.unit(2 + 5/12, "feet")
  45276. },
  45277. {
  45278. name: "Canon Height",
  45279. height: math.unit(5 + 10/12, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(3 + 6/12, "feet"),
  45289. weight: math.unit(60, "lb"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/ramita/front.svg",
  45293. extra: 1402/1232,
  45294. bottom: 62/1464
  45295. }
  45296. },
  45297. dressed: {
  45298. height: math.unit(3 + 6/12, "feet"),
  45299. weight: math.unit(60, "lb"),
  45300. name: "Dressed",
  45301. image: {
  45302. source: "./media/characters/ramita/dressed.svg",
  45303. extra: 1534/1249,
  45304. bottom: 50/1584
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(3 + 6/12, "feet"),
  45312. default: true
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45318. {
  45319. front: {
  45320. height: math.unit(8, "feet"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/ark/front.svg",
  45324. extra: 772/693,
  45325. bottom: 45/817
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Normal",
  45332. height: math.unit(8, "feet"),
  45333. default: true
  45334. },
  45335. ]
  45336. ))
  45337. characterMakers.push(() => makeCharacter(
  45338. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45339. {
  45340. front: {
  45341. height: math.unit(6, "feet"),
  45342. weight: math.unit(250, "lb"),
  45343. volume: math.unit(5/8, "gallons"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/ludwig-horn/front.svg",
  45347. extra: 1782/1635,
  45348. bottom: 96/1878
  45349. }
  45350. },
  45351. back: {
  45352. height: math.unit(6, "feet"),
  45353. weight: math.unit(250, "lb"),
  45354. volume: math.unit(5/8, "gallons"),
  45355. name: "Back",
  45356. image: {
  45357. source: "./media/characters/ludwig-horn/back.svg",
  45358. extra: 1874/1729,
  45359. bottom: 27/1901
  45360. }
  45361. },
  45362. dick: {
  45363. height: math.unit(1.05, "feet"),
  45364. weight: math.unit(15, "lb"),
  45365. volume: math.unit(5/8, "gallons"),
  45366. name: "Dick",
  45367. image: {
  45368. source: "./media/characters/ludwig-horn/dick.svg"
  45369. }
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "Small",
  45375. height: math.unit(6, "feet")
  45376. },
  45377. {
  45378. name: "Typical",
  45379. height: math.unit(12, "feet"),
  45380. default: true
  45381. },
  45382. {
  45383. name: "Building",
  45384. height: math.unit(80, "feet")
  45385. },
  45386. {
  45387. name: "Town",
  45388. height: math.unit(800, "feet")
  45389. },
  45390. {
  45391. name: "Kingdom",
  45392. height: math.unit(80000, "feet")
  45393. },
  45394. {
  45395. name: "Planet",
  45396. height: math.unit(8000000, "feet")
  45397. },
  45398. {
  45399. name: "Universe",
  45400. height: math.unit(8000000000, "feet")
  45401. },
  45402. {
  45403. name: "Transcended",
  45404. height: math.unit(8e27, "feet")
  45405. },
  45406. ]
  45407. ))
  45408. characterMakers.push(() => makeCharacter(
  45409. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45410. {
  45411. front: {
  45412. height: math.unit(5, "feet"),
  45413. weight: math.unit(50, "kg"),
  45414. name: "Front",
  45415. image: {
  45416. source: "./media/characters/biot-avery/front.svg",
  45417. extra: 1295/1232,
  45418. bottom: 86/1381
  45419. }
  45420. },
  45421. },
  45422. [
  45423. {
  45424. name: "Normal",
  45425. height: math.unit(5, "feet"),
  45426. default: true
  45427. },
  45428. ]
  45429. ))
  45430. characterMakers.push(() => makeCharacter(
  45431. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45432. {
  45433. front: {
  45434. height: math.unit(6, "feet"),
  45435. name: "Front",
  45436. image: {
  45437. source: "./media/characters/kitsune-kiro/front.svg",
  45438. extra: 1270/1158,
  45439. bottom: 42/1312
  45440. }
  45441. },
  45442. frontAlt: {
  45443. height: math.unit(6, "feet"),
  45444. name: "Front-alt",
  45445. image: {
  45446. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45447. extra: 1130/1081,
  45448. bottom: 36/1166
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Smol",
  45455. height: math.unit(3, "feet")
  45456. },
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(6, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45466. {
  45467. front: {
  45468. height: math.unit(6, "feet"),
  45469. weight: math.unit(125, "lb"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/jack-thatcher/front.svg",
  45473. extra: 1474/1370,
  45474. bottom: 26/1500
  45475. }
  45476. },
  45477. back: {
  45478. height: math.unit(6, "feet"),
  45479. weight: math.unit(125, "lb"),
  45480. name: "Back",
  45481. image: {
  45482. source: "./media/characters/jack-thatcher/back.svg",
  45483. extra: 1489/1384,
  45484. bottom: 18/1507
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Normal",
  45491. height: math.unit(6, "feet"),
  45492. default: true
  45493. },
  45494. {
  45495. name: "Macro",
  45496. height: math.unit(75, "feet")
  45497. },
  45498. {
  45499. name: "Macro-er",
  45500. height: math.unit(250, "feet")
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(7, "feet"),
  45509. weight: math.unit(110, "kg"),
  45510. name: "Front",
  45511. image: {
  45512. source: "./media/characters/max-hyper/front.svg",
  45513. extra: 1969/1881,
  45514. bottom: 49/2018
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(7, "feet"),
  45522. default: true
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5 + 5/12, "feet"),
  45531. weight: math.unit(160, "lb"),
  45532. name: "Front",
  45533. image: {
  45534. source: "./media/characters/spook/front.svg",
  45535. extra: 794/791,
  45536. bottom: 54/848
  45537. }
  45538. },
  45539. back: {
  45540. height: math.unit(5 + 5/12, "feet"),
  45541. weight: math.unit(160, "lb"),
  45542. name: "Back",
  45543. image: {
  45544. source: "./media/characters/spook/back.svg",
  45545. extra: 812/798,
  45546. bottom: 32/844
  45547. }
  45548. },
  45549. },
  45550. [
  45551. {
  45552. name: "Normal",
  45553. height: math.unit(5 + 5/12, "feet"),
  45554. default: true
  45555. },
  45556. ]
  45557. ))
  45558. characterMakers.push(() => makeCharacter(
  45559. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45560. {
  45561. front: {
  45562. height: math.unit(18, "feet"),
  45563. name: "Front",
  45564. image: {
  45565. source: "./media/characters/xeaduulix/front.svg",
  45566. extra: 1380/1166,
  45567. bottom: 110/1490
  45568. }
  45569. },
  45570. back: {
  45571. height: math.unit(18, "feet"),
  45572. name: "Back",
  45573. image: {
  45574. source: "./media/characters/xeaduulix/back.svg",
  45575. extra: 1592/1170,
  45576. bottom: 128/1720
  45577. }
  45578. },
  45579. frontNsfw: {
  45580. height: math.unit(18, "feet"),
  45581. name: "Front (NSFW)",
  45582. image: {
  45583. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45584. extra: 1380/1166,
  45585. bottom: 110/1490
  45586. }
  45587. },
  45588. backNsfw: {
  45589. height: math.unit(18, "feet"),
  45590. name: "Back (NSFW)",
  45591. image: {
  45592. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45593. extra: 1592/1170,
  45594. bottom: 128/1720
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(18, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45608. {
  45609. spreadWings: {
  45610. height: math.unit(20, "feet"),
  45611. name: "Spread Wings",
  45612. image: {
  45613. source: "./media/characters/fledge/spread-wings.svg",
  45614. extra: 693/635,
  45615. bottom: 26/719
  45616. }
  45617. },
  45618. front: {
  45619. height: math.unit(20, "feet"),
  45620. name: "Front",
  45621. image: {
  45622. source: "./media/characters/fledge/front.svg",
  45623. extra: 684/637,
  45624. bottom: 18/702
  45625. }
  45626. },
  45627. frontAlt: {
  45628. height: math.unit(20, "feet"),
  45629. name: "Front (Alt)",
  45630. image: {
  45631. source: "./media/characters/fledge/front-alt.svg",
  45632. extra: 708/664,
  45633. bottom: 13/721
  45634. }
  45635. },
  45636. back: {
  45637. height: math.unit(20, "feet"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/fledge/back.svg",
  45641. extra: 718/634,
  45642. bottom: 22/740
  45643. }
  45644. },
  45645. head: {
  45646. height: math.unit(5.55, "feet"),
  45647. name: "Head",
  45648. image: {
  45649. source: "./media/characters/fledge/head.svg"
  45650. }
  45651. },
  45652. headAlt: {
  45653. height: math.unit(5.1, "feet"),
  45654. name: "Head (Alt)",
  45655. image: {
  45656. source: "./media/characters/fledge/head-alt.svg"
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Small",
  45663. height: math.unit(6 + 2/12, "feet")
  45664. },
  45665. {
  45666. name: "Big",
  45667. height: math.unit(20, "feet"),
  45668. default: true
  45669. },
  45670. {
  45671. name: "Giant",
  45672. height: math.unit(100, "feet")
  45673. },
  45674. {
  45675. name: "Macro",
  45676. height: math.unit(200, "feet")
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(1, "meter"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/atlas-morenai/front.svg",
  45688. extra: 1275/1043,
  45689. bottom: 19/1294
  45690. }
  45691. },
  45692. back: {
  45693. height: math.unit(1, "meter"),
  45694. name: "Back",
  45695. image: {
  45696. source: "./media/characters/atlas-morenai/back.svg",
  45697. extra: 1141/1001,
  45698. bottom: 25/1166
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(1, "meter"),
  45706. default: true
  45707. },
  45708. {
  45709. name: "Magic-Infused",
  45710. height: math.unit(5, "meters")
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45716. {
  45717. front: {
  45718. height: math.unit(5, "meters"),
  45719. name: "Front",
  45720. image: {
  45721. source: "./media/characters/cintia/front.svg",
  45722. extra: 1312/1228,
  45723. bottom: 38/1350
  45724. }
  45725. },
  45726. back: {
  45727. height: math.unit(5, "meters"),
  45728. name: "Back",
  45729. image: {
  45730. source: "./media/characters/cintia/back.svg",
  45731. extra: 1260/1166,
  45732. bottom: 98/1358
  45733. }
  45734. },
  45735. frontDick: {
  45736. height: math.unit(5, "meters"),
  45737. name: "Front (Dick)",
  45738. image: {
  45739. source: "./media/characters/cintia/front-dick.svg",
  45740. extra: 1312/1228,
  45741. bottom: 38/1350
  45742. }
  45743. },
  45744. backDick: {
  45745. height: math.unit(5, "meters"),
  45746. name: "Back (Dick)",
  45747. image: {
  45748. source: "./media/characters/cintia/back-dick.svg",
  45749. extra: 1260/1166,
  45750. bottom: 98/1358
  45751. }
  45752. },
  45753. bust: {
  45754. height: math.unit(1.97, "meters"),
  45755. name: "Bust",
  45756. image: {
  45757. source: "./media/characters/cintia/bust.svg",
  45758. extra: 617/565,
  45759. bottom: 0/617
  45760. }
  45761. },
  45762. },
  45763. [
  45764. {
  45765. name: "Normal",
  45766. height: math.unit(5, "meters"),
  45767. default: true
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45773. {
  45774. side: {
  45775. height: math.unit(100, "feet"),
  45776. name: "Side",
  45777. image: {
  45778. source: "./media/characters/denora/side.svg",
  45779. extra: 875/803,
  45780. bottom: 9/884
  45781. }
  45782. },
  45783. },
  45784. [
  45785. {
  45786. name: "Standard",
  45787. height: math.unit(100, "feet"),
  45788. default: true
  45789. },
  45790. {
  45791. name: "Grand",
  45792. height: math.unit(1000, "feet")
  45793. },
  45794. {
  45795. name: "Conquering",
  45796. height: math.unit(10000, "feet")
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45802. {
  45803. dressed: {
  45804. height: math.unit(8 + 5/12, "feet"),
  45805. weight: math.unit(700, "lb"),
  45806. name: "Dressed",
  45807. image: {
  45808. source: "./media/characters/kiva/dressed.svg",
  45809. extra: 1102/1055,
  45810. bottom: 60/1162
  45811. }
  45812. },
  45813. nude: {
  45814. height: math.unit(8 + 5/12, "feet"),
  45815. weight: math.unit(700, "lb"),
  45816. name: "Nude",
  45817. image: {
  45818. source: "./media/characters/kiva/nude.svg",
  45819. extra: 1102/1055,
  45820. bottom: 60/1162
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Base Height",
  45827. height: math.unit(8 + 5/12, "feet"),
  45828. default: true
  45829. },
  45830. {
  45831. name: "Macro",
  45832. height: math.unit(100, "feet")
  45833. },
  45834. {
  45835. name: "Max",
  45836. height: math.unit(3280, "feet")
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(6 + 8/12, "feet"),
  45845. weight: math.unit(250, "lb"),
  45846. name: "Front",
  45847. image: {
  45848. source: "./media/characters/ztragon/front.svg",
  45849. extra: 1825/1684,
  45850. bottom: 98/1923
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(6 + 8/12, "feet"),
  45858. default: true
  45859. },
  45860. {
  45861. name: "Macro",
  45862. height: math.unit(80, "feet")
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45868. {
  45869. front: {
  45870. height: math.unit(10.4, "feet"),
  45871. weight: math.unit(2, "tons"),
  45872. name: "Front",
  45873. image: {
  45874. source: "./media/characters/yesenia/front.svg",
  45875. extra: 1479/1474,
  45876. bottom: 233/1712
  45877. }
  45878. },
  45879. },
  45880. [
  45881. {
  45882. name: "Normal",
  45883. height: math.unit(10.4, "feet"),
  45884. default: true
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45890. {
  45891. normal: {
  45892. height: math.unit(6 + 1/12, "feet"),
  45893. weight: math.unit(180, "lb"),
  45894. name: "Normal",
  45895. image: {
  45896. source: "./media/characters/leanne-lycheborne/normal.svg",
  45897. extra: 1748/1660,
  45898. bottom: 98/1846
  45899. }
  45900. },
  45901. were: {
  45902. height: math.unit(12, "feet"),
  45903. weight: math.unit(1600, "lb"),
  45904. name: "Were",
  45905. image: {
  45906. source: "./media/characters/leanne-lycheborne/were.svg",
  45907. extra: 1485/1432,
  45908. bottom: 66/1551
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(6 + 1/12, "feet"),
  45916. default: true
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45922. {
  45923. side: {
  45924. height: math.unit(13, "feet"),
  45925. name: "Side",
  45926. image: {
  45927. source: "./media/characters/kira-tyler/side.svg",
  45928. extra: 693/393,
  45929. bottom: 58/751
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(13, "feet"),
  45937. default: true
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(10.3, "feet"),
  45946. weight: math.unit(150, "lb"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/blaze/front.svg",
  45950. extra: 1378/1286,
  45951. bottom: 172/1550
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(10.3, "feet"),
  45959. default: true
  45960. },
  45961. ]
  45962. ))
  45963. characterMakers.push(() => makeCharacter(
  45964. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45965. {
  45966. side: {
  45967. height: math.unit(2, "meters"),
  45968. weight: math.unit(400, "kg"),
  45969. name: "Side",
  45970. image: {
  45971. source: "./media/characters/anu/side.svg",
  45972. extra: 506/394,
  45973. bottom: 18/524
  45974. }
  45975. },
  45976. },
  45977. [
  45978. {
  45979. name: "Humanoid",
  45980. height: math.unit(2, "meters")
  45981. },
  45982. {
  45983. name: "Normal",
  45984. height: math.unit(5, "meters"),
  45985. default: true
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45991. {
  45992. front: {
  45993. height: math.unit(5 + 5/12, "feet"),
  45994. weight: math.unit(170, "lb"),
  45995. name: "Front",
  45996. image: {
  45997. source: "./media/characters/synx-the-lynx/front.svg",
  45998. extra: 1893/1745,
  45999. bottom: 17/1910
  46000. }
  46001. },
  46002. side: {
  46003. height: math.unit(5 + 5/12, "feet"),
  46004. weight: math.unit(170, "lb"),
  46005. name: "Side",
  46006. image: {
  46007. source: "./media/characters/synx-the-lynx/side.svg",
  46008. extra: 1884/1740,
  46009. bottom: 39/1923
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(5 + 5/12, "feet"),
  46014. weight: math.unit(170, "lb"),
  46015. name: "Back",
  46016. image: {
  46017. source: "./media/characters/synx-the-lynx/back.svg",
  46018. extra: 1903/1755,
  46019. bottom: 14/1917
  46020. }
  46021. },
  46022. },
  46023. [
  46024. {
  46025. name: "Normal",
  46026. height: math.unit(5 + 5/12, "feet"),
  46027. default: true
  46028. },
  46029. ]
  46030. ))
  46031. characterMakers.push(() => makeCharacter(
  46032. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46033. {
  46034. back: {
  46035. height: math.unit(15, "feet"),
  46036. name: "Back",
  46037. image: {
  46038. source: "./media/characters/nadezda-fex/back.svg",
  46039. extra: 1695/1481,
  46040. bottom: 25/1720
  46041. }
  46042. },
  46043. },
  46044. [
  46045. {
  46046. name: "Normal",
  46047. height: math.unit(15, "feet"),
  46048. default: true
  46049. },
  46050. {
  46051. name: "Macro",
  46052. height: math.unit(2.5, "miles")
  46053. },
  46054. {
  46055. name: "Goddess",
  46056. height: math.unit(2, "multiverses")
  46057. },
  46058. ]
  46059. ))
  46060. characterMakers.push(() => makeCharacter(
  46061. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46062. {
  46063. front: {
  46064. height: math.unit(216, "cm"),
  46065. name: "Front",
  46066. image: {
  46067. source: "./media/characters/lev/front.svg",
  46068. extra: 1728/1670,
  46069. bottom: 82/1810
  46070. }
  46071. },
  46072. back: {
  46073. height: math.unit(216, "cm"),
  46074. name: "Back",
  46075. image: {
  46076. source: "./media/characters/lev/back.svg",
  46077. extra: 1738/1675,
  46078. bottom: 24/1762
  46079. }
  46080. },
  46081. dressed: {
  46082. height: math.unit(216, "cm"),
  46083. name: "Dressed",
  46084. image: {
  46085. source: "./media/characters/lev/dressed.svg",
  46086. extra: 1397/1351,
  46087. bottom: 73/1470
  46088. }
  46089. },
  46090. head: {
  46091. height: math.unit(0.51, "meter"),
  46092. name: "Head",
  46093. image: {
  46094. source: "./media/characters/lev/head.svg"
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(216, "cm"),
  46102. default: true
  46103. },
  46104. {
  46105. name: "Relatively Macro",
  46106. height: math.unit(80, "meters")
  46107. },
  46108. {
  46109. name: "Megamacro",
  46110. height: math.unit(21600, "meters")
  46111. },
  46112. {
  46113. name: "Megamacro+",
  46114. height: math.unit(64800, "meters")
  46115. },
  46116. ]
  46117. ))
  46118. characterMakers.push(() => makeCharacter(
  46119. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46120. {
  46121. front: {
  46122. height: math.unit(2, "meters"),
  46123. weight: math.unit(80, "kg"),
  46124. name: "Front",
  46125. image: {
  46126. source: "./media/characters/moka/front.svg",
  46127. extra: 1337/1255,
  46128. bottom: 58/1395
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Micro",
  46135. height: math.unit(15, "cm")
  46136. },
  46137. {
  46138. name: "Normal",
  46139. height: math.unit(2, "meters"),
  46140. default: true
  46141. },
  46142. {
  46143. name: "Macro",
  46144. height: math.unit(20, "meters"),
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(9, "feet"),
  46153. weight: math.unit(240, "lb"),
  46154. name: "Front",
  46155. image: {
  46156. source: "./media/characters/kuzco/front.svg",
  46157. extra: 1593/1487,
  46158. bottom: 32/1625
  46159. }
  46160. },
  46161. side: {
  46162. height: math.unit(9, "feet"),
  46163. weight: math.unit(240, "lb"),
  46164. name: "Side",
  46165. image: {
  46166. source: "./media/characters/kuzco/side.svg",
  46167. extra: 1575/1485,
  46168. bottom: 30/1605
  46169. }
  46170. },
  46171. back: {
  46172. height: math.unit(9, "feet"),
  46173. weight: math.unit(240, "lb"),
  46174. name: "Back",
  46175. image: {
  46176. source: "./media/characters/kuzco/back.svg",
  46177. extra: 1603/1514,
  46178. bottom: 14/1617
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(9, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46192. {
  46193. side: {
  46194. height: math.unit(2, "meters"),
  46195. weight: math.unit(300, "kg"),
  46196. name: "Side",
  46197. image: {
  46198. source: "./media/characters/ceruleus/side.svg",
  46199. extra: 1068/974,
  46200. bottom: 126/1194
  46201. }
  46202. },
  46203. },
  46204. [
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(16, "meters"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46214. {
  46215. front: {
  46216. height: math.unit(9, "feet"),
  46217. weight: math.unit(500, "kg"),
  46218. name: "Front",
  46219. image: {
  46220. source: "./media/characters/acouya/front.svg",
  46221. extra: 1660/1473,
  46222. bottom: 28/1688
  46223. }
  46224. },
  46225. },
  46226. [
  46227. {
  46228. name: "Normal",
  46229. height: math.unit(9, "feet"),
  46230. default: true
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46236. {
  46237. front: {
  46238. height: math.unit(5 + 6/12, "feet"),
  46239. weight: math.unit(195, "lb"),
  46240. name: "Front",
  46241. image: {
  46242. source: "./media/characters/vant/front.svg",
  46243. extra: 1396/1320,
  46244. bottom: 20/1416
  46245. }
  46246. },
  46247. back: {
  46248. height: math.unit(5 + 6/12, "feet"),
  46249. weight: math.unit(195, "lb"),
  46250. name: "Back",
  46251. image: {
  46252. source: "./media/characters/vant/back.svg",
  46253. extra: 1396/1320,
  46254. bottom: 20/1416
  46255. }
  46256. },
  46257. maw: {
  46258. height: math.unit(0.75, "feet"),
  46259. name: "Maw",
  46260. image: {
  46261. source: "./media/characters/vant/maw.svg"
  46262. }
  46263. },
  46264. paw: {
  46265. height: math.unit(1.07, "feet"),
  46266. name: "Paw",
  46267. image: {
  46268. source: "./media/characters/vant/paw.svg"
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Micro",
  46275. height: math.unit(0.25, "inches")
  46276. },
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(5 + 6/12, "feet"),
  46280. default: true
  46281. },
  46282. {
  46283. name: "Macro",
  46284. height: math.unit(75, "feet")
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(30, "meters"),
  46293. weight: math.unit(363, "tons"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/ahra/front.svg",
  46297. extra: 1914/1814,
  46298. bottom: 46/1960
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(30, "meters"),
  46306. default: true
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46312. {
  46313. undressed: {
  46314. height: math.unit(2, "m"),
  46315. weight: math.unit(250, "kg"),
  46316. name: "Undressed",
  46317. image: {
  46318. source: "./media/characters/coriander/undressed.svg",
  46319. extra: 1757/1606,
  46320. bottom: 107/1864
  46321. }
  46322. },
  46323. dressed: {
  46324. height: math.unit(2, "m"),
  46325. weight: math.unit(250, "kg"),
  46326. name: "Dressed",
  46327. image: {
  46328. source: "./media/characters/coriander/dressed.svg",
  46329. extra: 1757/1606,
  46330. bottom: 107/1864
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(4, "meters"),
  46338. default: true
  46339. },
  46340. {
  46341. name: "XL",
  46342. height: math.unit(6, "meters")
  46343. },
  46344. {
  46345. name: "XXL",
  46346. height: math.unit(8, "meters")
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(6, "feet"),
  46355. name: "Front",
  46356. image: {
  46357. source: "./media/characters/syrinx/front.svg",
  46358. extra: 1557/1259,
  46359. bottom: 171/1728
  46360. }
  46361. },
  46362. },
  46363. [
  46364. {
  46365. name: "Normal",
  46366. height: math.unit(6 + 3/12, "feet"),
  46367. default: true
  46368. },
  46369. ]
  46370. ))
  46371. characterMakers.push(() => makeCharacter(
  46372. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46373. {
  46374. front: {
  46375. height: math.unit(11 + 6/12, "feet"),
  46376. weight: math.unit(1.5, "tons"),
  46377. name: "Front",
  46378. image: {
  46379. source: "./media/characters/bor/front.svg",
  46380. extra: 1189/1109,
  46381. bottom: 170/1359
  46382. }
  46383. },
  46384. },
  46385. [
  46386. {
  46387. name: "Normal",
  46388. height: math.unit(11 + 6/12, "feet"),
  46389. default: true
  46390. },
  46391. {
  46392. name: "Macro",
  46393. height: math.unit(32 + 9/12, "feet")
  46394. },
  46395. ]
  46396. ))
  46397. characterMakers.push(() => makeCharacter(
  46398. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46399. {
  46400. anthro: {
  46401. height: math.unit(9, "feet"),
  46402. weight: math.unit(2076, "lb"),
  46403. name: "Anthro",
  46404. image: {
  46405. source: "./media/characters/abacus/anthro.svg",
  46406. extra: 1540/1494,
  46407. bottom: 233/1773
  46408. }
  46409. },
  46410. pigeon: {
  46411. height: math.unit(1, "feet"),
  46412. name: "Pigeon",
  46413. image: {
  46414. source: "./media/characters/abacus/pigeon.svg",
  46415. extra: 528/525,
  46416. bottom: 46/574
  46417. }
  46418. },
  46419. },
  46420. [
  46421. {
  46422. name: "Normal",
  46423. height: math.unit(9, "feet"),
  46424. default: true
  46425. },
  46426. ]
  46427. ))
  46428. characterMakers.push(() => makeCharacter(
  46429. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46430. {
  46431. side: {
  46432. height: math.unit(6, "feet"),
  46433. name: "Side",
  46434. image: {
  46435. source: "./media/characters/delkhan/side.svg",
  46436. extra: 1884/1786,
  46437. bottom: 308/2192
  46438. }
  46439. },
  46440. head: {
  46441. height: math.unit(3.38, "feet"),
  46442. name: "Head",
  46443. image: {
  46444. source: "./media/characters/delkhan/head.svg"
  46445. }
  46446. },
  46447. },
  46448. [
  46449. {
  46450. name: "Normal",
  46451. height: math.unit(72, "feet"),
  46452. default: true
  46453. },
  46454. {
  46455. name: "Giant",
  46456. height: math.unit(172, "feet")
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46462. {
  46463. standing: {
  46464. height: math.unit(6, "feet"),
  46465. name: "Standing",
  46466. image: {
  46467. source: "./media/characters/euchidat/standing.svg",
  46468. extra: 1612/1553,
  46469. bottom: 116/1728
  46470. }
  46471. },
  46472. leaning: {
  46473. height: math.unit(6, "feet"),
  46474. name: "Leaning",
  46475. image: {
  46476. source: "./media/characters/euchidat/leaning.svg",
  46477. extra: 1719/1674,
  46478. bottom: 27/1746
  46479. }
  46480. },
  46481. },
  46482. [
  46483. {
  46484. name: "Normal",
  46485. height: math.unit(175, "feet"),
  46486. default: true
  46487. },
  46488. {
  46489. name: "Megamacro",
  46490. height: math.unit(190, "miles")
  46491. },
  46492. {
  46493. name: "Gigamacro",
  46494. height: math.unit(190000, "miles")
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46500. {
  46501. front: {
  46502. height: math.unit(6, "feet"),
  46503. weight: math.unit(150, "lb"),
  46504. name: "Front",
  46505. image: {
  46506. source: "./media/characters/rebecca-stack/front.svg",
  46507. extra: 1256/1201,
  46508. bottom: 18/1274
  46509. }
  46510. },
  46511. },
  46512. [
  46513. {
  46514. name: "Normal",
  46515. height: math.unit(5 + 8/12, "feet"),
  46516. default: true
  46517. },
  46518. {
  46519. name: "Demolitionist",
  46520. height: math.unit(200, "feet")
  46521. },
  46522. {
  46523. name: "Out of Control",
  46524. height: math.unit(2, "miles")
  46525. },
  46526. {
  46527. name: "Giga",
  46528. height: math.unit(7200, "miles")
  46529. },
  46530. ]
  46531. ))
  46532. characterMakers.push(() => makeCharacter(
  46533. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46534. {
  46535. front: {
  46536. height: math.unit(6, "feet"),
  46537. weight: math.unit(150, "lb"),
  46538. name: "Front",
  46539. image: {
  46540. source: "./media/characters/jenny-cartwright/front.svg",
  46541. extra: 1384/1376,
  46542. bottom: 58/1442
  46543. }
  46544. },
  46545. },
  46546. [
  46547. {
  46548. name: "Normal",
  46549. height: math.unit(6 + 7/12, "feet"),
  46550. default: true
  46551. },
  46552. {
  46553. name: "Librarian",
  46554. height: math.unit(55, "feet")
  46555. },
  46556. {
  46557. name: "Sightseer",
  46558. height: math.unit(50, "miles")
  46559. },
  46560. {
  46561. name: "Giga",
  46562. height: math.unit(30000, "miles")
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46568. {
  46569. nude: {
  46570. height: math.unit(8, "feet"),
  46571. weight: math.unit(225, "lb"),
  46572. name: "Nude",
  46573. image: {
  46574. source: "./media/characters/marvy/nude.svg",
  46575. extra: 1900/1683,
  46576. bottom: 89/1989
  46577. }
  46578. },
  46579. dressed: {
  46580. height: math.unit(8, "feet"),
  46581. weight: math.unit(225, "lb"),
  46582. name: "Dressed",
  46583. image: {
  46584. source: "./media/characters/marvy/dressed.svg",
  46585. extra: 1900/1683,
  46586. bottom: 89/1989
  46587. }
  46588. },
  46589. head: {
  46590. height: math.unit(2.85, "feet"),
  46591. name: "Head",
  46592. image: {
  46593. source: "./media/characters/marvy/head.svg"
  46594. }
  46595. },
  46596. },
  46597. [
  46598. {
  46599. name: "Normal",
  46600. height: math.unit(8, "feet"),
  46601. default: true
  46602. },
  46603. ]
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46607. {
  46608. front: {
  46609. height: math.unit(8, "feet"),
  46610. weight: math.unit(250, "lb"),
  46611. name: "Front",
  46612. image: {
  46613. source: "./media/characters/leah/front.svg",
  46614. extra: 1257/1149,
  46615. bottom: 109/1366
  46616. }
  46617. },
  46618. },
  46619. [
  46620. {
  46621. name: "Normal",
  46622. height: math.unit(8, "feet"),
  46623. default: true
  46624. },
  46625. {
  46626. name: "Minimacro",
  46627. height: math.unit(40, "feet")
  46628. },
  46629. {
  46630. name: "Macro",
  46631. height: math.unit(124, "feet")
  46632. },
  46633. {
  46634. name: "Megamacro",
  46635. height: math.unit(850, "feet")
  46636. },
  46637. ]
  46638. ))
  46639. characterMakers.push(() => makeCharacter(
  46640. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46641. {
  46642. side: {
  46643. height: math.unit(13 + 6/12, "feet"),
  46644. weight: math.unit(3200, "lb"),
  46645. name: "Side",
  46646. image: {
  46647. source: "./media/characters/alvir/side.svg",
  46648. extra: 896/589,
  46649. bottom: 26/922
  46650. }
  46651. },
  46652. },
  46653. [
  46654. {
  46655. name: "Normal",
  46656. height: math.unit(13 + 6/12, "feet"),
  46657. default: true
  46658. },
  46659. ]
  46660. ))
  46661. characterMakers.push(() => makeCharacter(
  46662. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46663. {
  46664. front: {
  46665. height: math.unit(5 + 4/12, "feet"),
  46666. weight: math.unit(236, "lb"),
  46667. name: "Front",
  46668. image: {
  46669. source: "./media/characters/zaina-khalil/front.svg",
  46670. extra: 1533/1485,
  46671. bottom: 94/1627
  46672. }
  46673. },
  46674. side: {
  46675. height: math.unit(5 + 4/12, "feet"),
  46676. weight: math.unit(236, "lb"),
  46677. name: "Side",
  46678. image: {
  46679. source: "./media/characters/zaina-khalil/side.svg",
  46680. extra: 1537/1498,
  46681. bottom: 66/1603
  46682. }
  46683. },
  46684. back: {
  46685. height: math.unit(5 + 4/12, "feet"),
  46686. weight: math.unit(236, "lb"),
  46687. name: "Back",
  46688. image: {
  46689. source: "./media/characters/zaina-khalil/back.svg",
  46690. extra: 1546/1494,
  46691. bottom: 89/1635
  46692. }
  46693. },
  46694. },
  46695. [
  46696. {
  46697. name: "Normal",
  46698. height: math.unit(5 + 4/12, "feet"),
  46699. default: true
  46700. },
  46701. ]
  46702. ))
  46703. characterMakers.push(() => makeCharacter(
  46704. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46705. {
  46706. side: {
  46707. height: math.unit(12, "feet"),
  46708. weight: math.unit(4000, "lb"),
  46709. name: "Side",
  46710. image: {
  46711. source: "./media/characters/terry/side.svg",
  46712. extra: 1518/1439,
  46713. bottom: 149/1667
  46714. }
  46715. },
  46716. },
  46717. [
  46718. {
  46719. name: "Normal",
  46720. height: math.unit(12, "feet"),
  46721. default: true
  46722. },
  46723. ]
  46724. ))
  46725. characterMakers.push(() => makeCharacter(
  46726. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46727. {
  46728. front: {
  46729. height: math.unit(12, "feet"),
  46730. weight: math.unit(1500, "lb"),
  46731. name: "Front",
  46732. image: {
  46733. source: "./media/characters/kahea/front.svg",
  46734. extra: 1722/1617,
  46735. bottom: 179/1901
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Normal",
  46742. height: math.unit(12, "feet"),
  46743. default: true
  46744. },
  46745. ]
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46749. {
  46750. demonFront: {
  46751. height: math.unit(36, "feet"),
  46752. name: "Front",
  46753. image: {
  46754. source: "./media/characters/alex-xuria/demon-front.svg",
  46755. extra: 1705/1673,
  46756. bottom: 198/1903
  46757. },
  46758. form: "demon",
  46759. default: true
  46760. },
  46761. demonBack: {
  46762. height: math.unit(36, "feet"),
  46763. name: "Back",
  46764. image: {
  46765. source: "./media/characters/alex-xuria/demon-back.svg",
  46766. extra: 1725/1693,
  46767. bottom: 70/1795
  46768. },
  46769. form: "demon"
  46770. },
  46771. demonHead: {
  46772. height: math.unit(2.14, "meters"),
  46773. name: "Head",
  46774. image: {
  46775. source: "./media/characters/alex-xuria/demon-head.svg"
  46776. },
  46777. form: "demon"
  46778. },
  46779. demonHand: {
  46780. height: math.unit(1.61, "meters"),
  46781. name: "Hand",
  46782. image: {
  46783. source: "./media/characters/alex-xuria/demon-hand.svg"
  46784. },
  46785. form: "demon"
  46786. },
  46787. demonPaw: {
  46788. height: math.unit(1.35, "meters"),
  46789. name: "Paw",
  46790. image: {
  46791. source: "./media/characters/alex-xuria/demon-paw.svg"
  46792. },
  46793. form: "demon"
  46794. },
  46795. demonFoot: {
  46796. height: math.unit(2.2, "meters"),
  46797. name: "Foot",
  46798. image: {
  46799. source: "./media/characters/alex-xuria/demon-foot.svg"
  46800. },
  46801. form: "demon"
  46802. },
  46803. demonCock: {
  46804. height: math.unit(1.74, "meters"),
  46805. name: "Cock",
  46806. image: {
  46807. source: "./media/characters/alex-xuria/demon-cock.svg"
  46808. },
  46809. form: "demon"
  46810. },
  46811. demonTailClosed: {
  46812. height: math.unit(1.47, "meters"),
  46813. name: "Tail (Closed)",
  46814. image: {
  46815. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46816. },
  46817. form: "demon"
  46818. },
  46819. demonTailOpen: {
  46820. height: math.unit(2.85, "meters"),
  46821. name: "Tail (Open)",
  46822. image: {
  46823. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46824. },
  46825. form: "demon"
  46826. },
  46827. incubusFront: {
  46828. height: math.unit(12, "feet"),
  46829. name: "Front",
  46830. image: {
  46831. source: "./media/characters/alex-xuria/incubus-front.svg",
  46832. extra: 1754/1677,
  46833. bottom: 125/1879
  46834. },
  46835. form: "incubus",
  46836. default: true
  46837. },
  46838. incubusBack: {
  46839. height: math.unit(12, "feet"),
  46840. name: "Back",
  46841. image: {
  46842. source: "./media/characters/alex-xuria/incubus-back.svg",
  46843. extra: 1702/1647,
  46844. bottom: 30/1732
  46845. },
  46846. form: "incubus"
  46847. },
  46848. incubusHead: {
  46849. height: math.unit(3.45, "feet"),
  46850. name: "Head",
  46851. image: {
  46852. source: "./media/characters/alex-xuria/incubus-head.svg"
  46853. },
  46854. form: "incubus"
  46855. },
  46856. rabbitFront: {
  46857. height: math.unit(6, "feet"),
  46858. name: "Front",
  46859. image: {
  46860. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46861. extra: 1369/1349,
  46862. bottom: 45/1414
  46863. },
  46864. form: "rabbit",
  46865. default: true
  46866. },
  46867. rabbitSide: {
  46868. height: math.unit(6, "feet"),
  46869. name: "Side",
  46870. image: {
  46871. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46872. extra: 1370/1356,
  46873. bottom: 37/1407
  46874. },
  46875. form: "rabbit"
  46876. },
  46877. rabbitBack: {
  46878. height: math.unit(6, "feet"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46882. extra: 1375/1358,
  46883. bottom: 43/1418
  46884. },
  46885. form: "rabbit"
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(6, "feet"),
  46892. default: true,
  46893. form: "rabbit"
  46894. },
  46895. {
  46896. name: "Incubus",
  46897. height: math.unit(12, "feet"),
  46898. default: true,
  46899. form: "incubus"
  46900. },
  46901. {
  46902. name: "Demon",
  46903. height: math.unit(36, "feet"),
  46904. default: true,
  46905. form: "demon"
  46906. }
  46907. ],
  46908. {
  46909. "demon": {
  46910. name: "Demon",
  46911. default: true
  46912. },
  46913. "incubus": {
  46914. name: "Incubus",
  46915. },
  46916. "rabbit": {
  46917. name: "Rabbit"
  46918. }
  46919. }
  46920. ))
  46921. characterMakers.push(() => makeCharacter(
  46922. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46923. {
  46924. front: {
  46925. height: math.unit(7 + 5/12, "feet"),
  46926. weight: math.unit(510, "lb"),
  46927. name: "Front",
  46928. image: {
  46929. source: "./media/characters/syrup/front.svg",
  46930. extra: 932/916,
  46931. bottom: 26/958
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Normal",
  46938. height: math.unit(7 + 5/12, "feet"),
  46939. default: true
  46940. },
  46941. {
  46942. name: "Big",
  46943. height: math.unit(50, "feet")
  46944. },
  46945. {
  46946. name: "Macro",
  46947. height: math.unit(300, "feet")
  46948. },
  46949. {
  46950. name: "Megamacro",
  46951. height: math.unit(1, "mile")
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46957. {
  46958. front: {
  46959. height: math.unit(6 + 9/12, "feet"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/zeimne/front.svg",
  46963. extra: 1969/1806,
  46964. bottom: 53/2022
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(6 + 9/12, "feet"),
  46972. default: true
  46973. },
  46974. {
  46975. name: "Giant",
  46976. height: math.unit(550, "feet")
  46977. },
  46978. {
  46979. name: "Mega",
  46980. height: math.unit(3, "miles")
  46981. },
  46982. {
  46983. name: "Giga",
  46984. height: math.unit(250, "miles")
  46985. },
  46986. {
  46987. name: "Tera",
  46988. height: math.unit(1, "AU")
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(5 + 2/12, "feet"),
  46997. name: "Front",
  46998. image: {
  46999. source: "./media/characters/grar/front.svg",
  47000. extra: 1331/1119,
  47001. bottom: 60/1391
  47002. }
  47003. },
  47004. back: {
  47005. height: math.unit(5 + 2/12, "feet"),
  47006. name: "Back",
  47007. image: {
  47008. source: "./media/characters/grar/back.svg",
  47009. extra: 1385/1169,
  47010. bottom: 23/1408
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(5 + 2/12, "feet"),
  47018. default: true
  47019. },
  47020. ]
  47021. ))
  47022. characterMakers.push(() => makeCharacter(
  47023. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47024. {
  47025. front: {
  47026. height: math.unit(13 + 7/12, "feet"),
  47027. weight: math.unit(2200, "lb"),
  47028. name: "Front",
  47029. image: {
  47030. source: "./media/characters/endraya/front.svg",
  47031. extra: 1289/1215,
  47032. bottom: 50/1339
  47033. }
  47034. },
  47035. nude: {
  47036. height: math.unit(13 + 7/12, "feet"),
  47037. weight: math.unit(2200, "lb"),
  47038. name: "Nude",
  47039. image: {
  47040. source: "./media/characters/endraya/nude.svg",
  47041. extra: 1247/1171,
  47042. bottom: 40/1287
  47043. }
  47044. },
  47045. head: {
  47046. height: math.unit(2.6, "feet"),
  47047. name: "Head",
  47048. image: {
  47049. source: "./media/characters/endraya/head.svg"
  47050. }
  47051. },
  47052. slit: {
  47053. height: math.unit(3.4, "feet"),
  47054. name: "Slit",
  47055. image: {
  47056. source: "./media/characters/endraya/slit.svg"
  47057. }
  47058. },
  47059. },
  47060. [
  47061. {
  47062. name: "Normal",
  47063. height: math.unit(13 + 7/12, "feet"),
  47064. default: true
  47065. },
  47066. {
  47067. name: "Macro",
  47068. height: math.unit(200, "feet")
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47074. {
  47075. front: {
  47076. height: math.unit(1.81, "meters"),
  47077. weight: math.unit(69, "kg"),
  47078. name: "Front",
  47079. image: {
  47080. source: "./media/characters/rodryana/front.svg",
  47081. extra: 2002/1921,
  47082. bottom: 53/2055
  47083. }
  47084. },
  47085. back: {
  47086. height: math.unit(1.81, "meters"),
  47087. weight: math.unit(69, "kg"),
  47088. name: "Back",
  47089. image: {
  47090. source: "./media/characters/rodryana/back.svg",
  47091. extra: 1993/1926,
  47092. bottom: 48/2041
  47093. }
  47094. },
  47095. maw: {
  47096. height: math.unit(0.19769417475, "meters"),
  47097. name: "Maw",
  47098. image: {
  47099. source: "./media/characters/rodryana/maw.svg"
  47100. }
  47101. },
  47102. slit: {
  47103. height: math.unit(0.31631067961, "meters"),
  47104. name: "Slit",
  47105. image: {
  47106. source: "./media/characters/rodryana/slit.svg"
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Normal",
  47113. height: math.unit(1.81, "meters")
  47114. },
  47115. {
  47116. name: "Mini Macro",
  47117. height: math.unit(181, "meters")
  47118. },
  47119. {
  47120. name: "Macro",
  47121. height: math.unit(452, "meters"),
  47122. default: true
  47123. },
  47124. {
  47125. name: "Mega Macro",
  47126. height: math.unit(1.375, "km")
  47127. },
  47128. {
  47129. name: "Giga Macro",
  47130. height: math.unit(13.575, "km")
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47136. {
  47137. front: {
  47138. height: math.unit(6, "feet"),
  47139. weight: math.unit(1000, "lb"),
  47140. name: "Front",
  47141. image: {
  47142. source: "./media/characters/asaya/front.svg",
  47143. extra: 1460/1200,
  47144. bottom: 71/1531
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(8, "km"),
  47152. default: true
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47158. {
  47159. front: {
  47160. height: math.unit(3.5, "meters"),
  47161. name: "Front",
  47162. image: {
  47163. source: "./media/characters/sarzu-and-israz/front.svg",
  47164. extra: 1570/1558,
  47165. bottom: 150/1720
  47166. },
  47167. },
  47168. back: {
  47169. height: math.unit(3.5, "meters"),
  47170. name: "Back",
  47171. image: {
  47172. source: "./media/characters/sarzu-and-israz/back.svg",
  47173. extra: 1523/1509,
  47174. bottom: 132/1655
  47175. },
  47176. },
  47177. frontFemale: {
  47178. height: math.unit(3.5, "meters"),
  47179. name: "Front (Female)",
  47180. image: {
  47181. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47182. extra: 1570/1558,
  47183. bottom: 150/1720
  47184. },
  47185. },
  47186. frontHerm: {
  47187. height: math.unit(3.5, "meters"),
  47188. name: "Front (Herm)",
  47189. image: {
  47190. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47191. extra: 1570/1558,
  47192. bottom: 150/1720
  47193. },
  47194. },
  47195. },
  47196. [
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(3.5, "meters"),
  47200. default: true,
  47201. },
  47202. {
  47203. name: "Macro",
  47204. height: math.unit(65.5, "meters"),
  47205. },
  47206. ],
  47207. ))
  47208. characterMakers.push(() => makeCharacter(
  47209. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47210. {
  47211. front: {
  47212. height: math.unit(6, "feet"),
  47213. weight: math.unit(250, "lb"),
  47214. name: "Front",
  47215. image: {
  47216. source: "./media/characters/zenimma/front.svg",
  47217. extra: 1346/1320,
  47218. bottom: 58/1404
  47219. }
  47220. },
  47221. back: {
  47222. height: math.unit(6, "feet"),
  47223. weight: math.unit(250, "lb"),
  47224. name: "Back",
  47225. image: {
  47226. source: "./media/characters/zenimma/back.svg",
  47227. extra: 1324/1308,
  47228. bottom: 44/1368
  47229. }
  47230. },
  47231. dick: {
  47232. height: math.unit(1.44, "feet"),
  47233. name: "Dick",
  47234. image: {
  47235. source: "./media/characters/zenimma/dick.svg"
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Canon Height",
  47242. height: math.unit(66, "miles"),
  47243. default: true
  47244. },
  47245. ]
  47246. ))
  47247. characterMakers.push(() => makeCharacter(
  47248. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47249. {
  47250. nude: {
  47251. height: math.unit(6, "feet"),
  47252. weight: math.unit(150, "lb"),
  47253. name: "Nude",
  47254. image: {
  47255. source: "./media/characters/shavon/nude.svg",
  47256. extra: 1242/1096,
  47257. bottom: 98/1340
  47258. }
  47259. },
  47260. dressed: {
  47261. height: math.unit(6, "feet"),
  47262. weight: math.unit(150, "lb"),
  47263. name: "Dressed",
  47264. image: {
  47265. source: "./media/characters/shavon/dressed.svg",
  47266. extra: 1242/1096,
  47267. bottom: 98/1340
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Macro",
  47274. height: math.unit(255, "feet"),
  47275. default: true
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47281. {
  47282. front: {
  47283. height: math.unit(6, "feet"),
  47284. name: "Front",
  47285. image: {
  47286. source: "./media/characters/steph/front.svg",
  47287. extra: 1430/1330,
  47288. bottom: 54/1484
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(6, "feet"),
  47296. default: true
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47302. {
  47303. front: {
  47304. height: math.unit(9, "feet"),
  47305. weight: math.unit(400, "lb"),
  47306. name: "Front",
  47307. image: {
  47308. source: "./media/characters/kil'aman/front.svg",
  47309. extra: 1210/1159,
  47310. bottom: 109/1319
  47311. }
  47312. },
  47313. head: {
  47314. height: math.unit(2.14, "feet"),
  47315. name: "Head",
  47316. image: {
  47317. source: "./media/characters/kil'aman/head.svg"
  47318. }
  47319. },
  47320. maw: {
  47321. height: math.unit(1.21, "feet"),
  47322. name: "Maw",
  47323. image: {
  47324. source: "./media/characters/kil'aman/maw.svg"
  47325. }
  47326. },
  47327. foot: {
  47328. height: math.unit(1.7, "feet"),
  47329. name: "Foot",
  47330. image: {
  47331. source: "./media/characters/kil'aman/foot.svg"
  47332. }
  47333. },
  47334. dick: {
  47335. height: math.unit(2.1, "feet"),
  47336. name: "Dick",
  47337. image: {
  47338. source: "./media/characters/kil'aman/dick.svg"
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Normal",
  47345. height: math.unit(9, "feet")
  47346. },
  47347. {
  47348. name: "Canon Height",
  47349. height: math.unit(10, "miles"),
  47350. default: true
  47351. },
  47352. {
  47353. name: "Maximum",
  47354. height: math.unit(6e9, "miles")
  47355. },
  47356. ]
  47357. ))
  47358. characterMakers.push(() => makeCharacter(
  47359. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47360. {
  47361. front: {
  47362. height: math.unit(90, "feet"),
  47363. weight: math.unit(675000, "lb"),
  47364. name: "Front",
  47365. image: {
  47366. source: "./media/characters/qadan/front.svg",
  47367. extra: 1012/1004,
  47368. bottom: 78/1090
  47369. }
  47370. },
  47371. back: {
  47372. height: math.unit(90, "feet"),
  47373. weight: math.unit(675000, "lb"),
  47374. name: "Back",
  47375. image: {
  47376. source: "./media/characters/qadan/back.svg",
  47377. extra: 1042/1031,
  47378. bottom: 55/1097
  47379. }
  47380. },
  47381. armored: {
  47382. height: math.unit(90, "feet"),
  47383. weight: math.unit(675000, "lb"),
  47384. name: "Armored",
  47385. image: {
  47386. source: "./media/characters/qadan/armored.svg",
  47387. extra: 1047/1037,
  47388. bottom: 48/1095
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(90, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(6, "feet"),
  47405. weight: math.unit(225, "lb"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/brooke/front.svg",
  47409. extra: 1050/1010,
  47410. bottom: 66/1116
  47411. }
  47412. },
  47413. back: {
  47414. height: math.unit(6, "feet"),
  47415. weight: math.unit(225, "lb"),
  47416. name: "Back",
  47417. image: {
  47418. source: "./media/characters/brooke/back.svg",
  47419. extra: 1053/1013,
  47420. bottom: 41/1094
  47421. }
  47422. },
  47423. dressed: {
  47424. height: math.unit(6, "feet"),
  47425. weight: math.unit(225, "lb"),
  47426. name: "Dressed",
  47427. image: {
  47428. source: "./media/characters/brooke/dressed.svg",
  47429. extra: 1050/1010,
  47430. bottom: 66/1116
  47431. }
  47432. },
  47433. },
  47434. [
  47435. {
  47436. name: "Canon Height",
  47437. height: math.unit(500, "miles"),
  47438. default: true
  47439. },
  47440. ]
  47441. ))
  47442. characterMakers.push(() => makeCharacter(
  47443. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47444. {
  47445. front: {
  47446. height: math.unit(6 + 2/12, "feet"),
  47447. weight: math.unit(210, "lb"),
  47448. name: "Front",
  47449. image: {
  47450. source: "./media/characters/wubs/front.svg",
  47451. extra: 1345/1325,
  47452. bottom: 70/1415
  47453. }
  47454. },
  47455. back: {
  47456. height: math.unit(6 + 2/12, "feet"),
  47457. weight: math.unit(210, "lb"),
  47458. name: "Back",
  47459. image: {
  47460. source: "./media/characters/wubs/back.svg",
  47461. extra: 1296/1275,
  47462. bottom: 58/1354
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(6 + 2/12, "feet"),
  47470. default: true
  47471. },
  47472. {
  47473. name: "Macro",
  47474. height: math.unit(1000, "feet")
  47475. },
  47476. {
  47477. name: "Megamacro",
  47478. height: math.unit(1, "mile")
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(4, "feet"),
  47487. weight: math.unit(120, "lb"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/blue/front.svg",
  47491. extra: 1636/1525,
  47492. bottom: 43/1679
  47493. }
  47494. },
  47495. back: {
  47496. height: math.unit(4, "feet"),
  47497. weight: math.unit(120, "lb"),
  47498. name: "Back",
  47499. image: {
  47500. source: "./media/characters/blue/back.svg",
  47501. extra: 1660/1560,
  47502. bottom: 57/1717
  47503. }
  47504. },
  47505. paws: {
  47506. height: math.unit(0.826, "feet"),
  47507. name: "Paws",
  47508. image: {
  47509. source: "./media/characters/blue/paws.svg"
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Micro",
  47516. height: math.unit(3, "inches")
  47517. },
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(4, "feet"),
  47521. default: true
  47522. },
  47523. {
  47524. name: "Femenine Form",
  47525. height: math.unit(14, "feet")
  47526. },
  47527. {
  47528. name: "Werebat Form",
  47529. height: math.unit(18, "feet")
  47530. },
  47531. ]
  47532. ))
  47533. characterMakers.push(() => makeCharacter(
  47534. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47535. {
  47536. female: {
  47537. height: math.unit(7 + 4/12, "feet"),
  47538. weight: math.unit(243, "lb"),
  47539. name: "Female",
  47540. image: {
  47541. source: "./media/characters/kaya/female.svg",
  47542. extra: 975/898,
  47543. bottom: 34/1009
  47544. }
  47545. },
  47546. herm: {
  47547. height: math.unit(7 + 4/12, "feet"),
  47548. weight: math.unit(243, "lb"),
  47549. name: "Herm",
  47550. image: {
  47551. source: "./media/characters/kaya/herm.svg",
  47552. extra: 975/898,
  47553. bottom: 34/1009
  47554. }
  47555. },
  47556. },
  47557. [
  47558. {
  47559. name: "Normal",
  47560. height: math.unit(7 + 4/12, "feet"),
  47561. default: true
  47562. },
  47563. ]
  47564. ))
  47565. characterMakers.push(() => makeCharacter(
  47566. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47567. {
  47568. female: {
  47569. height: math.unit(9 + 4/12, "feet"),
  47570. weight: math.unit(398, "lb"),
  47571. name: "Female",
  47572. image: {
  47573. source: "./media/characters/kassandra/female.svg",
  47574. extra: 908/839,
  47575. bottom: 61/969
  47576. }
  47577. },
  47578. intersex: {
  47579. height: math.unit(9 + 4/12, "feet"),
  47580. weight: math.unit(398, "lb"),
  47581. name: "Intersex",
  47582. image: {
  47583. source: "./media/characters/kassandra/intersex.svg",
  47584. extra: 908/839,
  47585. bottom: 61/969
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Normal",
  47592. height: math.unit(9 + 4/12, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(3, "meters"),
  47602. name: "Front",
  47603. image: {
  47604. source: "./media/characters/amy/front.svg",
  47605. extra: 1380/1343,
  47606. bottom: 70/1450
  47607. }
  47608. },
  47609. back: {
  47610. height: math.unit(3, "meters"),
  47611. name: "Back",
  47612. image: {
  47613. source: "./media/characters/amy/back.svg",
  47614. extra: 1380/1347,
  47615. bottom: 66/1446
  47616. }
  47617. },
  47618. },
  47619. [
  47620. {
  47621. name: "Normal",
  47622. height: math.unit(3, "meters"),
  47623. default: true
  47624. },
  47625. ]
  47626. ))
  47627. characterMakers.push(() => makeCharacter(
  47628. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47629. {
  47630. side: {
  47631. height: math.unit(47, "cm"),
  47632. weight: math.unit(10.8, "kg"),
  47633. name: "Side",
  47634. image: {
  47635. source: "./media/characters/alphaschakal/side.svg",
  47636. extra: 1058/568,
  47637. bottom: 62/1120
  47638. }
  47639. },
  47640. back: {
  47641. height: math.unit(78, "cm"),
  47642. weight: math.unit(10.8, "kg"),
  47643. name: "Back",
  47644. image: {
  47645. source: "./media/characters/alphaschakal/back.svg",
  47646. extra: 1102/942,
  47647. bottom: 185/1287
  47648. }
  47649. },
  47650. head: {
  47651. height: math.unit(28, "cm"),
  47652. name: "Head",
  47653. image: {
  47654. source: "./media/characters/alphaschakal/head.svg",
  47655. extra: 696/508,
  47656. bottom: 0/696
  47657. }
  47658. },
  47659. paw: {
  47660. height: math.unit(16, "cm"),
  47661. name: "Paw",
  47662. image: {
  47663. source: "./media/characters/alphaschakal/paw.svg"
  47664. }
  47665. },
  47666. },
  47667. [
  47668. {
  47669. name: "Normal",
  47670. height: math.unit(47, "cm"),
  47671. default: true
  47672. },
  47673. {
  47674. name: "Macro",
  47675. height: math.unit(340, "cm")
  47676. },
  47677. ]
  47678. ))
  47679. characterMakers.push(() => makeCharacter(
  47680. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47681. {
  47682. front: {
  47683. height: math.unit(36, "earths"),
  47684. name: "Front",
  47685. image: {
  47686. source: "./media/characters/ecobyss/front.svg",
  47687. extra: 1282/1215,
  47688. bottom: 11/1293
  47689. }
  47690. },
  47691. back: {
  47692. height: math.unit(36, "earths"),
  47693. name: "Back",
  47694. image: {
  47695. source: "./media/characters/ecobyss/back.svg",
  47696. extra: 1291/1222,
  47697. bottom: 8/1299
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(36, "earths"),
  47705. default: true
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47711. {
  47712. front: {
  47713. height: math.unit(12, "feet"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/vasuk/front.svg",
  47717. extra: 1326/1207,
  47718. bottom: 64/1390
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(12, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47732. {
  47733. side: {
  47734. height: math.unit(100, "feet"),
  47735. name: "Side",
  47736. image: {
  47737. source: "./media/characters/linneaus/side.svg",
  47738. extra: 987/807,
  47739. bottom: 47/1034
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Macro",
  47746. height: math.unit(100, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(8, "feet"),
  47756. weight: math.unit(1200, "lb"),
  47757. name: "Front",
  47758. image: {
  47759. source: "./media/characters/nyterious-daligdig/front.svg",
  47760. extra: 1284/1094,
  47761. bottom: 84/1368
  47762. }
  47763. },
  47764. back: {
  47765. height: math.unit(8, "feet"),
  47766. weight: math.unit(1200, "lb"),
  47767. name: "Back",
  47768. image: {
  47769. source: "./media/characters/nyterious-daligdig/back.svg",
  47770. extra: 1301/1121,
  47771. bottom: 129/1430
  47772. }
  47773. },
  47774. mouth: {
  47775. height: math.unit(1.464, "feet"),
  47776. name: "Mouth",
  47777. image: {
  47778. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47779. }
  47780. },
  47781. },
  47782. [
  47783. {
  47784. name: "Small",
  47785. height: math.unit(8, "feet"),
  47786. default: true
  47787. },
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(15, "feet")
  47791. },
  47792. {
  47793. name: "Macro",
  47794. height: math.unit(90, "feet")
  47795. },
  47796. ]
  47797. ))
  47798. characterMakers.push(() => makeCharacter(
  47799. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47800. {
  47801. front: {
  47802. height: math.unit(7 + 4/12, "feet"),
  47803. weight: math.unit(252, "lb"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/bandel/front.svg",
  47807. extra: 1946/1775,
  47808. bottom: 26/1972
  47809. }
  47810. },
  47811. back: {
  47812. height: math.unit(7 + 4/12, "feet"),
  47813. weight: math.unit(252, "lb"),
  47814. name: "Back",
  47815. image: {
  47816. source: "./media/characters/bandel/back.svg",
  47817. extra: 1940/1770,
  47818. bottom: 25/1965
  47819. }
  47820. },
  47821. maw: {
  47822. height: math.unit(2.15, "feet"),
  47823. name: "Maw",
  47824. image: {
  47825. source: "./media/characters/bandel/maw.svg"
  47826. }
  47827. },
  47828. stomach: {
  47829. height: math.unit(1.95, "feet"),
  47830. name: "Stomach",
  47831. image: {
  47832. source: "./media/characters/bandel/stomach.svg"
  47833. }
  47834. },
  47835. },
  47836. [
  47837. {
  47838. name: "Normal",
  47839. height: math.unit(7 + 4/12, "feet"),
  47840. default: true
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(10 + 5/12, "feet"),
  47849. weight: math.unit(773.5, "kg"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/zed/front.svg",
  47853. extra: 987/941,
  47854. bottom: 52/1039
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Short",
  47861. height: math.unit(5 + 4/12, "feet")
  47862. },
  47863. {
  47864. name: "Average",
  47865. height: math.unit(10 + 5/12, "feet"),
  47866. default: true
  47867. },
  47868. {
  47869. name: "Mini-Macro",
  47870. height: math.unit(24 + 9/12, "feet")
  47871. },
  47872. {
  47873. name: "Macro",
  47874. height: math.unit(249, "feet")
  47875. },
  47876. {
  47877. name: "Mega-Macro",
  47878. height: math.unit(12490, "feet")
  47879. },
  47880. {
  47881. name: "Giga-Macro",
  47882. height: math.unit(24.9, "miles")
  47883. },
  47884. {
  47885. name: "Tera-Macro",
  47886. height: math.unit(24900, "miles")
  47887. },
  47888. {
  47889. name: "Cosmic Scale",
  47890. height: math.unit(38.9, "lightyears")
  47891. },
  47892. {
  47893. name: "Universal Scale",
  47894. height: math.unit(138e12, "lightyears")
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(1561, "inches"),
  47903. name: "Front",
  47904. image: {
  47905. source: "./media/characters/ivan/front.svg",
  47906. extra: 1126/1071,
  47907. bottom: 26/1152
  47908. }
  47909. },
  47910. back: {
  47911. height: math.unit(1561, "inches"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/ivan/back.svg",
  47915. extra: 1134/1079,
  47916. bottom: 30/1164
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(1561, "inches"),
  47924. default: true
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47930. {
  47931. front: {
  47932. height: math.unit(5 + 7/12, "feet"),
  47933. weight: math.unit(150, "lb"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/robin-arctic-hare/front.svg",
  47937. extra: 1148/974,
  47938. bottom: 20/1168
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(5 + 7/12, "feet"),
  47946. default: true
  47947. },
  47948. ]
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47952. {
  47953. side: {
  47954. height: math.unit(5, "feet"),
  47955. name: "Side",
  47956. image: {
  47957. source: "./media/characters/birch/side.svg",
  47958. extra: 985/796,
  47959. bottom: 111/1096
  47960. }
  47961. },
  47962. },
  47963. [
  47964. {
  47965. name: "Normal",
  47966. height: math.unit(5, "feet"),
  47967. default: true
  47968. },
  47969. ]
  47970. ))
  47971. characterMakers.push(() => makeCharacter(
  47972. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47973. {
  47974. front: {
  47975. height: math.unit(4, "feet"),
  47976. name: "Front",
  47977. image: {
  47978. source: "./media/characters/rasp/front.svg",
  47979. extra: 561/478,
  47980. bottom: 74/635
  47981. }
  47982. },
  47983. },
  47984. [
  47985. {
  47986. name: "Normal",
  47987. height: math.unit(4, "feet"),
  47988. default: true
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(4 + 6/12, "feet"),
  47997. name: "Front",
  47998. image: {
  47999. source: "./media/characters/agatha/front.svg",
  48000. extra: 947/933,
  48001. bottom: 42/989
  48002. }
  48003. },
  48004. back: {
  48005. height: math.unit(4 + 6/12, "feet"),
  48006. name: "Back",
  48007. image: {
  48008. source: "./media/characters/agatha/back.svg",
  48009. extra: 935/922,
  48010. bottom: 48/983
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(4 + 6 /12, "feet"),
  48018. default: true
  48019. },
  48020. {
  48021. name: "Max Size",
  48022. height: math.unit(500, "feet")
  48023. },
  48024. ]
  48025. ))
  48026. characterMakers.push(() => makeCharacter(
  48027. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48028. {
  48029. side: {
  48030. height: math.unit(30, "feet"),
  48031. name: "Side",
  48032. image: {
  48033. source: "./media/characters/roggy/side.svg",
  48034. extra: 909/643,
  48035. bottom: 63/972
  48036. }
  48037. },
  48038. lounging: {
  48039. height: math.unit(20, "feet"),
  48040. name: "Lounging",
  48041. image: {
  48042. source: "./media/characters/roggy/lounging.svg",
  48043. extra: 643/479,
  48044. bottom: 145/788
  48045. }
  48046. },
  48047. handpaw: {
  48048. height: math.unit(13.1, "feet"),
  48049. name: "Handpaw",
  48050. image: {
  48051. source: "./media/characters/roggy/handpaw.svg"
  48052. }
  48053. },
  48054. footpaw: {
  48055. height: math.unit(15.8, "feet"),
  48056. name: "Footpaw",
  48057. image: {
  48058. source: "./media/characters/roggy/footpaw.svg"
  48059. }
  48060. },
  48061. },
  48062. [
  48063. {
  48064. name: "Menacing",
  48065. height: math.unit(30, "feet"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(5 + 7/12, "feet"),
  48075. weight: math.unit(135, "lb"),
  48076. name: "Front",
  48077. image: {
  48078. source: "./media/characters/naomi/front.svg",
  48079. extra: 1209/1154,
  48080. bottom: 129/1338
  48081. }
  48082. },
  48083. back: {
  48084. height: math.unit(5 + 7/12, "feet"),
  48085. weight: math.unit(135, "lb"),
  48086. name: "Back",
  48087. image: {
  48088. source: "./media/characters/naomi/back.svg",
  48089. extra: 1252/1190,
  48090. bottom: 23/1275
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Normal",
  48097. height: math.unit(5 + 7 /12, "feet"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48104. {
  48105. side: {
  48106. height: math.unit(35, "meters"),
  48107. name: "Side",
  48108. image: {
  48109. source: "./media/characters/kimpi/side.svg",
  48110. extra: 419/382,
  48111. bottom: 63/482
  48112. }
  48113. },
  48114. hand: {
  48115. height: math.unit(8.96, "meters"),
  48116. name: "Hand",
  48117. image: {
  48118. source: "./media/characters/kimpi/hand.svg"
  48119. }
  48120. },
  48121. },
  48122. [
  48123. {
  48124. name: "Normal",
  48125. height: math.unit(35, "meters"),
  48126. default: true
  48127. },
  48128. ]
  48129. ))
  48130. characterMakers.push(() => makeCharacter(
  48131. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48132. {
  48133. front: {
  48134. height: math.unit(4 + 4/12, "feet"),
  48135. name: "Front",
  48136. image: {
  48137. source: "./media/characters/pepper-purrloin/front.svg",
  48138. extra: 1141/1024,
  48139. bottom: 21/1162
  48140. }
  48141. },
  48142. },
  48143. [
  48144. {
  48145. name: "Normal",
  48146. height: math.unit(4 + 4/12, "feet"),
  48147. default: true
  48148. },
  48149. ]
  48150. ))
  48151. characterMakers.push(() => makeCharacter(
  48152. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48153. {
  48154. front: {
  48155. height: math.unit(6 + 2/12, "feet"),
  48156. name: "Front",
  48157. image: {
  48158. source: "./media/characters/raphael/front.svg",
  48159. extra: 1101/962,
  48160. bottom: 59/1160
  48161. }
  48162. },
  48163. },
  48164. [
  48165. {
  48166. name: "Normal",
  48167. height: math.unit(6 + 2/12, "feet"),
  48168. default: true
  48169. },
  48170. ]
  48171. ))
  48172. characterMakers.push(() => makeCharacter(
  48173. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48174. {
  48175. front: {
  48176. height: math.unit(6, "feet"),
  48177. weight: math.unit(150, "lb"),
  48178. name: "Front",
  48179. image: {
  48180. source: "./media/characters/victor-williams/front.svg",
  48181. extra: 1894/1825,
  48182. bottom: 67/1961
  48183. }
  48184. },
  48185. },
  48186. [
  48187. {
  48188. name: "Normal",
  48189. height: math.unit(6, "feet"),
  48190. default: true
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48196. {
  48197. front: {
  48198. height: math.unit(5 + 8/12, "feet"),
  48199. weight: math.unit(150, "lb"),
  48200. name: "Front",
  48201. image: {
  48202. source: "./media/characters/rachel/front.svg",
  48203. extra: 1902/1787,
  48204. bottom: 46/1948
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Base Height",
  48211. height: math.unit(5 + 8/12, "feet"),
  48212. default: true
  48213. },
  48214. {
  48215. name: "Macro",
  48216. height: math.unit(200, "feet")
  48217. },
  48218. {
  48219. name: "Mega Macro",
  48220. height: math.unit(1, "mile")
  48221. },
  48222. {
  48223. name: "Giga Macro",
  48224. height: math.unit(1500, "miles")
  48225. },
  48226. {
  48227. name: "Tera Macro",
  48228. height: math.unit(8000, "miles")
  48229. },
  48230. {
  48231. name: "Tera Macro+",
  48232. height: math.unit(2e5, "miles")
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48238. {
  48239. front: {
  48240. height: math.unit(6.5, "feet"),
  48241. name: "Front",
  48242. image: {
  48243. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48244. extra: 860/819,
  48245. bottom: 307/1167
  48246. }
  48247. },
  48248. back: {
  48249. height: math.unit(6.5, "feet"),
  48250. name: "Back",
  48251. image: {
  48252. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48253. extra: 880/837,
  48254. bottom: 395/1275
  48255. }
  48256. },
  48257. sleeping: {
  48258. height: math.unit(2.79, "feet"),
  48259. name: "Sleeping",
  48260. image: {
  48261. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48262. extra: 465/383,
  48263. bottom: 263/728
  48264. }
  48265. },
  48266. maw: {
  48267. height: math.unit(2.52, "feet"),
  48268. name: "Maw",
  48269. image: {
  48270. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(6.5, "feet"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(5, "feet"),
  48287. name: "Front",
  48288. image: {
  48289. source: "./media/characters/nova-nerium/front.svg",
  48290. extra: 1548/1392,
  48291. bottom: 374/1922
  48292. }
  48293. },
  48294. back: {
  48295. height: math.unit(5, "feet"),
  48296. name: "Back",
  48297. image: {
  48298. source: "./media/characters/nova-nerium/back.svg",
  48299. extra: 1658/1468,
  48300. bottom: 257/1915
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(5, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(5 + 4/12, "feet"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/ashe-pyriph/front.svg",
  48320. extra: 1935/1747,
  48321. bottom: 60/1995
  48322. }
  48323. },
  48324. },
  48325. [
  48326. {
  48327. name: "Normal",
  48328. height: math.unit(5 + 4/12, "feet"),
  48329. default: true
  48330. },
  48331. ]
  48332. ))
  48333. characterMakers.push(() => makeCharacter(
  48334. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48335. {
  48336. front: {
  48337. height: math.unit(8.7, "feet"),
  48338. name: "Front",
  48339. image: {
  48340. source: "./media/characters/flicker-wisp/front.svg",
  48341. extra: 1835/1613,
  48342. bottom: 449/2284
  48343. }
  48344. },
  48345. side: {
  48346. height: math.unit(8.7, "feet"),
  48347. name: "Side",
  48348. image: {
  48349. source: "./media/characters/flicker-wisp/side.svg",
  48350. extra: 1841/1642,
  48351. bottom: 336/2177
  48352. },
  48353. default: true
  48354. },
  48355. maw: {
  48356. height: math.unit(3.35, "feet"),
  48357. name: "Maw",
  48358. image: {
  48359. source: "./media/characters/flicker-wisp/maw.svg",
  48360. extra: 2338/1506,
  48361. bottom: 0/2338
  48362. }
  48363. },
  48364. ovipositor: {
  48365. height: math.unit(4.95, "feet"),
  48366. name: "Ovipositor",
  48367. image: {
  48368. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48369. }
  48370. },
  48371. egg: {
  48372. height: math.unit(0.385, "feet"),
  48373. weight: math.unit(2, "lb"),
  48374. name: "Egg",
  48375. image: {
  48376. source: "./media/characters/flicker-wisp/egg.svg"
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Normal",
  48383. height: math.unit(8.7, "feet"),
  48384. default: true
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48390. {
  48391. side: {
  48392. height: math.unit(11, "feet"),
  48393. name: "Side",
  48394. image: {
  48395. source: "./media/characters/faefnul/side.svg",
  48396. extra: 1100/1007,
  48397. bottom: 0/1100
  48398. }
  48399. },
  48400. },
  48401. [
  48402. {
  48403. name: "Normal",
  48404. height: math.unit(11, "feet"),
  48405. default: true
  48406. },
  48407. ]
  48408. ))
  48409. characterMakers.push(() => makeCharacter(
  48410. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48411. {
  48412. front: {
  48413. height: math.unit(6 + 2/12, "feet"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/shady/front.svg",
  48417. extra: 502/461,
  48418. bottom: 9/511
  48419. }
  48420. },
  48421. kneeling: {
  48422. height: math.unit(4.6, "feet"),
  48423. name: "Kneeling",
  48424. image: {
  48425. source: "./media/characters/shady/kneeling.svg",
  48426. extra: 1328/1219,
  48427. bottom: 117/1445
  48428. }
  48429. },
  48430. maw: {
  48431. height: math.unit(2, "feet"),
  48432. name: "Maw",
  48433. image: {
  48434. source: "./media/characters/shady/maw.svg"
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Nano",
  48441. height: math.unit(1, "mm")
  48442. },
  48443. {
  48444. name: "Micro",
  48445. height: math.unit(12, "mm")
  48446. },
  48447. {
  48448. name: "Tiny",
  48449. height: math.unit(3, "inches")
  48450. },
  48451. {
  48452. name: "Normal",
  48453. height: math.unit(6 + 2/12, "feet"),
  48454. default: true
  48455. },
  48456. {
  48457. name: "Big",
  48458. height: math.unit(15, "feet")
  48459. },
  48460. {
  48461. name: "Macro",
  48462. height: math.unit(150, "feet")
  48463. },
  48464. {
  48465. name: "Titanic",
  48466. height: math.unit(500, "feet")
  48467. },
  48468. ]
  48469. ))
  48470. characterMakers.push(() => makeCharacter(
  48471. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48472. {
  48473. front: {
  48474. height: math.unit(12, "feet"),
  48475. name: "Front",
  48476. image: {
  48477. source: "./media/characters/fenrir/front.svg",
  48478. extra: 968/875,
  48479. bottom: 22/990
  48480. }
  48481. },
  48482. },
  48483. [
  48484. {
  48485. name: "Big",
  48486. height: math.unit(12, "feet"),
  48487. default: true
  48488. },
  48489. ]
  48490. ))
  48491. characterMakers.push(() => makeCharacter(
  48492. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48493. {
  48494. front: {
  48495. height: math.unit(5 + 4/12, "feet"),
  48496. name: "Front",
  48497. image: {
  48498. source: "./media/characters/makar/front.svg",
  48499. extra: 1181/1112,
  48500. bottom: 78/1259
  48501. }
  48502. },
  48503. },
  48504. [
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(5 + 4/12, "feet"),
  48508. default: true
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48514. {
  48515. front: {
  48516. height: math.unit(5 + 7/12, "feet"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/callow/front.svg",
  48520. extra: 1482/1304,
  48521. bottom: 23/1505
  48522. }
  48523. },
  48524. back: {
  48525. height: math.unit(5 + 7/12, "feet"),
  48526. name: "Back",
  48527. image: {
  48528. source: "./media/characters/callow/back.svg",
  48529. extra: 1484/1296,
  48530. bottom: 25/1509
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Micro",
  48537. height: math.unit(3, "inches"),
  48538. default: true
  48539. },
  48540. {
  48541. name: "Normal",
  48542. height: math.unit(5 + 7/12, "feet")
  48543. },
  48544. ]
  48545. ))
  48546. characterMakers.push(() => makeCharacter(
  48547. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48548. {
  48549. front: {
  48550. height: math.unit(6 + 2/12, "feet"),
  48551. name: "Front",
  48552. image: {
  48553. source: "./media/characters/natel/front.svg",
  48554. extra: 1833/1692,
  48555. bottom: 166/1999
  48556. }
  48557. },
  48558. },
  48559. [
  48560. {
  48561. name: "Normal",
  48562. height: math.unit(6 + 2/12, "feet"),
  48563. default: true
  48564. },
  48565. ]
  48566. ))
  48567. characterMakers.push(() => makeCharacter(
  48568. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48569. {
  48570. front: {
  48571. height: math.unit(1.75, "meters"),
  48572. name: "Front",
  48573. image: {
  48574. source: "./media/characters/misu/front.svg",
  48575. extra: 1690/1558,
  48576. bottom: 234/1924
  48577. }
  48578. },
  48579. back: {
  48580. height: math.unit(1.75, "meters"),
  48581. name: "Back",
  48582. image: {
  48583. source: "./media/characters/misu/back.svg",
  48584. extra: 1762/1618,
  48585. bottom: 146/1908
  48586. }
  48587. },
  48588. frontNude: {
  48589. height: math.unit(1.75, "meters"),
  48590. name: "Front (Nude)",
  48591. image: {
  48592. source: "./media/characters/misu/front-nude.svg",
  48593. extra: 1690/1558,
  48594. bottom: 234/1924
  48595. }
  48596. },
  48597. backNude: {
  48598. height: math.unit(1.75, "meters"),
  48599. name: "Back (Nude)",
  48600. image: {
  48601. source: "./media/characters/misu/back-nude.svg",
  48602. extra: 1762/1618,
  48603. bottom: 146/1908
  48604. }
  48605. },
  48606. frontErect: {
  48607. height: math.unit(1.75, "meters"),
  48608. name: "Front (Erect)",
  48609. image: {
  48610. source: "./media/characters/misu/front-erect.svg",
  48611. extra: 1690/1558,
  48612. bottom: 234/1924
  48613. }
  48614. },
  48615. maw: {
  48616. height: math.unit(0.47, "meters"),
  48617. name: "Maw",
  48618. image: {
  48619. source: "./media/characters/misu/maw.svg"
  48620. }
  48621. },
  48622. head: {
  48623. height: math.unit(0.35, "meters"),
  48624. name: "Head",
  48625. image: {
  48626. source: "./media/characters/misu/head.svg"
  48627. }
  48628. },
  48629. rear: {
  48630. height: math.unit(0.47, "meters"),
  48631. name: "Rear",
  48632. image: {
  48633. source: "./media/characters/misu/rear.svg"
  48634. }
  48635. },
  48636. },
  48637. [
  48638. {
  48639. name: "Normal",
  48640. height: math.unit(1.75, "meters")
  48641. },
  48642. {
  48643. name: "Not good for the people",
  48644. height: math.unit(42, "meters")
  48645. },
  48646. {
  48647. name: "Not good for the neighborhood",
  48648. height: math.unit(135, "meters")
  48649. },
  48650. {
  48651. name: "Bit bigger problem",
  48652. height: math.unit(380, "meters"),
  48653. default: true
  48654. },
  48655. {
  48656. name: "Not good for the city",
  48657. height: math.unit(1.5, "km")
  48658. },
  48659. {
  48660. name: "Not good for the county",
  48661. height: math.unit(5.5, "km")
  48662. },
  48663. {
  48664. name: "Not good for the state",
  48665. height: math.unit(25, "km")
  48666. },
  48667. {
  48668. name: "Not good for the country",
  48669. height: math.unit(125, "km")
  48670. },
  48671. {
  48672. name: "Not good for the continent",
  48673. height: math.unit(2100, "km")
  48674. },
  48675. {
  48676. name: "Not good for the planet",
  48677. height: math.unit(35000, "km")
  48678. },
  48679. {
  48680. name: "Just no",
  48681. height: math.unit(8.5e18, "km")
  48682. },
  48683. ]
  48684. ))
  48685. characterMakers.push(() => makeCharacter(
  48686. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48687. {
  48688. front: {
  48689. height: math.unit(6.5, "feet"),
  48690. name: "Front",
  48691. image: {
  48692. source: "./media/characters/poppy/front.svg",
  48693. extra: 1878/1812,
  48694. bottom: 43/1921
  48695. }
  48696. },
  48697. feet: {
  48698. height: math.unit(1.06, "feet"),
  48699. name: "Feet",
  48700. image: {
  48701. source: "./media/characters/poppy/feet.svg",
  48702. extra: 1083/1083,
  48703. bottom: 87/1170
  48704. }
  48705. },
  48706. },
  48707. [
  48708. {
  48709. name: "Human",
  48710. height: math.unit(6.5, "feet")
  48711. },
  48712. {
  48713. name: "Default",
  48714. height: math.unit(300, "feet"),
  48715. default: true
  48716. },
  48717. {
  48718. name: "Huge",
  48719. height: math.unit(850, "feet")
  48720. },
  48721. {
  48722. name: "Mega",
  48723. height: math.unit(8000, "feet")
  48724. },
  48725. {
  48726. name: "Giga",
  48727. height: math.unit(300, "miles")
  48728. },
  48729. ]
  48730. ))
  48731. characterMakers.push(() => makeCharacter(
  48732. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48733. {
  48734. bipedal: {
  48735. height: math.unit(7, "feet"),
  48736. name: "Bipedal",
  48737. image: {
  48738. source: "./media/characters/zener/bipedal.svg",
  48739. extra: 874/805,
  48740. bottom: 109/983
  48741. }
  48742. },
  48743. quadrupedal: {
  48744. height: math.unit(4.64, "feet"),
  48745. name: "Quadrupedal",
  48746. image: {
  48747. source: "./media/characters/zener/quadrupedal.svg",
  48748. extra: 638/507,
  48749. bottom: 190/828
  48750. }
  48751. },
  48752. cock: {
  48753. height: math.unit(18, "inches"),
  48754. name: "Cock",
  48755. image: {
  48756. source: "./media/characters/zener/cock.svg"
  48757. }
  48758. },
  48759. },
  48760. [
  48761. {
  48762. name: "Normal",
  48763. height: math.unit(7, "feet"),
  48764. default: true
  48765. },
  48766. ]
  48767. ))
  48768. characterMakers.push(() => makeCharacter(
  48769. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48770. {
  48771. nude: {
  48772. height: math.unit(5 + 6/12, "feet"),
  48773. name: "Nude",
  48774. image: {
  48775. source: "./media/characters/charlie-dog/nude.svg",
  48776. extra: 768/734,
  48777. bottom: 26/794
  48778. }
  48779. },
  48780. dressed: {
  48781. height: math.unit(5 + 6/12, "feet"),
  48782. name: "Dressed",
  48783. image: {
  48784. source: "./media/characters/charlie-dog/dressed.svg",
  48785. extra: 768/734,
  48786. bottom: 26/794
  48787. }
  48788. },
  48789. },
  48790. [
  48791. {
  48792. name: "Normal",
  48793. height: math.unit(5 + 6/12, "feet"),
  48794. default: true
  48795. },
  48796. ]
  48797. ))
  48798. characterMakers.push(() => makeCharacter(
  48799. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48800. {
  48801. front: {
  48802. height: math.unit(6 + 4/12, "feet"),
  48803. name: "Front",
  48804. image: {
  48805. source: "./media/characters/ir'istrasz/front.svg",
  48806. extra: 1014/977,
  48807. bottom: 65/1079
  48808. }
  48809. },
  48810. back: {
  48811. height: math.unit(6 + 4/12, "feet"),
  48812. name: "Back",
  48813. image: {
  48814. source: "./media/characters/ir'istrasz/back.svg",
  48815. extra: 1024/992,
  48816. bottom: 34/1058
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Normal",
  48823. height: math.unit(6 + 4/12, "feet"),
  48824. default: true
  48825. },
  48826. ]
  48827. ))
  48828. characterMakers.push(() => makeCharacter(
  48829. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48830. {
  48831. front: {
  48832. height: math.unit(5 + 8/12, "feet"),
  48833. name: "Front",
  48834. image: {
  48835. source: "./media/characters/dee-ditto/front.svg",
  48836. extra: 1874/1785,
  48837. bottom: 68/1942
  48838. }
  48839. },
  48840. back: {
  48841. height: math.unit(5 + 8/12, "feet"),
  48842. name: "Back",
  48843. image: {
  48844. source: "./media/characters/dee-ditto/back.svg",
  48845. extra: 1870/1783,
  48846. bottom: 77/1947
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Normal",
  48853. height: math.unit(5 + 8/12, "feet"),
  48854. default: true
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48860. {
  48861. front: {
  48862. height: math.unit(7 + 6/12, "feet"),
  48863. name: "Front",
  48864. image: {
  48865. source: "./media/characters/fey/front.svg",
  48866. extra: 995/979,
  48867. bottom: 30/1025
  48868. }
  48869. },
  48870. back: {
  48871. height: math.unit(7 + 6/12, "feet"),
  48872. name: "Back",
  48873. image: {
  48874. source: "./media/characters/fey/back.svg",
  48875. extra: 1079/1008,
  48876. bottom: 5/1084
  48877. }
  48878. },
  48879. dressed: {
  48880. height: math.unit(7 + 6/12, "feet"),
  48881. name: "Dressed",
  48882. image: {
  48883. source: "./media/characters/fey/dressed.svg",
  48884. extra: 995/979,
  48885. bottom: 30/1025
  48886. }
  48887. },
  48888. },
  48889. [
  48890. {
  48891. name: "Normal",
  48892. height: math.unit(7 + 6/12, "feet"),
  48893. default: true
  48894. },
  48895. ]
  48896. ))
  48897. characterMakers.push(() => makeCharacter(
  48898. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48899. {
  48900. standing: {
  48901. height: math.unit(17, "feet"),
  48902. name: "Standing",
  48903. image: {
  48904. source: "./media/characters/aster/standing.svg",
  48905. extra: 1798/1598,
  48906. bottom: 117/1915
  48907. }
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(17, "feet"),
  48914. default: true
  48915. },
  48916. {
  48917. name: "Homewrecker",
  48918. height: math.unit(95, "feet")
  48919. },
  48920. {
  48921. name: "Planet Devourer",
  48922. height: math.unit(1008000, "miles")
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48928. {
  48929. front: {
  48930. height: math.unit(6 + 5/12, "feet"),
  48931. weight: math.unit(265, "lb"),
  48932. name: "Front",
  48933. image: {
  48934. source: "./media/characters/devon-childs/front.svg",
  48935. extra: 1795/1721,
  48936. bottom: 41/1836
  48937. }
  48938. },
  48939. side: {
  48940. height: math.unit(6 + 5/12, "feet"),
  48941. weight: math.unit(265, "lb"),
  48942. name: "Side",
  48943. image: {
  48944. source: "./media/characters/devon-childs/side.svg",
  48945. extra: 1812/1738,
  48946. bottom: 30/1842
  48947. }
  48948. },
  48949. back: {
  48950. height: math.unit(6 + 5/12, "feet"),
  48951. weight: math.unit(265, "lb"),
  48952. name: "Back",
  48953. image: {
  48954. source: "./media/characters/devon-childs/back.svg",
  48955. extra: 1808/1735,
  48956. bottom: 23/1831
  48957. }
  48958. },
  48959. hand: {
  48960. height: math.unit(1.464, "feet"),
  48961. name: "Hand",
  48962. image: {
  48963. source: "./media/characters/devon-childs/hand.svg"
  48964. }
  48965. },
  48966. foot: {
  48967. height: math.unit(1.6, "feet"),
  48968. name: "Foot",
  48969. image: {
  48970. source: "./media/characters/devon-childs/foot.svg"
  48971. }
  48972. },
  48973. },
  48974. [
  48975. {
  48976. name: "Micro",
  48977. height: math.unit(7, "cm")
  48978. },
  48979. {
  48980. name: "Normal",
  48981. height: math.unit(6 + 5/12, "feet"),
  48982. default: true
  48983. },
  48984. {
  48985. name: "Macro",
  48986. height: math.unit(154, "feet")
  48987. },
  48988. ]
  48989. ))
  48990. characterMakers.push(() => makeCharacter(
  48991. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48992. {
  48993. front: {
  48994. height: math.unit(6, "feet"),
  48995. weight: math.unit(180, "lb"),
  48996. name: "Front",
  48997. image: {
  48998. source: "./media/characters/lydemox-vir/front.svg",
  48999. extra: 1632/1435,
  49000. bottom: 58/1690
  49001. }
  49002. },
  49003. frontSFW: {
  49004. height: math.unit(6, "feet"),
  49005. weight: math.unit(180, "lb"),
  49006. name: "Front (SFW)",
  49007. image: {
  49008. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49009. extra: 1632/1435,
  49010. bottom: 58/1690
  49011. }
  49012. },
  49013. back: {
  49014. height: math.unit(6, "feet"),
  49015. weight: math.unit(180, "lb"),
  49016. name: "Back",
  49017. image: {
  49018. source: "./media/characters/lydemox-vir/back.svg",
  49019. extra: 1593/1408,
  49020. bottom: 31/1624
  49021. }
  49022. },
  49023. paw: {
  49024. height: math.unit(1.85, "feet"),
  49025. name: "Paw",
  49026. image: {
  49027. source: "./media/characters/lydemox-vir/paw.svg"
  49028. }
  49029. },
  49030. dick: {
  49031. height: math.unit(1.8, "feet"),
  49032. name: "Dick",
  49033. image: {
  49034. source: "./media/characters/lydemox-vir/dick.svg"
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Macro",
  49041. height: math.unit(100, "feet"),
  49042. default: true
  49043. },
  49044. {
  49045. name: "Teramacro",
  49046. height: math.unit(1, "earth")
  49047. },
  49048. {
  49049. name: "Planetary",
  49050. height: math.unit(20, "earths")
  49051. },
  49052. ]
  49053. ))
  49054. characterMakers.push(() => makeCharacter(
  49055. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49056. {
  49057. front: {
  49058. height: math.unit(15 + 8/12, "feet"),
  49059. weight: math.unit(1237, "kg"),
  49060. name: "Front",
  49061. image: {
  49062. source: "./media/characters/mia/front.svg",
  49063. extra: 1573/1446,
  49064. bottom: 58/1631
  49065. }
  49066. },
  49067. },
  49068. [
  49069. {
  49070. name: "Small",
  49071. height: math.unit(9 + 5/12, "feet")
  49072. },
  49073. {
  49074. name: "Normal",
  49075. height: math.unit(15 + 8/12, "feet"),
  49076. default: true
  49077. },
  49078. ]
  49079. ))
  49080. characterMakers.push(() => makeCharacter(
  49081. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49082. {
  49083. front: {
  49084. height: math.unit(10 + 6/12, "feet"),
  49085. weight: math.unit(1.3, "tons"),
  49086. name: "Front",
  49087. image: {
  49088. source: "./media/characters/mr-graves/front.svg",
  49089. extra: 1779/1695,
  49090. bottom: 198/1977
  49091. }
  49092. },
  49093. },
  49094. [
  49095. {
  49096. name: "Normal",
  49097. height: math.unit(10 + 6 /12, "feet"),
  49098. default: true
  49099. },
  49100. ]
  49101. ))
  49102. characterMakers.push(() => makeCharacter(
  49103. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49104. {
  49105. dressedFront: {
  49106. height: math.unit(5 + 8/12, "feet"),
  49107. weight: math.unit(125, "lb"),
  49108. name: "Dressed (Front)",
  49109. image: {
  49110. source: "./media/characters/jess/dressed-front.svg",
  49111. extra: 1176/1152,
  49112. bottom: 42/1218
  49113. }
  49114. },
  49115. dressedSide: {
  49116. height: math.unit(5 + 8/12, "feet"),
  49117. weight: math.unit(125, "lb"),
  49118. name: "Dressed (Side)",
  49119. image: {
  49120. source: "./media/characters/jess/dressed-side.svg",
  49121. extra: 1204/1190,
  49122. bottom: 6/1210
  49123. }
  49124. },
  49125. nudeFront: {
  49126. height: math.unit(5 + 8/12, "feet"),
  49127. weight: math.unit(125, "lb"),
  49128. name: "Nude (Front)",
  49129. image: {
  49130. source: "./media/characters/jess/nude-front.svg",
  49131. extra: 1176/1152,
  49132. bottom: 42/1218
  49133. }
  49134. },
  49135. nudeSide: {
  49136. height: math.unit(5 + 8/12, "feet"),
  49137. weight: math.unit(125, "lb"),
  49138. name: "Nude (Side)",
  49139. image: {
  49140. source: "./media/characters/jess/nude-side.svg",
  49141. extra: 1204/1190,
  49142. bottom: 6/1210
  49143. }
  49144. },
  49145. organsFront: {
  49146. height: math.unit(2.83799342105, "feet"),
  49147. name: "Organs (Front)",
  49148. image: {
  49149. source: "./media/characters/jess/organs-front.svg"
  49150. }
  49151. },
  49152. organsSide: {
  49153. height: math.unit(2.64225290474, "feet"),
  49154. name: "Organs (Side)",
  49155. image: {
  49156. source: "./media/characters/jess/organs-side.svg"
  49157. }
  49158. },
  49159. digestiveTractFront: {
  49160. height: math.unit(2.8106580871, "feet"),
  49161. name: "Digestive Tract (Front)",
  49162. image: {
  49163. source: "./media/characters/jess/digestive-tract-front.svg"
  49164. }
  49165. },
  49166. digestiveTractSide: {
  49167. height: math.unit(2.54365045014, "feet"),
  49168. name: "Digestive Tract (Side)",
  49169. image: {
  49170. source: "./media/characters/jess/digestive-tract-side.svg"
  49171. }
  49172. },
  49173. respiratorySystemFront: {
  49174. height: math.unit(1.11196233456, "feet"),
  49175. name: "Respiratory System (Front)",
  49176. image: {
  49177. source: "./media/characters/jess/respiratory-system-front.svg"
  49178. }
  49179. },
  49180. respiratorySystemSide: {
  49181. height: math.unit(0.89327966297, "feet"),
  49182. name: "Respiratory System (Side)",
  49183. image: {
  49184. source: "./media/characters/jess/respiratory-system-side.svg"
  49185. }
  49186. },
  49187. urinaryTractFront: {
  49188. height: math.unit(1.16126356186, "feet"),
  49189. name: "Urinary Tract (Front)",
  49190. image: {
  49191. source: "./media/characters/jess/urinary-tract-front.svg"
  49192. }
  49193. },
  49194. urinaryTractSide: {
  49195. height: math.unit(1.20910039627, "feet"),
  49196. name: "Urinary Tract (Side)",
  49197. image: {
  49198. source: "./media/characters/jess/urinary-tract-side.svg"
  49199. }
  49200. },
  49201. reproductiveOrgansFront: {
  49202. height: math.unit(0.48422591566, "feet"),
  49203. name: "Reproductive Organs (Front)",
  49204. image: {
  49205. source: "./media/characters/jess/reproductive-organs-front.svg"
  49206. }
  49207. },
  49208. reproductiveOrgansSide: {
  49209. height: math.unit(0.61553314481, "feet"),
  49210. name: "Reproductive Organs (Side)",
  49211. image: {
  49212. source: "./media/characters/jess/reproductive-organs-side.svg"
  49213. }
  49214. },
  49215. breastsFront: {
  49216. height: math.unit(0.47690395121, "feet"),
  49217. name: "Breasts (Front)",
  49218. image: {
  49219. source: "./media/characters/jess/breasts-front.svg"
  49220. }
  49221. },
  49222. breastsSide: {
  49223. height: math.unit(0.30556998307, "feet"),
  49224. name: "Breasts (Side)",
  49225. image: {
  49226. source: "./media/characters/jess/breasts-side.svg"
  49227. }
  49228. },
  49229. heartFront: {
  49230. height: math.unit(0.53011022622, "feet"),
  49231. name: "Heart (Front)",
  49232. image: {
  49233. source: "./media/characters/jess/heart-front.svg"
  49234. }
  49235. },
  49236. heartSide: {
  49237. height: math.unit(0.51790695213, "feet"),
  49238. name: "Heart (Side)",
  49239. image: {
  49240. source: "./media/characters/jess/heart-side.svg"
  49241. }
  49242. },
  49243. earsAndNoseFront: {
  49244. height: math.unit(0.29385483995, "feet"),
  49245. name: "Ears and Nose (Front)",
  49246. image: {
  49247. source: "./media/characters/jess/ears-and-nose-front.svg"
  49248. }
  49249. },
  49250. earsAndNoseSide: {
  49251. height: math.unit(0.18109658741, "feet"),
  49252. name: "Ears and Nose (Side)",
  49253. image: {
  49254. source: "./media/characters/jess/ears-and-nose-side.svg"
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(5 + 8/12, "feet"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. characterMakers.push(() => makeCharacter(
  49267. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49268. {
  49269. front: {
  49270. height: math.unit(6, "feet"),
  49271. weight: math.unit(6.64467e-7, "grams"),
  49272. name: "Front",
  49273. image: {
  49274. source: "./media/characters/wimpering/front.svg",
  49275. extra: 597/587,
  49276. bottom: 34/631
  49277. }
  49278. },
  49279. },
  49280. [
  49281. {
  49282. name: "Micro",
  49283. height: math.unit(0.4, "mm"),
  49284. default: true
  49285. },
  49286. ]
  49287. ))
  49288. characterMakers.push(() => makeCharacter(
  49289. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49290. {
  49291. front: {
  49292. height: math.unit(5 + 2/12, "feet"),
  49293. weight: math.unit(110, "lb"),
  49294. name: "Front",
  49295. image: {
  49296. source: "./media/characters/keltre/front.svg",
  49297. extra: 1099/1057,
  49298. bottom: 22/1121
  49299. }
  49300. },
  49301. back: {
  49302. height: math.unit(5 + 2/12, "feet"),
  49303. weight: math.unit(110, "lb"),
  49304. name: "Back",
  49305. image: {
  49306. source: "./media/characters/keltre/back.svg",
  49307. extra: 1095/1053,
  49308. bottom: 17/1112
  49309. }
  49310. },
  49311. dressed: {
  49312. height: math.unit(5 + 2/12, "feet"),
  49313. weight: math.unit(110, "lb"),
  49314. name: "Dressed",
  49315. image: {
  49316. source: "./media/characters/keltre/dressed.svg",
  49317. extra: 1099/1057,
  49318. bottom: 22/1121
  49319. }
  49320. },
  49321. winter: {
  49322. height: math.unit(5 + 2/12, "feet"),
  49323. weight: math.unit(110, "lb"),
  49324. name: "Winter",
  49325. image: {
  49326. source: "./media/characters/keltre/winter.svg",
  49327. extra: 1099/1057,
  49328. bottom: 22/1121
  49329. }
  49330. },
  49331. head: {
  49332. height: math.unit(1.61 * 0.86, "feet"),
  49333. name: "Head",
  49334. image: {
  49335. source: "./media/characters/keltre/head.svg",
  49336. extra: 534/421,
  49337. bottom: 0/534
  49338. }
  49339. },
  49340. hand: {
  49341. height: math.unit(1.3 * 0.86, "feet"),
  49342. name: "Hand",
  49343. image: {
  49344. source: "./media/characters/keltre/hand.svg"
  49345. }
  49346. },
  49347. foot: {
  49348. height: math.unit(1.8 * 0.86, "feet"),
  49349. name: "Foot",
  49350. image: {
  49351. source: "./media/characters/keltre/foot.svg"
  49352. }
  49353. },
  49354. },
  49355. [
  49356. {
  49357. name: "Fine",
  49358. height: math.unit(1, "inch")
  49359. },
  49360. {
  49361. name: "Dimnutive",
  49362. height: math.unit(4, "inches")
  49363. },
  49364. {
  49365. name: "Tiny",
  49366. height: math.unit(1, "foot")
  49367. },
  49368. {
  49369. name: "Small",
  49370. height: math.unit(3, "feet")
  49371. },
  49372. {
  49373. name: "Normal",
  49374. height: math.unit(5 + 2/12, "feet"),
  49375. default: true
  49376. },
  49377. ]
  49378. ))
  49379. characterMakers.push(() => makeCharacter(
  49380. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49381. {
  49382. front: {
  49383. height: math.unit(6 + 2/12, "feet"),
  49384. name: "Front",
  49385. image: {
  49386. source: "./media/characters/nox/front.svg",
  49387. extra: 1917/1830,
  49388. bottom: 74/1991
  49389. }
  49390. },
  49391. back: {
  49392. height: math.unit(6 + 2/12, "feet"),
  49393. name: "Back",
  49394. image: {
  49395. source: "./media/characters/nox/back.svg",
  49396. extra: 1896/1815,
  49397. bottom: 21/1917
  49398. }
  49399. },
  49400. head: {
  49401. height: math.unit(1.1, "feet"),
  49402. name: "Head",
  49403. image: {
  49404. source: "./media/characters/nox/head.svg",
  49405. extra: 874/704,
  49406. bottom: 0/874
  49407. }
  49408. },
  49409. tattoo: {
  49410. height: math.unit(0.729, "feet"),
  49411. name: "Tattoo",
  49412. image: {
  49413. source: "./media/characters/nox/tattoo.svg"
  49414. }
  49415. },
  49416. },
  49417. [
  49418. {
  49419. name: "Normal",
  49420. height: math.unit(6 + 2/12, "feet")
  49421. },
  49422. {
  49423. name: "Gigamacro",
  49424. height: math.unit(2, "earths"),
  49425. default: true
  49426. },
  49427. {
  49428. name: "Cosmic",
  49429. height: math.unit(867, "yottameters")
  49430. },
  49431. ]
  49432. ))
  49433. characterMakers.push(() => makeCharacter(
  49434. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49435. {
  49436. front: {
  49437. height: math.unit(6, "feet"),
  49438. weight: math.unit(150, "lb"),
  49439. name: "Front",
  49440. image: {
  49441. source: "./media/characters/caspian/front.svg",
  49442. extra: 1443/1359,
  49443. bottom: 0/1443
  49444. }
  49445. },
  49446. back: {
  49447. height: math.unit(6, "feet"),
  49448. weight: math.unit(150, "lb"),
  49449. name: "Back",
  49450. image: {
  49451. source: "./media/characters/caspian/back.svg",
  49452. extra: 1379/1309,
  49453. bottom: 0/1379
  49454. }
  49455. },
  49456. head: {
  49457. height: math.unit(0.9, "feet"),
  49458. name: "Head",
  49459. image: {
  49460. source: "./media/characters/caspian/head.svg",
  49461. extra: 692/492,
  49462. bottom: 0/692
  49463. }
  49464. },
  49465. headAlt: {
  49466. height: math.unit(0.95, "feet"),
  49467. name: "Head (Alt)",
  49468. image: {
  49469. source: "./media/characters/caspian/head-alt.svg",
  49470. extra: 668/508,
  49471. bottom: 0/668
  49472. }
  49473. },
  49474. hand: {
  49475. height: math.unit(0.8, "feet"),
  49476. name: "Hand",
  49477. image: {
  49478. source: "./media/characters/caspian/hand.svg"
  49479. }
  49480. },
  49481. paw: {
  49482. height: math.unit(0.95, "feet"),
  49483. name: "Paw",
  49484. image: {
  49485. source: "./media/characters/caspian/paw.svg"
  49486. }
  49487. },
  49488. },
  49489. [
  49490. {
  49491. name: "Normal",
  49492. height: math.unit(162, "feet"),
  49493. default: true
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49499. {
  49500. front: {
  49501. height: math.unit(6, "feet"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/myra-aisling/front.svg",
  49505. extra: 1268/1166,
  49506. bottom: 73/1341
  49507. }
  49508. },
  49509. back: {
  49510. height: math.unit(6, "feet"),
  49511. name: "Back",
  49512. image: {
  49513. source: "./media/characters/myra-aisling/back.svg",
  49514. extra: 1249/1149,
  49515. bottom: 79/1328
  49516. }
  49517. },
  49518. dressed: {
  49519. height: math.unit(6, "feet"),
  49520. name: "Dressed",
  49521. image: {
  49522. source: "./media/characters/myra-aisling/dressed.svg",
  49523. extra: 1290/1189,
  49524. bottom: 47/1337
  49525. }
  49526. },
  49527. hand: {
  49528. height: math.unit(1.1, "feet"),
  49529. name: "Hand",
  49530. image: {
  49531. source: "./media/characters/myra-aisling/hand.svg"
  49532. }
  49533. },
  49534. paw: {
  49535. height: math.unit(1.23, "feet"),
  49536. name: "Paw",
  49537. image: {
  49538. source: "./media/characters/myra-aisling/paw.svg"
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Normal",
  49545. height: math.unit(160, "feet"),
  49546. default: true
  49547. },
  49548. ]
  49549. ))
  49550. characterMakers.push(() => makeCharacter(
  49551. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49552. {
  49553. front: {
  49554. height: math.unit(6, "feet"),
  49555. name: "Front",
  49556. image: {
  49557. source: "./media/characters/tenley-sidero/front.svg",
  49558. extra: 1365/1276,
  49559. bottom: 47/1412
  49560. }
  49561. },
  49562. back: {
  49563. height: math.unit(6, "feet"),
  49564. name: "Back",
  49565. image: {
  49566. source: "./media/characters/tenley-sidero/back.svg",
  49567. extra: 1383/1283,
  49568. bottom: 35/1418
  49569. }
  49570. },
  49571. dressed: {
  49572. height: math.unit(6, "feet"),
  49573. name: "Dressed",
  49574. image: {
  49575. source: "./media/characters/tenley-sidero/dressed.svg",
  49576. extra: 1364/1275,
  49577. bottom: 42/1406
  49578. }
  49579. },
  49580. head: {
  49581. height: math.unit(1.47, "feet"),
  49582. name: "Head",
  49583. image: {
  49584. source: "./media/characters/tenley-sidero/head.svg",
  49585. extra: 610/490,
  49586. bottom: 0/610
  49587. }
  49588. },
  49589. },
  49590. [
  49591. {
  49592. name: "Normal",
  49593. height: math.unit(154, "feet"),
  49594. default: true
  49595. },
  49596. ]
  49597. ))
  49598. characterMakers.push(() => makeCharacter(
  49599. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49600. {
  49601. front: {
  49602. height: math.unit(5, "inches"),
  49603. name: "Front",
  49604. image: {
  49605. source: "./media/characters/mallory/front.svg",
  49606. extra: 1919/1678,
  49607. bottom: 29/1948
  49608. }
  49609. },
  49610. hand: {
  49611. height: math.unit(0.73, "inches"),
  49612. name: "Hand",
  49613. image: {
  49614. source: "./media/characters/mallory/hand.svg"
  49615. }
  49616. },
  49617. paw: {
  49618. height: math.unit(0.68, "inches"),
  49619. name: "Paw",
  49620. image: {
  49621. source: "./media/characters/mallory/paw.svg"
  49622. }
  49623. },
  49624. },
  49625. [
  49626. {
  49627. name: "Small",
  49628. height: math.unit(5, "inches"),
  49629. default: true
  49630. },
  49631. ]
  49632. ))
  49633. characterMakers.push(() => makeCharacter(
  49634. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49635. {
  49636. naked: {
  49637. height: math.unit(6, "feet"),
  49638. name: "Naked",
  49639. image: {
  49640. source: "./media/characters/mab/naked.svg",
  49641. extra: 1855/1757,
  49642. bottom: 208/2063
  49643. }
  49644. },
  49645. outside: {
  49646. height: math.unit(6, "feet"),
  49647. name: "Outside",
  49648. image: {
  49649. source: "./media/characters/mab/outside.svg",
  49650. extra: 1855/1757,
  49651. bottom: 208/2063
  49652. }
  49653. },
  49654. party: {
  49655. height: math.unit(6, "feet"),
  49656. name: "Party",
  49657. image: {
  49658. source: "./media/characters/mab/party.svg",
  49659. extra: 1855/1757,
  49660. bottom: 208/2063
  49661. }
  49662. },
  49663. },
  49664. [
  49665. {
  49666. name: "Normal",
  49667. height: math.unit(165, "feet"),
  49668. default: true
  49669. },
  49670. ]
  49671. ))
  49672. characterMakers.push(() => makeCharacter(
  49673. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49674. {
  49675. feral: {
  49676. height: math.unit(12, "feet"),
  49677. weight: math.unit(20000, "lb"),
  49678. name: "Side",
  49679. image: {
  49680. source: "./media/characters/winter/feral.svg",
  49681. extra: 1286/943,
  49682. bottom: 112/1398
  49683. },
  49684. form: "feral",
  49685. default: true
  49686. },
  49687. feralNsfw: {
  49688. height: math.unit(12, "feet"),
  49689. weight: math.unit(20000, "lb"),
  49690. name: "Side (NSFW)",
  49691. image: {
  49692. source: "./media/characters/winter/feral-nsfw.svg",
  49693. extra: 1286/943,
  49694. bottom: 112/1398
  49695. },
  49696. form: "feral"
  49697. },
  49698. dick: {
  49699. height: math.unit(3.79, "feet"),
  49700. name: "Dick",
  49701. image: {
  49702. source: "./media/characters/winter/dick.svg"
  49703. },
  49704. form: "feral"
  49705. },
  49706. anthro: {
  49707. height: math.unit(12, "feet"),
  49708. weight: math.unit(10, "tons"),
  49709. name: "Anthro",
  49710. image: {
  49711. source: "./media/characters/winter/anthro.svg",
  49712. extra: 1701/1553,
  49713. bottom: 64/1765
  49714. },
  49715. form: "anthro",
  49716. default: true
  49717. },
  49718. },
  49719. [
  49720. {
  49721. name: "Big",
  49722. height: math.unit(12, "feet"),
  49723. default: true,
  49724. form: "feral"
  49725. },
  49726. {
  49727. name: "Big",
  49728. height: math.unit(12, "feet"),
  49729. default: true,
  49730. form: "anthro"
  49731. },
  49732. ],
  49733. {
  49734. "feral": {
  49735. name: "Feral",
  49736. default: true
  49737. },
  49738. "anthro": {
  49739. name: "Anthro"
  49740. }
  49741. }
  49742. ))
  49743. characterMakers.push(() => makeCharacter(
  49744. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49745. {
  49746. front: {
  49747. height: math.unit(4.1, "inches"),
  49748. name: "Front",
  49749. image: {
  49750. source: "./media/characters/alto/front.svg",
  49751. extra: 736/627,
  49752. bottom: 90/826
  49753. }
  49754. },
  49755. },
  49756. [
  49757. {
  49758. name: "Normal",
  49759. height: math.unit(4.1, "inches"),
  49760. default: true
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49766. {
  49767. sitting: {
  49768. height: math.unit(3, "feet"),
  49769. name: "Sitting",
  49770. image: {
  49771. source: "./media/characters/ratstrid-v/sitting.svg",
  49772. extra: 355/310,
  49773. bottom: 136/491
  49774. }
  49775. },
  49776. },
  49777. [
  49778. {
  49779. name: "Normal",
  49780. height: math.unit(3, "feet"),
  49781. default: true
  49782. },
  49783. ]
  49784. ))
  49785. characterMakers.push(() => makeCharacter(
  49786. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49787. {
  49788. back: {
  49789. height: math.unit(6, "feet"),
  49790. weight: math.unit(350, "lb"),
  49791. name: "Back",
  49792. image: {
  49793. source: "./media/characters/siz/back.svg",
  49794. extra: 1449/1274,
  49795. bottom: 13/1462
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Over-Overcompressed",
  49802. height: math.unit(8, "feet")
  49803. },
  49804. {
  49805. name: "Overcompressed",
  49806. height: math.unit(32, "feet")
  49807. },
  49808. {
  49809. name: "Compressed",
  49810. height: math.unit(128, "feet"),
  49811. default: true
  49812. },
  49813. {
  49814. name: "Half-Compressed",
  49815. height: math.unit(512, "feet")
  49816. },
  49817. {
  49818. name: "Quarter-Compressed",
  49819. height: math.unit(2048, "feet")
  49820. },
  49821. {
  49822. name: "Uncompressed?",
  49823. height: math.unit(8192, "feet")
  49824. },
  49825. ]
  49826. ))
  49827. characterMakers.push(() => makeCharacter(
  49828. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49829. {
  49830. front: {
  49831. height: math.unit(5 + 9/12, "feet"),
  49832. weight: math.unit(150, "lb"),
  49833. name: "Front",
  49834. image: {
  49835. source: "./media/characters/ven/front.svg",
  49836. extra: 1372/1320,
  49837. bottom: 73/1445
  49838. }
  49839. },
  49840. side: {
  49841. height: math.unit(5 + 9/12, "feet"),
  49842. weight: math.unit(1150, "lb"),
  49843. name: "Side",
  49844. image: {
  49845. source: "./media/characters/ven/side.svg",
  49846. extra: 1119/1070,
  49847. bottom: 42/1161
  49848. },
  49849. default: true
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Normal",
  49855. height: math.unit(5 + 9/12, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(12, "feet"),
  49865. weight: math.unit(1000, "kg"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/maple/front.svg",
  49869. extra: 1193/1081,
  49870. bottom: 22/1215
  49871. }
  49872. },
  49873. },
  49874. [
  49875. {
  49876. name: "Compressed",
  49877. height: math.unit(7, "feet")
  49878. },
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(12, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(9, "feet"),
  49891. weight: math.unit(1500, "lb"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/nora/front.svg",
  49895. extra: 1348/1286,
  49896. bottom: 218/1566
  49897. }
  49898. },
  49899. erect: {
  49900. height: math.unit(9, "feet"),
  49901. weight: math.unit(11500, "lb"),
  49902. name: "Erect",
  49903. image: {
  49904. source: "./media/characters/nora/erect.svg",
  49905. extra: 1488/1433,
  49906. bottom: 133/1621
  49907. }
  49908. },
  49909. },
  49910. [
  49911. {
  49912. name: "Normal",
  49913. height: math.unit(9, "feet"),
  49914. default: true
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49920. {
  49921. front: {
  49922. height: math.unit(25, "feet"),
  49923. weight: math.unit(27500, "lb"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/north-caudin/front.svg",
  49927. extra: 1184/1082,
  49928. bottom: 23/1207
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Compressed",
  49935. height: math.unit(10, "feet")
  49936. },
  49937. {
  49938. name: "Normal",
  49939. height: math.unit(25, "feet"),
  49940. default: true
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49946. {
  49947. front: {
  49948. height: math.unit(9, "feet"),
  49949. weight: math.unit(1250, "lb"),
  49950. name: "Front",
  49951. image: {
  49952. source: "./media/characters/merrian/front.svg",
  49953. extra: 2393/2304,
  49954. bottom: 40/2433
  49955. }
  49956. },
  49957. },
  49958. [
  49959. {
  49960. name: "Normal",
  49961. height: math.unit(9, "feet"),
  49962. default: true
  49963. },
  49964. ]
  49965. ))
  49966. characterMakers.push(() => makeCharacter(
  49967. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49968. {
  49969. front: {
  49970. height: math.unit(9, "feet"),
  49971. weight: math.unit(1000, "lb"),
  49972. name: "Front",
  49973. image: {
  49974. source: "./media/characters/hazel/front.svg",
  49975. extra: 2351/2298,
  49976. bottom: 38/2389
  49977. }
  49978. },
  49979. },
  49980. [
  49981. {
  49982. name: "Normal",
  49983. height: math.unit(9, "feet"),
  49984. default: true
  49985. },
  49986. ]
  49987. ))
  49988. characterMakers.push(() => makeCharacter(
  49989. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49990. {
  49991. front: {
  49992. height: math.unit(13, "feet"),
  49993. weight: math.unit(3200, "lb"),
  49994. name: "Front",
  49995. image: {
  49996. source: "./media/characters/emma/front.svg",
  49997. extra: 2263/2029,
  49998. bottom: 68/2331
  49999. }
  50000. },
  50001. },
  50002. [
  50003. {
  50004. name: "Normal",
  50005. height: math.unit(13, "feet"),
  50006. default: true
  50007. },
  50008. ]
  50009. ))
  50010. characterMakers.push(() => makeCharacter(
  50011. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50012. {
  50013. front: {
  50014. height: math.unit(11 + 9/12, "feet"),
  50015. weight: math.unit(2500, "lb"),
  50016. name: "Front",
  50017. image: {
  50018. source: "./media/characters/ilumina/front.svg",
  50019. extra: 2248/2209,
  50020. bottom: 164/2412
  50021. }
  50022. },
  50023. },
  50024. [
  50025. {
  50026. name: "Normal",
  50027. height: math.unit(11 + 9/12, "feet"),
  50028. default: true
  50029. },
  50030. ]
  50031. ))
  50032. characterMakers.push(() => makeCharacter(
  50033. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50034. {
  50035. front: {
  50036. height: math.unit(8 + 10/12, "feet"),
  50037. weight: math.unit(1350, "lb"),
  50038. name: "Front",
  50039. image: {
  50040. source: "./media/characters/moonshine/front.svg",
  50041. extra: 2395/2288,
  50042. bottom: 40/2435
  50043. }
  50044. },
  50045. },
  50046. [
  50047. {
  50048. name: "Normal",
  50049. height: math.unit(8 + 10/12, "feet"),
  50050. default: true
  50051. },
  50052. ]
  50053. ))
  50054. characterMakers.push(() => makeCharacter(
  50055. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50056. {
  50057. front: {
  50058. height: math.unit(14, "feet"),
  50059. weight: math.unit(3400, "lb"),
  50060. name: "Front",
  50061. image: {
  50062. source: "./media/characters/aletia/front.svg",
  50063. extra: 1185/1052,
  50064. bottom: 21/1206
  50065. }
  50066. },
  50067. },
  50068. [
  50069. {
  50070. name: "Compressed",
  50071. height: math.unit(8, "feet")
  50072. },
  50073. {
  50074. name: "Normal",
  50075. height: math.unit(14, "feet"),
  50076. default: true
  50077. },
  50078. ]
  50079. ))
  50080. characterMakers.push(() => makeCharacter(
  50081. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50082. {
  50083. front: {
  50084. height: math.unit(17, "feet"),
  50085. weight: math.unit(6500, "lb"),
  50086. name: "Front",
  50087. image: {
  50088. source: "./media/characters/deidra/front.svg",
  50089. extra: 1201/1081,
  50090. bottom: 16/1217
  50091. }
  50092. },
  50093. },
  50094. [
  50095. {
  50096. name: "Compressed",
  50097. height: math.unit(9 + 6/12, "feet")
  50098. },
  50099. {
  50100. name: "Normal",
  50101. height: math.unit(17, "feet"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50108. {
  50109. front: {
  50110. height: math.unit(7 + 4/12, "feet"),
  50111. weight: math.unit(280, "lb"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/freki-yrmori/front.svg",
  50115. extra: 1286/1182,
  50116. bottom: 29/1315
  50117. }
  50118. },
  50119. maw: {
  50120. height: math.unit(0.9, "feet"),
  50121. name: "Maw",
  50122. image: {
  50123. source: "./media/characters/freki-yrmori/maw.svg"
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Normal",
  50130. height: math.unit(7 + 4/12, "feet"),
  50131. default: true
  50132. },
  50133. {
  50134. name: "Macro",
  50135. height: math.unit(38.5, "meters")
  50136. },
  50137. ]
  50138. ))
  50139. characterMakers.push(() => makeCharacter(
  50140. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50141. {
  50142. side: {
  50143. height: math.unit(47.2, "meters"),
  50144. weight: math.unit(10000, "tons"),
  50145. name: "Side",
  50146. image: {
  50147. source: "./media/characters/aetherios/side.svg",
  50148. extra: 2363/642,
  50149. bottom: 221/2584
  50150. }
  50151. },
  50152. top: {
  50153. height: math.unit(240, "meters"),
  50154. weight: math.unit(10000, "tons"),
  50155. name: "Top",
  50156. image: {
  50157. source: "./media/characters/aetherios/top.svg"
  50158. }
  50159. },
  50160. bottom: {
  50161. height: math.unit(240, "meters"),
  50162. weight: math.unit(10000, "tons"),
  50163. name: "Bottom",
  50164. image: {
  50165. source: "./media/characters/aetherios/bottom.svg"
  50166. }
  50167. },
  50168. head: {
  50169. height: math.unit(38.6, "meters"),
  50170. name: "Head",
  50171. image: {
  50172. source: "./media/characters/aetherios/head.svg",
  50173. extra: 1335/1112,
  50174. bottom: 0/1335
  50175. }
  50176. },
  50177. front: {
  50178. height: math.unit(29, "meters"),
  50179. name: "Front",
  50180. image: {
  50181. source: "./media/characters/aetherios/front.svg",
  50182. extra: 1266/953,
  50183. bottom: 158/1424
  50184. }
  50185. },
  50186. maw: {
  50187. height: math.unit(16.37, "meters"),
  50188. name: "Maw",
  50189. image: {
  50190. source: "./media/characters/aetherios/maw.svg",
  50191. extra: 748/637,
  50192. bottom: 0/748
  50193. },
  50194. extraAttributes: {
  50195. preyCapacity: {
  50196. name: "Capacity",
  50197. power: 3,
  50198. type: "volume",
  50199. base: math.unit(1000, "people")
  50200. },
  50201. tongueSize: {
  50202. name: "Tongue Size",
  50203. power: 2,
  50204. type: "area",
  50205. base: math.unit(21, "m^2")
  50206. }
  50207. }
  50208. },
  50209. forepaw: {
  50210. height: math.unit(18, "meters"),
  50211. name: "Forepaw",
  50212. image: {
  50213. source: "./media/characters/aetherios/forepaw.svg"
  50214. }
  50215. },
  50216. hindpaw: {
  50217. height: math.unit(23, "meters"),
  50218. name: "Hindpaw",
  50219. image: {
  50220. source: "./media/characters/aetherios/hindpaw.svg"
  50221. }
  50222. },
  50223. genitals: {
  50224. height: math.unit(42, "meters"),
  50225. name: "Genitals",
  50226. image: {
  50227. source: "./media/characters/aetherios/genitals.svg"
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(47.2, "meters"),
  50235. default: true
  50236. },
  50237. {
  50238. name: "Macro",
  50239. height: math.unit(160, "meters")
  50240. },
  50241. {
  50242. name: "Mega",
  50243. height: math.unit(1.87, "km")
  50244. },
  50245. {
  50246. name: "Giga",
  50247. height: math.unit(40000, "km")
  50248. },
  50249. {
  50250. name: "Stellar",
  50251. height: math.unit(158000000, "km")
  50252. },
  50253. {
  50254. name: "Cosmic",
  50255. height: math.unit(9.46e12, "km")
  50256. },
  50257. ]
  50258. ))
  50259. characterMakers.push(() => makeCharacter(
  50260. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50261. {
  50262. front: {
  50263. height: math.unit(5 + 4/12, "feet"),
  50264. weight: math.unit(80, "lb"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/mizu-gieeg/front.svg",
  50268. extra: 850/709,
  50269. bottom: 52/902
  50270. }
  50271. },
  50272. back: {
  50273. height: math.unit(5 + 4/12, "feet"),
  50274. weight: math.unit(80, "lb"),
  50275. name: "Back",
  50276. image: {
  50277. source: "./media/characters/mizu-gieeg/back.svg",
  50278. extra: 882/745,
  50279. bottom: 25/907
  50280. }
  50281. },
  50282. },
  50283. [
  50284. {
  50285. name: "Normal",
  50286. height: math.unit(5 + 4/12, "feet"),
  50287. default: true
  50288. },
  50289. ]
  50290. ))
  50291. characterMakers.push(() => makeCharacter(
  50292. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50293. {
  50294. front: {
  50295. height: math.unit(6, "feet"),
  50296. name: "Front",
  50297. image: {
  50298. source: "./media/characters/roselle-st-papier/front.svg",
  50299. extra: 1430/1280,
  50300. bottom: 37/1467
  50301. }
  50302. },
  50303. back: {
  50304. height: math.unit(6, "feet"),
  50305. name: "Back",
  50306. image: {
  50307. source: "./media/characters/roselle-st-papier/back.svg",
  50308. extra: 1491/1296,
  50309. bottom: 23/1514
  50310. }
  50311. },
  50312. ear: {
  50313. height: math.unit(1.26, "feet"),
  50314. name: "Ear",
  50315. image: {
  50316. source: "./media/characters/roselle-st-papier/ear.svg"
  50317. }
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(150, "feet"),
  50324. default: true
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50330. {
  50331. front: {
  50332. height: math.unit(1, "inches"),
  50333. name: "Front",
  50334. image: {
  50335. source: "./media/characters/valargent/front.svg",
  50336. extra: 1825/1694,
  50337. bottom: 62/1887
  50338. }
  50339. },
  50340. back: {
  50341. height: math.unit(1, "inches"),
  50342. name: "Back",
  50343. image: {
  50344. source: "./media/characters/valargent/back.svg",
  50345. extra: 1775/1682,
  50346. bottom: 88/1863
  50347. }
  50348. },
  50349. },
  50350. [
  50351. {
  50352. name: "Micro",
  50353. height: math.unit(1, "inch"),
  50354. default: true
  50355. },
  50356. ]
  50357. ))
  50358. characterMakers.push(() => makeCharacter(
  50359. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50360. {
  50361. front: {
  50362. height: math.unit(3.4, "meters"),
  50363. name: "Front",
  50364. image: {
  50365. source: "./media/characters/zarina/front.svg",
  50366. extra: 1733/1425,
  50367. bottom: 93/1826
  50368. }
  50369. },
  50370. squatting: {
  50371. height: math.unit(2.14, "meters"),
  50372. name: "Squatting",
  50373. image: {
  50374. source: "./media/characters/zarina/squatting.svg",
  50375. extra: 1073/788,
  50376. bottom: 63/1136
  50377. }
  50378. },
  50379. back: {
  50380. height: math.unit(2.14, "meters"),
  50381. name: "Back",
  50382. image: {
  50383. source: "./media/characters/zarina/back.svg",
  50384. extra: 1128/885,
  50385. bottom: 0/1128
  50386. }
  50387. },
  50388. },
  50389. [
  50390. {
  50391. name: "Normal",
  50392. height: math.unit(3.4, "meters"),
  50393. default: true
  50394. },
  50395. {
  50396. name: "Big",
  50397. height: math.unit(5, "meters")
  50398. },
  50399. {
  50400. name: "Macro",
  50401. height: math.unit(110, "meters")
  50402. },
  50403. ]
  50404. ))
  50405. characterMakers.push(() => makeCharacter(
  50406. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50407. {
  50408. front: {
  50409. height: math.unit(7, "feet"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/ventus-astro-fox/front.svg",
  50413. extra: 1792/1623,
  50414. bottom: 28/1820
  50415. }
  50416. },
  50417. back: {
  50418. height: math.unit(7, "feet"),
  50419. name: "Back",
  50420. image: {
  50421. source: "./media/characters/ventus-astro-fox/back.svg",
  50422. extra: 1789/1620,
  50423. bottom: 31/1820
  50424. }
  50425. },
  50426. outfit: {
  50427. height: math.unit(7, "feet"),
  50428. name: "Outfit",
  50429. image: {
  50430. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50431. extra: 1054/925,
  50432. bottom: 15/1069
  50433. }
  50434. },
  50435. head: {
  50436. height: math.unit(1.12, "feet"),
  50437. name: "Head",
  50438. image: {
  50439. source: "./media/characters/ventus-astro-fox/head.svg",
  50440. extra: 866/504,
  50441. bottom: 0/866
  50442. }
  50443. },
  50444. hand: {
  50445. height: math.unit(1, "feet"),
  50446. name: "Hand",
  50447. image: {
  50448. source: "./media/characters/ventus-astro-fox/hand.svg"
  50449. }
  50450. },
  50451. paw: {
  50452. height: math.unit(1.5, "feet"),
  50453. name: "Paw",
  50454. image: {
  50455. source: "./media/characters/ventus-astro-fox/paw.svg"
  50456. }
  50457. },
  50458. },
  50459. [
  50460. {
  50461. name: "Normal",
  50462. height: math.unit(7, "feet"),
  50463. default: true
  50464. },
  50465. {
  50466. name: "Macro",
  50467. height: math.unit(200, "feet")
  50468. },
  50469. {
  50470. name: "Cosmic",
  50471. height: math.unit(3, "universes")
  50472. },
  50473. ]
  50474. ))
  50475. characterMakers.push(() => makeCharacter(
  50476. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50477. {
  50478. front: {
  50479. height: math.unit(3, "meters"),
  50480. weight: math.unit(7000, "lb"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/core-t/front.svg",
  50484. extra: 5729/4941,
  50485. bottom: 1129/6858
  50486. }
  50487. },
  50488. },
  50489. [
  50490. {
  50491. name: "Big",
  50492. height: math.unit(3, "meters"),
  50493. default: true
  50494. },
  50495. ]
  50496. ))
  50497. characterMakers.push(() => makeCharacter(
  50498. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50499. {
  50500. normal: {
  50501. height: math.unit(6 + 6/12, "feet"),
  50502. weight: math.unit(275, "lb"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/cadbunny/normal.svg",
  50506. extra: 1129/947,
  50507. bottom: 93/1222
  50508. },
  50509. default: true,
  50510. form: "normal"
  50511. },
  50512. gigantamax: {
  50513. height: math.unit(26, "feet"),
  50514. weight: math.unit(16000, "lb"),
  50515. name: "Front",
  50516. image: {
  50517. source: "./media/characters/cadbunny/gigantamax.svg",
  50518. extra: 1133/944,
  50519. bottom: 90/1223
  50520. },
  50521. default: true,
  50522. form: "gigantamax"
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Normal",
  50528. height: math.unit(6 + 6/12, "feet"),
  50529. default: true,
  50530. form: "normal"
  50531. },
  50532. {
  50533. name: "Small",
  50534. height: math.unit(26, "feet"),
  50535. default: true,
  50536. form: "gigantamax"
  50537. },
  50538. {
  50539. name: "Large",
  50540. height: math.unit(78, "feet"),
  50541. form: "gigantamax"
  50542. },
  50543. ],
  50544. {
  50545. "normal": {
  50546. name: "Normal",
  50547. default: true
  50548. },
  50549. "gigantamax": {
  50550. name: "Gigantamax"
  50551. }
  50552. }
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50556. {
  50557. anthroFront: {
  50558. height: math.unit(8, "feet"),
  50559. weight: math.unit(300, "lb"),
  50560. name: "Front",
  50561. image: {
  50562. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50563. extra: 1272/1176,
  50564. bottom: 53/1325
  50565. },
  50566. form: "anthro",
  50567. default: true
  50568. },
  50569. feralSide: {
  50570. height: math.unit(4, "feet"),
  50571. weight: math.unit(250, "lb"),
  50572. name: "Side",
  50573. image: {
  50574. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50575. extra: 731/621,
  50576. bottom: 0/731
  50577. },
  50578. form: "feral",
  50579. default: true
  50580. },
  50581. },
  50582. [
  50583. {
  50584. name: "Regular",
  50585. height: math.unit(8, "feet"),
  50586. form: "anthro"
  50587. },
  50588. {
  50589. name: "Macro",
  50590. height: math.unit(250, "feet"),
  50591. form: "anthro",
  50592. default: true
  50593. },
  50594. {
  50595. name: "Regular",
  50596. height: math.unit(4, "feet"),
  50597. form: "feral"
  50598. },
  50599. {
  50600. name: "Macro",
  50601. height: math.unit(125, "feet"),
  50602. form: "feral",
  50603. default: true
  50604. },
  50605. ],
  50606. {
  50607. "anthro": {
  50608. name: "Anthro",
  50609. default: true
  50610. },
  50611. "feral": {
  50612. name: "Feral",
  50613. },
  50614. }
  50615. ))
  50616. characterMakers.push(() => makeCharacter(
  50617. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50618. {
  50619. front: {
  50620. height: math.unit(11 + 10/12, "feet"),
  50621. weight: math.unit(1587, "kg"),
  50622. name: "Front",
  50623. image: {
  50624. source: "./media/characters/maple-javira-dragon/front.svg",
  50625. extra: 1136/744,
  50626. bottom: 73/1209
  50627. }
  50628. },
  50629. side: {
  50630. height: math.unit(11 + 10/12, "feet"),
  50631. weight: math.unit(1587, "kg"),
  50632. name: "Side",
  50633. image: {
  50634. source: "./media/characters/maple-javira-dragon/side.svg",
  50635. extra: 712/505,
  50636. bottom: 17/729
  50637. }
  50638. },
  50639. head: {
  50640. height: math.unit(8.05, "feet"),
  50641. name: "Head",
  50642. image: {
  50643. source: "./media/characters/maple-javira-dragon/head.svg",
  50644. extra: 1420/1344,
  50645. bottom: 0/1420
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Normal",
  50652. height: math.unit(11 + 10/12, "feet"),
  50653. default: true
  50654. },
  50655. ]
  50656. ))
  50657. characterMakers.push(() => makeCharacter(
  50658. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50659. {
  50660. front: {
  50661. height: math.unit(117, "cm"),
  50662. weight: math.unit(50, "kg"),
  50663. name: "Front",
  50664. image: {
  50665. source: "./media/characters/sonia-wyverntail/front.svg",
  50666. extra: 708/592,
  50667. bottom: 25/733
  50668. }
  50669. },
  50670. },
  50671. [
  50672. {
  50673. name: "Normal",
  50674. height: math.unit(117, "cm"),
  50675. default: true
  50676. },
  50677. ]
  50678. ))
  50679. characterMakers.push(() => makeCharacter(
  50680. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50681. {
  50682. front: {
  50683. height: math.unit(6 + 5/12, "feet"),
  50684. name: "Front",
  50685. image: {
  50686. source: "./media/characters/micah/front.svg",
  50687. extra: 1758/1546,
  50688. bottom: 214/1972
  50689. }
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Normal",
  50695. height: math.unit(6 + 5/12, "feet"),
  50696. default: true
  50697. },
  50698. ]
  50699. ))
  50700. characterMakers.push(() => makeCharacter(
  50701. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50702. {
  50703. front: {
  50704. height: math.unit(5 + 10/12, "feet"),
  50705. weight: math.unit(220, "lb"),
  50706. name: "Front",
  50707. image: {
  50708. source: "./media/characters/zarya/front.svg",
  50709. extra: 593/572,
  50710. bottom: 50/643
  50711. }
  50712. },
  50713. back: {
  50714. height: math.unit(5 + 10/12, "feet"),
  50715. weight: math.unit(220, "lb"),
  50716. name: "Back",
  50717. image: {
  50718. source: "./media/characters/zarya/back.svg",
  50719. extra: 603/582,
  50720. bottom: 38/641
  50721. }
  50722. },
  50723. },
  50724. [
  50725. {
  50726. name: "Normal",
  50727. height: math.unit(5 + 10/12, "feet"),
  50728. default: true
  50729. },
  50730. ]
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50734. {
  50735. front: {
  50736. height: math.unit(7.5, "feet"),
  50737. name: "Front",
  50738. image: {
  50739. source: "./media/characters/sven-hatisson/front.svg",
  50740. extra: 917/857,
  50741. bottom: 42/959
  50742. }
  50743. },
  50744. back: {
  50745. height: math.unit(7.5, "feet"),
  50746. name: "Back",
  50747. image: {
  50748. source: "./media/characters/sven-hatisson/back.svg",
  50749. extra: 903/856,
  50750. bottom: 15/918
  50751. }
  50752. },
  50753. },
  50754. [
  50755. {
  50756. name: "Base Height",
  50757. height: math.unit(7.5, "feet")
  50758. },
  50759. {
  50760. name: "Usual Height",
  50761. height: math.unit(13.5, "feet"),
  50762. default: true
  50763. },
  50764. {
  50765. name: "Smaller Macro",
  50766. height: math.unit(85, "feet")
  50767. },
  50768. {
  50769. name: "Moderate Macro",
  50770. height: math.unit(320, "feet")
  50771. },
  50772. {
  50773. name: "Large Macro",
  50774. height: math.unit(1000, "feet")
  50775. },
  50776. {
  50777. name: "Largest Size",
  50778. height: math.unit(2, "miles")
  50779. },
  50780. ]
  50781. ))
  50782. characterMakers.push(() => makeCharacter(
  50783. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50784. {
  50785. side: {
  50786. height: math.unit(1.8, "meters"),
  50787. weight: math.unit(275, "kg"),
  50788. name: "Side",
  50789. image: {
  50790. source: "./media/characters/terra/side.svg",
  50791. extra: 1273/1147,
  50792. bottom: 0/1273
  50793. }
  50794. },
  50795. },
  50796. [
  50797. {
  50798. name: "Normal",
  50799. height: math.unit(16.2, "meters"),
  50800. default: true
  50801. },
  50802. ]
  50803. ))
  50804. characterMakers.push(() => makeCharacter(
  50805. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50806. {
  50807. borzoiFront: {
  50808. height: math.unit(6 + 9/12, "feet"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/rae/borzoi-front.svg",
  50812. extra: 1161/1098,
  50813. bottom: 31/1192
  50814. },
  50815. form: "borzoi",
  50816. default: true
  50817. },
  50818. werewolfFront: {
  50819. height: math.unit(8 + 7/12, "feet"),
  50820. name: "Front",
  50821. image: {
  50822. source: "./media/characters/rae/werewolf-front.svg",
  50823. extra: 1411/1334,
  50824. bottom: 127/1538
  50825. },
  50826. form: "werewolf",
  50827. default: true
  50828. },
  50829. },
  50830. [
  50831. {
  50832. name: "Normal",
  50833. height: math.unit(6 + 9/12, "feet"),
  50834. default: true,
  50835. form: "borzoi"
  50836. },
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(8 + 7/12, "feet"),
  50840. default: true,
  50841. form: "werewolf"
  50842. },
  50843. ],
  50844. {
  50845. "borzoi": {
  50846. name: "Borzoi",
  50847. default: true
  50848. },
  50849. "werewolf": {
  50850. name: "Werewolf",
  50851. },
  50852. }
  50853. ))
  50854. characterMakers.push(() => makeCharacter(
  50855. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50856. {
  50857. front: {
  50858. height: math.unit(8 + 7/12, "feet"),
  50859. weight: math.unit(482, "lb"),
  50860. name: "Front",
  50861. image: {
  50862. source: "./media/characters/kit/front.svg",
  50863. extra: 1247/1103,
  50864. bottom: 41/1288
  50865. }
  50866. },
  50867. back: {
  50868. height: math.unit(8 + 7/12, "feet"),
  50869. weight: math.unit(482, "lb"),
  50870. name: "Back",
  50871. image: {
  50872. source: "./media/characters/kit/back.svg",
  50873. extra: 1252/1123,
  50874. bottom: 21/1273
  50875. }
  50876. },
  50877. paw: {
  50878. height: math.unit(1.46, "feet"),
  50879. name: "Paw",
  50880. image: {
  50881. source: "./media/characters/kit/paw.svg"
  50882. }
  50883. },
  50884. },
  50885. [
  50886. {
  50887. name: "Normal",
  50888. height: math.unit(2.61, "meters"),
  50889. default: true
  50890. },
  50891. {
  50892. name: "\"Tall\"",
  50893. height: math.unit(8.21, "meters")
  50894. },
  50895. {
  50896. name: "Tall",
  50897. height: math.unit(19.6, "meters")
  50898. },
  50899. {
  50900. name: "Very Tall",
  50901. height: math.unit(57.91, "meters")
  50902. },
  50903. {
  50904. name: "Semi-Macro",
  50905. height: math.unit(138.64, "meters")
  50906. },
  50907. {
  50908. name: "Macro",
  50909. height: math.unit(831.99, "meters")
  50910. },
  50911. {
  50912. name: "EX-Macro",
  50913. height: math.unit(96451121, "meters")
  50914. },
  50915. {
  50916. name: "S1-Omnipotent",
  50917. height: math.unit(4.42074e+9, "meters")
  50918. },
  50919. {
  50920. name: "S2-Omnipotent",
  50921. height: math.unit(9.42074e+17, "meters")
  50922. },
  50923. {
  50924. name: "Omnipotent",
  50925. height: math.unit(4.23112e+24, "meters")
  50926. },
  50927. {
  50928. name: "Hypergod",
  50929. height: math.unit(5.05176e+27, "meters")
  50930. },
  50931. {
  50932. name: "Hypergod-EX",
  50933. height: math.unit(9.45532e+49, "meters")
  50934. },
  50935. {
  50936. name: "Hypergod-SP",
  50937. height: math.unit(9.45532e+195, "meters")
  50938. },
  50939. ]
  50940. ))
  50941. characterMakers.push(() => makeCharacter(
  50942. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50943. {
  50944. side: {
  50945. height: math.unit(0.6, "meters"),
  50946. weight: math.unit(24, "kg"),
  50947. name: "Side",
  50948. image: {
  50949. source: "./media/characters/celeste/side.svg",
  50950. extra: 810/517,
  50951. bottom: 53/863
  50952. }
  50953. },
  50954. },
  50955. [
  50956. {
  50957. name: "Velociraptor",
  50958. height: math.unit(0.6, "meters"),
  50959. default: true
  50960. },
  50961. {
  50962. name: "Utahraptor",
  50963. height: math.unit(1.8, "meters")
  50964. },
  50965. {
  50966. name: "Gallimimus",
  50967. height: math.unit(4.0, "meters")
  50968. },
  50969. {
  50970. name: "Large",
  50971. height: math.unit(20, "meters")
  50972. },
  50973. {
  50974. name: "Planetary",
  50975. height: math.unit(50, "megameters")
  50976. },
  50977. {
  50978. name: "Stellar",
  50979. height: math.unit(1.5, "gigameters")
  50980. },
  50981. {
  50982. name: "Galactic",
  50983. height: math.unit(100, "exameters")
  50984. },
  50985. ]
  50986. ))
  50987. characterMakers.push(() => makeCharacter(
  50988. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50989. {
  50990. front: {
  50991. height: math.unit(6, "feet"),
  50992. weight: math.unit(210, "lb"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/glacia/front.svg",
  50996. extra: 958/901,
  50997. bottom: 45/1003
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Macro",
  51004. height: math.unit(1000, "meters"),
  51005. default: true
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51011. {
  51012. front: {
  51013. height: math.unit(4, "meters"),
  51014. name: "Front",
  51015. image: {
  51016. source: "./media/characters/giri/front.svg",
  51017. extra: 966/894,
  51018. bottom: 21/987
  51019. }
  51020. },
  51021. },
  51022. [
  51023. {
  51024. name: "Normal",
  51025. height: math.unit(4, "meters"),
  51026. default: true
  51027. },
  51028. ]
  51029. ))
  51030. characterMakers.push(() => makeCharacter(
  51031. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51032. {
  51033. back: {
  51034. height: math.unit(4, "feet"),
  51035. weight: math.unit(37, "lb"),
  51036. name: "Back",
  51037. image: {
  51038. source: "./media/characters/tin/back.svg",
  51039. extra: 845/780,
  51040. bottom: 28/873
  51041. }
  51042. },
  51043. },
  51044. [
  51045. {
  51046. name: "Normal",
  51047. height: math.unit(4, "feet"),
  51048. default: true
  51049. },
  51050. ]
  51051. ))
  51052. characterMakers.push(() => makeCharacter(
  51053. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51054. {
  51055. front: {
  51056. height: math.unit(25, "feet"),
  51057. name: "Front",
  51058. image: {
  51059. source: "./media/characters/cadenza-vivace/front.svg",
  51060. extra: 1842/1578,
  51061. bottom: 30/1872
  51062. }
  51063. },
  51064. },
  51065. [
  51066. {
  51067. name: "Macro",
  51068. height: math.unit(25, "feet"),
  51069. default: true
  51070. },
  51071. ]
  51072. ))
  51073. characterMakers.push(() => makeCharacter(
  51074. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51075. {
  51076. front: {
  51077. height: math.unit(10, "feet"),
  51078. weight: math.unit(625, "kg"),
  51079. name: "Front",
  51080. image: {
  51081. source: "./media/characters/zain/front.svg",
  51082. extra: 1682/1498,
  51083. bottom: 223/1905
  51084. }
  51085. },
  51086. back: {
  51087. height: math.unit(10, "feet"),
  51088. weight: math.unit(625, "kg"),
  51089. name: "Back",
  51090. image: {
  51091. source: "./media/characters/zain/back.svg",
  51092. extra: 1814/1657,
  51093. bottom: 152/1966
  51094. }
  51095. },
  51096. head: {
  51097. height: math.unit(10, "feet"),
  51098. weight: math.unit(625, "kg"),
  51099. name: "Head",
  51100. image: {
  51101. source: "./media/characters/zain/head.svg",
  51102. extra: 1059/762,
  51103. bottom: 0/1059
  51104. }
  51105. },
  51106. },
  51107. [
  51108. {
  51109. name: "Normal",
  51110. height: math.unit(10, "feet"),
  51111. default: true
  51112. },
  51113. ]
  51114. ))
  51115. characterMakers.push(() => makeCharacter(
  51116. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51117. {
  51118. front: {
  51119. height: math.unit(6 + 5/12, "feet"),
  51120. weight: math.unit(750, "lb"),
  51121. name: "Front",
  51122. image: {
  51123. source: "./media/characters/ruchex/front.svg",
  51124. extra: 877/820,
  51125. bottom: 17/894
  51126. },
  51127. extraAttributes: {
  51128. "width": {
  51129. name: "Width",
  51130. power: 1,
  51131. type: "length",
  51132. base: math.unit(4.757, "feet")
  51133. },
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Normal",
  51140. height: math.unit(6 + 5/12, "feet"),
  51141. default: true
  51142. },
  51143. ]
  51144. ))
  51145. characterMakers.push(() => makeCharacter(
  51146. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51147. {
  51148. dressedFront: {
  51149. height: math.unit(191, "cm"),
  51150. weight: math.unit(80, "kg"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/buster/dressed-front.svg",
  51154. extra: 1022/973,
  51155. bottom: 69/1091
  51156. }
  51157. },
  51158. dressedBack: {
  51159. height: math.unit(191, "cm"),
  51160. weight: math.unit(80, "kg"),
  51161. name: "Back",
  51162. image: {
  51163. source: "./media/characters/buster/dressed-back.svg",
  51164. extra: 1018/970,
  51165. bottom: 55/1073
  51166. }
  51167. },
  51168. nudeFront: {
  51169. height: math.unit(191, "cm"),
  51170. weight: math.unit(80, "kg"),
  51171. name: "Front (Nude)",
  51172. image: {
  51173. source: "./media/characters/buster/nude-front.svg",
  51174. extra: 1022/973,
  51175. bottom: 69/1091
  51176. }
  51177. },
  51178. nudeBack: {
  51179. height: math.unit(191, "cm"),
  51180. weight: math.unit(80, "kg"),
  51181. name: "Back (Nude)",
  51182. image: {
  51183. source: "./media/characters/buster/nude-back.svg",
  51184. extra: 1018/970,
  51185. bottom: 55/1073
  51186. }
  51187. },
  51188. dick: {
  51189. height: math.unit(2.59, "feet"),
  51190. name: "Dick",
  51191. image: {
  51192. source: "./media/characters/buster/dick.svg"
  51193. }
  51194. },
  51195. ass: {
  51196. height: math.unit(1.2, "feet"),
  51197. name: "Ass",
  51198. image: {
  51199. source: "./media/characters/buster/ass.svg"
  51200. }
  51201. },
  51202. },
  51203. [
  51204. {
  51205. name: "Normal",
  51206. height: math.unit(191, "cm"),
  51207. default: true
  51208. },
  51209. ]
  51210. ))
  51211. characterMakers.push(() => makeCharacter(
  51212. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51213. {
  51214. side: {
  51215. height: math.unit(8.1, "feet"),
  51216. weight: math.unit(3500, "lb"),
  51217. name: "Side",
  51218. image: {
  51219. source: "./media/characters/sonya/side.svg",
  51220. extra: 1730/1317,
  51221. bottom: 86/1816
  51222. }
  51223. },
  51224. },
  51225. [
  51226. {
  51227. name: "Normal",
  51228. height: math.unit(8.1, "feet"),
  51229. default: true
  51230. },
  51231. ]
  51232. ))
  51233. characterMakers.push(() => makeCharacter(
  51234. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51235. {
  51236. front: {
  51237. height: math.unit(6, "feet"),
  51238. weight: math.unit(150, "lb"),
  51239. name: "Front",
  51240. image: {
  51241. source: "./media/characters/cadence-andrysiak/front.svg",
  51242. extra: 1164/1121,
  51243. bottom: 60/1224
  51244. }
  51245. },
  51246. back: {
  51247. height: math.unit(6, "feet"),
  51248. weight: math.unit(150, "lb"),
  51249. name: "Back",
  51250. image: {
  51251. source: "./media/characters/cadence-andrysiak/back.svg",
  51252. extra: 1200/1165,
  51253. bottom: 9/1209
  51254. }
  51255. },
  51256. dressed: {
  51257. height: math.unit(6, "feet"),
  51258. weight: math.unit(150, "lb"),
  51259. name: "Dressed",
  51260. image: {
  51261. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51262. extra: 1164/1121,
  51263. bottom: 60/1224
  51264. }
  51265. },
  51266. },
  51267. [
  51268. {
  51269. name: "Micro",
  51270. height: math.unit(1, "mm")
  51271. },
  51272. {
  51273. name: "Normal",
  51274. height: math.unit(6, "feet"),
  51275. default: true
  51276. },
  51277. ]
  51278. ))
  51279. characterMakers.push(() => makeCharacter(
  51280. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51281. {
  51282. front: {
  51283. height: math.unit(60, "inches"),
  51284. weight: math.unit(16, "lb"),
  51285. preyCapacity: math.unit(80, "liters"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/penny-lynx/front.svg",
  51289. extra: 1959/1769,
  51290. bottom: 49/2008
  51291. }
  51292. },
  51293. },
  51294. [
  51295. {
  51296. name: "Nokia",
  51297. height: math.unit(2, "inches")
  51298. },
  51299. {
  51300. name: "Desktop",
  51301. height: math.unit(24, "inches")
  51302. },
  51303. {
  51304. name: "TV",
  51305. height: math.unit(60, "inches")
  51306. },
  51307. {
  51308. name: "Jumbotron",
  51309. height: math.unit(12, "feet")
  51310. },
  51311. {
  51312. name: "Billboard",
  51313. height: math.unit(48, "feet"),
  51314. default: true
  51315. },
  51316. {
  51317. name: "IMAX",
  51318. height: math.unit(96, "feet")
  51319. },
  51320. {
  51321. name: "SINGULARITY",
  51322. height: math.unit(864938, "miles")
  51323. },
  51324. ]
  51325. ))
  51326. characterMakers.push(() => makeCharacter(
  51327. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51328. {
  51329. front: {
  51330. height: math.unit(5 + 4/12, "feet"),
  51331. weight: math.unit(230, "lb"),
  51332. name: "Front",
  51333. image: {
  51334. source: "./media/characters/sukebe/front.svg",
  51335. extra: 2130/2038,
  51336. bottom: 90/2220
  51337. }
  51338. },
  51339. back: {
  51340. height: math.unit(3.48, "feet"),
  51341. weight: math.unit(230, "lb"),
  51342. name: "Back",
  51343. image: {
  51344. source: "./media/characters/sukebe/back.svg",
  51345. extra: 1670/1604,
  51346. bottom: 0/1670
  51347. }
  51348. },
  51349. },
  51350. [
  51351. {
  51352. name: "Normal",
  51353. height: math.unit(5 + 4/12, "feet"),
  51354. default: true
  51355. },
  51356. ]
  51357. ))
  51358. characterMakers.push(() => makeCharacter(
  51359. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51360. {
  51361. front: {
  51362. height: math.unit(6, "feet"),
  51363. name: "Front",
  51364. image: {
  51365. source: "./media/characters/nylla/front.svg",
  51366. extra: 1868/1699,
  51367. bottom: 97/1965
  51368. }
  51369. },
  51370. back: {
  51371. height: math.unit(6, "feet"),
  51372. name: "Back",
  51373. image: {
  51374. source: "./media/characters/nylla/back.svg",
  51375. extra: 1889/1712,
  51376. bottom: 93/1982
  51377. }
  51378. },
  51379. frontNsfw: {
  51380. height: math.unit(6, "feet"),
  51381. name: "Front (NSFW)",
  51382. image: {
  51383. source: "./media/characters/nylla/front-nsfw.svg",
  51384. extra: 1868/1699,
  51385. bottom: 97/1965
  51386. },
  51387. extraAttributes: {
  51388. "dickLength": {
  51389. name: "Dick Length",
  51390. power: 1,
  51391. type: "length",
  51392. base: math.unit(1.4, "feet")
  51393. },
  51394. "cumVolume": {
  51395. name: "Cum Volume",
  51396. power: 3,
  51397. type: "volume",
  51398. base: math.unit(100, "mL")
  51399. },
  51400. }
  51401. },
  51402. backNsfw: {
  51403. height: math.unit(6, "feet"),
  51404. name: "Back (NSFW)",
  51405. image: {
  51406. source: "./media/characters/nylla/back-nsfw.svg",
  51407. extra: 1889/1712,
  51408. bottom: 93/1982
  51409. }
  51410. },
  51411. maw: {
  51412. height: math.unit(2.10, "feet"),
  51413. name: "Maw",
  51414. image: {
  51415. source: "./media/characters/nylla/maw.svg"
  51416. }
  51417. },
  51418. paws: {
  51419. height: math.unit(2.06, "feet"),
  51420. name: "Paws",
  51421. image: {
  51422. source: "./media/characters/nylla/paws.svg"
  51423. }
  51424. },
  51425. muzzle: {
  51426. height: math.unit(0.61, "feet"),
  51427. name: "Muzzle",
  51428. image: {
  51429. source: "./media/characters/nylla/muzzle.svg"
  51430. }
  51431. },
  51432. sheath: {
  51433. height: math.unit(1.305, "feet"),
  51434. name: "Sheath",
  51435. image: {
  51436. source: "./media/characters/nylla/sheath.svg"
  51437. }
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Micro",
  51443. height: math.unit(7.5, "inches")
  51444. },
  51445. {
  51446. name: "Normal",
  51447. height: math.unit(7, "feet"),
  51448. default: true
  51449. },
  51450. {
  51451. name: "Macro",
  51452. height: math.unit(60, "feet")
  51453. },
  51454. {
  51455. name: "Mega",
  51456. height: math.unit(200, "feet")
  51457. },
  51458. ]
  51459. ))
  51460. characterMakers.push(() => makeCharacter(
  51461. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51462. {
  51463. front: {
  51464. height: math.unit(10, "feet"),
  51465. weight: math.unit(2300, "lb"),
  51466. name: "Front",
  51467. image: {
  51468. source: "./media/characters/hunt3r/front.svg",
  51469. extra: 1909/1742,
  51470. bottom: 46/1955
  51471. }
  51472. },
  51473. },
  51474. [
  51475. {
  51476. name: "Normal",
  51477. height: math.unit(10, "feet"),
  51478. default: true
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51484. {
  51485. dressed: {
  51486. height: math.unit(11, "feet"),
  51487. weight: math.unit(18500, "lb"),
  51488. preyCapacity: math.unit(9, "people"),
  51489. name: "Dressed",
  51490. image: {
  51491. source: "./media/characters/cylphis/dressed.svg",
  51492. extra: 1028/1003,
  51493. bottom: 75/1103
  51494. },
  51495. },
  51496. undressed: {
  51497. height: math.unit(11, "feet"),
  51498. weight: math.unit(18500, "lb"),
  51499. preyCapacity: math.unit(9, "people"),
  51500. name: "Undressed",
  51501. image: {
  51502. source: "./media/characters/cylphis/undressed.svg",
  51503. extra: 1028/1003,
  51504. bottom: 75/1103
  51505. }
  51506. },
  51507. full: {
  51508. height: math.unit(11, "feet"),
  51509. weight: math.unit(18500 + 150*9, "lb"),
  51510. preyCapacity: math.unit(9, "people"),
  51511. name: "Full",
  51512. image: {
  51513. source: "./media/characters/cylphis/full.svg",
  51514. extra: 1028/1003,
  51515. bottom: 75/1103
  51516. }
  51517. },
  51518. },
  51519. [
  51520. {
  51521. name: "Small",
  51522. height: math.unit(8, "feet")
  51523. },
  51524. {
  51525. name: "Normal",
  51526. height: math.unit(11, "feet"),
  51527. default: true
  51528. },
  51529. ]
  51530. ))
  51531. characterMakers.push(() => makeCharacter(
  51532. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51533. {
  51534. front: {
  51535. height: math.unit(2 + 7/12, "feet"),
  51536. name: "Front",
  51537. image: {
  51538. source: "./media/characters/orishan/front.svg",
  51539. extra: 1058/1023,
  51540. bottom: 23/1081
  51541. }
  51542. },
  51543. back: {
  51544. height: math.unit(2 + 7/12, "feet"),
  51545. name: "Back",
  51546. image: {
  51547. source: "./media/characters/orishan/back.svg",
  51548. extra: 1058/1023,
  51549. bottom: 23/1081
  51550. }
  51551. },
  51552. },
  51553. [
  51554. {
  51555. name: "Micro",
  51556. height: math.unit(2, "cm")
  51557. },
  51558. {
  51559. name: "Normal",
  51560. height: math.unit(2 + 7/12, "feet"),
  51561. default: true
  51562. },
  51563. ]
  51564. ))
  51565. characterMakers.push(() => makeCharacter(
  51566. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51567. {
  51568. front: {
  51569. height: math.unit(3, "meters"),
  51570. weight: math.unit(508, "kg"),
  51571. name: "Front",
  51572. image: {
  51573. source: "./media/characters/seranis/front.svg",
  51574. extra: 1478/1454,
  51575. bottom: 41/1519
  51576. }
  51577. },
  51578. },
  51579. [
  51580. {
  51581. name: "Normal",
  51582. height: math.unit(3, "meters"),
  51583. default: true
  51584. },
  51585. {
  51586. name: "Macro",
  51587. height: math.unit(108, "meters")
  51588. },
  51589. {
  51590. name: "Megamacro",
  51591. height: math.unit(1250, "meters")
  51592. },
  51593. ]
  51594. ))
  51595. characterMakers.push(() => makeCharacter(
  51596. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51597. {
  51598. undressed: {
  51599. height: math.unit(5 + 3/12, "feet"),
  51600. name: "Undressed",
  51601. image: {
  51602. source: "./media/characters/ankou/undressed.svg",
  51603. extra: 1301/1213,
  51604. bottom: 87/1388
  51605. }
  51606. },
  51607. dressed: {
  51608. height: math.unit(5 + 3/12, "feet"),
  51609. name: "Dressed",
  51610. image: {
  51611. source: "./media/characters/ankou/dressed.svg",
  51612. extra: 1301/1213,
  51613. bottom: 87/1388
  51614. }
  51615. },
  51616. head: {
  51617. height: math.unit(1.61, "feet"),
  51618. name: "Head",
  51619. image: {
  51620. source: "./media/characters/ankou/head.svg"
  51621. }
  51622. },
  51623. },
  51624. [
  51625. {
  51626. name: "Normal",
  51627. height: math.unit(5 + 3/12, "feet"),
  51628. default: true
  51629. },
  51630. ]
  51631. ))
  51632. characterMakers.push(() => makeCharacter(
  51633. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51634. {
  51635. side: {
  51636. height: math.unit(6 + 3/12, "feet"),
  51637. weight: math.unit(200, "kg"),
  51638. name: "Side",
  51639. image: {
  51640. source: "./media/characters/juniper-skunktaur/side.svg",
  51641. extra: 1574/1229,
  51642. bottom: 38/1612
  51643. }
  51644. },
  51645. front: {
  51646. height: math.unit(6 + 3/12, "feet"),
  51647. weight: math.unit(200, "kg"),
  51648. name: "Front",
  51649. image: {
  51650. source: "./media/characters/juniper-skunktaur/front.svg",
  51651. extra: 1337/1278,
  51652. bottom: 22/1359
  51653. }
  51654. },
  51655. back: {
  51656. height: math.unit(6 + 3/12, "feet"),
  51657. weight: math.unit(200, "kg"),
  51658. name: "Back",
  51659. image: {
  51660. source: "./media/characters/juniper-skunktaur/back.svg",
  51661. extra: 1618/1273,
  51662. bottom: 13/1631
  51663. }
  51664. },
  51665. top: {
  51666. height: math.unit(2.62, "feet"),
  51667. weight: math.unit(200, "kg"),
  51668. name: "Top",
  51669. image: {
  51670. source: "./media/characters/juniper-skunktaur/top.svg"
  51671. }
  51672. },
  51673. },
  51674. [
  51675. {
  51676. name: "Normal",
  51677. height: math.unit(6 + 3/12, "feet"),
  51678. default: true
  51679. },
  51680. ]
  51681. ))
  51682. characterMakers.push(() => makeCharacter(
  51683. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51684. {
  51685. front: {
  51686. height: math.unit(20.5, "feet"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/rei/front.svg",
  51690. extra: 1349/1195,
  51691. bottom: 31/1380
  51692. }
  51693. },
  51694. back: {
  51695. height: math.unit(20.5, "feet"),
  51696. name: "Back",
  51697. image: {
  51698. source: "./media/characters/rei/back.svg",
  51699. extra: 1358/1204,
  51700. bottom: 22/1380
  51701. }
  51702. },
  51703. pawsDigi: {
  51704. height: math.unit(3.45, "feet"),
  51705. name: "Paws (Digi)",
  51706. image: {
  51707. source: "./media/characters/rei/paws-digi.svg"
  51708. }
  51709. },
  51710. pawsPlanti: {
  51711. height: math.unit(3.45, "feet"),
  51712. name: "Paws (Planti)",
  51713. image: {
  51714. source: "./media/characters/rei/paws-planti.svg"
  51715. }
  51716. },
  51717. },
  51718. [
  51719. {
  51720. name: "Normal",
  51721. height: math.unit(20.5, "feet"),
  51722. default: true
  51723. },
  51724. ]
  51725. ))
  51726. characterMakers.push(() => makeCharacter(
  51727. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51728. {
  51729. front: {
  51730. height: math.unit(5 + 11/12, "feet"),
  51731. name: "Front",
  51732. image: {
  51733. source: "./media/characters/carina/front.svg",
  51734. extra: 1720/1449,
  51735. bottom: 14/1734
  51736. }
  51737. },
  51738. back: {
  51739. height: math.unit(5 + 11/12, "feet"),
  51740. name: "Back",
  51741. image: {
  51742. source: "./media/characters/carina/back.svg",
  51743. extra: 1493/1445,
  51744. bottom: 17/1510
  51745. }
  51746. },
  51747. paw: {
  51748. height: math.unit(0.92, "feet"),
  51749. name: "Paw",
  51750. image: {
  51751. source: "./media/characters/carina/paw.svg"
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(5 + 11/12, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(4.88, "meters"),
  51768. name: "Front",
  51769. image: {
  51770. source: "./media/characters/maya/front.svg",
  51771. extra: 1222/1145,
  51772. bottom: 57/1279
  51773. }
  51774. },
  51775. },
  51776. [
  51777. {
  51778. name: "Normal",
  51779. height: math.unit(4.88, "meters"),
  51780. default: true
  51781. },
  51782. {
  51783. name: "Macro",
  51784. height: math.unit(38.1, "meters")
  51785. },
  51786. {
  51787. name: "Macro+",
  51788. height: math.unit(152.4, "meters")
  51789. },
  51790. {
  51791. name: "Macro++",
  51792. height: math.unit(16.09, "km")
  51793. },
  51794. {
  51795. name: "Mega-macro",
  51796. height: math.unit(700, "megameters")
  51797. },
  51798. ]
  51799. ))
  51800. characterMakers.push(() => makeCharacter(
  51801. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51802. {
  51803. front: {
  51804. height: math.unit(6 + 2/12, "feet"),
  51805. weight: math.unit(500, "lb"),
  51806. preyCapacity: math.unit(4, "people"),
  51807. name: "Front",
  51808. image: {
  51809. source: "./media/characters/yepir/front.svg"
  51810. }
  51811. },
  51812. side: {
  51813. height: math.unit(6 + 2/12, "feet"),
  51814. weight: math.unit(500, "lb"),
  51815. preyCapacity: math.unit(4, "people"),
  51816. name: "Side",
  51817. image: {
  51818. source: "./media/characters/yepir/side.svg"
  51819. }
  51820. },
  51821. paw: {
  51822. height: math.unit(1.05, "feet"),
  51823. name: "Paw",
  51824. image: {
  51825. source: "./media/characters/yepir/paw.svg"
  51826. }
  51827. },
  51828. },
  51829. [
  51830. {
  51831. name: "Normal",
  51832. height: math.unit(6 + 2/12, "feet"),
  51833. default: true
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(5 + 4/12, "feet"),
  51842. name: "Front",
  51843. image: {
  51844. source: "./media/characters/russec/front.svg",
  51845. extra: 1926/1626,
  51846. bottom: 72/1998
  51847. }
  51848. },
  51849. back: {
  51850. height: math.unit(5 + 4/12, "feet"),
  51851. name: "Back",
  51852. image: {
  51853. source: "./media/characters/russec/back.svg",
  51854. extra: 1910/1591,
  51855. bottom: 48/1958
  51856. }
  51857. },
  51858. },
  51859. [
  51860. {
  51861. name: "Small",
  51862. height: math.unit(5 + 4/12, "feet")
  51863. },
  51864. {
  51865. name: "Normal",
  51866. height: math.unit(72, "feet"),
  51867. default: true
  51868. },
  51869. ]
  51870. ))
  51871. characterMakers.push(() => makeCharacter(
  51872. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51873. {
  51874. side: {
  51875. height: math.unit(12, "feet"),
  51876. name: "Side",
  51877. image: {
  51878. source: "./media/characters/cianus/side.svg",
  51879. extra: 808/526,
  51880. bottom: 61/869
  51881. }
  51882. },
  51883. },
  51884. [
  51885. {
  51886. name: "Normal",
  51887. height: math.unit(12, "feet"),
  51888. default: true
  51889. },
  51890. ]
  51891. ))
  51892. characterMakers.push(() => makeCharacter(
  51893. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51894. {
  51895. front: {
  51896. height: math.unit(9 + 6/12, "feet"),
  51897. weight: math.unit(300, "lb"),
  51898. name: "Front",
  51899. image: {
  51900. source: "./media/characters/ahab/front.svg",
  51901. extra: 1897/1868,
  51902. bottom: 121/2018
  51903. }
  51904. },
  51905. frontNsfw: {
  51906. height: math.unit(9 + 6/12, "feet"),
  51907. weight: math.unit(300, "lb"),
  51908. name: "Front-nsfw",
  51909. image: {
  51910. source: "./media/characters/ahab/front-nsfw.svg",
  51911. extra: 1897/1868,
  51912. bottom: 121/2018
  51913. }
  51914. },
  51915. },
  51916. [
  51917. {
  51918. name: "Normal",
  51919. height: math.unit(9 + 6/12, "feet")
  51920. },
  51921. {
  51922. name: "Macro",
  51923. height: math.unit(657, "feet"),
  51924. default: true
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(2.69, "meters"),
  51933. weight: math.unit(132, "kg"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/aarkus/front.svg",
  51937. extra: 1400/1231,
  51938. bottom: 34/1434
  51939. }
  51940. },
  51941. back: {
  51942. height: math.unit(2.69, "meters"),
  51943. weight: math.unit(132, "kg"),
  51944. name: "Back",
  51945. image: {
  51946. source: "./media/characters/aarkus/back.svg",
  51947. extra: 1381/1218,
  51948. bottom: 30/1411
  51949. }
  51950. },
  51951. frontNsfw: {
  51952. height: math.unit(2.69, "meters"),
  51953. weight: math.unit(132, "kg"),
  51954. name: "Front (NSFW)",
  51955. image: {
  51956. source: "./media/characters/aarkus/front-nsfw.svg",
  51957. extra: 1400/1231,
  51958. bottom: 34/1434
  51959. }
  51960. },
  51961. foot: {
  51962. height: math.unit(1.45, "feet"),
  51963. name: "Foot",
  51964. image: {
  51965. source: "./media/characters/aarkus/foot.svg"
  51966. }
  51967. },
  51968. head: {
  51969. height: math.unit(2.85, "feet"),
  51970. name: "Head",
  51971. image: {
  51972. source: "./media/characters/aarkus/head.svg"
  51973. }
  51974. },
  51975. headAlt: {
  51976. height: math.unit(3.07, "feet"),
  51977. name: "Head (Alt)",
  51978. image: {
  51979. source: "./media/characters/aarkus/head-alt.svg"
  51980. }
  51981. },
  51982. mouth: {
  51983. height: math.unit(1.25, "feet"),
  51984. name: "Mouth",
  51985. image: {
  51986. source: "./media/characters/aarkus/mouth.svg"
  51987. }
  51988. },
  51989. dick: {
  51990. height: math.unit(1.77, "feet"),
  51991. name: "Dick",
  51992. image: {
  51993. source: "./media/characters/aarkus/dick.svg"
  51994. }
  51995. },
  51996. },
  51997. [
  51998. {
  51999. name: "Normal",
  52000. height: math.unit(2.69, "meters"),
  52001. default: true
  52002. },
  52003. {
  52004. name: "Macro",
  52005. height: math.unit(269, "meters")
  52006. },
  52007. {
  52008. name: "Macro+",
  52009. height: math.unit(672.5, "meters")
  52010. },
  52011. {
  52012. name: "Megamacro",
  52013. height: math.unit(2.017, "km")
  52014. },
  52015. ]
  52016. ))
  52017. characterMakers.push(() => makeCharacter(
  52018. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52019. {
  52020. front: {
  52021. height: math.unit(23.47, "cm"),
  52022. weight: math.unit(600, "grams"),
  52023. name: "Front",
  52024. image: {
  52025. source: "./media/characters/diode/front.svg",
  52026. extra: 1778/1396,
  52027. bottom: 95/1873
  52028. }
  52029. },
  52030. side: {
  52031. height: math.unit(23.47, "cm"),
  52032. weight: math.unit(600, "grams"),
  52033. name: "Side",
  52034. image: {
  52035. source: "./media/characters/diode/side.svg",
  52036. extra: 1831/1404,
  52037. bottom: 86/1917
  52038. }
  52039. },
  52040. wings: {
  52041. height: math.unit(0.683, "feet"),
  52042. name: "Wings",
  52043. image: {
  52044. source: "./media/characters/diode/wings.svg"
  52045. }
  52046. },
  52047. },
  52048. [
  52049. {
  52050. name: "Normal",
  52051. height: math.unit(23.47, "cm"),
  52052. default: true
  52053. },
  52054. ]
  52055. ))
  52056. characterMakers.push(() => makeCharacter(
  52057. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52058. {
  52059. front: {
  52060. height: math.unit(6 + 3/12, "feet"),
  52061. weight: math.unit(250, "lb"),
  52062. name: "Front",
  52063. image: {
  52064. source: "./media/characters/reika/front.svg",
  52065. extra: 1120/1078,
  52066. bottom: 86/1206
  52067. }
  52068. },
  52069. },
  52070. [
  52071. {
  52072. name: "Normal",
  52073. height: math.unit(6 + 3/12, "feet"),
  52074. default: true
  52075. },
  52076. ]
  52077. ))
  52078. characterMakers.push(() => makeCharacter(
  52079. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52080. {
  52081. front: {
  52082. height: math.unit(16 + 8/12, "feet"),
  52083. weight: math.unit(9000, "lb"),
  52084. name: "Front",
  52085. image: {
  52086. source: "./media/characters/lokuto-takama/front.svg",
  52087. extra: 1774/1632,
  52088. bottom: 147/1921
  52089. },
  52090. extraAttributes: {
  52091. "bustWidth": {
  52092. name: "Bust Width",
  52093. power: 1,
  52094. type: "length",
  52095. base: math.unit(2.4, "meters")
  52096. },
  52097. "breastWeight": {
  52098. name: "Breast Weight",
  52099. power: 3,
  52100. type: "mass",
  52101. base: math.unit(1000, "kg")
  52102. },
  52103. }
  52104. },
  52105. },
  52106. [
  52107. {
  52108. name: "Normal",
  52109. height: math.unit(16 + 8/12, "feet"),
  52110. default: true
  52111. },
  52112. ]
  52113. ))
  52114. characterMakers.push(() => makeCharacter(
  52115. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52116. {
  52117. front: {
  52118. height: math.unit(10, "cm"),
  52119. weight: math.unit(850, "grams"),
  52120. name: "Front",
  52121. image: {
  52122. source: "./media/characters/owak-bone/front.svg",
  52123. extra: 1965/1801,
  52124. bottom: 31/1996
  52125. }
  52126. },
  52127. },
  52128. [
  52129. {
  52130. name: "Normal",
  52131. height: math.unit(10, "cm"),
  52132. default: true
  52133. },
  52134. ]
  52135. ))
  52136. characterMakers.push(() => makeCharacter(
  52137. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52138. {
  52139. front: {
  52140. height: math.unit(2 + 6/12, "feet"),
  52141. weight: math.unit(9, "lb"),
  52142. name: "Front",
  52143. image: {
  52144. source: "./media/characters/muffin/front.svg",
  52145. extra: 1220/1195,
  52146. bottom: 84/1304
  52147. }
  52148. },
  52149. },
  52150. [
  52151. {
  52152. name: "Normal",
  52153. height: math.unit(2 + 6/12, "feet"),
  52154. default: true
  52155. },
  52156. ]
  52157. ))
  52158. characterMakers.push(() => makeCharacter(
  52159. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52160. {
  52161. front: {
  52162. height: math.unit(7, "feet"),
  52163. name: "Front",
  52164. image: {
  52165. source: "./media/characters/chimera/front.svg",
  52166. extra: 1752/1614,
  52167. bottom: 68/1820
  52168. }
  52169. },
  52170. },
  52171. [
  52172. {
  52173. name: "Normal",
  52174. height: math.unit(7, "feet")
  52175. },
  52176. {
  52177. name: "Gigamacro",
  52178. height: math.unit(2.9, "gigameters"),
  52179. default: true
  52180. },
  52181. {
  52182. name: "Universal",
  52183. height: math.unit(1.56e26, "yottameters")
  52184. },
  52185. ]
  52186. ))
  52187. characterMakers.push(() => makeCharacter(
  52188. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52189. {
  52190. front: {
  52191. height: math.unit(3, "feet"),
  52192. weight: math.unit(20, "lb"),
  52193. name: "Front",
  52194. image: {
  52195. source: "./media/characters/kit-fennec-fox/front.svg",
  52196. extra: 1027/932,
  52197. bottom: 16/1043
  52198. }
  52199. },
  52200. back: {
  52201. height: math.unit(3, "feet"),
  52202. weight: math.unit(20, "lb"),
  52203. name: "Back",
  52204. image: {
  52205. source: "./media/characters/kit-fennec-fox/back.svg",
  52206. extra: 1027/932,
  52207. bottom: 16/1043
  52208. }
  52209. },
  52210. },
  52211. [
  52212. {
  52213. name: "Normal",
  52214. height: math.unit(3, "feet"),
  52215. default: true
  52216. },
  52217. ]
  52218. ))
  52219. characterMakers.push(() => makeCharacter(
  52220. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52221. {
  52222. front: {
  52223. height: math.unit(167, "cm"),
  52224. name: "Front",
  52225. image: {
  52226. source: "./media/characters/blue-otter/front.svg",
  52227. extra: 1951/1920,
  52228. bottom: 31/1982
  52229. }
  52230. },
  52231. },
  52232. [
  52233. {
  52234. name: "Otter-Sized",
  52235. height: math.unit(100, "cm")
  52236. },
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(167, "cm"),
  52240. default: true
  52241. },
  52242. ]
  52243. ))
  52244. characterMakers.push(() => makeCharacter(
  52245. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52246. {
  52247. front: {
  52248. height: math.unit(4 + 4/12, "feet"),
  52249. name: "Front",
  52250. image: {
  52251. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52252. extra: 1072/1067,
  52253. bottom: 117/1189
  52254. }
  52255. },
  52256. back: {
  52257. height: math.unit(4 + 4/12, "feet"),
  52258. name: "Back",
  52259. image: {
  52260. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52261. extra: 1135/1129,
  52262. bottom: 57/1192
  52263. }
  52264. },
  52265. head: {
  52266. height: math.unit(1.77, "feet"),
  52267. name: "Head",
  52268. image: {
  52269. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52270. }
  52271. },
  52272. },
  52273. [
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(4 + 4/12, "feet"),
  52277. default: true
  52278. },
  52279. ]
  52280. ))
  52281. characterMakers.push(() => makeCharacter(
  52282. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52283. {
  52284. front: {
  52285. height: math.unit(2, "inches"),
  52286. name: "Front",
  52287. image: {
  52288. source: "./media/characters/carley-hartford/front.svg",
  52289. extra: 1035/988,
  52290. bottom: 23/1058
  52291. }
  52292. },
  52293. back: {
  52294. height: math.unit(2, "inches"),
  52295. name: "Back",
  52296. image: {
  52297. source: "./media/characters/carley-hartford/back.svg",
  52298. extra: 1035/988,
  52299. bottom: 23/1058
  52300. }
  52301. },
  52302. dressed: {
  52303. height: math.unit(2, "inches"),
  52304. name: "Dressed",
  52305. image: {
  52306. source: "./media/characters/carley-hartford/dressed.svg",
  52307. extra: 651/620,
  52308. bottom: 0/651
  52309. }
  52310. },
  52311. },
  52312. [
  52313. {
  52314. name: "Micro",
  52315. height: math.unit(2, "inches"),
  52316. default: true
  52317. },
  52318. {
  52319. name: "Macro",
  52320. height: math.unit(6 + 3/12, "feet")
  52321. },
  52322. ]
  52323. ))
  52324. characterMakers.push(() => makeCharacter(
  52325. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52326. {
  52327. front: {
  52328. height: math.unit(2 + 3/12, "feet"),
  52329. weight: math.unit(15 + 7/16, "lb"),
  52330. name: "Front",
  52331. image: {
  52332. source: "./media/characters/duke/front.svg",
  52333. extra: 910/815,
  52334. bottom: 30/940
  52335. }
  52336. },
  52337. },
  52338. [
  52339. {
  52340. name: "Normal",
  52341. height: math.unit(2 + 3/12, "feet"),
  52342. default: true
  52343. },
  52344. ]
  52345. ))
  52346. characterMakers.push(() => makeCharacter(
  52347. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52348. {
  52349. front: {
  52350. height: math.unit(5 + 4/12, "feet"),
  52351. weight: math.unit(156, "lb"),
  52352. name: "Front",
  52353. image: {
  52354. source: "./media/characters/dein/front.svg",
  52355. extra: 855/815,
  52356. bottom: 48/903
  52357. }
  52358. },
  52359. side: {
  52360. height: math.unit(5 + 4/12, "feet"),
  52361. weight: math.unit(156, "lb"),
  52362. name: "side",
  52363. image: {
  52364. source: "./media/characters/dein/side.svg",
  52365. extra: 846/803,
  52366. bottom: 25/871
  52367. }
  52368. },
  52369. maw: {
  52370. height: math.unit(1.45, "feet"),
  52371. name: "Maw",
  52372. image: {
  52373. source: "./media/characters/dein/maw.svg"
  52374. }
  52375. },
  52376. },
  52377. [
  52378. {
  52379. name: "Ferret Sized",
  52380. height: math.unit(2 + 5/12, "feet")
  52381. },
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(5 + 4/12, "feet"),
  52385. default: true
  52386. },
  52387. ]
  52388. ))
  52389. characterMakers.push(() => makeCharacter(
  52390. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52391. {
  52392. front: {
  52393. height: math.unit(84 + 8/12, "feet"),
  52394. weight: math.unit(942180, "lb"),
  52395. name: "Front",
  52396. image: {
  52397. source: "./media/characters/daurine-arima/front.svg",
  52398. extra: 1989/1782,
  52399. bottom: 37/2026
  52400. }
  52401. },
  52402. side: {
  52403. height: math.unit(84 + 8/12, "feet"),
  52404. weight: math.unit(942180, "lb"),
  52405. name: "Side",
  52406. image: {
  52407. source: "./media/characters/daurine-arima/side.svg",
  52408. extra: 1997/1790,
  52409. bottom: 21/2018
  52410. }
  52411. },
  52412. back: {
  52413. height: math.unit(84 + 8/12, "feet"),
  52414. weight: math.unit(942180, "lb"),
  52415. name: "Back",
  52416. image: {
  52417. source: "./media/characters/daurine-arima/back.svg",
  52418. extra: 1992/1800,
  52419. bottom: 12/2004
  52420. }
  52421. },
  52422. head: {
  52423. height: math.unit(15.5, "feet"),
  52424. name: "Head",
  52425. image: {
  52426. source: "./media/characters/daurine-arima/head.svg"
  52427. }
  52428. },
  52429. headAlt: {
  52430. height: math.unit(19.19, "feet"),
  52431. name: "Head (Alt)",
  52432. image: {
  52433. source: "./media/characters/daurine-arima/head-alt.svg"
  52434. }
  52435. },
  52436. },
  52437. [
  52438. {
  52439. name: "Minimum height",
  52440. height: math.unit(8 + 10/12, "feet")
  52441. },
  52442. {
  52443. name: "Comfort height",
  52444. height: math.unit(19 + 6 /12, "feet")
  52445. },
  52446. {
  52447. name: "\"Normal\" height",
  52448. height: math.unit(28 + 10/12, "feet")
  52449. },
  52450. {
  52451. name: "Base height",
  52452. height: math.unit(84 + 8/12, "feet"),
  52453. default: true
  52454. },
  52455. {
  52456. name: "Mini-macro",
  52457. height: math.unit(2360, "feet")
  52458. },
  52459. {
  52460. name: "Macro",
  52461. height: math.unit(10, "miles")
  52462. },
  52463. {
  52464. name: "Goddess",
  52465. height: math.unit(9.99e40, "yottameters")
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52471. {
  52472. front: {
  52473. height: math.unit(2.3, "meters"),
  52474. name: "Front",
  52475. image: {
  52476. source: "./media/characters/cilenomon/front.svg",
  52477. extra: 1963/1778,
  52478. bottom: 54/2017
  52479. }
  52480. },
  52481. },
  52482. [
  52483. {
  52484. name: "Normal",
  52485. height: math.unit(2.3, "meters"),
  52486. default: true
  52487. },
  52488. {
  52489. name: "Big",
  52490. height: math.unit(5, "meters")
  52491. },
  52492. {
  52493. name: "Macro",
  52494. height: math.unit(30, "meters")
  52495. },
  52496. {
  52497. name: "True",
  52498. height: math.unit(1, "universe")
  52499. },
  52500. ]
  52501. ))
  52502. characterMakers.push(() => makeCharacter(
  52503. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52504. {
  52505. front: {
  52506. height: math.unit(5, "feet"),
  52507. name: "Front",
  52508. image: {
  52509. source: "./media/characters/sen-mink/front.svg",
  52510. extra: 1727/1675,
  52511. bottom: 35/1762
  52512. }
  52513. },
  52514. },
  52515. [
  52516. {
  52517. name: "Normal",
  52518. height: math.unit(5, "feet"),
  52519. default: true
  52520. },
  52521. ]
  52522. ))
  52523. characterMakers.push(() => makeCharacter(
  52524. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52525. {
  52526. front: {
  52527. height: math.unit(5.42999, "feet"),
  52528. weight: math.unit(100, "lb"),
  52529. name: "Front",
  52530. image: {
  52531. source: "./media/characters/ophois/front.svg",
  52532. extra: 1429/1286,
  52533. bottom: 60/1489
  52534. }
  52535. },
  52536. },
  52537. [
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(5.42999, "feet"),
  52541. default: true
  52542. },
  52543. ]
  52544. ))
  52545. characterMakers.push(() => makeCharacter(
  52546. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52547. {
  52548. front: {
  52549. height: math.unit(2, "meters"),
  52550. name: "Front",
  52551. image: {
  52552. source: "./media/characters/riley/front.svg",
  52553. extra: 1779/1754,
  52554. bottom: 139/1918
  52555. }
  52556. },
  52557. },
  52558. [
  52559. {
  52560. name: "Normal",
  52561. height: math.unit(2, "meters"),
  52562. default: true
  52563. },
  52564. ]
  52565. ))
  52566. characterMakers.push(() => makeCharacter(
  52567. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52568. {
  52569. front: {
  52570. height: math.unit(6 + 2/12, "feet"),
  52571. weight: math.unit(195, "lb"),
  52572. preyCapacity: math.unit(6, "people"),
  52573. name: "Front",
  52574. image: {
  52575. source: "./media/characters/shuken-flash/front.svg",
  52576. extra: 1905/1739,
  52577. bottom: 65/1970
  52578. }
  52579. },
  52580. back: {
  52581. height: math.unit(6 + 2/12, "feet"),
  52582. weight: math.unit(195, "lb"),
  52583. preyCapacity: math.unit(6, "people"),
  52584. name: "Back",
  52585. image: {
  52586. source: "./media/characters/shuken-flash/back.svg",
  52587. extra: 1912/1751,
  52588. bottom: 13/1925
  52589. }
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Normal",
  52595. height: math.unit(6 + 2/12, "feet"),
  52596. default: true
  52597. },
  52598. ]
  52599. ))
  52600. characterMakers.push(() => makeCharacter(
  52601. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52602. {
  52603. front: {
  52604. height: math.unit(5 + 9/12, "feet"),
  52605. weight: math.unit(150, "lb"),
  52606. name: "Front",
  52607. image: {
  52608. source: "./media/characters/plat/front.svg",
  52609. extra: 1816/1703,
  52610. bottom: 43/1859
  52611. }
  52612. },
  52613. side: {
  52614. height: math.unit(5 + 9/12, "feet"),
  52615. weight: math.unit(300, "lb"),
  52616. name: "Side",
  52617. image: {
  52618. source: "./media/characters/plat/side.svg",
  52619. extra: 1824/1699,
  52620. bottom: 18/1842
  52621. }
  52622. },
  52623. },
  52624. [
  52625. {
  52626. name: "Normal",
  52627. height: math.unit(5 + 9/12, "feet"),
  52628. default: true
  52629. },
  52630. ]
  52631. ))
  52632. characterMakers.push(() => makeCharacter(
  52633. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52634. {
  52635. front: {
  52636. height: math.unit(9, "feet"),
  52637. weight: math.unit(1800, "lb"),
  52638. name: "Front",
  52639. image: {
  52640. source: "./media/characters/elaine/front.svg",
  52641. extra: 1833/1354,
  52642. bottom: 25/1858
  52643. }
  52644. },
  52645. back: {
  52646. height: math.unit(8.8, "feet"),
  52647. weight: math.unit(1800, "lb"),
  52648. name: "Back",
  52649. image: {
  52650. source: "./media/characters/elaine/back.svg",
  52651. extra: 1641/1233,
  52652. bottom: 53/1694
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(9, "feet"),
  52660. default: true
  52661. },
  52662. ]
  52663. ))
  52664. characterMakers.push(() => makeCharacter(
  52665. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52666. {
  52667. front: {
  52668. height: math.unit(17 + 9/12, "feet"),
  52669. weight: math.unit(8000, "lb"),
  52670. name: "Front",
  52671. image: {
  52672. source: "./media/characters/vera-raven/front.svg",
  52673. extra: 1457/1412,
  52674. bottom: 121/1578
  52675. }
  52676. },
  52677. side: {
  52678. height: math.unit(17 + 9/12, "feet"),
  52679. weight: math.unit(8000, "lb"),
  52680. name: "Side",
  52681. image: {
  52682. source: "./media/characters/vera-raven/side.svg",
  52683. extra: 1510/1464,
  52684. bottom: 54/1564
  52685. }
  52686. },
  52687. },
  52688. [
  52689. {
  52690. name: "Normal",
  52691. height: math.unit(17 + 9/12, "feet"),
  52692. default: true
  52693. },
  52694. ]
  52695. ))
  52696. characterMakers.push(() => makeCharacter(
  52697. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52698. {
  52699. dressed: {
  52700. height: math.unit(6 + 9/12, "feet"),
  52701. name: "Dressed",
  52702. image: {
  52703. source: "./media/characters/nakisha/dressed.svg",
  52704. extra: 1909/1757,
  52705. bottom: 48/1957
  52706. }
  52707. },
  52708. nude: {
  52709. height: math.unit(6 + 9/12, "feet"),
  52710. name: "Nude",
  52711. image: {
  52712. source: "./media/characters/nakisha/nude.svg",
  52713. extra: 1917/1765,
  52714. bottom: 34/1951
  52715. }
  52716. },
  52717. },
  52718. [
  52719. {
  52720. name: "Normal",
  52721. height: math.unit(6 + 9/12, "feet"),
  52722. default: true
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52728. {
  52729. front: {
  52730. height: math.unit(87, "meters"),
  52731. name: "Front",
  52732. image: {
  52733. source: "./media/characters/serafin/front.svg",
  52734. extra: 1919/1776,
  52735. bottom: 65/1984
  52736. }
  52737. },
  52738. },
  52739. [
  52740. {
  52741. name: "Normal",
  52742. height: math.unit(87, "meters"),
  52743. default: true
  52744. },
  52745. ]
  52746. ))
  52747. characterMakers.push(() => makeCharacter(
  52748. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52749. {
  52750. front: {
  52751. height: math.unit(6, "feet"),
  52752. weight: math.unit(200, "lb"),
  52753. name: "Front",
  52754. image: {
  52755. source: "./media/characters/poptart/front.svg",
  52756. extra: 615/583,
  52757. bottom: 23/638
  52758. }
  52759. },
  52760. back: {
  52761. height: math.unit(6, "feet"),
  52762. weight: math.unit(200, "lb"),
  52763. name: "Back",
  52764. image: {
  52765. source: "./media/characters/poptart/back.svg",
  52766. extra: 617/584,
  52767. bottom: 22/639
  52768. }
  52769. },
  52770. frontNsfw: {
  52771. height: math.unit(6, "feet"),
  52772. weight: math.unit(200, "lb"),
  52773. name: "Front (NSFW)",
  52774. image: {
  52775. source: "./media/characters/poptart/front-nsfw.svg",
  52776. extra: 615/583,
  52777. bottom: 23/638
  52778. }
  52779. },
  52780. backNsfw: {
  52781. height: math.unit(6, "feet"),
  52782. weight: math.unit(200, "lb"),
  52783. name: "Back (NSFW)",
  52784. image: {
  52785. source: "./media/characters/poptart/back-nsfw.svg",
  52786. extra: 617/584,
  52787. bottom: 22/639
  52788. }
  52789. },
  52790. hand: {
  52791. height: math.unit(1.14, "feet"),
  52792. name: "Hand",
  52793. image: {
  52794. source: "./media/characters/poptart/hand.svg"
  52795. }
  52796. },
  52797. foot: {
  52798. height: math.unit(1.5, "feet"),
  52799. name: "Foot",
  52800. image: {
  52801. source: "./media/characters/poptart/foot.svg"
  52802. }
  52803. },
  52804. },
  52805. [
  52806. {
  52807. name: "Normal",
  52808. height: math.unit(6, "feet"),
  52809. default: true
  52810. },
  52811. {
  52812. name: "Grande",
  52813. height: math.unit(350, "feet")
  52814. },
  52815. {
  52816. name: "Massif",
  52817. height: math.unit(967, "feet")
  52818. },
  52819. ]
  52820. ))
  52821. characterMakers.push(() => makeCharacter(
  52822. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52823. {
  52824. hyenaSide: {
  52825. height: math.unit(120, "cm"),
  52826. weight: math.unit(120, "lb"),
  52827. name: "Side",
  52828. image: {
  52829. source: "./media/characters/trance/hyena-side.svg",
  52830. extra: 998/904,
  52831. bottom: 76/1074
  52832. }
  52833. },
  52834. },
  52835. [
  52836. {
  52837. name: "Normal",
  52838. height: math.unit(120, "cm"),
  52839. default: true
  52840. },
  52841. {
  52842. name: "Dire",
  52843. height: math.unit(230, "cm")
  52844. },
  52845. {
  52846. name: "Macro",
  52847. height: math.unit(37, "feet")
  52848. },
  52849. ]
  52850. ))
  52851. characterMakers.push(() => makeCharacter(
  52852. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52853. {
  52854. front: {
  52855. height: math.unit(6 + 3/12, "feet"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/michael-berretta/front.svg",
  52859. extra: 515/494,
  52860. bottom: 20/535
  52861. }
  52862. },
  52863. back: {
  52864. height: math.unit(6 + 3/12, "feet"),
  52865. name: "Back",
  52866. image: {
  52867. source: "./media/characters/michael-berretta/back.svg",
  52868. extra: 520/497,
  52869. bottom: 21/541
  52870. }
  52871. },
  52872. frontNsfw: {
  52873. height: math.unit(6 + 3/12, "feet"),
  52874. name: "Front (NSFW)",
  52875. image: {
  52876. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52877. extra: 515/494,
  52878. bottom: 20/535
  52879. }
  52880. },
  52881. dick: {
  52882. height: math.unit(1, "feet"),
  52883. name: "Dick",
  52884. image: {
  52885. source: "./media/characters/michael-berretta/dick.svg"
  52886. }
  52887. },
  52888. },
  52889. [
  52890. {
  52891. name: "Normal",
  52892. height: math.unit(6 + 3/12, "feet"),
  52893. default: true
  52894. },
  52895. {
  52896. name: "Big",
  52897. height: math.unit(12, "feet")
  52898. },
  52899. {
  52900. name: "Macro",
  52901. height: math.unit(187.5, "feet")
  52902. },
  52903. ]
  52904. ))
  52905. characterMakers.push(() => makeCharacter(
  52906. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52907. {
  52908. front: {
  52909. height: math.unit(9 + 9/12, "feet"),
  52910. weight: math.unit(1244, "lb"),
  52911. name: "Front",
  52912. image: {
  52913. source: "./media/characters/stella-edgecomb/front.svg",
  52914. extra: 1835/1706,
  52915. bottom: 49/1884
  52916. }
  52917. },
  52918. pen: {
  52919. height: math.unit(0.95, "feet"),
  52920. name: "Pen",
  52921. image: {
  52922. source: "./media/characters/stella-edgecomb/pen.svg"
  52923. }
  52924. },
  52925. },
  52926. [
  52927. {
  52928. name: "Cozy Bear",
  52929. height: math.unit(0.5, "inches")
  52930. },
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(9 + 9/12, "feet"),
  52934. default: true
  52935. },
  52936. {
  52937. name: "Giga Bear",
  52938. height: math.unit(1, "mile")
  52939. },
  52940. {
  52941. name: "Great Bear",
  52942. height: math.unit(53, "miles")
  52943. },
  52944. {
  52945. name: "Goddess Bear",
  52946. height: math.unit(40000, "miles")
  52947. },
  52948. {
  52949. name: "Sun Bear",
  52950. height: math.unit(900000, "miles")
  52951. },
  52952. ]
  52953. ))
  52954. characterMakers.push(() => makeCharacter(
  52955. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52956. {
  52957. anthroFront: {
  52958. height: math.unit(556, "cm"),
  52959. weight: math.unit(2650, "kg"),
  52960. preyCapacity: math.unit(3, "people"),
  52961. name: "Front",
  52962. image: {
  52963. source: "./media/characters/ash´iika/front.svg",
  52964. extra: 710/673,
  52965. bottom: 15/725
  52966. },
  52967. form: "anthro",
  52968. default: true
  52969. },
  52970. anthroSide: {
  52971. height: math.unit(556, "cm"),
  52972. weight: math.unit(2650, "kg"),
  52973. preyCapacity: math.unit(3, "people"),
  52974. name: "Side",
  52975. image: {
  52976. source: "./media/characters/ash´iika/side.svg",
  52977. extra: 696/676,
  52978. bottom: 13/709
  52979. },
  52980. form: "anthro"
  52981. },
  52982. anthroDressed: {
  52983. height: math.unit(556, "cm"),
  52984. weight: math.unit(2650, "kg"),
  52985. preyCapacity: math.unit(3, "people"),
  52986. name: "Dressed",
  52987. image: {
  52988. source: "./media/characters/ash´iika/dressed.svg",
  52989. extra: 710/673,
  52990. bottom: 15/725
  52991. },
  52992. form: "anthro"
  52993. },
  52994. anthroHead: {
  52995. height: math.unit(3.5, "feet"),
  52996. name: "Head",
  52997. image: {
  52998. source: "./media/characters/ash´iika/head.svg",
  52999. extra: 348/291,
  53000. bottom: 45/393
  53001. },
  53002. form: "anthro"
  53003. },
  53004. feralSide: {
  53005. height: math.unit(870, "cm"),
  53006. weight: math.unit(17500, "kg"),
  53007. preyCapacity: math.unit(15, "people"),
  53008. name: "Side",
  53009. image: {
  53010. source: "./media/characters/ash´iika/feral.svg",
  53011. extra: 595/199,
  53012. bottom: 7/602
  53013. },
  53014. form: "feral",
  53015. default: true,
  53016. },
  53017. },
  53018. [
  53019. {
  53020. name: "Normal",
  53021. height: math.unit(556, "cm"),
  53022. default: true,
  53023. form: "anthro"
  53024. },
  53025. {
  53026. name: "Macro",
  53027. height: math.unit(88, "meters"),
  53028. form: "anthro"
  53029. },
  53030. {
  53031. name: "Normal",
  53032. height: math.unit(870, "cm"),
  53033. default: true,
  53034. form: "feral"
  53035. },
  53036. {
  53037. name: "Large",
  53038. height: math.unit(25, "meters"),
  53039. form: "feral"
  53040. },
  53041. ],
  53042. {
  53043. "anthro": {
  53044. name: "Anthro",
  53045. default: true
  53046. },
  53047. "feral": {
  53048. name: "Feral",
  53049. },
  53050. }
  53051. ))
  53052. characterMakers.push(() => makeCharacter(
  53053. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53054. {
  53055. front: {
  53056. height: math.unit(10, "feet"),
  53057. weight: math.unit(800, "lb"),
  53058. name: "Front",
  53059. image: {
  53060. source: "./media/characters/yen/front.svg",
  53061. extra: 443/411,
  53062. bottom: 6/449
  53063. }
  53064. },
  53065. sleeping: {
  53066. height: math.unit(10, "feet"),
  53067. weight: math.unit(800, "lb"),
  53068. name: "Sleeping",
  53069. image: {
  53070. source: "./media/characters/yen/sleeping.svg",
  53071. extra: 470/422,
  53072. bottom: 0/470
  53073. }
  53074. },
  53075. head: {
  53076. height: math.unit(2.2, "feet"),
  53077. name: "Head",
  53078. image: {
  53079. source: "./media/characters/yen/head.svg"
  53080. }
  53081. },
  53082. headAlt: {
  53083. height: math.unit(2.1, "feet"),
  53084. name: "Head (Alt)",
  53085. image: {
  53086. source: "./media/characters/yen/head-alt.svg"
  53087. }
  53088. },
  53089. },
  53090. [
  53091. {
  53092. name: "Normal",
  53093. height: math.unit(10, "feet"),
  53094. default: true
  53095. },
  53096. ]
  53097. ))
  53098. characterMakers.push(() => makeCharacter(
  53099. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53100. {
  53101. front: {
  53102. height: math.unit(12, "feet"),
  53103. name: "Front",
  53104. image: {
  53105. source: "./media/characters/citra/front.svg",
  53106. extra: 1950/1710,
  53107. bottom: 47/1997
  53108. }
  53109. },
  53110. },
  53111. [
  53112. {
  53113. name: "Normal",
  53114. height: math.unit(12, "feet"),
  53115. default: true
  53116. },
  53117. ]
  53118. ))
  53119. characterMakers.push(() => makeCharacter(
  53120. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53121. {
  53122. side: {
  53123. height: math.unit(7 + 10/12, "feet"),
  53124. name: "Side",
  53125. image: {
  53126. source: "./media/characters/sholstim/side.svg",
  53127. extra: 786/682,
  53128. bottom: 40/826
  53129. }
  53130. },
  53131. },
  53132. [
  53133. {
  53134. name: "Normal",
  53135. height: math.unit(7 + 10/12, "feet"),
  53136. default: true
  53137. },
  53138. ]
  53139. ))
  53140. characterMakers.push(() => makeCharacter(
  53141. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53142. {
  53143. front: {
  53144. height: math.unit(3.10, "meters"),
  53145. name: "Front",
  53146. image: {
  53147. source: "./media/characters/aggyn/front.svg",
  53148. extra: 1188/963,
  53149. bottom: 24/1212
  53150. }
  53151. },
  53152. },
  53153. [
  53154. {
  53155. name: "Normal",
  53156. height: math.unit(3.10, "meters"),
  53157. default: true
  53158. },
  53159. ]
  53160. ))
  53161. characterMakers.push(() => makeCharacter(
  53162. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53163. {
  53164. front: {
  53165. height: math.unit(7 + 5/12, "feet"),
  53166. weight: math.unit(687, "lb"),
  53167. name: "Front",
  53168. image: {
  53169. source: "./media/characters/alsandair-hergenroether/front.svg",
  53170. extra: 1251/1186,
  53171. bottom: 75/1326
  53172. }
  53173. },
  53174. back: {
  53175. height: math.unit(7 + 5/12, "feet"),
  53176. weight: math.unit(687, "lb"),
  53177. name: "Back",
  53178. image: {
  53179. source: "./media/characters/alsandair-hergenroether/back.svg",
  53180. extra: 1290/1229,
  53181. bottom: 17/1307
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Max Compression",
  53188. height: math.unit(7 + 5/12, "feet"),
  53189. default: true
  53190. },
  53191. {
  53192. name: "\"Normal\"",
  53193. height: math.unit(2, "universes")
  53194. },
  53195. ]
  53196. ))
  53197. characterMakers.push(() => makeCharacter(
  53198. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53199. {
  53200. front: {
  53201. height: math.unit(4 + 1/12, "feet"),
  53202. weight: math.unit(92, "lb"),
  53203. name: "Front",
  53204. image: {
  53205. source: "./media/characters/ie/front.svg",
  53206. extra: 1585/1352,
  53207. bottom: 91/1676
  53208. }
  53209. },
  53210. },
  53211. [
  53212. {
  53213. name: "Normal",
  53214. height: math.unit(4 + 1/12, "feet"),
  53215. default: true
  53216. },
  53217. ]
  53218. ))
  53219. characterMakers.push(() => makeCharacter(
  53220. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53221. {
  53222. anthro: {
  53223. height: math.unit(6, "feet"),
  53224. weight: math.unit(150, "lb"),
  53225. name: "Front",
  53226. image: {
  53227. source: "./media/characters/willow/anthro.svg",
  53228. extra: 1073/986,
  53229. bottom: 34/1107
  53230. },
  53231. form: "anthro",
  53232. default: true
  53233. },
  53234. taur: {
  53235. height: math.unit(6, "feet"),
  53236. weight: math.unit(150, "lb"),
  53237. name: "Side",
  53238. image: {
  53239. source: "./media/characters/willow/taur.svg",
  53240. extra: 647/512,
  53241. bottom: 136/783
  53242. },
  53243. form: "taur",
  53244. default: true
  53245. },
  53246. },
  53247. [
  53248. {
  53249. name: "Humanoid",
  53250. height: math.unit(2.7, "meters"),
  53251. form: "anthro"
  53252. },
  53253. {
  53254. name: "Normal",
  53255. height: math.unit(9, "meters"),
  53256. form: "anthro",
  53257. default: true
  53258. },
  53259. {
  53260. name: "Humanoid",
  53261. height: math.unit(2.1, "meters"),
  53262. form: "taur"
  53263. },
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(7, "meters"),
  53267. form: "taur",
  53268. default: true
  53269. },
  53270. ],
  53271. {
  53272. "anthro": {
  53273. name: "Anthro",
  53274. default: true
  53275. },
  53276. "taur": {
  53277. name: "Taur",
  53278. },
  53279. }
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53283. {
  53284. front: {
  53285. height: math.unit(2 + 5/12, "feet"),
  53286. name: "Front",
  53287. image: {
  53288. source: "./media/characters/kyan/front.svg",
  53289. extra: 460/334,
  53290. bottom: 23/483
  53291. },
  53292. extraAttributes: {
  53293. "toeLength": {
  53294. name: "Toe Length",
  53295. power: 1,
  53296. type: "length",
  53297. base: math.unit(7, "cm")
  53298. },
  53299. "toeclawLength": {
  53300. name: "Toeclaw Length",
  53301. power: 1,
  53302. type: "length",
  53303. base: math.unit(4.7, "cm")
  53304. },
  53305. "earHeight": {
  53306. name: "Ear Height",
  53307. power: 1,
  53308. type: "length",
  53309. base: math.unit(14.1, "cm")
  53310. },
  53311. }
  53312. },
  53313. paws: {
  53314. height: math.unit(0.45, "feet"),
  53315. name: "Paws",
  53316. image: {
  53317. source: "./media/characters/kyan/paws.svg",
  53318. extra: 581/581,
  53319. bottom: 114/695
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Normal",
  53326. height: math.unit(2 + 5/12, "feet"),
  53327. default: true
  53328. },
  53329. ]
  53330. ))
  53331. characterMakers.push(() => makeCharacter(
  53332. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53333. {
  53334. front: {
  53335. height: math.unit(2 + 2/3, "feet"),
  53336. name: "Front",
  53337. image: {
  53338. source: "./media/characters/xazzon/front.svg",
  53339. extra: 1109/984,
  53340. bottom: 42/1151
  53341. }
  53342. },
  53343. back: {
  53344. height: math.unit(2 + 2/3, "feet"),
  53345. name: "Back",
  53346. image: {
  53347. source: "./media/characters/xazzon/back.svg",
  53348. extra: 1095/971,
  53349. bottom: 23/1118
  53350. }
  53351. },
  53352. },
  53353. [
  53354. {
  53355. name: "Normal",
  53356. height: math.unit(2 + 2/3, "feet"),
  53357. default: true
  53358. },
  53359. ]
  53360. ))
  53361. characterMakers.push(() => makeCharacter(
  53362. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53363. {
  53364. dressed: {
  53365. height: math.unit(5 + 7/12, "feet"),
  53366. weight: math.unit(173, "lb"),
  53367. name: "Dressed",
  53368. image: {
  53369. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53370. extra: 3262/2862,
  53371. bottom: 188/3450
  53372. }
  53373. },
  53374. undressed: {
  53375. height: math.unit(5 + 7/12, "feet"),
  53376. weight: math.unit(173, "lb"),
  53377. name: "Undressed",
  53378. image: {
  53379. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53380. extra: 3262/2862,
  53381. bottom: 188/3450
  53382. }
  53383. },
  53384. },
  53385. [
  53386. {
  53387. name: "The void",
  53388. height: math.unit(7.29193e-34, "angstroms")
  53389. },
  53390. {
  53391. name: "Uh-Oh.",
  53392. height: math.unit(5.734e-7, "angstroms")
  53393. },
  53394. {
  53395. name: "Pico",
  53396. height: math.unit(0.876, "angstroms")
  53397. },
  53398. {
  53399. name: "Nano",
  53400. height: math.unit(0.000134200, "mm")
  53401. },
  53402. {
  53403. name: "Micro",
  53404. height: math.unit(0.0673020, "mm")
  53405. },
  53406. {
  53407. name: "Tiny",
  53408. height: math.unit(2.4, "mm")
  53409. },
  53410. {
  53411. name: "Actual Normal",
  53412. height: math.unit(3, "inches"),
  53413. default: true
  53414. },
  53415. {
  53416. name: "Normal",
  53417. height: math.unit(5 + 8/12, "feet")
  53418. },
  53419. {
  53420. name: "Giant",
  53421. height: math.unit(12, "feet")
  53422. },
  53423. {
  53424. name: "City Ruler",
  53425. height: math.unit(270, "meters")
  53426. },
  53427. {
  53428. name: "Giga",
  53429. height: math.unit(1117.6, "km")
  53430. },
  53431. {
  53432. name: "All-Powerful Queen",
  53433. height: math.unit(70.8, "gigameters")
  53434. },
  53435. {
  53436. name: "'Goddess'",
  53437. height: math.unit(600, "yottameters")
  53438. },
  53439. {
  53440. name: "Biggest!",
  53441. height: math.unit(4.23e5, "yottameters")
  53442. },
  53443. ]
  53444. ))
  53445. characterMakers.push(() => makeCharacter(
  53446. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53447. {
  53448. front: {
  53449. height: math.unit(8, "feet"),
  53450. weight: math.unit(300, "lb"),
  53451. name: "Front",
  53452. image: {
  53453. source: "./media/characters/khyla-shadowsong/front.svg",
  53454. extra: 861/798,
  53455. bottom: 32/893
  53456. }
  53457. },
  53458. side: {
  53459. height: math.unit(8, "feet"),
  53460. weight: math.unit(300, "lb"),
  53461. name: "Side",
  53462. image: {
  53463. source: "./media/characters/khyla-shadowsong/side.svg",
  53464. extra: 790/750,
  53465. bottom: 87/877
  53466. }
  53467. },
  53468. back: {
  53469. height: math.unit(8, "feet"),
  53470. weight: math.unit(300, "lb"),
  53471. name: "Back",
  53472. image: {
  53473. source: "./media/characters/khyla-shadowsong/back.svg",
  53474. extra: 855/808,
  53475. bottom: 14/869
  53476. }
  53477. },
  53478. head: {
  53479. height: math.unit(2.7, "feet"),
  53480. name: "Head",
  53481. image: {
  53482. source: "./media/characters/khyla-shadowsong/head.svg"
  53483. }
  53484. },
  53485. },
  53486. [
  53487. {
  53488. name: "Micro",
  53489. height: math.unit(6, "inches")
  53490. },
  53491. {
  53492. name: "Normal",
  53493. height: math.unit(8, "feet"),
  53494. default: true
  53495. },
  53496. ]
  53497. ))
  53498. //characters
  53499. function makeCharacters() {
  53500. const results = [];
  53501. characterMakers.forEach(character => {
  53502. results.push(character());
  53503. });
  53504. return results;
  53505. }