less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

61958 lines
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. "kodiak-bear": {
  2274. name: "Kodiak Bear",
  2275. parents: ["bear"]
  2276. },
  2277. }
  2278. //species
  2279. function getSpeciesInfo(speciesList) {
  2280. let result = new Set();
  2281. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2282. result.add(entry)
  2283. });
  2284. return Array.from(result);
  2285. };
  2286. function getSpeciesInfoHelper(species) {
  2287. if (!speciesData[species]) {
  2288. console.warn(species + " doesn't exist");
  2289. return [];
  2290. }
  2291. if (speciesData[species].parents) {
  2292. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2293. } else {
  2294. return [species];
  2295. }
  2296. }
  2297. characterMakers.push(() => makeCharacter(
  2298. {
  2299. name: "Fen",
  2300. species: ["crux"],
  2301. description: {
  2302. title: "Bio",
  2303. text: "Very furry. Sheds on everything."
  2304. },
  2305. tags: [
  2306. "anthro",
  2307. "goo"
  2308. ]
  2309. },
  2310. {
  2311. front: {
  2312. height: math.unit(12, "feet"),
  2313. weight: math.unit(2400, "lb"),
  2314. preyCapacity: math.unit(1, "people"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/fen/front.svg",
  2318. extra: 1804/1562,
  2319. bottom: 205/2009
  2320. },
  2321. extraAttributes: {
  2322. pawSize: {
  2323. name: "Paw Size",
  2324. power: 2,
  2325. type: "area",
  2326. base: math.unit(0.35, "m^2")
  2327. }
  2328. }
  2329. },
  2330. diving: {
  2331. height: math.unit(4.9, "meters"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Diving",
  2334. image: {
  2335. source: "./media/characters/fen/diving.svg"
  2336. }
  2337. },
  2338. sleeby: {
  2339. height: math.unit(3.45, "meters"),
  2340. weight: math.unit(2400, "lb"),
  2341. name: "Sleeby",
  2342. image: {
  2343. source: "./media/characters/fen/sleeby.svg"
  2344. }
  2345. },
  2346. goo: {
  2347. height: math.unit(12, "feet"),
  2348. weight: math.unit(3600, "lb"),
  2349. volume: math.unit(1000, "liters"),
  2350. preyCapacity: math.unit(6, "people"),
  2351. name: "Goo",
  2352. image: {
  2353. source: "./media/characters/fen/goo.svg",
  2354. extra: 1307/1071,
  2355. bottom: 134/1441
  2356. }
  2357. },
  2358. horror: {
  2359. height: math.unit(13.6, "feet"),
  2360. weight: math.unit(2400, "lb"),
  2361. preyCapacity: math.unit(1, "people"),
  2362. name: "Horror",
  2363. image: {
  2364. source: "./media/characters/fen/horror.svg",
  2365. extra: 893/797,
  2366. bottom: 0/893
  2367. }
  2368. },
  2369. gooNsfw: {
  2370. height: math.unit(12, "feet"),
  2371. weight: math.unit(3750, "lb"),
  2372. volume: math.unit(1000, "liters"),
  2373. preyCapacity: math.unit(6, "people"),
  2374. name: "Goo (NSFW)",
  2375. image: {
  2376. source: "./media/characters/fen/goo-nsfw.svg",
  2377. extra: 1875/1734,
  2378. bottom: 122/1997
  2379. }
  2380. },
  2381. maw: {
  2382. height: math.unit(5.03, "feet"),
  2383. name: "Maw",
  2384. image: {
  2385. source: "./media/characters/fen/maw.svg"
  2386. }
  2387. },
  2388. gooCeiling: {
  2389. height: math.unit(6.6, "feet"),
  2390. weight: math.unit(3000, "lb"),
  2391. volume: math.unit(1000, "liters"),
  2392. preyCapacity: math.unit(6, "people"),
  2393. name: "Maw (Goo)",
  2394. image: {
  2395. source: "./media/characters/fen/goo-maw.svg"
  2396. }
  2397. },
  2398. paw: {
  2399. height: math.unit(3.77, "feet"),
  2400. name: "Paw",
  2401. image: {
  2402. source: "./media/characters/fen/paw.svg"
  2403. },
  2404. extraAttributes: {
  2405. "toeSize": {
  2406. name: "Toe Size",
  2407. power: 2,
  2408. type: "area",
  2409. base: math.unit(0.02875, "m^2")
  2410. },
  2411. "pawSize": {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.378, "m^2")
  2416. },
  2417. }
  2418. },
  2419. tail: {
  2420. height: math.unit(12.1, "feet"),
  2421. name: "Tail",
  2422. image: {
  2423. source: "./media/characters/fen/tail.svg"
  2424. }
  2425. },
  2426. tailFull: {
  2427. height: math.unit(12.1, "feet"),
  2428. name: "Full Tail",
  2429. image: {
  2430. source: "./media/characters/fen/tail-full.svg"
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(12, "feet"),
  2435. weight: math.unit(2400, "lb"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/fen/back.svg",
  2439. },
  2440. info: {
  2441. description: {
  2442. mode: "append",
  2443. text: "\n\nHe is not currently looking at you."
  2444. }
  2445. }
  2446. },
  2447. full: {
  2448. height: math.unit(1.85, "meter"),
  2449. weight: math.unit(3200, "lb"),
  2450. preyCapacity: math.unit(3, "people"),
  2451. name: "Full",
  2452. image: {
  2453. source: "./media/characters/fen/full.svg",
  2454. extra: 1133/859,
  2455. bottom: 145/1278
  2456. },
  2457. info: {
  2458. description: {
  2459. mode: "append",
  2460. text: "\n\nMunch."
  2461. }
  2462. }
  2463. },
  2464. gooLounging: {
  2465. height: math.unit(4.53, "feet"),
  2466. weight: math.unit(3000, "lb"),
  2467. preyCapacity: math.unit(6, "people"),
  2468. name: "Goo (Lounging)",
  2469. image: {
  2470. source: "./media/characters/fen/goo-lounging.svg",
  2471. bottom: 116 / 613
  2472. }
  2473. },
  2474. lounging: {
  2475. height: math.unit(10.52, "feet"),
  2476. weight: math.unit(2400, "lb"),
  2477. name: "Lounging",
  2478. image: {
  2479. source: "./media/characters/fen/lounging.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Small",
  2486. height: math.unit(2.2428, "meter")
  2487. },
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(12, "feet"),
  2491. default: true,
  2492. },
  2493. {
  2494. name: "Big",
  2495. height: math.unit(20, "feet")
  2496. },
  2497. {
  2498. name: "Minimacro",
  2499. height: math.unit(40, "feet"),
  2500. info: {
  2501. description: {
  2502. mode: "append",
  2503. text: "\n\nTOO DAMN BIG"
  2504. }
  2505. }
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(100, "feet"),
  2510. info: {
  2511. description: {
  2512. mode: "append",
  2513. text: "\n\nTOO DAMN BIG"
  2514. }
  2515. }
  2516. },
  2517. {
  2518. name: "Megamacro",
  2519. height: math.unit(2, "miles")
  2520. },
  2521. {
  2522. name: "Gigamacro",
  2523. height: math.unit(10, "earths")
  2524. },
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2529. {
  2530. front: {
  2531. height: math.unit(183, "cm"),
  2532. weight: math.unit(80, "kg"),
  2533. name: "Front",
  2534. image: {
  2535. source: "./media/characters/sofia-fluttertail/front.svg",
  2536. bottom: 0.01,
  2537. extra: 2154 / 2081
  2538. }
  2539. },
  2540. frontAlt: {
  2541. height: math.unit(183, "cm"),
  2542. weight: math.unit(80, "kg"),
  2543. name: "Front (alt)",
  2544. image: {
  2545. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2546. }
  2547. },
  2548. back: {
  2549. height: math.unit(183, "cm"),
  2550. weight: math.unit(80, "kg"),
  2551. name: "Back",
  2552. image: {
  2553. source: "./media/characters/sofia-fluttertail/back.svg"
  2554. }
  2555. },
  2556. kneeling: {
  2557. height: math.unit(125, "cm"),
  2558. weight: math.unit(80, "kg"),
  2559. name: "Kneeling",
  2560. image: {
  2561. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2562. extra: 1033 / 977,
  2563. bottom: 23.7 / 1057
  2564. }
  2565. },
  2566. maw: {
  2567. height: math.unit(183 / 5, "cm"),
  2568. name: "Maw",
  2569. image: {
  2570. source: "./media/characters/sofia-fluttertail/maw.svg"
  2571. }
  2572. },
  2573. mawcloseup: {
  2574. height: math.unit(183 / 5 * 0.41, "cm"),
  2575. name: "Maw (Closeup)",
  2576. image: {
  2577. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2578. }
  2579. },
  2580. paws: {
  2581. height: math.unit(1.17, "feet"),
  2582. name: "Paws",
  2583. image: {
  2584. source: "./media/characters/sofia-fluttertail/paws.svg",
  2585. extra: 851 / 851,
  2586. bottom: 17 / 868
  2587. }
  2588. },
  2589. },
  2590. [
  2591. {
  2592. name: "Normal",
  2593. height: math.unit(1.83, "meter")
  2594. },
  2595. {
  2596. name: "Size Thief",
  2597. height: math.unit(18, "feet")
  2598. },
  2599. {
  2600. name: "50 Foot Collie",
  2601. height: math.unit(50, "feet")
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(96, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Megamerger",
  2610. height: math.unit(650, "feet")
  2611. },
  2612. ]
  2613. ))
  2614. characterMakers.push(() => makeCharacter(
  2615. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2616. {
  2617. front: {
  2618. height: math.unit(7, "feet"),
  2619. weight: math.unit(100, "kg"),
  2620. name: "Front",
  2621. image: {
  2622. source: "./media/characters/march/front.svg",
  2623. extra: 1992/1851,
  2624. bottom: 39/2031
  2625. }
  2626. },
  2627. foot: {
  2628. height: math.unit(0.9, "feet"),
  2629. name: "Foot",
  2630. image: {
  2631. source: "./media/characters/march/foot.svg"
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Normal",
  2638. height: math.unit(7.9, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(220, "meters")
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(2.98, "km"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Gigamacro",
  2651. height: math.unit(15963, "km")
  2652. },
  2653. {
  2654. name: "Teramacro",
  2655. height: math.unit(2980000000, "km")
  2656. },
  2657. {
  2658. name: "Examacro",
  2659. height: math.unit(250, "parsecs")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(6, "feet"),
  2668. weight: math.unit(60, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/noir/front.svg",
  2672. extra: 1,
  2673. bottom: 0.032
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Normal",
  2680. height: math.unit(6.6, "feet")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(500, "feet")
  2685. },
  2686. {
  2687. name: "Megamacro",
  2688. height: math.unit(2.5, "km"),
  2689. default: true
  2690. },
  2691. {
  2692. name: "Gigamacro",
  2693. height: math.unit(22500, "km")
  2694. },
  2695. {
  2696. name: "Teramacro",
  2697. height: math.unit(2500000000, "km")
  2698. },
  2699. {
  2700. name: "Examacro",
  2701. height: math.unit(200, "parsecs")
  2702. },
  2703. ]
  2704. ))
  2705. characterMakers.push(() => makeCharacter(
  2706. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2707. {
  2708. front: {
  2709. height: math.unit(7, "feet"),
  2710. weight: math.unit(100, "kg"),
  2711. name: "Front",
  2712. image: {
  2713. source: "./media/characters/okuri/front.svg",
  2714. extra: 739/665,
  2715. bottom: 39/778
  2716. }
  2717. },
  2718. back: {
  2719. height: math.unit(7, "feet"),
  2720. weight: math.unit(100, "kg"),
  2721. name: "Back",
  2722. image: {
  2723. source: "./media/characters/okuri/back.svg",
  2724. extra: 734/653,
  2725. bottom: 13/747
  2726. }
  2727. },
  2728. sitting: {
  2729. height: math.unit(2.95, "feet"),
  2730. weight: math.unit(100, "kg"),
  2731. name: "Sitting",
  2732. image: {
  2733. source: "./media/characters/okuri/sitting.svg",
  2734. extra: 370/318,
  2735. bottom: 99/469
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Smallest",
  2742. height: math.unit(5 + 2/12, "feet")
  2743. },
  2744. {
  2745. name: "Smaller",
  2746. height: math.unit(300, "feet")
  2747. },
  2748. {
  2749. name: "Small",
  2750. height: math.unit(1000, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(1, "mile")
  2755. },
  2756. {
  2757. name: "Mega Macro (Small)",
  2758. height: math.unit(20, "km")
  2759. },
  2760. {
  2761. name: "Mega Macro (Large)",
  2762. height: math.unit(600, "km")
  2763. },
  2764. {
  2765. name: "Giga Macro",
  2766. height: math.unit(10000, "km")
  2767. },
  2768. {
  2769. name: "Normal",
  2770. height: math.unit(577560, "km"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Large",
  2775. height: math.unit(4, "galaxies")
  2776. },
  2777. {
  2778. name: "Largest",
  2779. height: math.unit(15, "multiverses")
  2780. },
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(7, "feet"),
  2788. weight: math.unit(100, "kg"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/manny/front.svg",
  2792. extra: 1,
  2793. bottom: 0.06
  2794. }
  2795. },
  2796. back: {
  2797. height: math.unit(7, "feet"),
  2798. weight: math.unit(100, "kg"),
  2799. name: "Back",
  2800. image: {
  2801. source: "./media/characters/manny/back.svg",
  2802. extra: 1,
  2803. bottom: 0.014
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(7, "feet"),
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(78, "feet"),
  2815. default: true
  2816. },
  2817. {
  2818. name: "Macro+",
  2819. height: math.unit(300, "meters")
  2820. },
  2821. {
  2822. name: "Macro++",
  2823. height: math.unit(2400, "meters")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(5167, "meters")
  2828. },
  2829. {
  2830. name: "Gigamacro",
  2831. height: math.unit(41769, "miles")
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(7, "feet"),
  2840. weight: math.unit(100, "kg"),
  2841. name: "Front",
  2842. image: {
  2843. source: "./media/characters/adake/front-1.svg"
  2844. }
  2845. },
  2846. frontAlt: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(100, "kg"),
  2849. name: "Front (Alt)",
  2850. image: {
  2851. source: "./media/characters/adake/front-2.svg",
  2852. extra: 1,
  2853. bottom: 0.01
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(7, "feet"),
  2858. weight: math.unit(100, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/adake/back.svg",
  2862. }
  2863. },
  2864. kneel: {
  2865. height: math.unit(5.385, "feet"),
  2866. weight: math.unit(100, "kg"),
  2867. name: "Kneeling",
  2868. image: {
  2869. source: "./media/characters/adake/kneel.svg",
  2870. bottom: 0.052
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(7, "feet"),
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(78, "feet"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Macro+",
  2886. height: math.unit(300, "meters")
  2887. },
  2888. {
  2889. name: "Macro++",
  2890. height: math.unit(2400, "meters")
  2891. },
  2892. {
  2893. name: "Megamacro",
  2894. height: math.unit(5167, "meters")
  2895. },
  2896. {
  2897. name: "Gigamacro",
  2898. height: math.unit(41769, "miles")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(1.65, "meters"),
  2907. weight: math.unit(50, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/elijah/front.svg",
  2911. extra: 858 / 830,
  2912. bottom: 95.5 / 953.8559
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(1.65, "meters"),
  2917. weight: math.unit(50, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/elijah/back.svg",
  2921. extra: 895 / 850,
  2922. bottom: 5.3 / 897.956
  2923. }
  2924. },
  2925. frontNsfw: {
  2926. height: math.unit(1.65, "meters"),
  2927. weight: math.unit(50, "kg"),
  2928. name: "Front (NSFW)",
  2929. image: {
  2930. source: "./media/characters/elijah/front-nsfw.svg",
  2931. extra: 858 / 830,
  2932. bottom: 95.5 / 953.8559
  2933. }
  2934. },
  2935. backNsfw: {
  2936. height: math.unit(1.65, "meters"),
  2937. weight: math.unit(50, "kg"),
  2938. name: "Back (NSFW)",
  2939. image: {
  2940. source: "./media/characters/elijah/back-nsfw.svg",
  2941. extra: 895 / 850,
  2942. bottom: 5.3 / 897.956
  2943. }
  2944. },
  2945. dick: {
  2946. height: math.unit(1, "feet"),
  2947. name: "Dick",
  2948. image: {
  2949. source: "./media/characters/elijah/dick.svg"
  2950. }
  2951. },
  2952. beakOpen: {
  2953. height: math.unit(1.25, "feet"),
  2954. name: "Beak (Open)",
  2955. image: {
  2956. source: "./media/characters/elijah/beak-open.svg"
  2957. }
  2958. },
  2959. beakShut: {
  2960. height: math.unit(1.25, "feet"),
  2961. name: "Beak (Shut)",
  2962. image: {
  2963. source: "./media/characters/elijah/beak-shut.svg"
  2964. }
  2965. },
  2966. footFlexing: {
  2967. height: math.unit(1.61, "feet"),
  2968. name: "Foot (Flexing)",
  2969. image: {
  2970. source: "./media/characters/elijah/foot-flexing.svg"
  2971. }
  2972. },
  2973. footStepping: {
  2974. height: math.unit(1.44, "feet"),
  2975. name: "Foot (Stepping)",
  2976. image: {
  2977. source: "./media/characters/elijah/foot-stepping.svg"
  2978. }
  2979. },
  2980. plantigradeLeg: {
  2981. height: math.unit(2.34, "feet"),
  2982. name: "Plantigrade Leg",
  2983. image: {
  2984. source: "./media/characters/elijah/plantigrade-leg.svg"
  2985. }
  2986. },
  2987. plantigradeFootLeft: {
  2988. height: math.unit(0.9, "feet"),
  2989. name: "Plantigrade Foot (Left)",
  2990. image: {
  2991. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2992. }
  2993. },
  2994. plantigradeFootRight: {
  2995. height: math.unit(0.9, "feet"),
  2996. name: "Plantigrade Foot (Right)",
  2997. image: {
  2998. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Normal",
  3005. height: math.unit(1.65, "meters")
  3006. },
  3007. {
  3008. name: "Macro",
  3009. height: math.unit(55, "meters"),
  3010. default: true
  3011. },
  3012. {
  3013. name: "Macro+",
  3014. height: math.unit(105, "meters")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(7 + 2/12, "feet"),
  3023. weight: math.unit(320, "kg"),
  3024. preyCapacity: math.unit(0.276549935, "people"),
  3025. name: "Front",
  3026. image: {
  3027. source: "./media/characters/rai/front.svg",
  3028. extra: 1802/1696,
  3029. bottom: 68/1870
  3030. },
  3031. form: "anthro",
  3032. default: true
  3033. },
  3034. frontDressed: {
  3035. height: math.unit(7 + 2/12, "feet"),
  3036. weight: math.unit(320, "kg"),
  3037. preyCapacity: math.unit(0.276549935, "people"),
  3038. name: "Front (Dressed)",
  3039. image: {
  3040. source: "./media/characters/rai/front-dressed.svg",
  3041. extra: 1802/1696,
  3042. bottom: 68/1870
  3043. },
  3044. form: "anthro"
  3045. },
  3046. side: {
  3047. height: math.unit(7 + 2/12, "feet"),
  3048. weight: math.unit(320, "kg"),
  3049. preyCapacity: math.unit(0.276549935, "people"),
  3050. name: "Side",
  3051. image: {
  3052. source: "./media/characters/rai/side.svg",
  3053. extra: 1789/1710,
  3054. bottom: 115/1904
  3055. },
  3056. form: "anthro"
  3057. },
  3058. back: {
  3059. height: math.unit(7 + 2/12, "feet"),
  3060. weight: math.unit(320, "kg"),
  3061. preyCapacity: math.unit(0.276549935, "people"),
  3062. name: "Back",
  3063. image: {
  3064. source: "./media/characters/rai/back.svg",
  3065. extra: 1770/1707,
  3066. bottom: 28/1798
  3067. },
  3068. form: "anthro"
  3069. },
  3070. feral: {
  3071. height: math.unit(9.5, "feet"),
  3072. weight: math.unit(640, "kg"),
  3073. preyCapacity: math.unit(4, "people"),
  3074. name: "Feral",
  3075. image: {
  3076. source: "./media/characters/rai/feral.svg",
  3077. extra: 945/553,
  3078. bottom: 176/1121
  3079. },
  3080. form: "feral",
  3081. default: true
  3082. },
  3083. dragon: {
  3084. height: math.unit(23, "feet"),
  3085. weight: math.unit(50000, "lb"),
  3086. name: "Dragon",
  3087. image: {
  3088. source: "./media/characters/rai/dragon.svg",
  3089. extra: 2498 / 2030,
  3090. bottom: 85.2 / 2584
  3091. },
  3092. form: "dragon",
  3093. default: true
  3094. },
  3095. maw: {
  3096. height: math.unit(1.69, "feet"),
  3097. name: "Maw",
  3098. image: {
  3099. source: "./media/characters/rai/maw.svg"
  3100. },
  3101. form: "anthro"
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Normal",
  3107. height: math.unit(7 + 2/12, "feet"),
  3108. form: "anthro"
  3109. },
  3110. {
  3111. name: "Big",
  3112. height: math.unit(11, "feet"),
  3113. form: "anthro"
  3114. },
  3115. {
  3116. name: "Minimacro",
  3117. height: math.unit(77, "feet"),
  3118. form: "anthro"
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(302, "feet"),
  3123. default: true,
  3124. form: "anthro"
  3125. },
  3126. {
  3127. name: "Normal",
  3128. height: math.unit(9.5, "feet"),
  3129. form: "feral",
  3130. default: true
  3131. },
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(23, "feet"),
  3135. form: "dragon",
  3136. default: true
  3137. }
  3138. ],
  3139. {
  3140. "anthro": {
  3141. name: "Anthro",
  3142. default: true
  3143. },
  3144. "feral": {
  3145. name: "Feral",
  3146. },
  3147. "dragon": {
  3148. name: "Dragon",
  3149. },
  3150. }
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3154. {
  3155. frontDressed: {
  3156. height: math.unit(216, "feet"),
  3157. weight: math.unit(7000000, "lb"),
  3158. preyCapacity: math.unit(1321, "people"),
  3159. name: "Front (Dressed)",
  3160. image: {
  3161. source: "./media/characters/jazzy/front-dressed.svg",
  3162. extra: 2738 / 2651,
  3163. bottom: 41.8 / 2786
  3164. }
  3165. },
  3166. backDressed: {
  3167. height: math.unit(216, "feet"),
  3168. weight: math.unit(7000000, "lb"),
  3169. preyCapacity: math.unit(1321, "people"),
  3170. name: "Back (Dressed)",
  3171. image: {
  3172. source: "./media/characters/jazzy/back-dressed.svg",
  3173. extra: 2775 / 2673,
  3174. bottom: 36.8 / 2817
  3175. }
  3176. },
  3177. front: {
  3178. height: math.unit(216, "feet"),
  3179. weight: math.unit(7000000, "lb"),
  3180. preyCapacity: math.unit(1321, "people"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/jazzy/front.svg",
  3184. extra: 2738 / 2651,
  3185. bottom: 41.8 / 2786
  3186. }
  3187. },
  3188. back: {
  3189. height: math.unit(216, "feet"),
  3190. weight: math.unit(7000000, "lb"),
  3191. preyCapacity: math.unit(1321, "people"),
  3192. name: "Back",
  3193. image: {
  3194. source: "./media/characters/jazzy/back.svg",
  3195. extra: 2775 / 2673,
  3196. bottom: 36.8 / 2817
  3197. }
  3198. },
  3199. maw: {
  3200. height: math.unit(20, "feet"),
  3201. name: "Maw",
  3202. image: {
  3203. source: "./media/characters/jazzy/maw.svg"
  3204. }
  3205. },
  3206. paws: {
  3207. height: math.unit(27.5, "feet"),
  3208. name: "Paws",
  3209. image: {
  3210. source: "./media/characters/jazzy/paws.svg"
  3211. }
  3212. },
  3213. eye: {
  3214. height: math.unit(4.4, "feet"),
  3215. name: "Eye",
  3216. image: {
  3217. source: "./media/characters/jazzy/eye.svg"
  3218. }
  3219. },
  3220. droneOffense: {
  3221. height: math.unit(9.5, "inches"),
  3222. name: "Drone (Offense)",
  3223. image: {
  3224. source: "./media/characters/jazzy/drone-offense.svg"
  3225. }
  3226. },
  3227. droneRecon: {
  3228. height: math.unit(9.5, "inches"),
  3229. name: "Drone (Recon)",
  3230. image: {
  3231. source: "./media/characters/jazzy/drone-recon.svg"
  3232. }
  3233. },
  3234. droneDefense: {
  3235. height: math.unit(9.5, "inches"),
  3236. name: "Drone (Defense)",
  3237. image: {
  3238. source: "./media/characters/jazzy/drone-defense.svg"
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(216, "feet"),
  3246. default: true
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(9 + 6/12, "feet"),
  3255. weight: math.unit(700, "lb"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/flamm/front.svg",
  3259. extra: 1736/1596,
  3260. bottom: 93/1829
  3261. }
  3262. },
  3263. buff: {
  3264. height: math.unit(9 + 6/12, "feet"),
  3265. weight: math.unit(950, "lb"),
  3266. name: "Buff",
  3267. image: {
  3268. source: "./media/characters/flamm/buff.svg",
  3269. extra: 3018/2874,
  3270. bottom: 221/3239
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Normal",
  3277. height: math.unit(9.5, "feet")
  3278. },
  3279. {
  3280. name: "Macro",
  3281. height: math.unit(200, "feet"),
  3282. default: true
  3283. },
  3284. ]
  3285. ))
  3286. characterMakers.push(() => makeCharacter(
  3287. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3288. {
  3289. front: {
  3290. height: math.unit(5 + 3/12, "feet"),
  3291. weight: math.unit(60, "kg"),
  3292. name: "Front",
  3293. image: {
  3294. source: "./media/characters/zephiro/front.svg",
  3295. extra: 1873/1761,
  3296. bottom: 147/2020
  3297. }
  3298. },
  3299. side: {
  3300. height: math.unit(5 + 3/12, "feet"),
  3301. weight: math.unit(60, "kg"),
  3302. name: "Side",
  3303. image: {
  3304. source: "./media/characters/zephiro/side.svg",
  3305. extra: 1929/1827,
  3306. bottom: 65/1994
  3307. }
  3308. },
  3309. back: {
  3310. height: math.unit(5 + 3/12, "feet"),
  3311. weight: math.unit(60, "kg"),
  3312. name: "Back",
  3313. image: {
  3314. source: "./media/characters/zephiro/back.svg",
  3315. extra: 1926/1816,
  3316. bottom: 41/1967
  3317. }
  3318. },
  3319. hand: {
  3320. height: math.unit(0.68, "feet"),
  3321. name: "Hand",
  3322. image: {
  3323. source: "./media/characters/zephiro/hand.svg"
  3324. }
  3325. },
  3326. paw: {
  3327. height: math.unit(1, "feet"),
  3328. name: "Paw",
  3329. image: {
  3330. source: "./media/characters/zephiro/paw.svg"
  3331. }
  3332. },
  3333. beans: {
  3334. height: math.unit(0.93, "feet"),
  3335. name: "Beans",
  3336. image: {
  3337. source: "./media/characters/zephiro/beans.svg"
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Micro",
  3344. height: math.unit(3, "inches")
  3345. },
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(5 + 3 / 12, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(118, "feet")
  3354. },
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(5, "feet"),
  3362. weight: math.unit(90, "kg"),
  3363. preyCapacity: math.unit(14, "people"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/fory/front.svg",
  3367. extra: 2862 / 2674,
  3368. bottom: 180 / 3043.8
  3369. },
  3370. form: "weaselbun",
  3371. default: true,
  3372. extraAttributes: {
  3373. "pawSize": {
  3374. name: "Paw Size",
  3375. power: 2,
  3376. type: "area",
  3377. base: math.unit(0.1596, "m^2")
  3378. },
  3379. "pawLength": {
  3380. name: "Paw Length",
  3381. power: 1,
  3382. type: "length",
  3383. base: math.unit(0.7, "m")
  3384. }
  3385. }
  3386. },
  3387. back: {
  3388. height: math.unit(5, "feet"),
  3389. weight: math.unit(90, "kg"),
  3390. preyCapacity: math.unit(14, "people"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/fory/back.svg",
  3394. extra: 1790/1672,
  3395. bottom: 84/1874
  3396. },
  3397. form: "weaselbun",
  3398. extraAttributes: {
  3399. "pawSize": {
  3400. name: "Paw Size",
  3401. power: 2,
  3402. type: "area",
  3403. base: math.unit(0.1596, "m^2")
  3404. },
  3405. "pawLength": {
  3406. name: "Paw Length",
  3407. power: 1,
  3408. type: "length",
  3409. base: math.unit(0.7, "m")
  3410. }
  3411. }
  3412. },
  3413. paw: {
  3414. height: math.unit(2.14, "feet"),
  3415. name: "Paw",
  3416. image: {
  3417. source: "./media/characters/fory/paw.svg"
  3418. },
  3419. form: "weaselbun",
  3420. extraAttributes: {
  3421. "pawSize": {
  3422. name: "Paw Size",
  3423. power: 2,
  3424. type: "area",
  3425. base: math.unit(0.1596, "m^2")
  3426. },
  3427. "pawLength": {
  3428. name: "Paw Length",
  3429. power: 1,
  3430. type: "length",
  3431. base: math.unit(0.48, "m")
  3432. }
  3433. }
  3434. },
  3435. bunBack: {
  3436. height: math.unit(3, "feet"),
  3437. weight: math.unit(20, "kg"),
  3438. preyCapacity: math.unit(3, "people"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/fory/bun-back.svg",
  3442. extra: 1749/1564,
  3443. bottom: 246/1995
  3444. },
  3445. form: "bun",
  3446. default: true,
  3447. extraAttributes: {
  3448. "pawSize": {
  3449. name: "Paw Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.072, "m^2")
  3453. },
  3454. "pawLength": {
  3455. name: "Paw Length",
  3456. power: 1,
  3457. type: "length",
  3458. base: math.unit(0.45, "m")
  3459. }
  3460. }
  3461. },
  3462. },
  3463. [
  3464. {
  3465. name: "Normal",
  3466. height: math.unit(5, "feet"),
  3467. form: "weaselbun"
  3468. },
  3469. {
  3470. name: "Macro",
  3471. height: math.unit(50, "feet"),
  3472. default: true,
  3473. form: "weaselbun"
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(10, "miles"),
  3478. form: "weaselbun"
  3479. },
  3480. {
  3481. name: "Gigamacro",
  3482. height: math.unit(5, "earths"),
  3483. form: "weaselbun"
  3484. },
  3485. {
  3486. name: "Normal",
  3487. height: math.unit(3, "feet"),
  3488. default: true,
  3489. form: "bun"
  3490. },
  3491. {
  3492. name: "Fun-Size",
  3493. height: math.unit(12, "feet"),
  3494. form: "bun"
  3495. },
  3496. {
  3497. name: "Macro",
  3498. height: math.unit(100, "feet"),
  3499. form: "bun"
  3500. },
  3501. {
  3502. name: "Planetary",
  3503. height: math.unit(3, "earths"),
  3504. form: "bun"
  3505. },
  3506. ],
  3507. {
  3508. "weaselbun": {
  3509. name: "Weaselbun",
  3510. default: true
  3511. },
  3512. "bun": {
  3513. name: "Bun",
  3514. },
  3515. }
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(7, "feet"),
  3522. weight: math.unit(90, "kg"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/kurrikage/front.svg",
  3526. extra: 1845/1733,
  3527. bottom: 119/1964
  3528. }
  3529. },
  3530. back: {
  3531. height: math.unit(7, "feet"),
  3532. weight: math.unit(90, "kg"),
  3533. name: "Back",
  3534. image: {
  3535. source: "./media/characters/kurrikage/back.svg",
  3536. extra: 1790/1677,
  3537. bottom: 61/1851
  3538. }
  3539. },
  3540. dressed: {
  3541. height: math.unit(7, "feet"),
  3542. weight: math.unit(90, "kg"),
  3543. name: "Dressed",
  3544. image: {
  3545. source: "./media/characters/kurrikage/dressed.svg",
  3546. extra: 1845/1733,
  3547. bottom: 119/1964
  3548. }
  3549. },
  3550. foot: {
  3551. height: math.unit(1.5, "feet"),
  3552. name: "Foot",
  3553. image: {
  3554. source: "./media/characters/kurrikage/foot.svg"
  3555. }
  3556. },
  3557. staff: {
  3558. height: math.unit(6.7, "feet"),
  3559. name: "Staff",
  3560. image: {
  3561. source: "./media/characters/kurrikage/staff.svg"
  3562. }
  3563. },
  3564. peek: {
  3565. height: math.unit(1.05, "feet"),
  3566. name: "Peeking",
  3567. image: {
  3568. source: "./media/characters/kurrikage/peek.svg",
  3569. bottom: 0.08
  3570. }
  3571. },
  3572. },
  3573. [
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(12, "feet"),
  3577. default: true
  3578. },
  3579. {
  3580. name: "Big",
  3581. height: math.unit(20, "feet")
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(500, "feet")
  3586. },
  3587. {
  3588. name: "Megamacro",
  3589. height: math.unit(20, "miles")
  3590. },
  3591. ]
  3592. ))
  3593. characterMakers.push(() => makeCharacter(
  3594. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3595. {
  3596. front: {
  3597. height: math.unit(6, "feet"),
  3598. weight: math.unit(75, "kg"),
  3599. name: "Front",
  3600. image: {
  3601. source: "./media/characters/shingo/front.svg",
  3602. extra: 1900/1825,
  3603. bottom: 82/1982
  3604. }
  3605. },
  3606. side: {
  3607. height: math.unit(6, "feet"),
  3608. weight: math.unit(75, "kg"),
  3609. name: "Side",
  3610. image: {
  3611. source: "./media/characters/shingo/side.svg",
  3612. extra: 1930/1865,
  3613. bottom: 16/1946
  3614. }
  3615. },
  3616. back: {
  3617. height: math.unit(6, "feet"),
  3618. weight: math.unit(75, "kg"),
  3619. name: "Back",
  3620. image: {
  3621. source: "./media/characters/shingo/back.svg",
  3622. extra: 1922/1852,
  3623. bottom: 16/1938
  3624. }
  3625. },
  3626. frontDressed: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(150, "lb"),
  3629. name: "Front-dressed",
  3630. image: {
  3631. source: "./media/characters/shingo/front-dressed.svg",
  3632. extra: 1900/1825,
  3633. bottom: 82/1982
  3634. }
  3635. },
  3636. paw: {
  3637. height: math.unit(1.29, "feet"),
  3638. name: "Paw",
  3639. image: {
  3640. source: "./media/characters/shingo/paw.svg"
  3641. }
  3642. },
  3643. hand: {
  3644. height: math.unit(1.07, "feet"),
  3645. name: "Hand",
  3646. image: {
  3647. source: "./media/characters/shingo/hand.svg"
  3648. }
  3649. },
  3650. frontAlt: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(75, "kg"),
  3653. name: "Front (Alt)",
  3654. image: {
  3655. source: "./media/characters/shingo/front-alt.svg",
  3656. extra: 3511 / 3338,
  3657. bottom: 0.005
  3658. }
  3659. },
  3660. frontAlt2: {
  3661. height: math.unit(6, "feet"),
  3662. weight: math.unit(75, "kg"),
  3663. name: "Front (Alt 2)",
  3664. image: {
  3665. source: "./media/characters/shingo/front-alt-2.svg",
  3666. extra: 706/681,
  3667. bottom: 11/717
  3668. }
  3669. },
  3670. pawAlt: {
  3671. height: math.unit(1, "feet"),
  3672. name: "Paw (Alt)",
  3673. image: {
  3674. source: "./media/characters/shingo/paw-alt.svg"
  3675. }
  3676. },
  3677. },
  3678. [
  3679. {
  3680. name: "Micro",
  3681. height: math.unit(4, "inches")
  3682. },
  3683. {
  3684. name: "Normal",
  3685. height: math.unit(6, "feet"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Macro",
  3690. height: math.unit(108, "feet")
  3691. },
  3692. {
  3693. name: "Macro+",
  3694. height: math.unit(1500, "feet")
  3695. },
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3700. {
  3701. side: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Side",
  3705. image: {
  3706. source: "./media/characters/aigey/side.svg"
  3707. }
  3708. },
  3709. },
  3710. [
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(200, "feet"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(100, "miles")
  3719. },
  3720. ]
  3721. )
  3722. )
  3723. characterMakers.push(() => makeCharacter(
  3724. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3725. {
  3726. front: {
  3727. height: math.unit(5 + 5 / 12, "feet"),
  3728. weight: math.unit(75, "kg"),
  3729. name: "Front",
  3730. image: {
  3731. source: "./media/characters/natasha/front.svg",
  3732. extra: 859 / 824,
  3733. bottom: 23 / 879.6
  3734. }
  3735. },
  3736. frontNsfw: {
  3737. height: math.unit(5 + 5 / 12, "feet"),
  3738. weight: math.unit(75, "kg"),
  3739. name: "Front (NSFW)",
  3740. image: {
  3741. source: "./media/characters/natasha/front-nsfw.svg",
  3742. extra: 859 / 824,
  3743. bottom: 23 / 879.6
  3744. }
  3745. },
  3746. frontErect: {
  3747. height: math.unit(5 + 5 / 12, "feet"),
  3748. weight: math.unit(75, "kg"),
  3749. name: "Front (Erect)",
  3750. image: {
  3751. source: "./media/characters/natasha/front-erect.svg",
  3752. extra: 859 / 824,
  3753. bottom: 23 / 879.6
  3754. }
  3755. },
  3756. back: {
  3757. height: math.unit(5 + 5 / 12, "feet"),
  3758. weight: math.unit(75, "kg"),
  3759. name: "Back",
  3760. image: {
  3761. source: "./media/characters/natasha/back.svg",
  3762. extra: 887.9 / 852.6,
  3763. bottom: 9.7 / 896.4
  3764. }
  3765. },
  3766. backAlt: {
  3767. height: math.unit(5 + 5 / 12, "feet"),
  3768. weight: math.unit(75, "kg"),
  3769. name: "Back (Alt)",
  3770. image: {
  3771. source: "./media/characters/natasha/back-alt.svg",
  3772. extra: 1236.7 / 1192,
  3773. bottom: 22.3 / 1258.2
  3774. }
  3775. },
  3776. dick: {
  3777. height: math.unit(1.772, "feet"),
  3778. name: "Dick",
  3779. image: {
  3780. source: "./media/characters/natasha/dick.svg"
  3781. }
  3782. },
  3783. paw: {
  3784. height: math.unit(0.250, "meters"),
  3785. name: "Paw",
  3786. image: {
  3787. source: "./media/characters/natasha/paw.svg"
  3788. },
  3789. extraAttributes: {
  3790. "toeSize": {
  3791. name: "Toe Size",
  3792. power: 2,
  3793. type: "area",
  3794. base: math.unit(0.0024, "m^2")
  3795. },
  3796. "padSize": {
  3797. name: "Pad Size",
  3798. power: 2,
  3799. type: "area",
  3800. base: math.unit(0.00889, "m^2")
  3801. },
  3802. "pawSize": {
  3803. name: "Paw Size",
  3804. power: 2,
  3805. type: "area",
  3806. base: math.unit(0.023667, "m^2")
  3807. },
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Shortstack",
  3814. height: math.unit(3, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(5 + 5 / 12, "feet")
  3820. },
  3821. {
  3822. name: "Large",
  3823. height: math.unit(12, "feet")
  3824. },
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(100, "feet")
  3828. },
  3829. {
  3830. name: "Macro+",
  3831. height: math.unit(260, "feet")
  3832. },
  3833. {
  3834. name: "Macro++",
  3835. height: math.unit(1, "mile")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(75, "kg"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/malik/front.svg",
  3848. extra: 1750/1561,
  3849. bottom: 80/1830
  3850. },
  3851. extraAttributes: {
  3852. "toeSize": {
  3853. name: "Toe Size",
  3854. power: 2,
  3855. type: "area",
  3856. base: math.unit(0.0159, "m^2")
  3857. },
  3858. "pawSize": {
  3859. name: "Paw Size",
  3860. power: 2,
  3861. type: "area",
  3862. base: math.unit(0.09834, "m^2")
  3863. },
  3864. }
  3865. },
  3866. side: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(75, "kg"),
  3869. name: "Side",
  3870. image: {
  3871. source: "./media/characters/malik/side.svg",
  3872. extra: 1802/1685,
  3873. bottom: 42/1844
  3874. },
  3875. extraAttributes: {
  3876. "toeSize": {
  3877. name: "Toe Size",
  3878. power: 2,
  3879. type: "area",
  3880. base: math.unit(0.0159, "m^2")
  3881. },
  3882. "pawSize": {
  3883. name: "Paw Size",
  3884. power: 2,
  3885. type: "area",
  3886. base: math.unit(0.09834, "m^2")
  3887. },
  3888. }
  3889. },
  3890. back: {
  3891. height: math.unit(6, "feet"),
  3892. weight: math.unit(75, "kg"),
  3893. name: "Back",
  3894. image: {
  3895. source: "./media/characters/malik/back.svg",
  3896. extra: 1803/1607,
  3897. bottom: 33/1836
  3898. },
  3899. extraAttributes: {
  3900. "toeSize": {
  3901. name: "Toe Size",
  3902. power: 2,
  3903. type: "area",
  3904. base: math.unit(0.0159, "m^2")
  3905. },
  3906. "pawSize": {
  3907. name: "Paw Size",
  3908. power: 2,
  3909. type: "area",
  3910. base: math.unit(0.09834, "m^2")
  3911. },
  3912. }
  3913. },
  3914. },
  3915. [
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(156, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Macro+",
  3923. height: math.unit(1188, "feet")
  3924. },
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(6, "feet"),
  3932. weight: math.unit(75, "kg"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/sefer/front.svg",
  3936. extra: 848 / 659,
  3937. bottom: 28.3 / 876.442
  3938. }
  3939. },
  3940. back: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(75, "kg"),
  3943. name: "Back",
  3944. image: {
  3945. source: "./media/characters/sefer/back.svg",
  3946. extra: 864 / 695,
  3947. bottom: 10 / 871
  3948. }
  3949. },
  3950. frontDressed: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(75, "kg"),
  3953. name: "Dressed",
  3954. image: {
  3955. source: "./media/characters/sefer/dressed.svg",
  3956. extra: 839 / 653,
  3957. bottom: 37.6 / 878
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(6, "feet"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "Big",
  3969. height: math.unit(8, "meters")
  3970. },
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3975. {
  3976. body: {
  3977. height: math.unit(2.2428, "meter"),
  3978. weight: math.unit(124.738, "kg"),
  3979. name: "Body",
  3980. image: {
  3981. extra: 1225 / 1050,
  3982. source: "./media/characters/north/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Micro",
  3989. height: math.unit(4, "inches")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(63, "meters")
  3994. },
  3995. {
  3996. name: "Megamacro",
  3997. height: math.unit(101, "miles"),
  3998. default: true
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4004. {
  4005. angled: {
  4006. height: math.unit(4, "meter"),
  4007. weight: math.unit(150, "kg"),
  4008. name: "Angled",
  4009. image: {
  4010. source: "./media/characters/talan/angled-sfw.svg",
  4011. bottom: 29 / 3734
  4012. }
  4013. },
  4014. angledNsfw: {
  4015. height: math.unit(4, "meter"),
  4016. weight: math.unit(150, "kg"),
  4017. name: "Angled (NSFW)",
  4018. image: {
  4019. source: "./media/characters/talan/angled-nsfw.svg",
  4020. bottom: 29 / 3734
  4021. }
  4022. },
  4023. frontNsfw: {
  4024. height: math.unit(4, "meter"),
  4025. weight: math.unit(150, "kg"),
  4026. name: "Front (NSFW)",
  4027. image: {
  4028. source: "./media/characters/talan/front-nsfw.svg",
  4029. bottom: 29 / 3734
  4030. }
  4031. },
  4032. sideNsfw: {
  4033. height: math.unit(4, "meter"),
  4034. weight: math.unit(150, "kg"),
  4035. name: "Side (NSFW)",
  4036. image: {
  4037. source: "./media/characters/talan/side-nsfw.svg",
  4038. bottom: 29 / 3734
  4039. }
  4040. },
  4041. back: {
  4042. height: math.unit(4, "meter"),
  4043. weight: math.unit(150, "kg"),
  4044. name: "Back",
  4045. image: {
  4046. source: "./media/characters/talan/back.svg"
  4047. }
  4048. },
  4049. dickBottom: {
  4050. height: math.unit(0.621, "meter"),
  4051. name: "Dick (Bottom)",
  4052. image: {
  4053. source: "./media/characters/talan/dick-bottom.svg"
  4054. }
  4055. },
  4056. dickTop: {
  4057. height: math.unit(0.621, "meter"),
  4058. name: "Dick (Top)",
  4059. image: {
  4060. source: "./media/characters/talan/dick-top.svg"
  4061. }
  4062. },
  4063. dickSide: {
  4064. height: math.unit(0.305, "meter"),
  4065. name: "Dick (Side)",
  4066. image: {
  4067. source: "./media/characters/talan/dick-side.svg"
  4068. }
  4069. },
  4070. dickFront: {
  4071. height: math.unit(0.305, "meter"),
  4072. name: "Dick (Front)",
  4073. image: {
  4074. source: "./media/characters/talan/dick-front.svg"
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(4, "meters")
  4082. },
  4083. {
  4084. name: "Macro",
  4085. height: math.unit(100, "meters")
  4086. },
  4087. {
  4088. name: "Megamacro",
  4089. height: math.unit(2, "miles"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Gigamacro",
  4094. height: math.unit(5000, "miles")
  4095. },
  4096. {
  4097. name: "Teramacro",
  4098. height: math.unit(100, "parsecs")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(2, "meter"),
  4107. weight: math.unit(90, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/gael'rathus/front.svg"
  4111. }
  4112. },
  4113. frontAlt: {
  4114. height: math.unit(2, "meter"),
  4115. weight: math.unit(90, "kg"),
  4116. name: "Front (alt)",
  4117. image: {
  4118. source: "./media/characters/gael'rathus/front-alt.svg"
  4119. }
  4120. },
  4121. frontAlt2: {
  4122. height: math.unit(2, "meter"),
  4123. weight: math.unit(90, "kg"),
  4124. name: "Front (alt 2)",
  4125. image: {
  4126. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(9, "feet"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Large",
  4138. height: math.unit(25, "feet")
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(0.25, "miles")
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(10, "miles")
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4152. {
  4153. side: {
  4154. height: math.unit(2, "meter"),
  4155. weight: math.unit(140, "kg"),
  4156. name: "Side",
  4157. image: {
  4158. source: "./media/characters/sosha/side.svg",
  4159. extra: 1170/1006,
  4160. bottom: 94/1264
  4161. }
  4162. },
  4163. maw: {
  4164. height: math.unit(2.87, "feet"),
  4165. name: "Maw",
  4166. image: {
  4167. source: "./media/characters/sosha/maw.svg",
  4168. extra: 966/865,
  4169. bottom: 0/966
  4170. }
  4171. },
  4172. cooch: {
  4173. height: math.unit(5.6, "feet"),
  4174. name: "Cooch",
  4175. image: {
  4176. source: "./media/characters/sosha/cooch.svg"
  4177. }
  4178. },
  4179. },
  4180. [
  4181. {
  4182. name: "Normal",
  4183. height: math.unit(12, "feet"),
  4184. default: true
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4190. {
  4191. side: {
  4192. height: math.unit(5 + 5 / 12, "feet"),
  4193. weight: math.unit(170, "kg"),
  4194. name: "Side",
  4195. image: {
  4196. source: "./media/characters/runnola/side.svg",
  4197. extra: 741 / 448,
  4198. bottom: 0.05
  4199. }
  4200. },
  4201. },
  4202. [
  4203. {
  4204. name: "Small",
  4205. height: math.unit(3, "feet")
  4206. },
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(5 + 5 / 12, "feet"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Big",
  4214. height: math.unit(10, "feet")
  4215. },
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4220. {
  4221. front: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(50, "kg"),
  4224. name: "Front",
  4225. image: {
  4226. source: "./media/characters/kurribird/front.svg",
  4227. bottom: 0.015
  4228. }
  4229. },
  4230. frontAlt: {
  4231. height: math.unit(1.5, "meter"),
  4232. weight: math.unit(50, "kg"),
  4233. name: "Front (Alt)",
  4234. image: {
  4235. source: "./media/characters/kurribird/front-alt.svg",
  4236. extra: 1.45
  4237. }
  4238. },
  4239. },
  4240. [
  4241. {
  4242. name: "Normal",
  4243. height: math.unit(7, "feet")
  4244. },
  4245. {
  4246. name: "Big",
  4247. height: math.unit(12, "feet"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Macro",
  4252. height: math.unit(1500, "feet")
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(2, "miles")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(2, "meter"),
  4265. weight: math.unit(80, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/elbial/front.svg",
  4269. extra: 1643 / 1556,
  4270. bottom: 60.2 / 1696
  4271. }
  4272. },
  4273. side: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(80, "kg"),
  4276. name: "Side",
  4277. image: {
  4278. source: "./media/characters/elbial/side.svg",
  4279. extra: 1601/1528,
  4280. bottom: 97/1698
  4281. }
  4282. },
  4283. back: {
  4284. height: math.unit(2, "meter"),
  4285. weight: math.unit(80, "kg"),
  4286. name: "Back",
  4287. image: {
  4288. source: "./media/characters/elbial/back.svg",
  4289. extra: 1653/1569,
  4290. bottom: 20/1673
  4291. }
  4292. },
  4293. frontDressed: {
  4294. height: math.unit(2, "meter"),
  4295. weight: math.unit(80, "kg"),
  4296. name: "Front (Dressed)",
  4297. image: {
  4298. source: "./media/characters/elbial/front-dressed.svg",
  4299. extra: 1638/1569,
  4300. bottom: 70/1708
  4301. }
  4302. },
  4303. genitals: {
  4304. height: math.unit(2 / 3.367, "meter"),
  4305. name: "Genitals",
  4306. image: {
  4307. source: "./media/characters/elbial/genitals.svg"
  4308. }
  4309. },
  4310. },
  4311. [
  4312. {
  4313. name: "Large",
  4314. height: math.unit(100, "feet")
  4315. },
  4316. {
  4317. name: "Macro",
  4318. height: math.unit(500, "feet"),
  4319. default: true
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(10, "miles")
  4324. },
  4325. {
  4326. name: "Gigamacro",
  4327. height: math.unit(25000, "miles")
  4328. },
  4329. {
  4330. name: "Full-Size",
  4331. height: math.unit(8000000, "gigaparsecs")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(2, "meter"),
  4340. weight: math.unit(60, "kg"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/noah/front.svg",
  4344. extra: 1383/1313,
  4345. bottom: 104/1487
  4346. }
  4347. },
  4348. hand: {
  4349. height: math.unit(0.6, "feet"),
  4350. name: "Hand",
  4351. image: {
  4352. source: "./media/characters/noah/hand.svg"
  4353. }
  4354. },
  4355. talons: {
  4356. height: math.unit(1.385, "feet"),
  4357. name: "Talons",
  4358. image: {
  4359. source: "./media/characters/noah/talons.svg"
  4360. }
  4361. },
  4362. beak: {
  4363. height: math.unit(0.43, "feet"),
  4364. name: "Beak",
  4365. image: {
  4366. source: "./media/characters/noah/beak.svg"
  4367. }
  4368. },
  4369. collar: {
  4370. height: math.unit(0.88, "feet"),
  4371. name: "Collar",
  4372. image: {
  4373. source: "./media/characters/noah/collar.svg"
  4374. }
  4375. },
  4376. eyeNarrow: {
  4377. height: math.unit(0.18, "feet"),
  4378. name: "Eye (Narrow)",
  4379. image: {
  4380. source: "./media/characters/noah/eye-narrow.svg"
  4381. }
  4382. },
  4383. eyeNormal: {
  4384. height: math.unit(0.18, "feet"),
  4385. name: "Eye (Normal)",
  4386. image: {
  4387. source: "./media/characters/noah/eye-normal.svg"
  4388. }
  4389. },
  4390. eyeWide: {
  4391. height: math.unit(0.18, "feet"),
  4392. name: "Eye (Wide)",
  4393. image: {
  4394. source: "./media/characters/noah/eye-wide.svg"
  4395. }
  4396. },
  4397. ear: {
  4398. height: math.unit(0.64, "feet"),
  4399. name: "Ear",
  4400. image: {
  4401. source: "./media/characters/noah/ear.svg"
  4402. }
  4403. },
  4404. },
  4405. [
  4406. {
  4407. name: "Large",
  4408. height: math.unit(50, "feet")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(750, "feet"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(50, "miles")
  4418. },
  4419. {
  4420. name: "Gigamacro",
  4421. height: math.unit(100000, "miles")
  4422. },
  4423. {
  4424. name: "Full-Size",
  4425. height: math.unit(3000000000, "miles")
  4426. }
  4427. ]
  4428. ))
  4429. characterMakers.push(() => makeCharacter(
  4430. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4431. {
  4432. front: {
  4433. height: math.unit(2, "meter"),
  4434. weight: math.unit(80, "kg"),
  4435. name: "Front",
  4436. image: {
  4437. source: "./media/characters/natalya/front.svg"
  4438. }
  4439. },
  4440. back: {
  4441. height: math.unit(2, "meter"),
  4442. weight: math.unit(80, "kg"),
  4443. name: "Back",
  4444. image: {
  4445. source: "./media/characters/natalya/back.svg"
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Normal",
  4452. height: math.unit(150, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Megamacro",
  4457. height: math.unit(5, "miles")
  4458. },
  4459. {
  4460. name: "Full-Size",
  4461. height: math.unit(600, "kiloparsecs")
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(2, "meter"),
  4470. weight: math.unit(50, "kg"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/erestrebah/front.svg",
  4474. extra: 1262/1162,
  4475. bottom: 96/1358
  4476. }
  4477. },
  4478. back: {
  4479. height: math.unit(2, "meter"),
  4480. weight: math.unit(50, "kg"),
  4481. name: "Back",
  4482. image: {
  4483. source: "./media/characters/erestrebah/back.svg",
  4484. extra: 1257/1139,
  4485. bottom: 13/1270
  4486. }
  4487. },
  4488. wing: {
  4489. height: math.unit(2, "meter"),
  4490. weight: math.unit(50, "kg"),
  4491. name: "Wing",
  4492. image: {
  4493. source: "./media/characters/erestrebah/wing.svg",
  4494. extra: 1262/1162,
  4495. bottom: 96/1358
  4496. }
  4497. },
  4498. mouth: {
  4499. height: math.unit(0.39, "feet"),
  4500. name: "Mouth",
  4501. image: {
  4502. source: "./media/characters/erestrebah/mouth.svg"
  4503. }
  4504. }
  4505. },
  4506. [
  4507. {
  4508. name: "Normal",
  4509. height: math.unit(10, "feet")
  4510. },
  4511. {
  4512. name: "Large",
  4513. height: math.unit(50, "feet"),
  4514. default: true
  4515. },
  4516. {
  4517. name: "Macro",
  4518. height: math.unit(300, "feet")
  4519. },
  4520. {
  4521. name: "Macro+",
  4522. height: math.unit(750, "feet")
  4523. },
  4524. {
  4525. name: "Megamacro",
  4526. height: math.unit(3, "miles")
  4527. }
  4528. ]
  4529. ))
  4530. characterMakers.push(() => makeCharacter(
  4531. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4532. {
  4533. front: {
  4534. height: math.unit(2, "meter"),
  4535. weight: math.unit(80, "kg"),
  4536. name: "Front",
  4537. image: {
  4538. source: "./media/characters/jennifer/front.svg",
  4539. bottom: 0.11,
  4540. extra: 1.16
  4541. }
  4542. },
  4543. frontAlt: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(80, "kg"),
  4546. name: "Front (Alt)",
  4547. image: {
  4548. source: "./media/characters/jennifer/front-alt.svg"
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Canon Height",
  4555. height: math.unit(120, "feet"),
  4556. default: true
  4557. },
  4558. {
  4559. name: "Macro+",
  4560. height: math.unit(300, "feet")
  4561. },
  4562. {
  4563. name: "Megamacro",
  4564. height: math.unit(20000, "feet")
  4565. }
  4566. ]
  4567. ))
  4568. characterMakers.push(() => makeCharacter(
  4569. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4570. {
  4571. front: {
  4572. height: math.unit(2, "meter"),
  4573. weight: math.unit(50, "kg"),
  4574. name: "Front",
  4575. image: {
  4576. source: "./media/characters/kalista/front.svg",
  4577. extra: 1314/1145,
  4578. bottom: 101/1415
  4579. }
  4580. },
  4581. back: {
  4582. height: math.unit(2, "meter"),
  4583. weight: math.unit(50, "kg"),
  4584. name: "Back",
  4585. image: {
  4586. source: "./media/characters/kalista/back.svg",
  4587. extra: 1366 / 1156,
  4588. bottom: 33.9 / 1362.78
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Uncomfortably Small",
  4595. height: math.unit(10, "feet")
  4596. },
  4597. {
  4598. name: "Small",
  4599. height: math.unit(30, "feet")
  4600. },
  4601. {
  4602. name: "Macro",
  4603. height: math.unit(100, "feet"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Macro+",
  4608. height: math.unit(2000, "feet")
  4609. },
  4610. {
  4611. name: "True Form",
  4612. height: math.unit(8924, "miles")
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4618. {
  4619. front: {
  4620. height: math.unit(2, "meter"),
  4621. weight: math.unit(120, "kg"),
  4622. name: "Front",
  4623. image: {
  4624. source: "./media/characters/ggv/front.svg"
  4625. }
  4626. },
  4627. side: {
  4628. height: math.unit(2, "meter"),
  4629. weight: math.unit(120, "kg"),
  4630. name: "Side",
  4631. image: {
  4632. source: "./media/characters/ggv/side.svg"
  4633. }
  4634. }
  4635. },
  4636. [
  4637. {
  4638. name: "Extremely Puny",
  4639. height: math.unit(9 + 5 / 12, "feet")
  4640. },
  4641. {
  4642. name: "Horribly Small",
  4643. height: math.unit(47.7, "miles"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Reasonably Sized",
  4648. height: math.unit(25000, "parsecs")
  4649. },
  4650. {
  4651. name: "Slightly Uncompressed",
  4652. height: math.unit(7.77e31, "parsecs")
  4653. },
  4654. {
  4655. name: "Omniversal",
  4656. height: math.unit(1e300, "meters")
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(2, "meter"),
  4665. weight: math.unit(75, "lb"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/napalm/front.svg"
  4669. }
  4670. },
  4671. back: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(75, "lb"),
  4674. name: "Back",
  4675. image: {
  4676. source: "./media/characters/napalm/back.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Standard",
  4683. height: math.unit(55, "feet"),
  4684. default: true
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(7 + 5 / 6, "feet"),
  4693. weight: math.unit(325, "lb"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/asana/front.svg",
  4697. extra: 1133 / 1060,
  4698. bottom: 15.2 / 1148.6
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(7 + 5 / 6, "feet"),
  4703. weight: math.unit(325, "lb"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/asana/back.svg",
  4707. extra: 1114 / 1043,
  4708. bottom: 5 / 1120
  4709. }
  4710. },
  4711. dressedDark: {
  4712. height: math.unit(7 + 5 / 6, "feet"),
  4713. weight: math.unit(325, "lb"),
  4714. name: "Dressed (Dark)",
  4715. image: {
  4716. source: "./media/characters/asana/dressed-dark.svg",
  4717. extra: 1133 / 1060,
  4718. bottom: 15.2 / 1148.6
  4719. }
  4720. },
  4721. dressedLight: {
  4722. height: math.unit(7 + 5 / 6, "feet"),
  4723. weight: math.unit(325, "lb"),
  4724. name: "Dressed (Light)",
  4725. image: {
  4726. source: "./media/characters/asana/dressed-light.svg",
  4727. extra: 1133 / 1060,
  4728. bottom: 15.2 / 1148.6
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Standard",
  4735. height: math.unit(7 + 5 / 6, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Large",
  4740. height: math.unit(10, "meters")
  4741. },
  4742. {
  4743. name: "Macro",
  4744. height: math.unit(2500, "meters")
  4745. },
  4746. {
  4747. name: "Megamacro",
  4748. height: math.unit(5e6, "meters")
  4749. },
  4750. {
  4751. name: "Examacro",
  4752. height: math.unit(5e12, "lightyears")
  4753. },
  4754. {
  4755. name: "Max Size",
  4756. height: math.unit(1e31, "lightyears")
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(60, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/ebony/front.svg",
  4769. bottom: 0.03,
  4770. extra: 1045 / 810 + 0.03
  4771. }
  4772. },
  4773. side: {
  4774. height: math.unit(2, "meter"),
  4775. weight: math.unit(60, "kg"),
  4776. name: "Side",
  4777. image: {
  4778. source: "./media/characters/ebony/side.svg",
  4779. bottom: 0.03,
  4780. extra: 1045 / 810 + 0.03
  4781. }
  4782. },
  4783. back: {
  4784. height: math.unit(2, "meter"),
  4785. weight: math.unit(60, "kg"),
  4786. name: "Back",
  4787. image: {
  4788. source: "./media/characters/ebony/back.svg",
  4789. bottom: 0.01,
  4790. extra: 1045 / 810 + 0.01
  4791. }
  4792. },
  4793. },
  4794. [
  4795. // TODO check why I did this lol
  4796. {
  4797. name: "Standard",
  4798. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(200, "feet")
  4804. },
  4805. {
  4806. name: "Gigamacro",
  4807. height: math.unit(13000, "km")
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(6, "feet"),
  4816. weight: math.unit(175, "lb"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/mountain/front.svg",
  4820. extra: 972 / 955,
  4821. bottom: 64 / 1036.6
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(175, "lb"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/mountain/back.svg",
  4830. extra: 970 / 950,
  4831. bottom: 28.25 / 999
  4832. }
  4833. },
  4834. },
  4835. [
  4836. {
  4837. name: "Large",
  4838. height: math.unit(20, "meters")
  4839. },
  4840. {
  4841. name: "Macro",
  4842. height: math.unit(300, "meters")
  4843. },
  4844. {
  4845. name: "Gigamacro",
  4846. height: math.unit(10000, "km"),
  4847. default: true
  4848. },
  4849. {
  4850. name: "Examacro",
  4851. height: math.unit(10e9, "lightyears")
  4852. }
  4853. ]
  4854. ))
  4855. characterMakers.push(() => makeCharacter(
  4856. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4857. {
  4858. front: {
  4859. height: math.unit(8, "feet"),
  4860. weight: math.unit(500, "lb"),
  4861. name: "Front",
  4862. image: {
  4863. source: "./media/characters/rick/front.svg"
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(8, "feet"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(5, "km")
  4876. }
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4881. {
  4882. front: {
  4883. height: math.unit(8, "feet"),
  4884. weight: math.unit(120, "lb"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/ona/front.svg"
  4888. }
  4889. },
  4890. frontAlt: {
  4891. height: math.unit(8, "feet"),
  4892. weight: math.unit(120, "lb"),
  4893. name: "Front (Alt)",
  4894. image: {
  4895. source: "./media/characters/ona/front-alt.svg"
  4896. }
  4897. },
  4898. back: {
  4899. height: math.unit(8, "feet"),
  4900. weight: math.unit(120, "lb"),
  4901. name: "Back",
  4902. image: {
  4903. source: "./media/characters/ona/back.svg"
  4904. }
  4905. },
  4906. foot: {
  4907. height: math.unit(1.1, "feet"),
  4908. name: "Foot",
  4909. image: {
  4910. source: "./media/characters/ona/foot.svg"
  4911. }
  4912. }
  4913. },
  4914. [
  4915. {
  4916. name: "Megamacro",
  4917. height: math.unit(70, "km"),
  4918. default: true
  4919. },
  4920. {
  4921. name: "Gigamacro",
  4922. height: math.unit(681818, "miles")
  4923. },
  4924. {
  4925. name: "Examacro",
  4926. height: math.unit(3800000, "lightyears")
  4927. },
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(12, "feet"),
  4935. weight: math.unit(3000, "lb"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/mech/front.svg",
  4939. extra: 2900 / 2770,
  4940. bottom: 110 / 3010
  4941. }
  4942. },
  4943. back: {
  4944. height: math.unit(12, "feet"),
  4945. weight: math.unit(3000, "lb"),
  4946. name: "Back",
  4947. image: {
  4948. source: "./media/characters/mech/back.svg",
  4949. extra: 3011 / 2890,
  4950. bottom: 94 / 3105
  4951. }
  4952. },
  4953. maw: {
  4954. height: math.unit(3.07, "feet"),
  4955. name: "Maw",
  4956. image: {
  4957. source: "./media/characters/mech/maw.svg"
  4958. }
  4959. },
  4960. head: {
  4961. height: math.unit(3.07, "feet"),
  4962. name: "Head",
  4963. image: {
  4964. source: "./media/characters/mech/head.svg"
  4965. }
  4966. },
  4967. dick: {
  4968. height: math.unit(1.43, "feet"),
  4969. name: "Dick",
  4970. image: {
  4971. source: "./media/characters/mech/dick.svg"
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(12, "feet")
  4979. },
  4980. {
  4981. name: "Macro",
  4982. height: math.unit(300, "feet"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Macro+",
  4987. height: math.unit(1500, "feet")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(1.3, "meter"),
  4996. weight: math.unit(30, "kg"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/gregory/front.svg",
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(1.3, "meter"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(20, "meter")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(2.8, "meter"),
  5020. weight: math.unit(200, "kg"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/elory/front.svg",
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(2.8, "meter"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(38, "meter")
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(470, "feet"),
  5044. weight: math.unit(924, "tons"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/angelpatamon/front.svg",
  5048. }
  5049. }
  5050. },
  5051. [
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(470, "feet"),
  5055. default: true
  5056. },
  5057. {
  5058. name: "Deity Size I",
  5059. height: math.unit(28651.2, "km")
  5060. },
  5061. {
  5062. name: "Deity Size II",
  5063. height: math.unit(171907.2, "km")
  5064. }
  5065. ]
  5066. ))
  5067. characterMakers.push(() => makeCharacter(
  5068. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5069. {
  5070. side: {
  5071. height: math.unit(7.2, "meter"),
  5072. weight: math.unit(8.2, "tons"),
  5073. name: "Side",
  5074. image: {
  5075. source: "./media/characters/cryae/side.svg",
  5076. extra: 3500 / 1500
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(7.2, "meter"),
  5084. default: true
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(175, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/xera/front.svg",
  5097. extra: 2377 / 1972,
  5098. bottom: 75.5 / 2452
  5099. }
  5100. },
  5101. side: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(175, "lb"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/xera/side.svg",
  5107. extra: 2345 / 2019,
  5108. bottom: 39.7 / 2384
  5109. }
  5110. },
  5111. back: {
  5112. height: math.unit(6, "feet"),
  5113. weight: math.unit(175, "lb"),
  5114. name: "Back",
  5115. image: {
  5116. source: "./media/characters/xera/back.svg",
  5117. extra: 2095 / 1984,
  5118. bottom: 67 / 2166
  5119. }
  5120. },
  5121. },
  5122. [
  5123. {
  5124. name: "Small",
  5125. height: math.unit(10, "feet")
  5126. },
  5127. {
  5128. name: "Macro",
  5129. height: math.unit(500, "meters"),
  5130. default: true
  5131. },
  5132. {
  5133. name: "Macro+",
  5134. height: math.unit(10, "km")
  5135. },
  5136. {
  5137. name: "Gigamacro",
  5138. height: math.unit(25000, "km")
  5139. },
  5140. {
  5141. name: "Teramacro",
  5142. height: math.unit(3e6, "km")
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(175, "lb"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/nebula/front.svg",
  5155. extra: 2566 / 2362,
  5156. bottom: 81 / 2644
  5157. }
  5158. }
  5159. },
  5160. [
  5161. {
  5162. name: "Small",
  5163. height: math.unit(4.5, "meters")
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(1500, "meters"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Megamacro",
  5172. height: math.unit(150, "km")
  5173. },
  5174. {
  5175. name: "Gigamacro",
  5176. height: math.unit(27000, "km")
  5177. }
  5178. ]
  5179. ))
  5180. characterMakers.push(() => makeCharacter(
  5181. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5182. {
  5183. front: {
  5184. height: math.unit(6, "feet"),
  5185. weight: math.unit(225, "lb"),
  5186. name: "Front",
  5187. image: {
  5188. source: "./media/characters/abysgar/front.svg",
  5189. extra: 1739/1614,
  5190. bottom: 71/1810
  5191. }
  5192. },
  5193. frontNsfw: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(225, "lb"),
  5196. name: "Front (NSFW)",
  5197. image: {
  5198. source: "./media/characters/abysgar/front-nsfw.svg",
  5199. extra: 1739/1614,
  5200. bottom: 71/1810
  5201. }
  5202. },
  5203. back: {
  5204. height: math.unit(4.6, "feet"),
  5205. weight: math.unit(225, "lb"),
  5206. name: "Back",
  5207. image: {
  5208. source: "./media/characters/abysgar/back.svg",
  5209. extra: 1384/1327,
  5210. bottom: 0/1384
  5211. }
  5212. },
  5213. head: {
  5214. height: math.unit(1.25, "feet"),
  5215. name: "Head",
  5216. image: {
  5217. source: "./media/characters/abysgar/head.svg",
  5218. extra: 669/569,
  5219. bottom: 0/669
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Small",
  5226. height: math.unit(4.5, "meters")
  5227. },
  5228. {
  5229. name: "Macro",
  5230. height: math.unit(1250, "meters"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Megamacro",
  5235. height: math.unit(125, "km")
  5236. },
  5237. {
  5238. name: "Gigamacro",
  5239. height: math.unit(26000, "km")
  5240. }
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5245. {
  5246. front: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(180, "lb"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/yakuz/front.svg"
  5252. }
  5253. }
  5254. },
  5255. [
  5256. {
  5257. name: "Small",
  5258. height: math.unit(5, "meters")
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(1500, "meters"),
  5263. default: true
  5264. },
  5265. {
  5266. name: "Megamacro",
  5267. height: math.unit(200, "km")
  5268. },
  5269. {
  5270. name: "Gigamacro",
  5271. height: math.unit(100000, "km")
  5272. }
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5277. {
  5278. front: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(175, "lb"),
  5281. name: "Front",
  5282. image: {
  5283. source: "./media/characters/mirova/front.svg",
  5284. extra: 3334 / 3071,
  5285. bottom: 42 / 3375.6
  5286. }
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Small",
  5292. height: math.unit(5, "meters")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(900, "meters"),
  5297. default: true
  5298. },
  5299. {
  5300. name: "Megamacro",
  5301. height: math.unit(135, "km")
  5302. },
  5303. {
  5304. name: "Gigamacro",
  5305. height: math.unit(20000, "km")
  5306. }
  5307. ]
  5308. ))
  5309. characterMakers.push(() => makeCharacter(
  5310. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5311. {
  5312. side: {
  5313. height: math.unit(28.35, "feet"),
  5314. weight: math.unit(99.75, "tons"),
  5315. name: "Side",
  5316. image: {
  5317. source: "./media/characters/asana-mech/side.svg",
  5318. extra: 923 / 699,
  5319. bottom: 50 / 975
  5320. }
  5321. },
  5322. chaingun: {
  5323. height: math.unit(7, "feet"),
  5324. weight: math.unit(2400, "lb"),
  5325. name: "Chaingun",
  5326. image: {
  5327. source: "./media/characters/asana-mech/chaingun.svg"
  5328. }
  5329. },
  5330. laser: {
  5331. height: math.unit(7.12, "feet"),
  5332. weight: math.unit(2000, "lb"),
  5333. name: "Laser",
  5334. image: {
  5335. source: "./media/characters/asana-mech/laser.svg"
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(28.35, "feet"),
  5343. default: true
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(2500, "feet")
  5348. },
  5349. {
  5350. name: "Megamacro",
  5351. height: math.unit(25, "miles")
  5352. },
  5353. {
  5354. name: "Examacro",
  5355. height: math.unit(6e8, "lightyears")
  5356. },
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5361. {
  5362. front: {
  5363. height: math.unit(5, "meters"),
  5364. weight: math.unit(1000, "kg"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/asche/front.svg",
  5368. extra: 1258 / 1190,
  5369. bottom: 47 / 1305
  5370. }
  5371. },
  5372. frontUnderwear: {
  5373. height: math.unit(5, "meters"),
  5374. weight: math.unit(1000, "kg"),
  5375. name: "Front (Underwear)",
  5376. image: {
  5377. source: "./media/characters/asche/front-underwear.svg",
  5378. extra: 1258 / 1190,
  5379. bottom: 47 / 1305
  5380. }
  5381. },
  5382. frontDressed: {
  5383. height: math.unit(5, "meters"),
  5384. weight: math.unit(1000, "kg"),
  5385. name: "Front (Dressed)",
  5386. image: {
  5387. source: "./media/characters/asche/front-dressed.svg",
  5388. extra: 1258 / 1190,
  5389. bottom: 47 / 1305
  5390. }
  5391. },
  5392. frontArmor: {
  5393. height: math.unit(5, "meters"),
  5394. weight: math.unit(1000, "kg"),
  5395. name: "Front (Armored)",
  5396. image: {
  5397. source: "./media/characters/asche/front-armored.svg",
  5398. extra: 1374 / 1308,
  5399. bottom: 23 / 1397
  5400. }
  5401. },
  5402. mp724: {
  5403. height: math.unit(0.96, "meters"),
  5404. weight: math.unit(38, "kg"),
  5405. name: "H&K MP724",
  5406. image: {
  5407. source: "./media/characters/asche/h&k-mp724.svg"
  5408. }
  5409. },
  5410. side: {
  5411. height: math.unit(5, "meters"),
  5412. weight: math.unit(1000, "kg"),
  5413. name: "Side",
  5414. image: {
  5415. source: "./media/characters/asche/side.svg",
  5416. extra: 1717 / 1609,
  5417. bottom: 0.005
  5418. }
  5419. },
  5420. back: {
  5421. height: math.unit(5, "meters"),
  5422. weight: math.unit(1000, "kg"),
  5423. name: "Back",
  5424. image: {
  5425. source: "./media/characters/asche/back.svg",
  5426. extra: 1570 / 1501
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "DEFCON 5",
  5433. height: math.unit(5, "meters")
  5434. },
  5435. {
  5436. name: "DEFCON 4",
  5437. height: math.unit(500, "meters"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "DEFCON 3",
  5442. height: math.unit(5, "km")
  5443. },
  5444. {
  5445. name: "DEFCON 2",
  5446. height: math.unit(500, "km")
  5447. },
  5448. {
  5449. name: "DEFCON 1",
  5450. height: math.unit(500000, "km")
  5451. },
  5452. {
  5453. name: "DEFCON 0",
  5454. height: math.unit(3, "gigaparsecs")
  5455. },
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5460. {
  5461. front: {
  5462. height: math.unit(7, "feet"),
  5463. weight: math.unit(92.7, "kg"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/gale/front.svg",
  5467. extra: 977/919,
  5468. bottom: 105/1082
  5469. }
  5470. },
  5471. side: {
  5472. height: math.unit(6.7, "feet"),
  5473. weight: math.unit(92.7, "kg"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/gale/side.svg",
  5477. extra: 978/922,
  5478. bottom: 140/1118
  5479. }
  5480. },
  5481. back: {
  5482. height: math.unit(7, "feet"),
  5483. weight: math.unit(92.7, "kg"),
  5484. name: "Back",
  5485. image: {
  5486. source: "./media/characters/gale/back.svg",
  5487. extra: 966/920,
  5488. bottom: 61/1027
  5489. }
  5490. },
  5491. maw: {
  5492. height: math.unit(2.23, "feet"),
  5493. name: "Maw",
  5494. image: {
  5495. source: "./media/characters/gale/maw.svg"
  5496. }
  5497. },
  5498. foot: {
  5499. height: math.unit(2.1, "feet"),
  5500. name: "Foot",
  5501. image: {
  5502. source: "./media/characters/gale/foot.svg"
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(7, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(150, "feet"),
  5514. default: true
  5515. },
  5516. {
  5517. name: "Macro+",
  5518. height: math.unit(300, "feet")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5524. {
  5525. front: {
  5526. height: math.unit(5 + 10/12, "feet"),
  5527. weight: math.unit(67, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/draylen/front.svg",
  5531. extra: 832/777,
  5532. bottom: 85/917
  5533. }
  5534. }
  5535. },
  5536. [
  5537. {
  5538. name: "Normal",
  5539. height: math.unit(5 + 10/12, "feet")
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(150, "feet"),
  5544. default: true
  5545. }
  5546. ]
  5547. ))
  5548. characterMakers.push(() => makeCharacter(
  5549. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5550. {
  5551. front: {
  5552. height: math.unit(7 + 9 / 12, "feet"),
  5553. weight: math.unit(379, "lbs"),
  5554. name: "Front",
  5555. image: {
  5556. source: "./media/characters/chez/front.svg"
  5557. }
  5558. },
  5559. side: {
  5560. height: math.unit(7 + 9 / 12, "feet"),
  5561. weight: math.unit(379, "lbs"),
  5562. name: "Side",
  5563. image: {
  5564. source: "./media/characters/chez/side.svg"
  5565. }
  5566. }
  5567. },
  5568. [
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(7 + 9 / 12, "feet"),
  5572. default: true
  5573. },
  5574. {
  5575. name: "God King",
  5576. height: math.unit(9750000, "meters")
  5577. }
  5578. ]
  5579. ))
  5580. characterMakers.push(() => makeCharacter(
  5581. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5582. {
  5583. front: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(275, "lbs"),
  5586. name: "Front",
  5587. image: {
  5588. source: "./media/characters/kaylum/front.svg",
  5589. bottom: 0.01,
  5590. extra: 1166 / 1031
  5591. }
  5592. },
  5593. frontWingless: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(275, "lbs"),
  5596. name: "Front (Wingless)",
  5597. image: {
  5598. source: "./media/characters/kaylum/front-wingless.svg",
  5599. bottom: 0.01,
  5600. extra: 1117 / 1031
  5601. }
  5602. }
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(3.05, "meters")
  5608. },
  5609. {
  5610. name: "Master",
  5611. height: math.unit(5.5, "meters")
  5612. },
  5613. {
  5614. name: "Rampage",
  5615. height: math.unit(19, "meters")
  5616. },
  5617. {
  5618. name: "Macro Lite",
  5619. height: math.unit(37, "meters")
  5620. },
  5621. {
  5622. name: "Hyper Predator",
  5623. height: math.unit(61, "meters")
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(138, "meters"),
  5628. default: true
  5629. }
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5634. {
  5635. front: {
  5636. height: math.unit(5 + 5 / 12, "feet"),
  5637. weight: math.unit(120, "lbs"),
  5638. name: "Front",
  5639. image: {
  5640. source: "./media/characters/geta/front.svg",
  5641. extra: 1003/933,
  5642. bottom: 21/1024
  5643. }
  5644. },
  5645. paw: {
  5646. height: math.unit(0.35, "feet"),
  5647. name: "Paw",
  5648. image: {
  5649. source: "./media/characters/geta/paw.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Micro",
  5656. height: math.unit(3, "inches"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(5 + 5 / 12, "feet")
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(300, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/tyrnn/front.svg"
  5674. }
  5675. }
  5676. },
  5677. [
  5678. {
  5679. name: "Main Height",
  5680. height: math.unit(355, "feet"),
  5681. default: true
  5682. },
  5683. {
  5684. name: "Fave. Height",
  5685. height: math.unit(2400, "feet")
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(300, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/appledectomy/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(2500, "feet")
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(50, "miles"),
  5709. default: true
  5710. },
  5711. {
  5712. name: "Gigamacro",
  5713. height: math.unit(5000, "miles")
  5714. },
  5715. {
  5716. name: "Teramacro",
  5717. height: math.unit(250000, "miles")
  5718. },
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(200, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/vulpes/front.svg",
  5730. extra: 573 / 543,
  5731. bottom: 0.033
  5732. }
  5733. },
  5734. side: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(200, "lbs"),
  5737. name: "Side",
  5738. image: {
  5739. source: "./media/characters/vulpes/side.svg",
  5740. extra: 577 / 549,
  5741. bottom: 11 / 588
  5742. }
  5743. },
  5744. back: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(200, "lbs"),
  5747. name: "Back",
  5748. image: {
  5749. source: "./media/characters/vulpes/back.svg",
  5750. extra: 573 / 549,
  5751. bottom: 20 / 593
  5752. }
  5753. },
  5754. feet: {
  5755. height: math.unit(1.276, "feet"),
  5756. name: "Feet",
  5757. image: {
  5758. source: "./media/characters/vulpes/feet.svg"
  5759. }
  5760. },
  5761. maw: {
  5762. height: math.unit(1.18, "feet"),
  5763. name: "Maw",
  5764. image: {
  5765. source: "./media/characters/vulpes/maw.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Micro",
  5772. height: math.unit(2, "inches")
  5773. },
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(6.3, "feet")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(850, "feet")
  5781. },
  5782. {
  5783. name: "Megamacro",
  5784. height: math.unit(7500, "feet"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Gigamacro",
  5789. height: math.unit(570000, "miles")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(210, "lbs"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/rain-fallen/front.svg"
  5802. }
  5803. },
  5804. side: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(210, "lbs"),
  5807. name: "Side",
  5808. image: {
  5809. source: "./media/characters/rain-fallen/side.svg"
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(210, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/rain-fallen/back.svg"
  5818. }
  5819. },
  5820. feral: {
  5821. height: math.unit(9, "feet"),
  5822. weight: math.unit(700, "lbs"),
  5823. name: "Feral",
  5824. image: {
  5825. source: "./media/characters/rain-fallen/feral.svg"
  5826. }
  5827. },
  5828. },
  5829. [
  5830. {
  5831. name: "Meddling with Mortals",
  5832. height: math.unit(8 + 8/12, "feet")
  5833. },
  5834. {
  5835. name: "Normal",
  5836. height: math.unit(5, "meter")
  5837. },
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(150, "meter"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Megamacro",
  5845. height: math.unit(278e6, "meter")
  5846. },
  5847. {
  5848. name: "Gigamacro",
  5849. height: math.unit(2e9, "meter")
  5850. },
  5851. {
  5852. name: "Teramacro",
  5853. height: math.unit(8e12, "meter")
  5854. },
  5855. {
  5856. name: "Devourer",
  5857. height: math.unit(14, "zettameters")
  5858. },
  5859. {
  5860. name: "Scarlet King",
  5861. height: math.unit(18, "yottameters")
  5862. },
  5863. {
  5864. name: "Void",
  5865. height: math.unit(1e88, "yottameters")
  5866. }
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5871. {
  5872. standing: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(180, "lbs"),
  5875. name: "Standing",
  5876. image: {
  5877. source: "./media/characters/zaakira/standing.svg",
  5878. extra: 1599/1504,
  5879. bottom: 39/1638
  5880. }
  5881. },
  5882. laying: {
  5883. height: math.unit(3.3, "feet"),
  5884. weight: math.unit(180, "lbs"),
  5885. name: "Laying",
  5886. image: {
  5887. source: "./media/characters/zaakira/laying.svg"
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(12, "feet")
  5895. },
  5896. {
  5897. name: "Macro",
  5898. height: math.unit(279, "feet"),
  5899. default: true
  5900. }
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5905. {
  5906. femSfw: {
  5907. height: math.unit(8, "feet"),
  5908. weight: math.unit(350, "lb"),
  5909. name: "Fem",
  5910. image: {
  5911. source: "./media/characters/sigvald/fem-sfw.svg",
  5912. extra: 182 / 164,
  5913. bottom: 8.7 / 190.5
  5914. }
  5915. },
  5916. femNsfw: {
  5917. height: math.unit(8, "feet"),
  5918. weight: math.unit(350, "lb"),
  5919. name: "Fem (NSFW)",
  5920. image: {
  5921. source: "./media/characters/sigvald/fem-nsfw.svg",
  5922. extra: 182 / 164,
  5923. bottom: 8.7 / 190.5
  5924. }
  5925. },
  5926. maleNsfw: {
  5927. height: math.unit(8, "feet"),
  5928. weight: math.unit(350, "lb"),
  5929. name: "Male (NSFW)",
  5930. image: {
  5931. source: "./media/characters/sigvald/male-nsfw.svg",
  5932. extra: 182 / 164,
  5933. bottom: 8.7 / 190.5
  5934. }
  5935. },
  5936. hermNsfw: {
  5937. height: math.unit(8, "feet"),
  5938. weight: math.unit(350, "lb"),
  5939. name: "Herm (NSFW)",
  5940. image: {
  5941. source: "./media/characters/sigvald/herm-nsfw.svg",
  5942. extra: 182 / 164,
  5943. bottom: 8.7 / 190.5
  5944. }
  5945. },
  5946. dick: {
  5947. height: math.unit(2.36, "feet"),
  5948. name: "Dick",
  5949. image: {
  5950. source: "./media/characters/sigvald/dick.svg"
  5951. }
  5952. },
  5953. eye: {
  5954. height: math.unit(0.31, "feet"),
  5955. name: "Eye",
  5956. image: {
  5957. source: "./media/characters/sigvald/eye.svg"
  5958. }
  5959. },
  5960. mouth: {
  5961. height: math.unit(0.92, "feet"),
  5962. name: "Mouth",
  5963. image: {
  5964. source: "./media/characters/sigvald/mouth.svg"
  5965. }
  5966. },
  5967. paws: {
  5968. height: math.unit(2.2, "feet"),
  5969. name: "Paws",
  5970. image: {
  5971. source: "./media/characters/sigvald/paws.svg"
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(8, "feet")
  5979. },
  5980. {
  5981. name: "Large",
  5982. height: math.unit(12, "feet")
  5983. },
  5984. {
  5985. name: "Larger",
  5986. height: math.unit(20, "feet")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(150, "feet")
  5991. },
  5992. {
  5993. name: "Macro+",
  5994. height: math.unit(200, "feet"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6001. {
  6002. side: {
  6003. height: math.unit(12, "feet"),
  6004. weight: math.unit(2000, "kg"),
  6005. name: "Side",
  6006. image: {
  6007. source: "./media/characters/scott/side.svg",
  6008. extra: 754 / 724,
  6009. bottom: 0.069
  6010. }
  6011. },
  6012. upright: {
  6013. height: math.unit(12, "feet"),
  6014. weight: math.unit(2000, "kg"),
  6015. name: "Upright",
  6016. image: {
  6017. source: "./media/characters/scott/upright.svg",
  6018. extra: 3881 / 3722,
  6019. bottom: 0.05
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(12, "feet"),
  6027. default: true
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6033. {
  6034. side: {
  6035. height: math.unit(8, "meters"),
  6036. weight: math.unit(84755, "lbs"),
  6037. name: "Side",
  6038. image: {
  6039. source: "./media/characters/tobias/side.svg",
  6040. extra: 1474 / 1096,
  6041. bottom: 38.9 / 1513.1235
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Normal",
  6048. height: math.unit(8, "meters"),
  6049. default: true
  6050. },
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6055. {
  6056. front: {
  6057. height: math.unit(5.5, "feet"),
  6058. weight: math.unit(400, "lbs"),
  6059. name: "Front",
  6060. image: {
  6061. source: "./media/characters/kieran/front.svg",
  6062. extra: 2694 / 2364,
  6063. bottom: 217 / 2908
  6064. }
  6065. },
  6066. side: {
  6067. height: math.unit(5.5, "feet"),
  6068. weight: math.unit(400, "lbs"),
  6069. name: "Side",
  6070. image: {
  6071. source: "./media/characters/kieran/side.svg",
  6072. extra: 875 / 777,
  6073. bottom: 84.6 / 959
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(5.5, "feet"),
  6081. default: true
  6082. },
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6087. {
  6088. side: {
  6089. height: math.unit(2, "meters"),
  6090. weight: math.unit(70, "kg"),
  6091. name: "Side",
  6092. image: {
  6093. source: "./media/characters/sanya/side.svg",
  6094. bottom: 0.02,
  6095. extra: 1.02
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Small",
  6102. height: math.unit(2, "meters")
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(3, "meters")
  6107. },
  6108. {
  6109. name: "Macro",
  6110. height: math.unit(16, "meters"),
  6111. default: true
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(2, "meters"),
  6120. weight: math.unit(120, "kg"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/miranda/front.svg",
  6124. extra: 195 / 185,
  6125. bottom: 10.9 / 206.5
  6126. }
  6127. },
  6128. back: {
  6129. height: math.unit(2, "meters"),
  6130. weight: math.unit(120, "kg"),
  6131. name: "Back",
  6132. image: {
  6133. source: "./media/characters/miranda/back.svg",
  6134. extra: 201 / 193,
  6135. bottom: 2.3 / 203.7
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(10, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "James", species: ["deer"], tags: ["anthro"] },
  6149. {
  6150. side: {
  6151. height: math.unit(2, "meters"),
  6152. weight: math.unit(100, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/james/front.svg",
  6156. extra: 10 / 8.5
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(8.5, "feet"),
  6164. default: true
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6170. {
  6171. side: {
  6172. height: math.unit(9.5, "feet"),
  6173. weight: math.unit(2500, "lbs"),
  6174. name: "Side",
  6175. image: {
  6176. source: "./media/characters/heather/side.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(9.5, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6190. {
  6191. side: {
  6192. height: math.unit(6.5, "feet"),
  6193. weight: math.unit(400, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/lukas/side.svg",
  6197. extra: 7.25 / 6.5
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(6.5, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6211. {
  6212. side: {
  6213. height: math.unit(5, "feet"),
  6214. weight: math.unit(3000, "lbs"),
  6215. name: "Side",
  6216. image: {
  6217. source: "./media/characters/louise/side.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(5, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/ramona/side.svg",
  6238. extra: 871/854,
  6239. bottom: 41/912
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(6 + 4/12, "feet")
  6247. },
  6248. {
  6249. name: "Minimacro",
  6250. height: math.unit(5.3, "meters"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(20, "stories")
  6256. },
  6257. {
  6258. name: "Macro+",
  6259. height: math.unit(50, "stories")
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6265. {
  6266. standing: {
  6267. height: math.unit(5.75, "feet"),
  6268. weight: math.unit(160, "lbs"),
  6269. name: "Standing",
  6270. image: {
  6271. source: "./media/characters/deerpuff/standing.svg",
  6272. extra: 682 / 624
  6273. }
  6274. },
  6275. sitting: {
  6276. height: math.unit(5.75 / 1.79, "feet"),
  6277. weight: math.unit(160, "lbs"),
  6278. name: "Sitting",
  6279. image: {
  6280. source: "./media/characters/deerpuff/sitting.svg",
  6281. bottom: 44 / 400,
  6282. extra: 1
  6283. }
  6284. },
  6285. taurLaying: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(400, "lbs"),
  6288. name: "Taur (Laying)",
  6289. image: {
  6290. source: "./media/characters/deerpuff/taur-laying.svg"
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Puffball",
  6297. height: math.unit(6, "inches")
  6298. },
  6299. {
  6300. name: "Normalpuff",
  6301. height: math.unit(5.75, "feet")
  6302. },
  6303. {
  6304. name: "Macropuff",
  6305. height: math.unit(1500, "feet"),
  6306. default: true
  6307. },
  6308. {
  6309. name: "Megapuff",
  6310. height: math.unit(500, "miles")
  6311. },
  6312. {
  6313. name: "Gigapuff",
  6314. height: math.unit(250000, "miles")
  6315. },
  6316. {
  6317. name: "Omegapuff",
  6318. height: math.unit(1000, "lightyears")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6324. {
  6325. stomping: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(170, "lbs"),
  6328. name: "Stomping",
  6329. image: {
  6330. source: "./media/characters/vivian/stomping.svg"
  6331. }
  6332. },
  6333. sitting: {
  6334. height: math.unit(6 / 1.75, "feet"),
  6335. weight: math.unit(170, "lbs"),
  6336. name: "Sitting",
  6337. image: {
  6338. source: "./media/characters/vivian/sitting.svg",
  6339. bottom: 1 / 6.4,
  6340. extra: 1,
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(7, "feet"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(10, "stories")
  6353. },
  6354. {
  6355. name: "Macro+",
  6356. height: math.unit(30, "stories")
  6357. },
  6358. {
  6359. name: "Megamacro",
  6360. height: math.unit(10, "miles")
  6361. },
  6362. {
  6363. name: "Megamacro+",
  6364. height: math.unit(2750000, "meters")
  6365. },
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(160, "lbs"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/prince/front.svg",
  6377. extra: 1938/1682,
  6378. bottom: 45/1983
  6379. }
  6380. },
  6381. back: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(160, "lbs"),
  6384. name: "Back",
  6385. image: {
  6386. source: "./media/characters/prince/back.svg",
  6387. extra: 1955/1726,
  6388. bottom: 6/1961
  6389. }
  6390. },
  6391. },
  6392. [
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(7.75, "feet"),
  6396. default: true
  6397. },
  6398. {
  6399. name: "Not cute",
  6400. height: math.unit(17, "feet")
  6401. },
  6402. {
  6403. name: "I said NOT",
  6404. height: math.unit(91, "feet")
  6405. },
  6406. {
  6407. name: "Please stop",
  6408. height: math.unit(560, "feet")
  6409. },
  6410. {
  6411. name: "What have you done",
  6412. height: math.unit(2200, "feet")
  6413. },
  6414. {
  6415. name: "Deer God",
  6416. height: math.unit(3.6, "miles")
  6417. },
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6422. {
  6423. standing: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(300, "lbs"),
  6426. name: "Standing",
  6427. image: {
  6428. source: "./media/characters/psymon/standing.svg",
  6429. extra: 1888 / 1810,
  6430. bottom: 0.05
  6431. }
  6432. },
  6433. slithering: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(300, "lbs"),
  6436. name: "Slithering",
  6437. image: {
  6438. source: "./media/characters/psymon/slithering.svg",
  6439. extra: 1330 / 1224
  6440. }
  6441. },
  6442. slitheringAlt: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(300, "lbs"),
  6445. name: "Slithering (Alt)",
  6446. image: {
  6447. source: "./media/characters/psymon/slithering-alt.svg",
  6448. extra: 1330 / 1224
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Normal",
  6455. height: math.unit(11.25, "feet"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Large",
  6460. height: math.unit(27, "feet")
  6461. },
  6462. {
  6463. name: "Giant",
  6464. height: math.unit(87, "feet")
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(365, "feet")
  6469. },
  6470. {
  6471. name: "Megamacro",
  6472. height: math.unit(3, "miles")
  6473. },
  6474. {
  6475. name: "World Serpent",
  6476. height: math.unit(8000, "miles")
  6477. },
  6478. ]
  6479. ))
  6480. characterMakers.push(() => makeCharacter(
  6481. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6482. {
  6483. front: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(180, "lbs"),
  6486. name: "Front",
  6487. image: {
  6488. source: "./media/characters/daimos/front.svg",
  6489. extra: 4160 / 3897,
  6490. bottom: 0.021
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(8, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Big Dog",
  6502. height: math.unit(22, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(127, "feet")
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(3600, "feet")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6516. {
  6517. side: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(180, "lbs"),
  6520. name: "Side",
  6521. image: {
  6522. source: "./media/characters/blake/side.svg",
  6523. extra: 1212 / 1120,
  6524. bottom: 0.05
  6525. }
  6526. },
  6527. crouched: {
  6528. height: math.unit(6 * 0.57, "feet"),
  6529. weight: math.unit(180, "lbs"),
  6530. name: "Crouched",
  6531. image: {
  6532. source: "./media/characters/blake/crouched.svg",
  6533. extra: 840 / 587,
  6534. bottom: 0.04
  6535. }
  6536. },
  6537. bent: {
  6538. height: math.unit(6 * 0.75, "feet"),
  6539. weight: math.unit(180, "lbs"),
  6540. name: "Bent",
  6541. image: {
  6542. source: "./media/characters/blake/bent.svg",
  6543. extra: 592 / 544,
  6544. bottom: 0.035
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Normal",
  6551. height: math.unit(8 + 1 / 6, "feet"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Big Backside",
  6556. height: math.unit(37, "feet")
  6557. },
  6558. {
  6559. name: "Subway Shredder",
  6560. height: math.unit(72, "feet")
  6561. },
  6562. {
  6563. name: "City Carver",
  6564. height: math.unit(1675, "feet")
  6565. },
  6566. {
  6567. name: "Tectonic Tweaker",
  6568. height: math.unit(2300, "miles")
  6569. },
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(180, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/guisetto/front.svg",
  6581. extra: 856 / 817,
  6582. bottom: 0.06
  6583. }
  6584. },
  6585. airborne: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(180, "lbs"),
  6588. name: "Airborne",
  6589. image: {
  6590. source: "./media/characters/guisetto/airborne.svg",
  6591. extra: 584 / 525
  6592. }
  6593. },
  6594. },
  6595. [
  6596. {
  6597. name: "Normal",
  6598. height: math.unit(10 + 11 / 12, "feet"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Large",
  6603. height: math.unit(35, "feet")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(475, "feet")
  6608. },
  6609. ]
  6610. ))
  6611. characterMakers.push(() => makeCharacter(
  6612. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6613. {
  6614. front: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(180, "lbs"),
  6617. name: "Front",
  6618. image: {
  6619. source: "./media/characters/luxor/front.svg",
  6620. extra: 2940 / 2152
  6621. }
  6622. },
  6623. back: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(180, "lbs"),
  6626. name: "Back",
  6627. image: {
  6628. source: "./media/characters/luxor/back.svg",
  6629. extra: 1083 / 960
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(5 + 5 / 6, "feet"),
  6637. default: true
  6638. },
  6639. {
  6640. name: "Lamp",
  6641. height: math.unit(50, "feet")
  6642. },
  6643. {
  6644. name: "Lämp",
  6645. height: math.unit(300, "feet")
  6646. },
  6647. {
  6648. name: "The sun is a lamp",
  6649. height: math.unit(250000, "miles")
  6650. },
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(50, "lbs"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/huoyan/front.svg"
  6662. }
  6663. },
  6664. side: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(180, "lbs"),
  6667. name: "Side",
  6668. image: {
  6669. source: "./media/characters/huoyan/side.svg"
  6670. }
  6671. },
  6672. },
  6673. [
  6674. {
  6675. name: "Chef",
  6676. height: math.unit(9, "feet")
  6677. },
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(65, "feet"),
  6681. default: true
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(780, "feet")
  6686. },
  6687. {
  6688. name: "Flaming Mountain",
  6689. height: math.unit(4.8, "miles")
  6690. },
  6691. {
  6692. name: "Celestial",
  6693. height: math.unit(765000, "miles")
  6694. },
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6699. {
  6700. front: {
  6701. height: math.unit(5 + 3 / 4, "feet"),
  6702. weight: math.unit(120, "lbs"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/tails/front.svg"
  6706. }
  6707. }
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(5 + 3 / 4, "feet"),
  6713. default: true
  6714. }
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(4, "feet"),
  6722. weight: math.unit(50, "lbs"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/rainy/front.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(800, "feet"),
  6733. default: true
  6734. }
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(150, "lbs"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/rainier/front.svg"
  6746. }
  6747. }
  6748. },
  6749. [
  6750. {
  6751. name: "Micro",
  6752. height: math.unit(2, "mm"),
  6753. default: true
  6754. }
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(8 + 4/12, "feet"),
  6762. weight: math.unit(450, "kilograms"),
  6763. volume: math.unit(5, "cups"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/andy-renard/front.svg",
  6767. extra: 1839/1726,
  6768. bottom: 134/1973
  6769. }
  6770. },
  6771. back: {
  6772. height: math.unit(8 + 4/12, "feet"),
  6773. weight: math.unit(450, "kilograms"),
  6774. volume: math.unit(5, "cups"),
  6775. name: "Back",
  6776. image: {
  6777. source: "./media/characters/andy-renard/back.svg",
  6778. extra: 1838/1710,
  6779. bottom: 105/1943
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Tall",
  6786. height: math.unit(8 + 4/12, "feet")
  6787. },
  6788. {
  6789. name: "Mini Macro",
  6790. height: math.unit(15, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(100, "feet")
  6796. },
  6797. {
  6798. name: "Mega Macro",
  6799. height: math.unit(1000, "feet")
  6800. },
  6801. {
  6802. name: "Giga Macro",
  6803. height: math.unit(10, "miles")
  6804. },
  6805. {
  6806. name: "God Macro",
  6807. height: math.unit(1, "multiverse")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(210, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/cimmaron/front-sfw.svg",
  6820. extra: 701 / 676,
  6821. bottom: 0.046
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(210, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/cimmaron/back-sfw.svg",
  6830. extra: 701 / 676,
  6831. bottom: 0.046
  6832. }
  6833. },
  6834. frontNsfw: {
  6835. height: math.unit(6, "feet"),
  6836. weight: math.unit(210, "lbs"),
  6837. name: "Front (NSFW)",
  6838. image: {
  6839. source: "./media/characters/cimmaron/front-nsfw.svg",
  6840. extra: 701 / 676,
  6841. bottom: 0.046
  6842. }
  6843. },
  6844. backNsfw: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(210, "lbs"),
  6847. name: "Back (NSFW)",
  6848. image: {
  6849. source: "./media/characters/cimmaron/back-nsfw.svg",
  6850. extra: 701 / 676,
  6851. bottom: 0.046
  6852. }
  6853. },
  6854. dick: {
  6855. height: math.unit(1.714, "feet"),
  6856. name: "Dick",
  6857. image: {
  6858. source: "./media/characters/cimmaron/dick.svg"
  6859. }
  6860. },
  6861. },
  6862. [
  6863. {
  6864. name: "Normal",
  6865. height: math.unit(6, "feet"),
  6866. default: true
  6867. },
  6868. {
  6869. name: "Macro Mayor",
  6870. height: math.unit(350, "meters")
  6871. },
  6872. ]
  6873. ))
  6874. characterMakers.push(() => makeCharacter(
  6875. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6876. {
  6877. front: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(200, "lbs"),
  6880. name: "Front",
  6881. image: {
  6882. source: "./media/characters/akari/front.svg",
  6883. extra: 962 / 901,
  6884. bottom: 0.04
  6885. }
  6886. }
  6887. },
  6888. [
  6889. {
  6890. name: "Micro",
  6891. height: math.unit(5, "inches"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Normal",
  6896. height: math.unit(7, "feet")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(140, "lbs"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/cynosura/front.svg",
  6909. extra: 437/410,
  6910. bottom: 9/446
  6911. }
  6912. },
  6913. back: {
  6914. height: math.unit(6, "feet"),
  6915. weight: math.unit(140, "lbs"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/cynosura/back.svg",
  6919. extra: 1304/1160,
  6920. bottom: 71/1375
  6921. }
  6922. },
  6923. },
  6924. [
  6925. {
  6926. name: "Micro",
  6927. height: math.unit(4, "inches")
  6928. },
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(5.75, "feet"),
  6932. default: true
  6933. },
  6934. {
  6935. name: "Tall",
  6936. height: math.unit(10, "feet")
  6937. },
  6938. {
  6939. name: "Big",
  6940. height: math.unit(20, "feet")
  6941. },
  6942. {
  6943. name: "Macro",
  6944. height: math.unit(50, "feet")
  6945. },
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(13 + 2/12, "feet"),
  6953. weight: math.unit(800, "kg"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/gin/front.svg",
  6957. extra: 1312/1191,
  6958. bottom: 45/1357
  6959. }
  6960. },
  6961. mouth: {
  6962. height: math.unit(2.39 * 1.8, "feet"),
  6963. name: "Mouth",
  6964. image: {
  6965. source: "./media/characters/gin/mouth.svg"
  6966. }
  6967. },
  6968. hand: {
  6969. height: math.unit(1.57 * 2.19, "feet"),
  6970. name: "Hand",
  6971. image: {
  6972. source: "./media/characters/gin/hand.svg"
  6973. }
  6974. },
  6975. foot: {
  6976. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6977. name: "Foot",
  6978. image: {
  6979. source: "./media/characters/gin/foot.svg"
  6980. }
  6981. },
  6982. sole: {
  6983. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6984. name: "Sole",
  6985. image: {
  6986. source: "./media/characters/gin/sole.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Very Small",
  6993. height: math.unit(13 + 2 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(600, "miles")
  6998. },
  6999. {
  7000. name: "Regular",
  7001. height: math.unit(20, "earths"),
  7002. default: true
  7003. },
  7004. {
  7005. name: "Macro",
  7006. height: math.unit(2.2, "solarradii")
  7007. },
  7008. {
  7009. name: "Teramacro",
  7010. height: math.unit(1.2, "galaxies")
  7011. },
  7012. {
  7013. name: "Omegamacro",
  7014. height: math.unit(200, "universes")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(6 + 1 / 6, "feet"),
  7023. weight: math.unit(178, "lbs"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/guy/front.svg"
  7027. }
  7028. }
  7029. },
  7030. [
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(6 + 1 / 6, "feet"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Large",
  7038. height: math.unit(25 + 7 / 12, "feet")
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(60 + 9 / 12, "feet")
  7043. },
  7044. {
  7045. name: "Macro+",
  7046. height: math.unit(246, "feet")
  7047. },
  7048. {
  7049. name: "Macro++",
  7050. height: math.unit(878, "feet")
  7051. }
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(9, "feet"),
  7059. weight: math.unit(800, "lbs"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/tiberius/front.svg",
  7063. extra: 2295 / 2071
  7064. }
  7065. },
  7066. back: {
  7067. height: math.unit(9, "feet"),
  7068. weight: math.unit(800, "lbs"),
  7069. name: "Back",
  7070. image: {
  7071. source: "./media/characters/tiberius/back.svg",
  7072. extra: 2373 / 2160
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Normal",
  7079. height: math.unit(9, "feet"),
  7080. default: true
  7081. }
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7086. {
  7087. front: {
  7088. height: math.unit(6, "feet"),
  7089. weight: math.unit(600, "lbs"),
  7090. name: "Front",
  7091. image: {
  7092. source: "./media/characters/surgo/front.svg",
  7093. extra: 3591 / 2227
  7094. }
  7095. },
  7096. back: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(600, "lbs"),
  7099. name: "Back",
  7100. image: {
  7101. source: "./media/characters/surgo/back.svg",
  7102. extra: 3557 / 2228
  7103. }
  7104. },
  7105. laying: {
  7106. height: math.unit(6 * 0.85, "feet"),
  7107. weight: math.unit(600, "lbs"),
  7108. name: "Laying",
  7109. image: {
  7110. source: "./media/characters/surgo/laying.svg"
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(6, "feet"),
  7118. default: true
  7119. }
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7124. {
  7125. side: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(150, "lbs"),
  7128. name: "Side",
  7129. image: {
  7130. source: "./media/characters/cibus/side.svg",
  7131. extra: 800 / 400
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Normal",
  7138. height: math.unit(6, "feet"),
  7139. default: true
  7140. }
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(240, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/nibbles/front.svg"
  7152. }
  7153. },
  7154. side: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(240, "lbs"),
  7157. name: "Side",
  7158. image: {
  7159. source: "./media/characters/nibbles/side.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(9, "feet"),
  7167. default: true
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7173. {
  7174. side: {
  7175. height: math.unit(5 + 1 / 6, "feet"),
  7176. weight: math.unit(130, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/rikky/side.svg",
  7180. extra: 851 / 801
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(5 + 1 / 6, "feet")
  7188. },
  7189. {
  7190. name: "Macro",
  7191. height: math.unit(152, "feet"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Megamacro",
  7196. height: math.unit(7, "miles")
  7197. }
  7198. ]
  7199. ))
  7200. characterMakers.push(() => makeCharacter(
  7201. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7202. {
  7203. side: {
  7204. height: math.unit(370, "cm"),
  7205. weight: math.unit(350, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/malfressa/side.svg"
  7209. }
  7210. },
  7211. walking: {
  7212. height: math.unit(370, "cm"),
  7213. weight: math.unit(350, "lbs"),
  7214. name: "Walking",
  7215. image: {
  7216. source: "./media/characters/malfressa/walking.svg"
  7217. }
  7218. },
  7219. feral: {
  7220. height: math.unit(2500, "cm"),
  7221. weight: math.unit(100000, "lbs"),
  7222. name: "Feral",
  7223. image: {
  7224. source: "./media/characters/malfressa/feral.svg",
  7225. extra: 2108 / 837,
  7226. bottom: 0.02
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(370, "cm")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(300, "meters"),
  7238. default: true
  7239. }
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(60, "kg"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/jaro/front.svg",
  7251. extra: 845/817,
  7252. bottom: 45/890
  7253. }
  7254. },
  7255. back: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(60, "kg"),
  7258. name: "Back",
  7259. image: {
  7260. source: "./media/characters/jaro/back.svg",
  7261. extra: 847/817,
  7262. bottom: 34/881
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Micro",
  7269. height: math.unit(7, "inches")
  7270. },
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(5.5, "feet"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Minimacro",
  7278. height: math.unit(20, "feet")
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(200, "meters")
  7283. }
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(195, "lb"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/rogue/front.svg"
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(90, "feet"),
  7302. default: true
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7308. {
  7309. standing: {
  7310. height: math.unit(5 + 8 / 12, "feet"),
  7311. weight: math.unit(140, "lb"),
  7312. name: "Standing",
  7313. image: {
  7314. source: "./media/characters/piper/standing.svg",
  7315. extra: 1440/1284,
  7316. bottom: 66/1506
  7317. }
  7318. },
  7319. running: {
  7320. height: math.unit(5 + 8 / 12, "feet"),
  7321. weight: math.unit(140, "lb"),
  7322. name: "Running",
  7323. image: {
  7324. source: "./media/characters/piper/running.svg",
  7325. extra: 3948/3655,
  7326. bottom: 0/3948
  7327. }
  7328. },
  7329. sole: {
  7330. height: math.unit(0.81, "feet"),
  7331. weight: math.unit(2, "kg"),
  7332. name: "Sole",
  7333. image: {
  7334. source: "./media/characters/piper/sole.svg"
  7335. }
  7336. },
  7337. nipple: {
  7338. height: math.unit(0.25, "feet"),
  7339. weight: math.unit(1.5, "lb"),
  7340. name: "Nipple",
  7341. image: {
  7342. source: "./media/characters/piper/nipple.svg"
  7343. }
  7344. },
  7345. head: {
  7346. height: math.unit(1.1, "feet"),
  7347. name: "Head",
  7348. image: {
  7349. source: "./media/characters/piper/head.svg"
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(2, "inches")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(5 + 8 / 12, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(250, "feet"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(7, "miles")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(220, "lb"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/gemini/front.svg"
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(220, "lb"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/gemini/back.svg"
  7390. }
  7391. },
  7392. kneeling: {
  7393. height: math.unit(6 / 1.5, "feet"),
  7394. weight: math.unit(220, "lb"),
  7395. name: "Kneeling",
  7396. image: {
  7397. source: "./media/characters/gemini/kneeling.svg",
  7398. bottom: 0.02
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(300, "meters"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Megamacro",
  7410. height: math.unit(6900, "meters")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7416. {
  7417. anthro: {
  7418. height: math.unit(2.35, "meters"),
  7419. weight: math.unit(73, "kg"),
  7420. name: "Anthro",
  7421. image: {
  7422. source: "./media/characters/alicia/anthro.svg",
  7423. extra: 2571 / 2385,
  7424. bottom: 75 / 2648
  7425. }
  7426. },
  7427. paw: {
  7428. height: math.unit(1.32, "feet"),
  7429. name: "Paw",
  7430. image: {
  7431. source: "./media/characters/alicia/paw.svg"
  7432. }
  7433. },
  7434. feral: {
  7435. height: math.unit(1.69, "meters"),
  7436. weight: math.unit(73, "kg"),
  7437. name: "Feral",
  7438. image: {
  7439. source: "./media/characters/alicia/feral.svg",
  7440. extra: 2123 / 1715,
  7441. bottom: 222 / 2349
  7442. }
  7443. },
  7444. },
  7445. [
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(2.35, "meters")
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(60, "meters"),
  7453. default: true
  7454. },
  7455. {
  7456. name: "Megamacro",
  7457. height: math.unit(10000, "kilometers")
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7463. {
  7464. front: {
  7465. height: math.unit(7, "feet"),
  7466. weight: math.unit(250, "lbs"),
  7467. name: "Front",
  7468. image: {
  7469. source: "./media/characters/archy/front.svg"
  7470. }
  7471. }
  7472. },
  7473. [
  7474. {
  7475. name: "Micro",
  7476. height: math.unit(1, "inch")
  7477. },
  7478. {
  7479. name: "Shorty",
  7480. height: math.unit(5, "feet")
  7481. },
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(7, "feet")
  7485. },
  7486. {
  7487. name: "Macro",
  7488. height: math.unit(600, "meters"),
  7489. default: true
  7490. },
  7491. {
  7492. name: "Megamacro",
  7493. height: math.unit(1, "mile")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(1.65, "meters"),
  7502. weight: math.unit(74, "kg"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/berri/front.svg",
  7506. extra: 857 / 837,
  7507. bottom: 18 / 877
  7508. }
  7509. },
  7510. bum: {
  7511. height: math.unit(1.46, "feet"),
  7512. name: "Bum",
  7513. image: {
  7514. source: "./media/characters/berri/bum.svg"
  7515. }
  7516. },
  7517. mouth: {
  7518. height: math.unit(0.44, "feet"),
  7519. name: "Mouth",
  7520. image: {
  7521. source: "./media/characters/berri/mouth.svg"
  7522. }
  7523. },
  7524. paw: {
  7525. height: math.unit(0.826, "feet"),
  7526. name: "Paw",
  7527. image: {
  7528. source: "./media/characters/berri/paw.svg"
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(1.65, "meters")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(60, "m"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Megamacro",
  7544. height: math.unit(9.213, "km")
  7545. },
  7546. {
  7547. name: "Planet Eater",
  7548. height: math.unit(489, "megameters")
  7549. },
  7550. {
  7551. name: "Teramacro",
  7552. height: math.unit(2471635000000, "meters")
  7553. },
  7554. {
  7555. name: "Examacro",
  7556. height: math.unit(8.0624e+26, "meters")
  7557. }
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(1.72, "meters"),
  7565. weight: math.unit(68, "kg"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/lexi/front.svg"
  7569. }
  7570. }
  7571. },
  7572. [
  7573. {
  7574. name: "Very Smol",
  7575. height: math.unit(10, "mm")
  7576. },
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(6.8, "cm"),
  7580. default: true
  7581. },
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.72, "m")
  7585. }
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(1.69, "meters"),
  7593. weight: math.unit(68, "kg"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/martin/front.svg",
  7597. extra: 596 / 581
  7598. }
  7599. }
  7600. },
  7601. [
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(6.85, "cm"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(1.69, "m")
  7610. }
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(1.69, "meters"),
  7618. weight: math.unit(68, "kg"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/juno/front.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Micro",
  7628. height: math.unit(7, "cm")
  7629. },
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(1.89, "m")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(353, "meters"),
  7637. default: true
  7638. }
  7639. ]
  7640. ))
  7641. characterMakers.push(() => makeCharacter(
  7642. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7643. {
  7644. front: {
  7645. height: math.unit(1.93, "meters"),
  7646. weight: math.unit(83, "kg"),
  7647. name: "Front",
  7648. image: {
  7649. source: "./media/characters/samantha/front.svg"
  7650. }
  7651. },
  7652. frontClothed: {
  7653. height: math.unit(1.93, "meters"),
  7654. weight: math.unit(83, "kg"),
  7655. name: "Front (Clothed)",
  7656. image: {
  7657. source: "./media/characters/samantha/front-clothed.svg"
  7658. }
  7659. },
  7660. back: {
  7661. height: math.unit(1.93, "meters"),
  7662. weight: math.unit(83, "kg"),
  7663. name: "Back",
  7664. image: {
  7665. source: "./media/characters/samantha/back.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(1.93, "m")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(74, "meters"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Macro+",
  7681. height: math.unit(223, "meters"),
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(8381, "meters"),
  7686. },
  7687. {
  7688. name: "Megamacro+",
  7689. height: math.unit(12000, "kilometers")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(1.92, "meters"),
  7698. weight: math.unit(80, "kg"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/dr-clay/front.svg"
  7702. }
  7703. },
  7704. frontClothed: {
  7705. height: math.unit(1.92, "meters"),
  7706. weight: math.unit(80, "kg"),
  7707. name: "Front (Clothed)",
  7708. image: {
  7709. source: "./media/characters/dr-clay/front-clothed.svg"
  7710. }
  7711. }
  7712. },
  7713. [
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(1.92, "m")
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(214, "meters"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro+",
  7725. height: math.unit(12.237, "meters"),
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(557, "megameters"),
  7730. },
  7731. {
  7732. name: "Unimaginable",
  7733. height: math.unit(120e9, "lightyears")
  7734. },
  7735. ]
  7736. ))
  7737. characterMakers.push(() => makeCharacter(
  7738. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7739. {
  7740. front: {
  7741. height: math.unit(2, "meters"),
  7742. weight: math.unit(80, "kg"),
  7743. name: "Front",
  7744. image: {
  7745. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7746. }
  7747. }
  7748. },
  7749. [
  7750. {
  7751. name: "Teramacro",
  7752. height: math.unit(500000, "lightyears"),
  7753. default: true
  7754. },
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7759. {
  7760. crux: {
  7761. height: math.unit(2, "meters"),
  7762. weight: math.unit(150, "kg"),
  7763. name: "Crux",
  7764. image: {
  7765. source: "./media/characters/vemus/crux.svg",
  7766. extra: 1074/936,
  7767. bottom: 23/1097
  7768. }
  7769. },
  7770. skunkTanuki: {
  7771. height: math.unit(2, "meters"),
  7772. weight: math.unit(150, "kg"),
  7773. name: "Skunk-Tanuki",
  7774. image: {
  7775. source: "./media/characters/vemus/skunk-tanuki.svg",
  7776. extra: 926/893,
  7777. bottom: 20/946
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(4, "meters"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Big",
  7789. height: math.unit(8, "meters")
  7790. },
  7791. {
  7792. name: "Macro",
  7793. height: math.unit(100, "meters")
  7794. },
  7795. {
  7796. name: "Macro+",
  7797. height: math.unit(1500, "meters")
  7798. },
  7799. {
  7800. name: "Stellar",
  7801. height: math.unit(14e8, "meters")
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(2, "meters"),
  7810. weight: math.unit(70, "kg"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/beherit/front.svg",
  7814. extra: 1234/1109,
  7815. bottom: 55/1289
  7816. }
  7817. }
  7818. },
  7819. [
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(6, "feet")
  7823. },
  7824. {
  7825. name: "Lorg",
  7826. height: math.unit(25, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Lorger",
  7831. height: math.unit(75, "feet")
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(200, "meters")
  7836. },
  7837. ]
  7838. ))
  7839. characterMakers.push(() => makeCharacter(
  7840. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7841. {
  7842. front: {
  7843. height: math.unit(2, "meters"),
  7844. weight: math.unit(150, "kg"),
  7845. name: "Front",
  7846. image: {
  7847. source: "./media/characters/everett/front.svg",
  7848. extra: 1017/866,
  7849. bottom: 86/1103
  7850. }
  7851. },
  7852. paw: {
  7853. height: math.unit(2 / 3.6, "meters"),
  7854. name: "Paw",
  7855. image: {
  7856. source: "./media/characters/everett/paw.svg"
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(15, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Lorg",
  7868. height: math.unit(70, "feet"),
  7869. default: true
  7870. },
  7871. {
  7872. name: "Lorger",
  7873. height: math.unit(250, "feet")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(500, "meters")
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(2, "meters"),
  7886. weight: math.unit(86, "kg"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/rose/front.svg",
  7890. extra: 1785/1636,
  7891. bottom: 30/1815
  7892. },
  7893. form: "liom",
  7894. default: true
  7895. },
  7896. frontSporty: {
  7897. height: math.unit(2, "meters"),
  7898. weight: math.unit(86, "kg"),
  7899. name: "Front (Sporty)",
  7900. image: {
  7901. source: "./media/characters/rose/front-sporty.svg",
  7902. extra: 350/335,
  7903. bottom: 10/360
  7904. },
  7905. form: "liom"
  7906. },
  7907. frontAlt: {
  7908. height: math.unit(1.6, "meters"),
  7909. weight: math.unit(86, "kg"),
  7910. name: "Front (Alt)",
  7911. image: {
  7912. source: "./media/characters/rose/front-alt.svg",
  7913. extra: 299/283,
  7914. bottom: 3/302
  7915. },
  7916. form: "liom"
  7917. },
  7918. plush: {
  7919. height: math.unit(2, "meters"),
  7920. weight: math.unit(86/3, "kg"),
  7921. name: "Plush",
  7922. image: {
  7923. source: "./media/characters/rose/plush.svg",
  7924. extra: 361/337,
  7925. bottom: 11/372
  7926. },
  7927. form: "plush",
  7928. default: true
  7929. },
  7930. faeStanding: {
  7931. height: math.unit(10, "cm"),
  7932. weight: math.unit(10, "grams"),
  7933. name: "Standing",
  7934. image: {
  7935. source: "./media/characters/rose/fae-standing.svg",
  7936. extra: 1189/1060,
  7937. bottom: 27/1216
  7938. },
  7939. form: "fae",
  7940. default: true
  7941. },
  7942. faeSitting: {
  7943. height: math.unit(5, "cm"),
  7944. weight: math.unit(10, "grams"),
  7945. name: "Sitting",
  7946. image: {
  7947. source: "./media/characters/rose/fae-sitting.svg",
  7948. extra: 737/577,
  7949. bottom: 356/1093
  7950. },
  7951. form: "fae"
  7952. },
  7953. faePaw: {
  7954. height: math.unit(1.35, "cm"),
  7955. name: "Paw",
  7956. image: {
  7957. source: "./media/characters/rose/fae-paw.svg"
  7958. },
  7959. form: "fae"
  7960. },
  7961. },
  7962. [
  7963. {
  7964. name: "True Micro",
  7965. height: math.unit(9, "cm"),
  7966. form: "liom"
  7967. },
  7968. {
  7969. name: "Micro",
  7970. height: math.unit(16, "cm"),
  7971. form: "liom"
  7972. },
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(1.85, "meters"),
  7976. default: true,
  7977. form: "liom"
  7978. },
  7979. {
  7980. name: "Mini-Macro",
  7981. height: math.unit(5, "meters"),
  7982. form: "liom"
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(15, "meters"),
  7987. form: "liom"
  7988. },
  7989. {
  7990. name: "True Macro",
  7991. height: math.unit(40, "meters"),
  7992. form: "liom"
  7993. },
  7994. {
  7995. name: "City Scale",
  7996. height: math.unit(1, "km"),
  7997. form: "liom"
  7998. },
  7999. {
  8000. name: "Plushie",
  8001. height: math.unit(9, "cm"),
  8002. form: "plush",
  8003. default: true
  8004. },
  8005. {
  8006. name: "Fae",
  8007. height: math.unit(10, "cm"),
  8008. form: "fae",
  8009. default: true
  8010. },
  8011. ],
  8012. {
  8013. "liom": {
  8014. name: "Liom"
  8015. },
  8016. "plush": {
  8017. name: "Plush"
  8018. },
  8019. "fae": {
  8020. name: "Fae Fox",
  8021. default: true
  8022. }
  8023. }
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(2, "meters"),
  8030. weight: math.unit(350, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/regal/front.svg"
  8034. }
  8035. },
  8036. back: {
  8037. height: math.unit(2, "meters"),
  8038. weight: math.unit(350, "lbs"),
  8039. name: "Back",
  8040. image: {
  8041. source: "./media/characters/regal/back.svg"
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(350, "feet"),
  8049. default: true
  8050. }
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(4 + 11 / 12, "feet"),
  8058. weight: math.unit(100, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/opal/front.svg"
  8062. }
  8063. },
  8064. frontAlt: {
  8065. height: math.unit(4 + 11 / 12, "feet"),
  8066. weight: math.unit(100, "lbs"),
  8067. name: "Front (Alt)",
  8068. image: {
  8069. source: "./media/characters/opal/front-alt.svg"
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Small",
  8076. height: math.unit(4 + 11 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(20, "feet"),
  8081. default: true
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(120, "feet")
  8086. },
  8087. {
  8088. name: "Megamacro",
  8089. height: math.unit(80, "miles")
  8090. },
  8091. {
  8092. name: "True Size",
  8093. height: math.unit(100000, "lightyears")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(6, "feet"),
  8102. weight: math.unit(200, "lbs"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/vector-wuff/front.svg"
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(2.8, "meters")
  8113. },
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(450, "meters"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(15, "kilometers")
  8122. }
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(256, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/dannik/front.svg"
  8134. }
  8135. }
  8136. },
  8137. [
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(69.57, "meters"),
  8141. default: true
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(120, "lbs"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/azura-saharah/front.svg"
  8154. }
  8155. },
  8156. back: {
  8157. height: math.unit(6, "feet"),
  8158. weight: math.unit(120, "lbs"),
  8159. name: "Back",
  8160. image: {
  8161. source: "./media/characters/azura-saharah/back.svg"
  8162. }
  8163. },
  8164. },
  8165. [
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(100, "feet"),
  8169. default: true
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8175. {
  8176. side: {
  8177. height: math.unit(5 + 4 / 12, "feet"),
  8178. weight: math.unit(163, "lbs"),
  8179. name: "Side",
  8180. image: {
  8181. source: "./media/characters/kennedy/side.svg"
  8182. }
  8183. }
  8184. },
  8185. [
  8186. {
  8187. name: "Standard Doggo",
  8188. height: math.unit(5 + 4 / 12, "feet")
  8189. },
  8190. {
  8191. name: "Big Doggo",
  8192. height: math.unit(25 + 3 / 12, "feet"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(5 + 5/12, "feet"),
  8202. weight: math.unit(100, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/odios-de-lunar/front.svg",
  8206. extra: 1468/1323,
  8207. bottom: 22/1490
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Micro",
  8214. height: math.unit(3, "inches")
  8215. },
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(5.5, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(100, "feet")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8229. {
  8230. back: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(220, "lbs"),
  8233. name: "Back",
  8234. image: {
  8235. source: "./media/characters/mandake/back.svg"
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(7, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Macro",
  8247. height: math.unit(78, "feet")
  8248. },
  8249. {
  8250. name: "Macro+",
  8251. height: math.unit(300, "meters")
  8252. },
  8253. {
  8254. name: "Macro++",
  8255. height: math.unit(2400, "feet")
  8256. },
  8257. {
  8258. name: "Megamacro",
  8259. height: math.unit(5167, "meters")
  8260. },
  8261. {
  8262. name: "Gigamacro",
  8263. height: math.unit(41769, "miles")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(120, "lbs"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/yozey/front.svg"
  8276. }
  8277. },
  8278. frontAlt: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(120, "lbs"),
  8281. name: "Front (Alt)",
  8282. image: {
  8283. source: "./media/characters/yozey/front-alt.svg"
  8284. }
  8285. },
  8286. side: {
  8287. height: math.unit(6, "feet"),
  8288. weight: math.unit(120, "lbs"),
  8289. name: "Side",
  8290. image: {
  8291. source: "./media/characters/yozey/side.svg"
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Micro",
  8298. height: math.unit(3, "inches"),
  8299. default: true
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(6, "feet")
  8304. }
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(103, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/valeska-voss/front.svg"
  8316. }
  8317. }
  8318. },
  8319. [
  8320. {
  8321. name: "Mini-Sized Sub",
  8322. height: math.unit(3.1, "inches")
  8323. },
  8324. {
  8325. name: "Mid-Sized Sub",
  8326. height: math.unit(6.2, "inches")
  8327. },
  8328. {
  8329. name: "Full-Sized Sub",
  8330. height: math.unit(9.3, "inches")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(5 + 2 / 12, "foot"),
  8335. default: true
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(160, "lbs"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/gene-zeta/front.svg",
  8348. extra: 3006 / 2826,
  8349. bottom: 182 / 3188
  8350. }
  8351. }
  8352. },
  8353. [
  8354. {
  8355. name: "Micro",
  8356. height: math.unit(6, "inches")
  8357. },
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(5 + 11 / 12, "foot"),
  8361. default: true
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(140, "feet")
  8366. },
  8367. {
  8368. name: "Supercharged",
  8369. height: math.unit(2500, "feet")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(6, "feet"),
  8378. weight: math.unit(350, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/razinox/front.svg",
  8382. extra: 1686 / 1548,
  8383. bottom: 28.2 / 1868
  8384. }
  8385. },
  8386. back: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(350, "lbs"),
  8389. name: "Back",
  8390. image: {
  8391. source: "./media/characters/razinox/back.svg",
  8392. extra: 1660 / 1590,
  8393. bottom: 15 / 1665
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(10 + 8 / 12, "foot")
  8401. },
  8402. {
  8403. name: "Minimacro",
  8404. height: math.unit(15, "foot")
  8405. },
  8406. {
  8407. name: "Macro",
  8408. height: math.unit(60, "foot"),
  8409. default: true
  8410. },
  8411. {
  8412. name: "Megamacro",
  8413. height: math.unit(5, "miles")
  8414. },
  8415. {
  8416. name: "Gigamacro",
  8417. height: math.unit(6000, "miles")
  8418. },
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8423. {
  8424. front: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(150, "lbs"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/cobalt/front.svg"
  8430. }
  8431. }
  8432. },
  8433. [
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(8 + 1 / 12, "foot")
  8437. },
  8438. {
  8439. name: "Macro",
  8440. height: math.unit(111, "foot"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Supracosmic",
  8445. height: math.unit(1e42, "feet")
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8451. {
  8452. front: {
  8453. height: math.unit(5, "inches"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/amanda/front.svg",
  8457. extra: 926/791,
  8458. bottom: 38/964
  8459. }
  8460. },
  8461. back: {
  8462. height: math.unit(5, "inches"),
  8463. name: "Back",
  8464. image: {
  8465. source: "./media/characters/amanda/back.svg",
  8466. extra: 909/805,
  8467. bottom: 43/952
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(5, "inches"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(2.75, "meters"),
  8484. weight: math.unit(1200, "lb"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/teal/front.svg",
  8488. extra: 2463 / 2320,
  8489. bottom: 166 / 2629
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(2.75, "meters"),
  8494. weight: math.unit(1200, "lb"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/teal/back.svg",
  8498. extra: 2580 / 2489,
  8499. bottom: 151 / 2731
  8500. }
  8501. },
  8502. sitting: {
  8503. height: math.unit(1.9, "meters"),
  8504. weight: math.unit(1200, "lb"),
  8505. name: "Sitting",
  8506. image: {
  8507. source: "./media/characters/teal/sitting.svg",
  8508. extra: 623 / 590,
  8509. bottom: 121 / 744
  8510. }
  8511. },
  8512. standing: {
  8513. height: math.unit(2.75, "meters"),
  8514. weight: math.unit(1200, "lb"),
  8515. name: "Standing",
  8516. image: {
  8517. source: "./media/characters/teal/standing.svg",
  8518. extra: 923 / 893,
  8519. bottom: 60 / 983
  8520. }
  8521. },
  8522. stretching: {
  8523. height: math.unit(3.65, "meters"),
  8524. weight: math.unit(1200, "lb"),
  8525. name: "Stretching",
  8526. image: {
  8527. source: "./media/characters/teal/stretching.svg",
  8528. extra: 1276 / 1244,
  8529. bottom: 0 / 1276
  8530. }
  8531. },
  8532. legged: {
  8533. height: math.unit(1.3, "meters"),
  8534. weight: math.unit(100, "lb"),
  8535. name: "Legged",
  8536. image: {
  8537. source: "./media/characters/teal/legged.svg",
  8538. extra: 462 / 437,
  8539. bottom: 24 / 486
  8540. }
  8541. },
  8542. naga: {
  8543. height: math.unit(5.4, "meters"),
  8544. weight: math.unit(4000, "lb"),
  8545. name: "Naga",
  8546. image: {
  8547. source: "./media/characters/teal/naga.svg",
  8548. extra: 1902 / 1858,
  8549. bottom: 0 / 1902
  8550. }
  8551. },
  8552. hand: {
  8553. height: math.unit(0.52, "meters"),
  8554. name: "Hand",
  8555. image: {
  8556. source: "./media/characters/teal/hand.svg"
  8557. }
  8558. },
  8559. maw: {
  8560. height: math.unit(0.43, "meters"),
  8561. name: "Maw",
  8562. image: {
  8563. source: "./media/characters/teal/maw.svg"
  8564. }
  8565. },
  8566. slit: {
  8567. height: math.unit(0.25, "meters"),
  8568. name: "Slit",
  8569. image: {
  8570. source: "./media/characters/teal/slit.svg"
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(2.75, "meters"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(300, "feet")
  8583. },
  8584. {
  8585. name: "Macro+",
  8586. height: math.unit(2000, "feet")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8592. {
  8593. frontCat: {
  8594. height: math.unit(6, "feet"),
  8595. weight: math.unit(180, "lbs"),
  8596. name: "Front (Cat)",
  8597. image: {
  8598. source: "./media/characters/ravin-amulet/front-cat.svg"
  8599. }
  8600. },
  8601. frontCatAlt: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(180, "lbs"),
  8604. name: "Front (Alt, Cat)",
  8605. image: {
  8606. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8607. }
  8608. },
  8609. frontWerewolf: {
  8610. height: math.unit(6 * 1.2, "feet"),
  8611. weight: math.unit(225, "lbs"),
  8612. name: "Front (Werewolf)",
  8613. image: {
  8614. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8615. }
  8616. },
  8617. backWerewolf: {
  8618. height: math.unit(6 * 1.2, "feet"),
  8619. weight: math.unit(225, "lbs"),
  8620. name: "Back (Werewolf)",
  8621. image: {
  8622. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Nano",
  8629. height: math.unit(1, "micrometer")
  8630. },
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(1, "inch")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6, "feet"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(60, "feet")
  8643. }
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(165, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/fluoresce/front.svg"
  8655. }
  8656. }
  8657. },
  8658. [
  8659. {
  8660. name: "Micro",
  8661. height: math.unit(6, "cm")
  8662. },
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(5 + 7 / 12, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(56, "feet")
  8671. },
  8672. {
  8673. name: "Megamacro",
  8674. height: math.unit(1.9, "miles")
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(9 + 6 / 12, "feet"),
  8683. weight: math.unit(523, "lbs"),
  8684. name: "Side",
  8685. image: {
  8686. source: "./media/characters/aurora/side.svg",
  8687. extra: 474/393,
  8688. bottom: 5/479
  8689. }
  8690. }
  8691. },
  8692. [
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(9 + 6 / 12, "feet")
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(96, "feet"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Macro+",
  8704. height: math.unit(243, "feet")
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8710. {
  8711. front: {
  8712. height: math.unit(194, "cm"),
  8713. weight: math.unit(90, "kg"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/ranek/front.svg",
  8717. extra: 1862/1791,
  8718. bottom: 80/1942
  8719. }
  8720. },
  8721. back: {
  8722. height: math.unit(194, "cm"),
  8723. weight: math.unit(90, "kg"),
  8724. name: "Back",
  8725. image: {
  8726. source: "./media/characters/ranek/back.svg",
  8727. extra: 1853/1787,
  8728. bottom: 74/1927
  8729. }
  8730. },
  8731. feral: {
  8732. height: math.unit(30, "cm"),
  8733. weight: math.unit(1.6, "lbs"),
  8734. name: "Feral",
  8735. image: {
  8736. source: "./media/characters/ranek/feral.svg",
  8737. extra: 990/631,
  8738. bottom: 29/1019
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(194, "cm"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(100, "meters")
  8751. },
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(5 + 6 / 12, "feet"),
  8759. weight: math.unit(153, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/andrew-cooper/front.svg"
  8763. }
  8764. },
  8765. },
  8766. [
  8767. {
  8768. name: "Nano",
  8769. height: math.unit(1, "mm")
  8770. },
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(2, "inches")
  8774. },
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(5 + 6 / 12, "feet"),
  8778. default: true
  8779. }
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(180, "lbs"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/akane-sato/front.svg",
  8791. extra: 1219 / 1140
  8792. }
  8793. },
  8794. back: {
  8795. height: math.unit(6, "feet"),
  8796. weight: math.unit(180, "lbs"),
  8797. name: "Back",
  8798. image: {
  8799. source: "./media/characters/akane-sato/back.svg",
  8800. extra: 1219 / 1170
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(2.5, "meters")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(250, "meters"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Megamacro",
  8816. height: math.unit(25, "km")
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8822. {
  8823. front: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(65, "kg"),
  8826. name: "Front",
  8827. image: {
  8828. source: "./media/characters/rook/front.svg",
  8829. extra: 960 / 950
  8830. }
  8831. }
  8832. },
  8833. [
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(8.8, "feet")
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(88, "feet"),
  8841. default: true
  8842. },
  8843. {
  8844. name: "Megamacro",
  8845. height: math.unit(8, "miles")
  8846. },
  8847. ]
  8848. ))
  8849. characterMakers.push(() => makeCharacter(
  8850. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8851. {
  8852. front: {
  8853. height: math.unit(12 + 2 / 12, "feet"),
  8854. weight: math.unit(808, "lbs"),
  8855. name: "Front",
  8856. image: {
  8857. source: "./media/characters/prodigy/front.svg"
  8858. }
  8859. }
  8860. },
  8861. [
  8862. {
  8863. name: "Normal",
  8864. height: math.unit(12 + 2 / 12, "feet"),
  8865. default: true
  8866. },
  8867. {
  8868. name: "Macro",
  8869. height: math.unit(143, "feet")
  8870. },
  8871. {
  8872. name: "Macro+",
  8873. height: math.unit(400, "feet")
  8874. },
  8875. ]
  8876. ))
  8877. characterMakers.push(() => makeCharacter(
  8878. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8879. {
  8880. front: {
  8881. height: math.unit(6, "feet"),
  8882. weight: math.unit(225, "lbs"),
  8883. name: "Front",
  8884. image: {
  8885. source: "./media/characters/daniel/front.svg"
  8886. }
  8887. },
  8888. leaning: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(225, "lbs"),
  8891. name: "Leaning",
  8892. image: {
  8893. source: "./media/characters/daniel/leaning.svg"
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Macro",
  8900. height: math.unit(1000, "feet"),
  8901. default: true
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(88, "lbs"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/chiros/front.svg",
  8914. extra: 306 / 226
  8915. }
  8916. },
  8917. side: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(88, "lbs"),
  8920. name: "Side",
  8921. image: {
  8922. source: "./media/characters/chiros/side.svg",
  8923. extra: 306 / 226
  8924. }
  8925. },
  8926. },
  8927. [
  8928. {
  8929. name: "Normal",
  8930. height: math.unit(6, "cm"),
  8931. default: true
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(100, "lbs"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/selka/front.svg",
  8944. extra: 947 / 887
  8945. }
  8946. }
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(5, "cm"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(8 + 3 / 12, "feet"),
  8961. weight: math.unit(424, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/verin/front.svg",
  8965. extra: 1845 / 1550
  8966. }
  8967. },
  8968. frontArmored: {
  8969. height: math.unit(8 + 3 / 12, "feet"),
  8970. weight: math.unit(424, "lbs"),
  8971. name: "Front (Armored)",
  8972. image: {
  8973. source: "./media/characters/verin/front-armor.svg",
  8974. extra: 1845 / 1550,
  8975. bottom: 0.01
  8976. }
  8977. },
  8978. back: {
  8979. height: math.unit(8 + 3 / 12, "feet"),
  8980. weight: math.unit(424, "lbs"),
  8981. name: "Back",
  8982. image: {
  8983. source: "./media/characters/verin/back.svg",
  8984. bottom: 0.1,
  8985. extra: 1
  8986. }
  8987. },
  8988. foot: {
  8989. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8990. name: "Foot",
  8991. image: {
  8992. source: "./media/characters/verin/foot.svg"
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(8 + 3 / 12, "feet")
  9000. },
  9001. {
  9002. name: "Minimacro",
  9003. height: math.unit(21, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Macro",
  9008. height: math.unit(626, "feet")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(2.718, "meters"),
  9017. weight: math.unit(150, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/sovrim-terraquian/front.svg",
  9021. extra: 1752/1689,
  9022. bottom: 36/1788
  9023. }
  9024. },
  9025. back: {
  9026. height: math.unit(2.718, "meters"),
  9027. weight: math.unit(150, "lbs"),
  9028. name: "Back",
  9029. image: {
  9030. source: "./media/characters/sovrim-terraquian/back.svg",
  9031. extra: 1698/1657,
  9032. bottom: 58/1756
  9033. }
  9034. },
  9035. tongue: {
  9036. height: math.unit(2.865, "feet"),
  9037. name: "Tongue",
  9038. image: {
  9039. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9040. }
  9041. },
  9042. hand: {
  9043. height: math.unit(1.61, "feet"),
  9044. name: "Hand",
  9045. image: {
  9046. source: "./media/characters/sovrim-terraquian/hand.svg"
  9047. }
  9048. },
  9049. foot: {
  9050. height: math.unit(1.05, "feet"),
  9051. name: "Foot",
  9052. image: {
  9053. source: "./media/characters/sovrim-terraquian/foot.svg"
  9054. }
  9055. },
  9056. footAlt: {
  9057. height: math.unit(0.88, "feet"),
  9058. name: "Foot (Alt)",
  9059. image: {
  9060. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Micro",
  9067. height: math.unit(2, "inches")
  9068. },
  9069. {
  9070. name: "Small",
  9071. height: math.unit(1, "meter")
  9072. },
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(Math.E, "meters"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(20, "meters")
  9081. },
  9082. {
  9083. name: "Macro+",
  9084. height: math.unit(400, "meters")
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(7, "feet"),
  9093. weight: math.unit(489, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/reece-silvermane/front.svg",
  9097. bottom: 0.02,
  9098. extra: 1
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Macro",
  9105. height: math.unit(1.5, "miles"),
  9106. default: true
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(78, "kg"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/kane/front.svg",
  9119. extra: 978 / 899
  9120. }
  9121. },
  9122. back: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(78, "kg"),
  9125. name: "Back",
  9126. image: {
  9127. source: "./media/characters/kane/back.svg",
  9128. extra: 1966/1800,
  9129. bottom: 0/1966
  9130. }
  9131. },
  9132. head: {
  9133. height: math.unit(1.4, "feet"),
  9134. name: "Head",
  9135. image: {
  9136. source: "./media/characters/kane/head.svg"
  9137. }
  9138. },
  9139. },
  9140. [
  9141. {
  9142. name: "Normal",
  9143. height: math.unit(2.1, "m"),
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(1, "km"),
  9148. default: true
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(200, "kg"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/tegon/front.svg",
  9161. bottom: 0.01,
  9162. extra: 1
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(1, "inch")
  9170. },
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(6 + 3 / 12, "feet"),
  9174. default: true
  9175. },
  9176. {
  9177. name: "Macro",
  9178. height: math.unit(300, "feet")
  9179. },
  9180. {
  9181. name: "Megamacro",
  9182. height: math.unit(69, "miles")
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9188. {
  9189. side: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(2304, "lbs"),
  9192. name: "Side",
  9193. image: {
  9194. source: "./media/characters/arcturax/side.svg",
  9195. extra: 790 / 376,
  9196. bottom: 0.01
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Micro",
  9203. height: math.unit(2, "inch")
  9204. },
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(6, "feet")
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(39, "feet"),
  9212. default: true
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(7, "miles")
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(50, "lbs"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/sentri/front.svg",
  9229. extra: 1750 / 1570,
  9230. bottom: 0.025
  9231. }
  9232. },
  9233. frontAlt: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(50, "lbs"),
  9236. name: "Front (Alt)",
  9237. image: {
  9238. source: "./media/characters/sentri/front-alt.svg",
  9239. extra: 1750 / 1570,
  9240. bottom: 0.025
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(15, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(2500, "feet")
  9253. }
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(5 + 8 / 12, "feet"),
  9261. weight: math.unit(130, "lbs"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/corvin/front.svg",
  9265. extra: 1803 / 1629
  9266. }
  9267. },
  9268. frontShirt: {
  9269. height: math.unit(5 + 8 / 12, "feet"),
  9270. weight: math.unit(130, "lbs"),
  9271. name: "Front (Shirt)",
  9272. image: {
  9273. source: "./media/characters/corvin/front-shirt.svg",
  9274. extra: 1803 / 1629
  9275. }
  9276. },
  9277. frontPoncho: {
  9278. height: math.unit(5 + 8 / 12, "feet"),
  9279. weight: math.unit(130, "lbs"),
  9280. name: "Front (Poncho)",
  9281. image: {
  9282. source: "./media/characters/corvin/front-poncho.svg",
  9283. extra: 1803 / 1629
  9284. }
  9285. },
  9286. side: {
  9287. height: math.unit(5 + 8 / 12, "feet"),
  9288. weight: math.unit(130, "lbs"),
  9289. name: "Side",
  9290. image: {
  9291. source: "./media/characters/corvin/side.svg",
  9292. extra: 1012 / 945
  9293. }
  9294. },
  9295. back: {
  9296. height: math.unit(5 + 8 / 12, "feet"),
  9297. weight: math.unit(130, "lbs"),
  9298. name: "Back",
  9299. image: {
  9300. source: "./media/characters/corvin/back.svg",
  9301. extra: 1803 / 1629
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Micro",
  9308. height: math.unit(3, "inches")
  9309. },
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(5 + 8 / 12, "feet")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(300, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(500, "miles")
  9322. }
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(135, "lbs"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/q/front.svg",
  9334. extra: 854 / 752,
  9335. bottom: 0.005
  9336. }
  9337. },
  9338. back: {
  9339. height: math.unit(6, "feet"),
  9340. weight: math.unit(130, "lbs"),
  9341. name: "Back",
  9342. image: {
  9343. source: "./media/characters/q/back.svg",
  9344. extra: 854 / 752
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(90, "feet"),
  9352. default: true
  9353. },
  9354. {
  9355. name: "Extra Macro",
  9356. height: math.unit(300, "feet"),
  9357. },
  9358. {
  9359. name: "BIG WALF",
  9360. height: math.unit(750, "feet"),
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(3, "feet"),
  9369. weight: math.unit(28, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/citrine/front.svg"
  9373. }
  9374. }
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(3, "feet"),
  9380. default: true
  9381. }
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9386. {
  9387. front: {
  9388. height: math.unit(14, "feet"),
  9389. weight: math.unit(1450, "kg"),
  9390. preyCapacity: math.unit(15, "people"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/aura-starwind/front.svg",
  9394. extra: 1440/1327,
  9395. bottom: 11/1451
  9396. }
  9397. },
  9398. side: {
  9399. height: math.unit(14, "feet"),
  9400. weight: math.unit(1450, "kg"),
  9401. preyCapacity: math.unit(15, "people"),
  9402. name: "Side",
  9403. image: {
  9404. source: "./media/characters/aura-starwind/side.svg",
  9405. extra: 1654 / 1497
  9406. }
  9407. },
  9408. taur: {
  9409. height: math.unit(18, "feet"),
  9410. weight: math.unit(5500, "kg"),
  9411. preyCapacity: math.unit(50, "people"),
  9412. name: "Taur",
  9413. image: {
  9414. source: "./media/characters/aura-starwind/taur.svg",
  9415. extra: 1760 / 1650
  9416. }
  9417. },
  9418. feral: {
  9419. height: math.unit(46, "feet"),
  9420. weight: math.unit(25000, "kg"),
  9421. preyCapacity: math.unit(120, "people"),
  9422. name: "Feral",
  9423. image: {
  9424. source: "./media/characters/aura-starwind/feral.svg"
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Normal",
  9431. height: math.unit(14, "feet"),
  9432. default: true
  9433. },
  9434. {
  9435. name: "Macro",
  9436. height: math.unit(50, "meters")
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(5000, "meters")
  9441. },
  9442. {
  9443. name: "Gigamacro",
  9444. height: math.unit(100000, "kilometers")
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(2 + 7 / 12, "feet"),
  9453. weight: math.unit(32, "lbs"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/rivet/front.svg",
  9457. extra: 1716 / 1658,
  9458. bottom: 0.03
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(0.551, "feet"),
  9463. name: "Rivet's Foot",
  9464. image: {
  9465. source: "./media/characters/rivet/foot.svg"
  9466. },
  9467. rename: true
  9468. }
  9469. },
  9470. [
  9471. {
  9472. name: "Micro",
  9473. height: math.unit(1.5, "inches"),
  9474. },
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(2 + 7 / 12, "feet"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(85, "feet")
  9483. },
  9484. {
  9485. name: "Megamacro",
  9486. height: math.unit(2.2, "km")
  9487. }
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(5 + 9 / 12, "feet"),
  9495. weight: math.unit(150, "lbs"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/coffee/front.svg",
  9499. extra: 946/880,
  9500. bottom: 66/1012
  9501. }
  9502. },
  9503. foot: {
  9504. height: math.unit(1.29, "feet"),
  9505. name: "Foot",
  9506. image: {
  9507. source: "./media/characters/coffee/foot.svg"
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(2, "inches"),
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(5 + 9 / 12, "feet"),
  9519. default: true
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(800, "feet")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(25, "miles")
  9528. }
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(200, "lbs"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/chari-gal/front.svg",
  9540. extra: 735/649,
  9541. bottom: 55/790
  9542. },
  9543. form: "normal",
  9544. default: true
  9545. },
  9546. back: {
  9547. height: math.unit(6, "feet"),
  9548. weight: math.unit(200, "lb"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/chari-gal/back.svg",
  9552. extra: 762/666,
  9553. bottom: 31/793
  9554. },
  9555. form: "normal"
  9556. },
  9557. mouth: {
  9558. height: math.unit(1.35, "feet"),
  9559. name: "Mouth",
  9560. image: {
  9561. source: "./media/characters/chari-gal/mouth.svg"
  9562. },
  9563. form: "normal"
  9564. },
  9565. gigantamax: {
  9566. height: math.unit(6 * 16, "feet"),
  9567. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9568. name: "Gigantamax",
  9569. image: {
  9570. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9571. extra: 1507/1149,
  9572. bottom: 254/1761
  9573. },
  9574. form: "gigantamax",
  9575. default: true
  9576. },
  9577. },
  9578. [
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(5 + 7 / 12, "feet"),
  9582. form: "normal",
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(200, "feet"),
  9587. default: true,
  9588. form: "normal"
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9593. form: "gigantamax",
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(16 * 200, "feet"),
  9598. default: true,
  9599. form: "gigantamax"
  9600. },
  9601. ],
  9602. {
  9603. "normal": {
  9604. name: "Normal",
  9605. default: true
  9606. },
  9607. "gigantamax": {
  9608. name: "Gigantamax",
  9609. },
  9610. }
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(150, "lbs"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/nova/front.svg",
  9621. extra: 5000 / 4722,
  9622. bottom: 0.02
  9623. }
  9624. }
  9625. },
  9626. [
  9627. {
  9628. name: "Micro-",
  9629. height: math.unit(0.8, "inches")
  9630. },
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(2, "inches"),
  9634. default: true
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9640. {
  9641. koboldFront: {
  9642. height: math.unit(3 + 1 / 12, "feet"),
  9643. weight: math.unit(21.7, "lbs"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/argent/kobold-front.svg",
  9647. extra: 1471 / 1331,
  9648. bottom: 100.8 / 1575.5
  9649. },
  9650. form: "kobold",
  9651. default: true
  9652. },
  9653. dragonFront: {
  9654. height: math.unit(75, "inches"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/argent/dragon-front.svg",
  9658. extra: 1389/1248,
  9659. bottom: 54/1443
  9660. },
  9661. form: "dragon",
  9662. },
  9663. dragonBack: {
  9664. height: math.unit(75, "inches"),
  9665. name: "Back",
  9666. image: {
  9667. source: "./media/characters/argent/dragon-back.svg",
  9668. extra: 1399/1271,
  9669. bottom: 23/1422
  9670. },
  9671. form: "dragon",
  9672. },
  9673. dragonDressed: {
  9674. height: math.unit(75, "inches"),
  9675. name: "Dressed",
  9676. image: {
  9677. source: "./media/characters/argent/dragon-dressed.svg",
  9678. extra: 1350/1215,
  9679. bottom: 26/1376
  9680. },
  9681. form: "dragon"
  9682. },
  9683. dragonHead: {
  9684. height: math.unit(23.5, "inches"),
  9685. name: "Head",
  9686. image: {
  9687. source: "./media/characters/argent/dragon-head.svg"
  9688. },
  9689. form: "dragon",
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(2, "inches"),
  9696. form: "kobold",
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(3 + 1 / 12, "feet"),
  9701. form: "kobold",
  9702. default: true
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(120, "feet"),
  9707. form: "kobold",
  9708. },
  9709. {
  9710. name: "Speck",
  9711. height: math.unit(1, "mm"),
  9712. form: "dragon",
  9713. },
  9714. {
  9715. name: "Tiny",
  9716. height: math.unit(1, "cm"),
  9717. form: "dragon",
  9718. },
  9719. {
  9720. name: "Micro",
  9721. height: math.unit(5, "cm"),
  9722. form: "dragon",
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(75, "inches"),
  9727. form: "dragon",
  9728. default: true
  9729. },
  9730. {
  9731. name: "Extra Tall",
  9732. height: math.unit(9, "feet"),
  9733. form: "dragon",
  9734. },
  9735. {
  9736. name: "Inconvenient",
  9737. height: math.unit(5, "meters"),
  9738. form: "dragon",
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(70, "meters"),
  9743. form: "dragon",
  9744. },
  9745. {
  9746. name: "Macro+",
  9747. height: math.unit(250, "meters"),
  9748. form: "dragon",
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(20, "km"),
  9753. form: "dragon",
  9754. },
  9755. {
  9756. name: "Mountainous",
  9757. height: math.unit(100, "km"),
  9758. form: "dragon",
  9759. },
  9760. {
  9761. name: "Continental",
  9762. height: math.unit(2, "megameters"),
  9763. form: "dragon",
  9764. },
  9765. {
  9766. name: "Too Big",
  9767. height: math.unit(900, "megameters"),
  9768. form: "dragon",
  9769. },
  9770. ],
  9771. {
  9772. "kobold": {
  9773. name: "Kobold",
  9774. default: true
  9775. },
  9776. "dragon": {
  9777. name: "Dragon",
  9778. },
  9779. }
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9783. {
  9784. lamp: {
  9785. height: math.unit(7 * 1559 / 989, "feet"),
  9786. name: "Magic Lamp",
  9787. image: {
  9788. source: "./media/characters/mira-al-cul/lamp.svg",
  9789. extra: 1617 / 1559
  9790. }
  9791. },
  9792. front: {
  9793. height: math.unit(7, "feet"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/mira-al-cul/front.svg",
  9797. extra: 1044 / 990
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Heavily Restricted",
  9804. height: math.unit(7 * 1559 / 989, "feet")
  9805. },
  9806. {
  9807. name: "Freshly Freed",
  9808. height: math.unit(50 * 1559 / 989, "feet")
  9809. },
  9810. {
  9811. name: "World Encompassing",
  9812. height: math.unit(10000 * 1559 / 989, "miles")
  9813. },
  9814. {
  9815. name: "Galactic",
  9816. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9817. },
  9818. {
  9819. name: "Palmed Universe",
  9820. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Multiversal Matriarch",
  9825. height: math.unit(8.87e10, "yottameters")
  9826. },
  9827. {
  9828. name: "Void Mother",
  9829. height: math.unit(3.14e110, "yottaparsecs")
  9830. },
  9831. {
  9832. name: "Toying with Transcendence",
  9833. height: math.unit(1e307, "meters")
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9839. {
  9840. front: {
  9841. height: math.unit(17 + 1 / 12, "feet"),
  9842. weight: math.unit(476.2 * 5, "lbs"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/kuro-shi-uchū/front.svg",
  9846. extra: 2329 / 1835,
  9847. bottom: 0.02
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Micro",
  9854. height: math.unit(2, "inches")
  9855. },
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(12, "meters")
  9859. },
  9860. {
  9861. name: "Planetary",
  9862. height: math.unit(0.00929, "AU"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Universal",
  9867. height: math.unit(20, "gigaparsecs")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(5 + 2 / 12, "feet"),
  9876. weight: math.unit(120, "lbs"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/katherine/front.svg",
  9880. extra: 2075 / 1969
  9881. }
  9882. },
  9883. dress: {
  9884. height: math.unit(5 + 2 / 12, "feet"),
  9885. weight: math.unit(120, "lbs"),
  9886. name: "Dress",
  9887. image: {
  9888. source: "./media/characters/katherine/dress.svg",
  9889. extra: 2258 / 2064
  9890. }
  9891. },
  9892. },
  9893. [
  9894. {
  9895. name: "Micro",
  9896. height: math.unit(1, "inches"),
  9897. default: true
  9898. },
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(5 + 2 / 12, "feet")
  9902. },
  9903. {
  9904. name: "Macro",
  9905. height: math.unit(100, "meters")
  9906. },
  9907. {
  9908. name: "Megamacro",
  9909. height: math.unit(80, "miles")
  9910. },
  9911. ]
  9912. ))
  9913. characterMakers.push(() => makeCharacter(
  9914. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9915. {
  9916. front: {
  9917. height: math.unit(7 + 8 / 12, "feet"),
  9918. weight: math.unit(250, "lbs"),
  9919. name: "Front",
  9920. image: {
  9921. source: "./media/characters/yevis/front.svg",
  9922. extra: 1938 / 1755
  9923. }
  9924. }
  9925. },
  9926. [
  9927. {
  9928. name: "Mortal",
  9929. height: math.unit(7 + 8 / 12, "feet")
  9930. },
  9931. {
  9932. name: "Battle",
  9933. height: math.unit(25 + 11 / 12, "feet")
  9934. },
  9935. {
  9936. name: "Wrath",
  9937. height: math.unit(1654 + 11 / 12, "feet")
  9938. },
  9939. {
  9940. name: "Planet Destroyer",
  9941. height: math.unit(12000, "miles")
  9942. },
  9943. {
  9944. name: "Galaxy Conqueror",
  9945. height: math.unit(1.45, "zettameters"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Universal War",
  9950. height: math.unit(184, "gigaparsecs")
  9951. },
  9952. {
  9953. name: "Eternity War",
  9954. height: math.unit(1.98e55, "yottaparsecs")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9960. {
  9961. front: {
  9962. height: math.unit(5 + 8 / 12, "feet"),
  9963. weight: math.unit(63, "kg"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/xavier/front.svg",
  9967. extra: 944 / 883
  9968. }
  9969. },
  9970. frontStretch: {
  9971. height: math.unit(5 + 8 / 12, "feet"),
  9972. weight: math.unit(63, "kg"),
  9973. name: "Stretching",
  9974. image: {
  9975. source: "./media/characters/xavier/front-stretch.svg",
  9976. extra: 962 / 820
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(5 + 8 / 12, "feet")
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(100, "meters"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "McLargeHuge",
  9992. height: math.unit(10, "miles")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(5 + 5 / 12, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/joshii/front.svg",
  10005. extra: 765 / 653,
  10006. bottom: 51 / 816
  10007. }
  10008. },
  10009. foot: {
  10010. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10011. name: "Foot",
  10012. image: {
  10013. source: "./media/characters/joshii/foot.svg"
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(2, "inches")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(5 + 5 / 12, "feet")
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(785, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Megamacro",
  10033. height: math.unit(24.5, "miles")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/goddess-elizabeth/front.svg",
  10046. extra: 1800 / 1525,
  10047. bottom: 0.005
  10048. }
  10049. },
  10050. foot: {
  10051. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10052. name: "Foot",
  10053. image: {
  10054. source: "./media/characters/goddess-elizabeth/foot.svg"
  10055. }
  10056. },
  10057. mouth: {
  10058. height: math.unit(6, "feet"),
  10059. name: "Mouth",
  10060. image: {
  10061. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(12, "feet")
  10069. },
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(80, "miles"),
  10073. default: true
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(15000, "parsecs")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(5 + 9 / 12, "feet"),
  10086. weight: math.unit(144, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/kara/front.svg"
  10090. }
  10091. },
  10092. feet: {
  10093. height: math.unit(6 / 6.765, "feet"),
  10094. name: "Kara's Feet",
  10095. rename: true,
  10096. image: {
  10097. source: "./media/characters/kara/feet.svg"
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(5 + 9 / 12, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(174, "feet"),
  10109. default: true
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(18, "feet"),
  10118. weight: math.unit(4050, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/tyrone/front.svg",
  10122. extra: 2405 / 2270,
  10123. bottom: 182 / 2587
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Normal",
  10130. height: math.unit(18, "feet"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(300, "feet")
  10136. },
  10137. {
  10138. name: "Megamacro",
  10139. height: math.unit(15, "km")
  10140. },
  10141. {
  10142. name: "Gigamacro",
  10143. height: math.unit(500, "km")
  10144. },
  10145. {
  10146. name: "Teramacro",
  10147. height: math.unit(0.5, "gigameters")
  10148. },
  10149. {
  10150. name: "Omnimacro",
  10151. height: math.unit(1e252, "yottauniverse")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(7 + 8 / 12, "feet"),
  10160. weight: math.unit(120, "lb"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/danny/front.svg",
  10164. extra: 1490 / 1350
  10165. }
  10166. },
  10167. back: {
  10168. height: math.unit(7 + 8 / 12, "feet"),
  10169. weight: math.unit(120, "lb"),
  10170. name: "Back",
  10171. image: {
  10172. source: "./media/characters/danny/back.svg",
  10173. extra: 1490 / 1350
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(7 + 8 / 12, "feet"),
  10181. default: true
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(3.5, "inches"),
  10190. weight: math.unit(19, "grams"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/mallow/front.svg",
  10194. extra: 471 / 431
  10195. }
  10196. },
  10197. back: {
  10198. height: math.unit(3.5, "inches"),
  10199. weight: math.unit(19, "grams"),
  10200. name: "Back",
  10201. image: {
  10202. source: "./media/characters/mallow/back.svg",
  10203. extra: 471 / 431
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(3.5, "inches"),
  10211. default: true
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(9, "feet"),
  10220. weight: math.unit(230, "kg"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/starry-aqua/front.svg"
  10224. }
  10225. },
  10226. back: {
  10227. height: math.unit(9, "feet"),
  10228. weight: math.unit(230, "kg"),
  10229. name: "Back",
  10230. image: {
  10231. source: "./media/characters/starry-aqua/back.svg"
  10232. }
  10233. },
  10234. hand: {
  10235. height: math.unit(9 * 0.1168, "feet"),
  10236. name: "Hand",
  10237. image: {
  10238. source: "./media/characters/starry-aqua/hand.svg"
  10239. }
  10240. },
  10241. foot: {
  10242. height: math.unit(9 * 0.18, "feet"),
  10243. name: "Foot",
  10244. image: {
  10245. source: "./media/characters/starry-aqua/foot.svg"
  10246. }
  10247. }
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(3, "inches")
  10253. },
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(9, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(300, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(3200, "feet")
  10266. }
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(15, "feet"),
  10274. weight: math.unit(5026, "lb"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/luka-towers/front.svg",
  10278. extra: 1269/1133,
  10279. bottom: 51/1320
  10280. }
  10281. },
  10282. },
  10283. [
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(15, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Minimacro",
  10291. height: math.unit(25, "feet")
  10292. },
  10293. {
  10294. name: "Macro",
  10295. height: math.unit(320, "feet")
  10296. },
  10297. {
  10298. name: "Megamacro",
  10299. height: math.unit(35000, "feet")
  10300. },
  10301. {
  10302. name: "Gigamacro",
  10303. height: math.unit(4000, "miles")
  10304. },
  10305. {
  10306. name: "Teramacro",
  10307. height: math.unit(15000, "miles")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10313. {
  10314. front: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Front",
  10318. image: {
  10319. source: "./media/characters/natalie-nightring/front.svg",
  10320. extra: 1,
  10321. bottom: 0.06
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Uh Oh",
  10328. height: math.unit(0.1, "mm")
  10329. },
  10330. {
  10331. name: "Small",
  10332. height: math.unit(3, "inches")
  10333. },
  10334. {
  10335. name: "Human Scale",
  10336. height: math.unit(6, "feet")
  10337. },
  10338. {
  10339. name: "Librarian",
  10340. height: math.unit(50, "feet"),
  10341. default: true
  10342. },
  10343. {
  10344. name: "Immense",
  10345. height: math.unit(200, "miles")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(6, "feet"),
  10354. weight: math.unit(180, "lbs"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/danni-rosie/front.svg",
  10358. extra: 1260 / 1128,
  10359. bottom: 0.022
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(2, "inches"),
  10367. default: true
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(5 + 9 / 12, "feet"),
  10376. weight: math.unit(220, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/samantha-kruse/front.svg",
  10380. extra: (985 / 935),
  10381. bottom: 0.03
  10382. }
  10383. },
  10384. frontUndressed: {
  10385. height: math.unit(5 + 9 / 12, "feet"),
  10386. weight: math.unit(220, "lb"),
  10387. name: "Front (Undressed)",
  10388. image: {
  10389. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10390. extra: (973 / 923),
  10391. bottom: 0.025
  10392. }
  10393. },
  10394. fat: {
  10395. height: math.unit(5 + 9 / 12, "feet"),
  10396. weight: math.unit(900, "lb"),
  10397. name: "Front (Fat)",
  10398. image: {
  10399. source: "./media/characters/samantha-kruse/fat.svg",
  10400. extra: 2688 / 2561
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(5 + 9 / 12, "feet"),
  10408. default: true
  10409. }
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10414. {
  10415. back: {
  10416. height: math.unit(5 + 4 / 12, "feet"),
  10417. weight: math.unit(4963, "lb"),
  10418. name: "Back",
  10419. image: {
  10420. source: "./media/characters/amelia-rosie/back.svg",
  10421. extra: 1113 / 963,
  10422. bottom: 0.01
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Level 0",
  10429. height: math.unit(5 + 4 / 12, "feet")
  10430. },
  10431. {
  10432. name: "Level 1",
  10433. height: math.unit(164597, "feet"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Level 2",
  10438. height: math.unit(956243, "miles")
  10439. },
  10440. {
  10441. name: "Level 3",
  10442. height: math.unit(29421709423, "miles")
  10443. },
  10444. {
  10445. name: "Level 4",
  10446. height: math.unit(154, "lightyears")
  10447. },
  10448. {
  10449. name: "Level 5",
  10450. height: math.unit(4738272, "lightyears")
  10451. },
  10452. {
  10453. name: "Level 6",
  10454. height: math.unit(145787152896, "lightyears")
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(5 + 11 / 12, "feet"),
  10463. weight: math.unit(65, "kg"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/rook-kitara/front.svg",
  10467. extra: 1347 / 1274,
  10468. bottom: 0.005
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Totally Unfair",
  10475. height: math.unit(1.8, "mm")
  10476. },
  10477. {
  10478. name: "Lap Rookie",
  10479. height: math.unit(1.4, "feet")
  10480. },
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(5 + 11 / 12, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "How Did This Happen",
  10488. height: math.unit(80, "miles")
  10489. }
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(7, "feet"),
  10497. weight: math.unit(300, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/pisces/front.svg",
  10501. extra: 2255 / 2115,
  10502. bottom: 0.03
  10503. }
  10504. },
  10505. back: {
  10506. height: math.unit(7, "feet"),
  10507. weight: math.unit(300, "lb"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/pisces/back.svg",
  10511. extra: 2146 / 2055,
  10512. bottom: 0.04
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(7, "feet"),
  10520. default: true
  10521. },
  10522. {
  10523. name: "Swimming Pool",
  10524. height: math.unit(12.2, "meters")
  10525. },
  10526. {
  10527. name: "Olympic Swimming Pool",
  10528. height: math.unit(56.3, "meters")
  10529. },
  10530. {
  10531. name: "Lake Superior",
  10532. height: math.unit(93900, "meters")
  10533. },
  10534. {
  10535. name: "Mediterranean Sea",
  10536. height: math.unit(644457, "meters")
  10537. },
  10538. {
  10539. name: "World's Oceans",
  10540. height: math.unit(4567491, "meters")
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(2.3, "meters"),
  10549. weight: math.unit(120, "kg"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/zelas/front.svg"
  10553. }
  10554. },
  10555. side: {
  10556. height: math.unit(2.3, "meters"),
  10557. weight: math.unit(120, "kg"),
  10558. name: "Side",
  10559. image: {
  10560. source: "./media/characters/zelas/side.svg"
  10561. }
  10562. },
  10563. back: {
  10564. height: math.unit(2.3, "meters"),
  10565. weight: math.unit(120, "kg"),
  10566. name: "Back",
  10567. image: {
  10568. source: "./media/characters/zelas/back.svg"
  10569. }
  10570. },
  10571. foot: {
  10572. height: math.unit(1.116, "feet"),
  10573. name: "Foot",
  10574. image: {
  10575. source: "./media/characters/zelas/foot.svg"
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(2.3, "meters")
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(30, "meters"),
  10587. default: true
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(1, "inch"),
  10596. weight: math.unit(0.21, "grams"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/talbot/front.svg",
  10600. extra: 594 / 544
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Micro",
  10607. height: math.unit(1, "inch"),
  10608. default: true
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10614. {
  10615. front: {
  10616. height: math.unit(3 + 3 / 12, "feet"),
  10617. weight: math.unit(51.8, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/fliss/front.svg",
  10621. extra: 840 / 640
  10622. }
  10623. },
  10624. },
  10625. [
  10626. {
  10627. name: "Teeny Tiny",
  10628. height: math.unit(1, "mm")
  10629. },
  10630. {
  10631. name: "Small",
  10632. height: math.unit(1, "inch"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Standard Sylveon",
  10637. height: math.unit(3 + 3 / 12, "feet")
  10638. },
  10639. {
  10640. name: "Large Nuisance",
  10641. height: math.unit(33, "feet")
  10642. },
  10643. {
  10644. name: "City Filler",
  10645. height: math.unit(3000, "feet")
  10646. },
  10647. {
  10648. name: "New Horizon",
  10649. height: math.unit(6000, "miles")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(5, "cm"),
  10658. weight: math.unit(1.94, "g"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/fleta/front.svg",
  10662. extra: 835 / 803
  10663. }
  10664. },
  10665. back: {
  10666. height: math.unit(5, "cm"),
  10667. weight: math.unit(1.94, "g"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/fleta/back.svg",
  10671. extra: 835 / 803
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Micro",
  10678. height: math.unit(5, "cm"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(225, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/dominic/front.svg",
  10692. extra: 1770 / 1620,
  10693. bottom: 0.025
  10694. }
  10695. },
  10696. back: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(225, "lb"),
  10699. name: "Back",
  10700. image: {
  10701. source: "./media/characters/dominic/back.svg",
  10702. extra: 1745 / 1620,
  10703. bottom: 0.065
  10704. }
  10705. },
  10706. },
  10707. [
  10708. {
  10709. name: "Nano",
  10710. height: math.unit(0.1, "mm")
  10711. },
  10712. {
  10713. name: "Micro-",
  10714. height: math.unit(1, "mm")
  10715. },
  10716. {
  10717. name: "Micro",
  10718. height: math.unit(4, "inches")
  10719. },
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(6 + 4 / 12, "feet"),
  10723. default: true
  10724. },
  10725. {
  10726. name: "Macro",
  10727. height: math.unit(115, "feet")
  10728. },
  10729. {
  10730. name: "Macro+",
  10731. height: math.unit(955, "feet")
  10732. },
  10733. {
  10734. name: "Megamacro",
  10735. height: math.unit(8990, "feet")
  10736. },
  10737. {
  10738. name: "Gigmacro",
  10739. height: math.unit(9310, "miles")
  10740. },
  10741. {
  10742. name: "Teramacro",
  10743. height: math.unit(1567005010, "miles")
  10744. },
  10745. {
  10746. name: "Examacro",
  10747. height: math.unit(1425, "parsecs")
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(400, "feet"),
  10756. weight: math.unit(44444444, "lb"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/major-colonel/front.svg"
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(400, "feet"),
  10764. weight: math.unit(44444444, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/major-colonel/back.svg"
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Macro",
  10774. height: math.unit(400, "feet"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10781. {
  10782. catFront: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(120, "lb"),
  10785. name: "Front (Cat Side)",
  10786. image: {
  10787. source: "./media/characters/axel-lycan/cat-front.svg",
  10788. extra: 430 / 402,
  10789. bottom: 43 / 472.35
  10790. }
  10791. },
  10792. catBack: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(120, "lb"),
  10795. name: "Back (Cat Side)",
  10796. image: {
  10797. source: "./media/characters/axel-lycan/cat-back.svg",
  10798. extra: 447 / 419,
  10799. bottom: 23.3 / 469
  10800. }
  10801. },
  10802. wolfFront: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(120, "lb"),
  10805. name: "Front (Wolf Side)",
  10806. image: {
  10807. source: "./media/characters/axel-lycan/wolf-front.svg",
  10808. extra: 485 / 456,
  10809. bottom: 19 / 504
  10810. }
  10811. },
  10812. wolfBack: {
  10813. height: math.unit(6, "feet"),
  10814. weight: math.unit(120, "lb"),
  10815. name: "Back (Wolf Side)",
  10816. image: {
  10817. source: "./media/characters/axel-lycan/wolf-back.svg",
  10818. extra: 475 / 438,
  10819. bottom: 39.2 / 514
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(1, "km"),
  10827. default: true
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(5 + 9 / 12, "feet"),
  10836. weight: math.unit(175, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/vanrel-hyena/front.svg",
  10840. extra: 1086 / 1010,
  10841. bottom: 0.04
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(5 + 9 / 12, "feet"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(6, "feet"),
  10858. weight: math.unit(103, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/abbott-absol/front.svg",
  10862. extra: 2010 / 1842
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Megamicro",
  10869. height: math.unit(0.1, "mm")
  10870. },
  10871. {
  10872. name: "Micro",
  10873. height: math.unit(1, "inch")
  10874. },
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(6, "feet"),
  10878. default: true
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(6, "feet"),
  10887. weight: math.unit(264, "lb"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/hector/front.svg",
  10891. extra: 2280 / 2130,
  10892. bottom: 0.07
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(12.25, "foot"),
  10900. default: true
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(160, "feet")
  10905. },
  10906. ]
  10907. ))
  10908. characterMakers.push(() => makeCharacter(
  10909. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10910. {
  10911. front: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(150, "lb"),
  10914. name: "Front",
  10915. image: {
  10916. source: "./media/characters/sal/front.svg",
  10917. extra: 1846 / 1699,
  10918. bottom: 0.04
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(10, "miles"),
  10926. default: true
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10932. {
  10933. front: {
  10934. height: math.unit(3, "meters"),
  10935. weight: math.unit(450, "kg"),
  10936. name: "front",
  10937. image: {
  10938. source: "./media/characters/ranger/front.svg",
  10939. extra: 2401 / 2243,
  10940. bottom: 0.05
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(3, "meters"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(14, "feet"),
  10957. weight: math.unit(800, "kg"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/theresa/front.svg",
  10961. extra: 3575 / 3346,
  10962. bottom: 0.03
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(14, "feet"),
  10970. default: true
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10976. {
  10977. front: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(3, "kg"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/ine/front.svg",
  10983. extra: 678 / 539,
  10984. bottom: 0.023
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(2.265, "feet"),
  10992. default: true
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(5, "feet"),
  11001. weight: math.unit(30, "kg"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/vial/front.svg",
  11005. extra: 1365 / 1277,
  11006. bottom: 0.04
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(5, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11020. {
  11021. side: {
  11022. height: math.unit(3.4, "meters"),
  11023. weight: math.unit(1000, "lb"),
  11024. name: "Side",
  11025. image: {
  11026. source: "./media/characters/rovoska/side.svg",
  11027. extra: 4403 / 1515
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Normal",
  11034. height: math.unit(3.4, "meters"),
  11035. default: true
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(8, "feet"),
  11044. weight: math.unit(315, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/gunner-rotthbauer/front.svg"
  11048. }
  11049. },
  11050. back: {
  11051. height: math.unit(8, "feet"),
  11052. weight: math.unit(315, "lb"),
  11053. name: "Back",
  11054. image: {
  11055. source: "./media/characters/gunner-rotthbauer/back.svg"
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Micro",
  11062. height: math.unit(3.5, "inches")
  11063. },
  11064. {
  11065. name: "Normal",
  11066. height: math.unit(8, "feet"),
  11067. default: true
  11068. },
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(250, "feet")
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(1, "AU")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(5 + 5 / 12, "feet"),
  11084. weight: math.unit(140, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/allatia/front.svg",
  11088. extra: 1227 / 1180,
  11089. bottom: 0.027
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(5 + 5 / 12, "feet")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(250, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(8, "miles")
  11106. }
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(120, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/tene/front.svg",
  11118. extra: 814/750,
  11119. bottom: 36/850
  11120. }
  11121. },
  11122. stomping: {
  11123. height: math.unit(2.025, "meters"),
  11124. weight: math.unit(120, "lb"),
  11125. name: "Stomping",
  11126. image: {
  11127. source: "./media/characters/tene/stomping.svg",
  11128. extra: 885/821,
  11129. bottom: 15/900
  11130. }
  11131. },
  11132. sitting: {
  11133. height: math.unit(1, "meter"),
  11134. weight: math.unit(120, "lb"),
  11135. name: "Sitting",
  11136. image: {
  11137. source: "./media/characters/tene/sitting.svg",
  11138. extra: 396/366,
  11139. bottom: 79/475
  11140. }
  11141. },
  11142. smiling: {
  11143. height: math.unit(1.2, "feet"),
  11144. name: "Smiling",
  11145. image: {
  11146. source: "./media/characters/tene/smiling.svg",
  11147. extra: 1364/1071,
  11148. bottom: 0/1364
  11149. }
  11150. },
  11151. smug: {
  11152. height: math.unit(1.3, "feet"),
  11153. name: "Smug",
  11154. image: {
  11155. source: "./media/characters/tene/smug.svg",
  11156. extra: 1323/1082,
  11157. bottom: 0/1323
  11158. }
  11159. },
  11160. feral: {
  11161. height: math.unit(3.9, "feet"),
  11162. weight: math.unit(250, "lb"),
  11163. name: "Feral",
  11164. image: {
  11165. source: "./media/characters/tene/feral.svg",
  11166. extra: 717 / 458,
  11167. bottom: 0.179
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(6, "feet")
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(300, "feet"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Megamacro",
  11183. height: math.unit(5, "miles")
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11189. {
  11190. side: {
  11191. height: math.unit(6, "feet"),
  11192. name: "Side",
  11193. image: {
  11194. source: "./media/characters/evander/side.svg",
  11195. extra: 877 / 477
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(0.83, "meters"),
  11203. default: true
  11204. },
  11205. ]
  11206. ))
  11207. characterMakers.push(() => makeCharacter(
  11208. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11209. {
  11210. front: {
  11211. height: math.unit(12, "feet"),
  11212. weight: math.unit(1000, "lb"),
  11213. name: "Front",
  11214. image: {
  11215. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11216. extra: 1762 / 1611
  11217. }
  11218. },
  11219. back: {
  11220. height: math.unit(12, "feet"),
  11221. weight: math.unit(1000, "lb"),
  11222. name: "Back",
  11223. image: {
  11224. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11225. extra: 1762 / 1611
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Normal",
  11232. height: math.unit(12, "feet"),
  11233. default: true
  11234. },
  11235. {
  11236. name: "Kaiju",
  11237. height: math.unit(150, "feet")
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/zero-alurus/front.svg"
  11250. }
  11251. },
  11252. back: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Back",
  11256. image: {
  11257. source: "./media/characters/zero-alurus/back.svg"
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(5 + 10 / 12, "feet")
  11265. },
  11266. {
  11267. name: "Macro",
  11268. height: math.unit(60, "feet"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Macro+",
  11273. height: math.unit(450, "feet")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(200, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/mega-shi/front.svg",
  11286. extra: 1279 / 1250,
  11287. bottom: 0.02
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(6, "feet"),
  11292. weight: math.unit(200, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/mega-shi/back.svg",
  11296. extra: 1279 / 1250,
  11297. bottom: 0.02
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Micro",
  11304. height: math.unit(16 + 6 / 12, "feet")
  11305. },
  11306. {
  11307. name: "Third Dimension",
  11308. height: math.unit(40, "meters")
  11309. },
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(660, "feet"),
  11313. default: true
  11314. },
  11315. {
  11316. name: "Megamacro",
  11317. height: math.unit(10, "miles")
  11318. },
  11319. {
  11320. name: "Planetary Launch",
  11321. height: math.unit(500, "miles")
  11322. },
  11323. {
  11324. name: "Interstellar",
  11325. height: math.unit(1e9, "miles")
  11326. },
  11327. {
  11328. name: "Leaving the Universe",
  11329. height: math.unit(1, "gigaparsec")
  11330. },
  11331. {
  11332. name: "Travelling Universes",
  11333. height: math.unit(30e15, "parsecs")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(5 + 4/12, "feet"),
  11342. weight: math.unit(120, "lb"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/odyssey/front.svg",
  11346. extra: 1747/1571,
  11347. bottom: 47/1794
  11348. }
  11349. },
  11350. side: {
  11351. height: math.unit(5.1, "feet"),
  11352. weight: math.unit(120, "lb"),
  11353. name: "Side",
  11354. image: {
  11355. source: "./media/characters/odyssey/side.svg",
  11356. extra: 1847/1619,
  11357. bottom: 47/1894
  11358. }
  11359. },
  11360. lounging: {
  11361. height: math.unit(1.464, "feet"),
  11362. weight: math.unit(120, "lb"),
  11363. name: "Lounging",
  11364. image: {
  11365. source: "./media/characters/odyssey/lounging.svg",
  11366. extra: 1235/837,
  11367. bottom: 551/1786
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(5 + 4 / 12, "feet")
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(1, "km")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(3000, "km")
  11383. },
  11384. {
  11385. name: "Gigamacro",
  11386. height: math.unit(1, "AU"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Omniversal",
  11391. height: math.unit(100e14, "lightyears")
  11392. },
  11393. ]
  11394. ))
  11395. characterMakers.push(() => makeCharacter(
  11396. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11397. {
  11398. front: {
  11399. height: math.unit(5 + 10/12, "feet"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/mekuto/front.svg",
  11403. extra: 875/835,
  11404. bottom: 46/921
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Minimicro",
  11411. height: math.unit(0.2, "inches")
  11412. },
  11413. {
  11414. name: "Micro",
  11415. height: math.unit(1.5, "inches")
  11416. },
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(5 + 10 / 12, "feet"),
  11420. default: true
  11421. },
  11422. {
  11423. name: "Minimacro",
  11424. height: math.unit(17 + 9 / 12, "feet")
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(177.5, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(152, "miles")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6.5, "inches"),
  11441. weight: math.unit(13, "oz"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/dafydd-tomos/front.svg",
  11445. extra: 2990 / 2603,
  11446. bottom: 0.03
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Micro",
  11453. height: math.unit(6.5, "inches"),
  11454. default: true
  11455. },
  11456. ]
  11457. ))
  11458. characterMakers.push(() => makeCharacter(
  11459. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11460. {
  11461. front: {
  11462. height: math.unit(6, "feet"),
  11463. weight: math.unit(150, "lb"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/splinter/front.svg",
  11467. extra: 2990 / 2882,
  11468. bottom: 0.04
  11469. }
  11470. },
  11471. back: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(150, "lb"),
  11474. name: "Back",
  11475. image: {
  11476. source: "./media/characters/splinter/back.svg",
  11477. extra: 2990 / 2882,
  11478. bottom: 0.04
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(6, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(230, "meters"),
  11490. default: true
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(4 + 10 / 12, "feet"),
  11499. weight: math.unit(480, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/snow-gabumon/front.svg",
  11503. extra: 1140 / 963,
  11504. bottom: 0.058
  11505. }
  11506. },
  11507. back: {
  11508. height: math.unit(4 + 10 / 12, "feet"),
  11509. weight: math.unit(480, "lb"),
  11510. name: "Back",
  11511. image: {
  11512. source: "./media/characters/snow-gabumon/back.svg",
  11513. extra: 1115 / 962,
  11514. bottom: 0.041
  11515. }
  11516. },
  11517. frontUndresed: {
  11518. height: math.unit(4 + 10 / 12, "feet"),
  11519. weight: math.unit(480, "lb"),
  11520. name: "Front (Undressed)",
  11521. image: {
  11522. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11523. extra: 1061 / 960,
  11524. bottom: 0.045
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Micro",
  11531. height: math.unit(1, "inch")
  11532. },
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(4 + 10 / 12, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(200, "feet")
  11541. },
  11542. {
  11543. name: "Megamacro",
  11544. height: math.unit(120, "miles")
  11545. },
  11546. {
  11547. name: "Gigamacro",
  11548. height: math.unit(9800, "miles")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(1.7, "meters"),
  11557. weight: math.unit(140, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/moody/front.svg",
  11561. extra: 3226 / 3007,
  11562. bottom: 0.087
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Micro",
  11569. height: math.unit(1, "mm")
  11570. },
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(1.7, "meters"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(80, "meters")
  11579. },
  11580. {
  11581. name: "Macro+",
  11582. height: math.unit(500, "meters")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(6, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/zyas/front.svg",
  11595. extra: 1180 / 1120,
  11596. bottom: 0.045
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(10, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(500, "feet")
  11609. },
  11610. {
  11611. name: "Megamacro",
  11612. height: math.unit(5, "miles")
  11613. },
  11614. {
  11615. name: "Teramacro",
  11616. height: math.unit(150000, "miles")
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(6, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/cuon/front.svg",
  11629. extra: 1390 / 1320,
  11630. bottom: 0.008
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Micro",
  11637. height: math.unit(3, "inches")
  11638. },
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(18 + 9 / 12, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(360, "feet")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(360, "miles")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(2.4, "meters"),
  11659. weight: math.unit(70, "kg"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/nyanuxk/front.svg",
  11663. extra: 1172 / 1084,
  11664. bottom: 0.065
  11665. }
  11666. },
  11667. side: {
  11668. height: math.unit(2.4, "meters"),
  11669. weight: math.unit(70, "kg"),
  11670. name: "Side",
  11671. image: {
  11672. source: "./media/characters/nyanuxk/side.svg",
  11673. extra: 1190 / 1132,
  11674. bottom: 0.007
  11675. }
  11676. },
  11677. back: {
  11678. height: math.unit(2.4, "meters"),
  11679. weight: math.unit(70, "kg"),
  11680. name: "Back",
  11681. image: {
  11682. source: "./media/characters/nyanuxk/back.svg",
  11683. extra: 1200 / 1141,
  11684. bottom: 0.015
  11685. }
  11686. },
  11687. foot: {
  11688. height: math.unit(0.52, "meters"),
  11689. name: "Foot",
  11690. image: {
  11691. source: "./media/characters/nyanuxk/foot.svg"
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Micro",
  11698. height: math.unit(2, "cm")
  11699. },
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(2.4, "meters"),
  11703. default: true
  11704. },
  11705. {
  11706. name: "Smaller Macro",
  11707. height: math.unit(120, "meters")
  11708. },
  11709. {
  11710. name: "Bigger Macro",
  11711. height: math.unit(1.2, "km")
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(15, "kilometers")
  11716. },
  11717. {
  11718. name: "Gigamacro",
  11719. height: math.unit(2000, "km")
  11720. },
  11721. {
  11722. name: "Teramacro",
  11723. height: math.unit(500000, "km")
  11724. },
  11725. ]
  11726. ))
  11727. characterMakers.push(() => makeCharacter(
  11728. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11729. {
  11730. side: {
  11731. height: math.unit(6, "feet"),
  11732. name: "Side",
  11733. image: {
  11734. source: "./media/characters/ailbhe/side.svg",
  11735. extra: 757 / 464,
  11736. bottom: 0.041
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(1.07, "meters"),
  11744. default: true
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(120, "kg"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/zevulfius/front.svg",
  11757. extra: 965 / 903
  11758. }
  11759. },
  11760. side: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(120, "kg"),
  11763. name: "Side",
  11764. image: {
  11765. source: "./media/characters/zevulfius/side.svg",
  11766. extra: 939 / 900
  11767. }
  11768. },
  11769. back: {
  11770. height: math.unit(6, "feet"),
  11771. weight: math.unit(120, "kg"),
  11772. name: "Back",
  11773. image: {
  11774. source: "./media/characters/zevulfius/back.svg",
  11775. extra: 918 / 854,
  11776. bottom: 0.005
  11777. }
  11778. },
  11779. foot: {
  11780. height: math.unit(6 / 3.72, "feet"),
  11781. name: "Foot",
  11782. image: {
  11783. source: "./media/characters/zevulfius/foot.svg"
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(750, "meters")
  11791. },
  11792. {
  11793. name: "Megamacro",
  11794. height: math.unit(20, "km"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(2000, "km")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(250000, "km")
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(100, "feet"),
  11812. weight: math.unit(350, "kg"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/rikes/front.svg",
  11816. extra: 1565 / 1483,
  11817. bottom: 0.017
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(100, "feet"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(8, "feet"),
  11834. weight: math.unit(356, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/adam-silver-mane/front.svg",
  11838. extra: 1036/937,
  11839. bottom: 63/1099
  11840. }
  11841. },
  11842. side: {
  11843. height: math.unit(8, "feet"),
  11844. weight: math.unit(356, "lb"),
  11845. name: "Side",
  11846. image: {
  11847. source: "./media/characters/adam-silver-mane/side.svg",
  11848. extra: 997/901,
  11849. bottom: 59/1056
  11850. }
  11851. },
  11852. frontNsfw: {
  11853. height: math.unit(8, "feet"),
  11854. weight: math.unit(356, "lb"),
  11855. name: "Front (NSFW)",
  11856. image: {
  11857. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11858. extra: 1036/937,
  11859. bottom: 63/1099
  11860. }
  11861. },
  11862. sideNsfw: {
  11863. height: math.unit(8, "feet"),
  11864. weight: math.unit(356, "lb"),
  11865. name: "Side (NSFW)",
  11866. image: {
  11867. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11868. extra: 997/901,
  11869. bottom: 59/1056
  11870. }
  11871. },
  11872. dick: {
  11873. height: math.unit(2.1, "feet"),
  11874. name: "Dick",
  11875. image: {
  11876. source: "./media/characters/adam-silver-mane/dick.svg"
  11877. }
  11878. },
  11879. taur: {
  11880. height: math.unit(16, "feet"),
  11881. weight: math.unit(1500, "kg"),
  11882. name: "Taur",
  11883. image: {
  11884. source: "./media/characters/adam-silver-mane/taur.svg",
  11885. extra: 1713 / 1571,
  11886. bottom: 0.01
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(8, "feet")
  11894. },
  11895. {
  11896. name: "Minimacro",
  11897. height: math.unit(80, "feet")
  11898. },
  11899. {
  11900. name: "MDA",
  11901. height: math.unit(80, "meters")
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(800, "feet"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(8000, "feet")
  11911. },
  11912. {
  11913. name: "Gigamacro",
  11914. height: math.unit(800, "miles")
  11915. },
  11916. {
  11917. name: "Teramacro",
  11918. height: math.unit(80000, "miles")
  11919. },
  11920. {
  11921. name: "Celestial",
  11922. height: math.unit(8e6, "miles")
  11923. },
  11924. {
  11925. name: "Star Dragon",
  11926. height: math.unit(800000, "parsecs")
  11927. },
  11928. {
  11929. name: "Godly",
  11930. height: math.unit(800, "teraparsecs")
  11931. },
  11932. ]
  11933. ))
  11934. characterMakers.push(() => makeCharacter(
  11935. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11936. {
  11937. front: {
  11938. height: math.unit(6, "feet"),
  11939. weight: math.unit(150, "lb"),
  11940. name: "Front",
  11941. image: {
  11942. source: "./media/characters/ky'owin/front.svg",
  11943. extra: 3862/3053,
  11944. bottom: 74/3936
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Normal",
  11951. height: math.unit(6 + 8 / 12, "feet")
  11952. },
  11953. {
  11954. name: "Large",
  11955. height: math.unit(68, "feet")
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(132, "feet")
  11960. },
  11961. {
  11962. name: "Macro+",
  11963. height: math.unit(340, "feet")
  11964. },
  11965. {
  11966. name: "Macro++",
  11967. height: math.unit(680, "feet"),
  11968. default: true
  11969. },
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(1, "mile")
  11973. },
  11974. {
  11975. name: "Megamacro+",
  11976. height: math.unit(10, "miles")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(4, "feet"),
  11985. weight: math.unit(50, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/mal/front.svg",
  11989. extra: 785 / 724,
  11990. bottom: 0.07
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Micro",
  11997. height: math.unit(4, "inches")
  11998. },
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(4, "feet"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(200, "feet")
  12007. },
  12008. ]
  12009. ))
  12010. characterMakers.push(() => makeCharacter(
  12011. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12012. {
  12013. front: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Front",
  12017. image: {
  12018. source: "./media/characters/jordan-deware/front.svg",
  12019. extra: 1191 / 1012
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Nano",
  12026. height: math.unit(0.01, "mm")
  12027. },
  12028. {
  12029. name: "Minimicro",
  12030. height: math.unit(1, "mm")
  12031. },
  12032. {
  12033. name: "Micro",
  12034. height: math.unit(0.5, "inches")
  12035. },
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(4, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Minimacro",
  12043. height: math.unit(40, "meters")
  12044. },
  12045. {
  12046. name: "Small Macro",
  12047. height: math.unit(400, "meters")
  12048. },
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(4, "miles")
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(40, "miles")
  12056. },
  12057. {
  12058. name: "Megamacro+",
  12059. height: math.unit(400, "miles")
  12060. },
  12061. {
  12062. name: "Gigamacro",
  12063. height: math.unit(400000, "miles")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12069. {
  12070. side: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Side",
  12074. image: {
  12075. source: "./media/characters/kimiko/side.svg",
  12076. extra: 600 / 358
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(15, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(220, "feet")
  12089. },
  12090. {
  12091. name: "Macro+",
  12092. height: math.unit(1450, "feet")
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(11500, "feet")
  12097. },
  12098. {
  12099. name: "Gigamacro",
  12100. height: math.unit(9500, "miles")
  12101. },
  12102. {
  12103. name: "Teramacro",
  12104. height: math.unit(2208005005, "miles")
  12105. },
  12106. {
  12107. name: "Examacro",
  12108. height: math.unit(2750, "parsecs")
  12109. },
  12110. {
  12111. name: "Zettamacro",
  12112. height: math.unit(101500, "parsecs")
  12113. },
  12114. ]
  12115. ))
  12116. characterMakers.push(() => makeCharacter(
  12117. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12118. {
  12119. front: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(70, "kg"),
  12122. name: "Front",
  12123. image: {
  12124. source: "./media/characters/andrew-sleepy/front.svg"
  12125. }
  12126. },
  12127. side: {
  12128. height: math.unit(6, "feet"),
  12129. weight: math.unit(70, "kg"),
  12130. name: "Side",
  12131. image: {
  12132. source: "./media/characters/andrew-sleepy/side.svg"
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Micro",
  12139. height: math.unit(1, "mm"),
  12140. default: true
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(6, "feet"),
  12149. weight: math.unit(150, "lb"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/judio/front.svg",
  12153. extra: 1258 / 1110
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(5 + 6 / 12, "feet")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(1000, "feet"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(10, "miles")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12175. {
  12176. frontDressed: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(68, "kg"),
  12179. name: "Front (Dressed)",
  12180. image: {
  12181. source: "./media/characters/nomaxice/front-dressed.svg",
  12182. extra: 1137/824,
  12183. bottom: 74/1211
  12184. }
  12185. },
  12186. frontShorts: {
  12187. height: math.unit(6, "feet"),
  12188. weight: math.unit(68, "kg"),
  12189. name: "Front (Shorts)",
  12190. image: {
  12191. source: "./media/characters/nomaxice/front-shorts.svg",
  12192. extra: 1137/824,
  12193. bottom: 74/1211
  12194. }
  12195. },
  12196. back: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(68, "kg"),
  12199. name: "Back",
  12200. image: {
  12201. source: "./media/characters/nomaxice/back.svg",
  12202. extra: 822/786,
  12203. bottom: 39/861
  12204. }
  12205. },
  12206. hand: {
  12207. height: math.unit(0.565, "feet"),
  12208. name: "Hand",
  12209. image: {
  12210. source: "./media/characters/nomaxice/hand.svg"
  12211. }
  12212. },
  12213. foot: {
  12214. height: math.unit(1, "feet"),
  12215. name: "Foot",
  12216. image: {
  12217. source: "./media/characters/nomaxice/foot.svg"
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Micro",
  12224. height: math.unit(8, "cm")
  12225. },
  12226. {
  12227. name: "Norm",
  12228. height: math.unit(1.82, "m")
  12229. },
  12230. {
  12231. name: "Norm+",
  12232. height: math.unit(8.8, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Big",
  12237. height: math.unit(8, "meters")
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(18, "meters")
  12242. },
  12243. {
  12244. name: "Macro+",
  12245. height: math.unit(88, "meters")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(12, "feet"),
  12254. weight: math.unit(1.5, "tons"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/dydros/front.svg",
  12258. extra: 863 / 800,
  12259. bottom: 0.015
  12260. }
  12261. },
  12262. back: {
  12263. height: math.unit(12, "feet"),
  12264. weight: math.unit(1.5, "tons"),
  12265. name: "Back",
  12266. image: {
  12267. source: "./media/characters/dydros/back.svg",
  12268. extra: 900 / 843,
  12269. bottom: 0.005
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(12, "feet"),
  12277. default: true
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(100, "kg"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/riggi/front.svg",
  12290. extra: 5787 / 5303
  12291. }
  12292. },
  12293. hyper: {
  12294. height: math.unit(6 * 5 / 3, "feet"),
  12295. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12296. name: "Hyper",
  12297. image: {
  12298. source: "./media/characters/riggi/hyper.svg",
  12299. extra: 3595 / 3485
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Small Macro",
  12306. height: math.unit(50, "feet")
  12307. },
  12308. {
  12309. name: "Default",
  12310. height: math.unit(200, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Loom",
  12315. height: math.unit(10000, "feet")
  12316. },
  12317. {
  12318. name: "Cruising Altitude",
  12319. height: math.unit(30000, "feet")
  12320. },
  12321. {
  12322. name: "Megamacro",
  12323. height: math.unit(100, "miles")
  12324. },
  12325. {
  12326. name: "Continent Sized",
  12327. height: math.unit(2800, "miles")
  12328. },
  12329. {
  12330. name: "Earth Sized",
  12331. height: math.unit(8000, "miles")
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(6, "feet"),
  12340. weight: math.unit(250, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/alexi/front.svg",
  12344. extra: 3483 / 3291,
  12345. bottom: 0.04
  12346. }
  12347. },
  12348. back: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(250, "lb"),
  12351. name: "Back",
  12352. image: {
  12353. source: "./media/characters/alexi/back.svg",
  12354. extra: 3533 / 3356,
  12355. bottom: 0.021
  12356. }
  12357. },
  12358. frontTransforming: {
  12359. height: math.unit(8.58, "feet"),
  12360. weight: math.unit(1300, "lb"),
  12361. name: "Transforming",
  12362. image: {
  12363. source: "./media/characters/alexi/front-transforming.svg",
  12364. extra: 437 / 409,
  12365. bottom: 19 / 458.66
  12366. }
  12367. },
  12368. frontTransformed: {
  12369. height: math.unit(12.5, "feet"),
  12370. weight: math.unit(4000, "lb"),
  12371. name: "Transformed",
  12372. image: {
  12373. source: "./media/characters/alexi/front-transformed.svg",
  12374. extra: 639 / 614,
  12375. bottom: 30.55 / 671
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Normal",
  12382. height: math.unit(14, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Minimacro",
  12387. height: math.unit(30, "meters")
  12388. },
  12389. {
  12390. name: "Macro",
  12391. height: math.unit(500, "meters")
  12392. },
  12393. {
  12394. name: "Megamacro",
  12395. height: math.unit(9000, "km")
  12396. },
  12397. {
  12398. name: "Teramacro",
  12399. height: math.unit(384000, "km")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/kayroo/front.svg",
  12412. extra: 1153 / 1038,
  12413. bottom: 0.06
  12414. }
  12415. },
  12416. foot: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(150, "lb"),
  12419. name: "Foot",
  12420. image: {
  12421. source: "./media/characters/kayroo/foot.svg"
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Normal",
  12428. height: math.unit(8, "feet"),
  12429. default: true
  12430. },
  12431. {
  12432. name: "Minimacro",
  12433. height: math.unit(250, "feet")
  12434. },
  12435. {
  12436. name: "Macro",
  12437. height: math.unit(2800, "feet")
  12438. },
  12439. {
  12440. name: "Megamacro",
  12441. height: math.unit(5200, "feet")
  12442. },
  12443. {
  12444. name: "Gigamacro",
  12445. height: math.unit(27000, "feet")
  12446. },
  12447. {
  12448. name: "Omega",
  12449. height: math.unit(45000, "feet")
  12450. },
  12451. ]
  12452. ))
  12453. characterMakers.push(() => makeCharacter(
  12454. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12455. {
  12456. front: {
  12457. height: math.unit(18, "feet"),
  12458. weight: math.unit(5800, "lb"),
  12459. name: "Front",
  12460. image: {
  12461. source: "./media/characters/rhys/front.svg",
  12462. extra: 3386 / 3090,
  12463. bottom: 0.07
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(18, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Working Size",
  12475. height: math.unit(200, "feet")
  12476. },
  12477. {
  12478. name: "Demolition Size",
  12479. height: math.unit(2000, "feet")
  12480. },
  12481. {
  12482. name: "Maximum Licensed Size",
  12483. height: math.unit(5, "miles")
  12484. },
  12485. {
  12486. name: "Maximum Observed Size",
  12487. height: math.unit(10, "yottameters")
  12488. },
  12489. ]
  12490. ))
  12491. characterMakers.push(() => makeCharacter(
  12492. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12493. {
  12494. front: {
  12495. height: math.unit(6, "feet"),
  12496. weight: math.unit(250, "lb"),
  12497. name: "Front",
  12498. image: {
  12499. source: "./media/characters/toto/front.svg",
  12500. extra: 527 / 479,
  12501. bottom: 0.05
  12502. }
  12503. },
  12504. },
  12505. [
  12506. {
  12507. name: "Micro",
  12508. height: math.unit(3, "feet")
  12509. },
  12510. {
  12511. name: "Normal",
  12512. height: math.unit(10, "feet")
  12513. },
  12514. {
  12515. name: "Macro",
  12516. height: math.unit(150, "feet"),
  12517. default: true
  12518. },
  12519. {
  12520. name: "Megamacro",
  12521. height: math.unit(1200, "feet")
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "King", species: ["lion"], tags: ["anthro"] },
  12527. {
  12528. back: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Back",
  12532. image: {
  12533. source: "./media/characters/king/back.svg"
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Micro",
  12540. height: math.unit(2, "inches")
  12541. },
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(8, "feet")
  12545. },
  12546. {
  12547. name: "Macro",
  12548. height: math.unit(200, "feet"),
  12549. default: true
  12550. },
  12551. {
  12552. name: "Megamacro",
  12553. height: math.unit(50, "miles")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(11, "feet"),
  12562. weight: math.unit(1400, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/cordite/front.svg",
  12566. extra: 1919/1827,
  12567. bottom: 40/1959
  12568. }
  12569. },
  12570. side: {
  12571. height: math.unit(11, "feet"),
  12572. weight: math.unit(1400, "lb"),
  12573. name: "Side",
  12574. image: {
  12575. source: "./media/characters/cordite/side.svg",
  12576. extra: 1908/1793,
  12577. bottom: 38/1946
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(11, "feet"),
  12582. weight: math.unit(1400, "lb"),
  12583. name: "Back",
  12584. image: {
  12585. source: "./media/characters/cordite/back.svg",
  12586. extra: 1938/1837,
  12587. bottom: 10/1948
  12588. }
  12589. },
  12590. feral: {
  12591. height: math.unit(2, "feet"),
  12592. weight: math.unit(90, "lb"),
  12593. name: "Feral",
  12594. image: {
  12595. source: "./media/characters/cordite/feral.svg",
  12596. extra: 1260 / 755,
  12597. bottom: 0.05
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Normal",
  12604. height: math.unit(11, "feet"),
  12605. default: true
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/pianostrong/front.svg",
  12618. extra: 6577 / 6254,
  12619. bottom: 0.02
  12620. }
  12621. },
  12622. side: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Side",
  12626. image: {
  12627. source: "./media/characters/pianostrong/side.svg",
  12628. extra: 6106 / 5730
  12629. }
  12630. },
  12631. back: {
  12632. height: math.unit(6, "feet"),
  12633. weight: math.unit(150, "lb"),
  12634. name: "Back",
  12635. image: {
  12636. source: "./media/characters/pianostrong/back.svg",
  12637. extra: 6085 / 5733,
  12638. bottom: 0.01
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Macro",
  12645. height: math.unit(100, "feet")
  12646. },
  12647. {
  12648. name: "Macro+",
  12649. height: math.unit(300, "feet"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Macro++",
  12654. height: math.unit(1000, "feet")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/kona/front.svg",
  12667. extra: 2960 / 2629,
  12668. bottom: 0.005
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(11 + 8 / 12, "feet")
  12676. },
  12677. {
  12678. name: "Macro",
  12679. height: math.unit(850, "feet"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Macro+",
  12684. height: math.unit(1.5, "km"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(80, "miles")
  12690. },
  12691. {
  12692. name: "Gigamacro",
  12693. height: math.unit(3500, "miles")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12699. {
  12700. side: {
  12701. height: math.unit(1.9, "meters"),
  12702. weight: math.unit(326, "kg"),
  12703. name: "Side",
  12704. image: {
  12705. source: "./media/characters/levi/side.svg",
  12706. extra: 1704 / 1334,
  12707. bottom: 0.02
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(1.9, "meters"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro",
  12719. height: math.unit(20, "meters")
  12720. },
  12721. {
  12722. name: "Macro+",
  12723. height: math.unit(200, "meters")
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(2, "km")
  12728. },
  12729. {
  12730. name: "Megamacro+",
  12731. height: math.unit(20, "km")
  12732. },
  12733. {
  12734. name: "Gigamacro",
  12735. height: math.unit(2500, "km")
  12736. },
  12737. {
  12738. name: "Gigamacro+",
  12739. height: math.unit(120000, "km")
  12740. },
  12741. {
  12742. name: "Teramacro",
  12743. height: math.unit(7.77e6, "km")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6 + 4/12, "feet"),
  12752. weight: math.unit(190, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/bmc/front.svg",
  12756. extra: 1626/1472,
  12757. bottom: 79/1705
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(6 + 4/12, "feet"),
  12762. weight: math.unit(190, "lb"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/bmc/back.svg",
  12766. extra: 1640/1479,
  12767. bottom: 45/1685
  12768. }
  12769. },
  12770. frontArmor: {
  12771. height: math.unit(6 + 4/12, "feet"),
  12772. weight: math.unit(190, "lb"),
  12773. name: "Front-armor",
  12774. image: {
  12775. source: "./media/characters/bmc/front-armor.svg",
  12776. extra: 1538/1468,
  12777. bottom: 79/1617
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Human-sized",
  12784. height: math.unit(6 + 4 / 12, "feet")
  12785. },
  12786. {
  12787. name: "Interactive Size",
  12788. height: math.unit(25, "feet")
  12789. },
  12790. {
  12791. name: "Small",
  12792. height: math.unit(250, "feet")
  12793. },
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(1250, "feet"),
  12797. default: true
  12798. },
  12799. {
  12800. name: "Good Day",
  12801. height: math.unit(88, "miles")
  12802. },
  12803. {
  12804. name: "Largest Measured Size",
  12805. height: math.unit(105.960, "galaxies")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(20, "feet"),
  12814. weight: math.unit(2016, "kg"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/sven-the-kaiju/front.svg",
  12818. extra: 1277/1250,
  12819. bottom: 35/1312
  12820. }
  12821. },
  12822. mouth: {
  12823. height: math.unit(1.85, "feet"),
  12824. name: "Mouth",
  12825. image: {
  12826. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Fairy",
  12833. height: math.unit(6, "inches")
  12834. },
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(20, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Rampage",
  12842. height: math.unit(200, "feet")
  12843. },
  12844. {
  12845. name: "Archfey Forest Guardian",
  12846. height: math.unit(1, "mile")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(4, "meters"),
  12855. weight: math.unit(2, "tons"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/marik/front.svg",
  12859. extra: 1057 / 1003,
  12860. bottom: 0.08
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(4, "meters"),
  12868. default: true
  12869. },
  12870. {
  12871. name: "Macro",
  12872. height: math.unit(20, "meters")
  12873. },
  12874. {
  12875. name: "Megamacro",
  12876. height: math.unit(50, "km")
  12877. },
  12878. {
  12879. name: "Gigamacro",
  12880. height: math.unit(100, "km")
  12881. },
  12882. {
  12883. name: "Alpha Macro",
  12884. height: math.unit(7.88e7, "yottameters")
  12885. },
  12886. ]
  12887. ))
  12888. characterMakers.push(() => makeCharacter(
  12889. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12890. {
  12891. front: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(110, "lb"),
  12894. name: "Front",
  12895. image: {
  12896. source: "./media/characters/mel/front.svg",
  12897. extra: 736 / 617,
  12898. bottom: 0.017
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Pico",
  12905. height: math.unit(3, "pm")
  12906. },
  12907. {
  12908. name: "Nano",
  12909. height: math.unit(3, "nm")
  12910. },
  12911. {
  12912. name: "Micro",
  12913. height: math.unit(0.3, "mm"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Micro+",
  12918. height: math.unit(3, "mm")
  12919. },
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(5 + 10.5 / 12, "feet")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12928. {
  12929. kaiju: {
  12930. height: math.unit(1.75, "meters"),
  12931. weight: math.unit(55, "kg"),
  12932. name: "Kaiju",
  12933. image: {
  12934. source: "./media/characters/lykonous/kaiju.svg",
  12935. extra: 1055 / 946,
  12936. bottom: 0.135
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(2.5, "meters"),
  12944. default: true
  12945. },
  12946. {
  12947. name: "Kaiju Dragon",
  12948. height: math.unit(60, "meters")
  12949. },
  12950. {
  12951. name: "Mega Kaiju",
  12952. height: math.unit(120, "km")
  12953. },
  12954. {
  12955. name: "Giga Kaiju",
  12956. height: math.unit(200, "megameters")
  12957. },
  12958. {
  12959. name: "Terra Kaiju",
  12960. height: math.unit(400, "gigameters")
  12961. },
  12962. {
  12963. name: "Kaiju Dragon God",
  12964. height: math.unit(13000, "exaparsecs")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/blü/front.svg",
  12977. extra: 1883 / 1564,
  12978. bottom: 0.031
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(13, "feet"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Big Boi",
  12990. height: math.unit(150, "meters")
  12991. },
  12992. {
  12993. name: "Mini Stomper",
  12994. height: math.unit(300, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(1000, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(11000, "meters")
  13003. },
  13004. {
  13005. name: "Gigamacro",
  13006. height: math.unit(11000, "km")
  13007. },
  13008. {
  13009. name: "Teramacro",
  13010. height: math.unit(420000, "km")
  13011. },
  13012. {
  13013. name: "Examacro",
  13014. height: math.unit(120, "parsecs")
  13015. },
  13016. {
  13017. name: "God Tho",
  13018. height: math.unit(98000000000, "parsecs")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13024. {
  13025. taurFront: {
  13026. height: math.unit(6, "feet"),
  13027. weight: math.unit(200, "lb"),
  13028. name: "Taur (Front)",
  13029. image: {
  13030. source: "./media/characters/scales/taur-front.svg",
  13031. extra: 1,
  13032. bottom: 0.05
  13033. }
  13034. },
  13035. taurBack: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(200, "lb"),
  13038. name: "Taur (Back)",
  13039. image: {
  13040. source: "./media/characters/scales/taur-back.svg",
  13041. extra: 1,
  13042. bottom: 0.08
  13043. }
  13044. },
  13045. anthro: {
  13046. height: math.unit(6 * 7 / 12, "feet"),
  13047. weight: math.unit(100, "lb"),
  13048. name: "Anthro",
  13049. image: {
  13050. source: "./media/characters/scales/anthro.svg",
  13051. extra: 1,
  13052. bottom: 0.06
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(12, "feet"),
  13060. default: true
  13061. },
  13062. ]
  13063. ))
  13064. characterMakers.push(() => makeCharacter(
  13065. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13066. {
  13067. front: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Front",
  13071. image: {
  13072. source: "./media/characters/koragos/front.svg",
  13073. extra: 841 / 794,
  13074. bottom: 0.035
  13075. }
  13076. },
  13077. back: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Back",
  13081. image: {
  13082. source: "./media/characters/koragos/back.svg",
  13083. extra: 841 / 810,
  13084. bottom: 0.022
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(6 + 11 / 12, "feet"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(490, "feet")
  13097. },
  13098. {
  13099. name: "Megamacro",
  13100. height: math.unit(10, "miles")
  13101. },
  13102. {
  13103. name: "Gigamacro",
  13104. height: math.unit(50, "miles")
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13110. {
  13111. front: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(250, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/xylrem/front.svg",
  13117. extra: 3323 / 3050,
  13118. bottom: 0.065
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Micro",
  13125. height: math.unit(4, "feet")
  13126. },
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(16, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(2720, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(25000, "miles")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(8, "feet"),
  13147. weight: math.unit(250, "kg"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/ikideru/front.svg",
  13151. extra: 930 / 870,
  13152. bottom: 0.087
  13153. }
  13154. },
  13155. back: {
  13156. height: math.unit(8, "feet"),
  13157. weight: math.unit(250, "kg"),
  13158. name: "Back",
  13159. image: {
  13160. source: "./media/characters/ikideru/back.svg",
  13161. extra: 919 / 852,
  13162. bottom: 0.055
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Rare",
  13169. height: math.unit(8, "feet"),
  13170. default: true
  13171. },
  13172. {
  13173. name: "Playful Loom",
  13174. height: math.unit(80, "feet")
  13175. },
  13176. {
  13177. name: "City Leaner",
  13178. height: math.unit(230, "feet")
  13179. },
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(2500, "feet")
  13183. },
  13184. {
  13185. name: "Gigamacro",
  13186. height: math.unit(26400, "feet")
  13187. },
  13188. {
  13189. name: "Tectonic Shifter",
  13190. height: math.unit(1.7, "megameters")
  13191. },
  13192. {
  13193. name: "Planet Carer",
  13194. height: math.unit(21, "megameters")
  13195. },
  13196. {
  13197. name: "God",
  13198. height: math.unit(11157.22, "parsecs")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(120, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/neo/front.svg"
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Micro",
  13217. height: math.unit(2, "inches"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Human Size",
  13222. height: math.unit(5 + 8 / 12, "feet")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(13 + 10 / 12, "feet"),
  13231. weight: math.unit(5320, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/chauncey-chantz/front.svg",
  13235. extra: 1587 / 1435,
  13236. bottom: 0.02
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Normal",
  13243. height: math.unit(13 + 10 / 12, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(45, "feet")
  13249. },
  13250. {
  13251. name: "Megamacro",
  13252. height: math.unit(250, "miles")
  13253. },
  13254. {
  13255. name: "Planetary",
  13256. height: math.unit(10000, "miles")
  13257. },
  13258. {
  13259. name: "Galactic",
  13260. height: math.unit(40000, "parsecs")
  13261. },
  13262. {
  13263. name: "Universal",
  13264. height: math.unit(1, "yottameter")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13270. {
  13271. front: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(150, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/epifox/front.svg",
  13277. extra: 1,
  13278. bottom: 0.075
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Micro",
  13285. height: math.unit(6, "inches")
  13286. },
  13287. {
  13288. name: "Normal",
  13289. height: math.unit(12, "feet"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Macro",
  13294. height: math.unit(3810, "feet")
  13295. },
  13296. {
  13297. name: "Megamacro",
  13298. height: math.unit(500, "miles")
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(1.8796, "m"),
  13307. weight: math.unit(230, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/colin-t/front.svg",
  13311. extra: 1272 / 1193,
  13312. bottom: 0.07
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Micro",
  13319. height: math.unit(0.571, "meters")
  13320. },
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(1.8796, "meters"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Tall",
  13328. height: math.unit(4, "meters")
  13329. },
  13330. {
  13331. name: "Macro",
  13332. height: math.unit(67.241, "meters")
  13333. },
  13334. {
  13335. name: "Megamacro",
  13336. height: math.unit(371.856, "meters")
  13337. },
  13338. {
  13339. name: "Planetary",
  13340. height: math.unit(12631.5689, "km")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(1.85, "meters"),
  13349. weight: math.unit(80, "kg"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/matvei/front.svg",
  13353. extra: 456/447,
  13354. bottom: 8/464
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(1.85, "meters"),
  13359. weight: math.unit(80, "kg"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/matvei/back.svg",
  13363. extra: 434/427,
  13364. bottom: 11/445
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(1.85, "meters"),
  13372. default: true
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13378. {
  13379. front: {
  13380. height: math.unit(5 + 9 / 12, "feet"),
  13381. weight: math.unit(70, "lb"),
  13382. name: "Front",
  13383. image: {
  13384. source: "./media/characters/quincy/front.svg",
  13385. extra: 3041 / 2751
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(5 + 9 / 12, "feet"),
  13390. weight: math.unit(70, "lb"),
  13391. name: "Back",
  13392. image: {
  13393. source: "./media/characters/quincy/back.svg",
  13394. extra: 3041 / 2751
  13395. }
  13396. },
  13397. flying: {
  13398. height: math.unit(5 + 4 / 12, "feet"),
  13399. weight: math.unit(70, "lb"),
  13400. name: "Flying",
  13401. image: {
  13402. source: "./media/characters/quincy/flying.svg",
  13403. extra: 1044 / 930
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(3, "cm")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(5 + 9 / 12, "feet")
  13415. },
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(200, "meters"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(1000, "meters")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(3 + 11/12, "feet"),
  13432. weight: math.unit(50, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/vanrel/front.svg",
  13436. extra: 1104/949,
  13437. bottom: 52/1156
  13438. }
  13439. },
  13440. back: {
  13441. height: math.unit(3 + 11/12, "feet"),
  13442. weight: math.unit(50, "lb"),
  13443. name: "Back",
  13444. image: {
  13445. source: "./media/characters/vanrel/back.svg",
  13446. extra: 1119/976,
  13447. bottom: 37/1156
  13448. }
  13449. },
  13450. tome: {
  13451. height: math.unit(1.35, "feet"),
  13452. weight: math.unit(10, "lb"),
  13453. name: "Vanrel's Tome",
  13454. rename: true,
  13455. image: {
  13456. source: "./media/characters/vanrel/tome.svg"
  13457. }
  13458. },
  13459. beans: {
  13460. height: math.unit(0.89, "feet"),
  13461. name: "Beans",
  13462. image: {
  13463. source: "./media/characters/vanrel/beans.svg"
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Normal",
  13470. height: math.unit(3 + 11/12, "feet"),
  13471. default: true
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(7 + 5 / 12, "feet"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/kuiper-vanrel/front.svg",
  13483. extra: 1219/1169,
  13484. bottom: 69/1288
  13485. }
  13486. },
  13487. back: {
  13488. height: math.unit(7 + 5 / 12, "feet"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/kuiper-vanrel/back.svg",
  13492. extra: 1236/1193,
  13493. bottom: 27/1263
  13494. }
  13495. },
  13496. foot: {
  13497. height: math.unit(0.55, "meters"),
  13498. name: "Foot",
  13499. image: {
  13500. source: "./media/characters/kuiper-vanrel/foot.svg",
  13501. }
  13502. },
  13503. battle: {
  13504. height: math.unit(6.824, "feet"),
  13505. name: "Battle",
  13506. image: {
  13507. source: "./media/characters/kuiper-vanrel/battle.svg",
  13508. extra: 1466 / 1327,
  13509. bottom: 29 / 1492.5
  13510. }
  13511. },
  13512. meerkui: {
  13513. height: math.unit(18, "inches"),
  13514. name: "Meerkui",
  13515. image: {
  13516. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13517. extra: 1354/1289,
  13518. bottom: 69/1423
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Normal",
  13525. height: math.unit(7 + 5 / 12, "feet"),
  13526. default: true
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(8 + 5 / 12, "feet"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/keset-vanrel/front.svg",
  13538. extra: 1231/1148,
  13539. bottom: 82/1313
  13540. }
  13541. },
  13542. back: {
  13543. height: math.unit(8 + 5 / 12, "feet"),
  13544. name: "Back",
  13545. image: {
  13546. source: "./media/characters/keset-vanrel/back.svg",
  13547. extra: 1240/1174,
  13548. bottom: 33/1273
  13549. }
  13550. },
  13551. hand: {
  13552. height: math.unit(0.6, "meters"),
  13553. name: "Hand",
  13554. image: {
  13555. source: "./media/characters/keset-vanrel/hand.svg"
  13556. }
  13557. },
  13558. foot: {
  13559. height: math.unit(0.94978, "meters"),
  13560. name: "Foot",
  13561. image: {
  13562. source: "./media/characters/keset-vanrel/foot.svg"
  13563. }
  13564. },
  13565. battle: {
  13566. height: math.unit(7.408, "feet"),
  13567. name: "Battle",
  13568. image: {
  13569. source: "./media/characters/keset-vanrel/battle.svg",
  13570. extra: 1890 / 1386,
  13571. bottom: 73.28 / 1970
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Normal",
  13578. height: math.unit(8 + 5 / 12, "feet"),
  13579. default: true
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/neos/front.svg",
  13592. extra: 1696 / 992,
  13593. bottom: 0.14
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Normal",
  13600. height: math.unit(54, "cm"),
  13601. default: true
  13602. },
  13603. {
  13604. name: "Macro",
  13605. height: math.unit(100, "m")
  13606. },
  13607. {
  13608. name: "Megamacro",
  13609. height: math.unit(10, "km")
  13610. },
  13611. {
  13612. name: "Megamacro+",
  13613. height: math.unit(100, "km")
  13614. },
  13615. {
  13616. name: "Gigamacro",
  13617. height: math.unit(100, "Mm")
  13618. },
  13619. {
  13620. name: "Teramacro",
  13621. height: math.unit(100, "Gm")
  13622. },
  13623. {
  13624. name: "Examacro",
  13625. height: math.unit(100, "Em")
  13626. },
  13627. {
  13628. name: "Godly",
  13629. height: math.unit(10000, "Ym")
  13630. },
  13631. {
  13632. name: "Beyond Godly",
  13633. height: math.unit(25, "multiverses")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13639. {
  13640. feminine: {
  13641. height: math.unit(5, "feet"),
  13642. weight: math.unit(100, "lb"),
  13643. name: "Feminine",
  13644. image: {
  13645. source: "./media/characters/sammy-mouse/feminine.svg",
  13646. extra: 2526 / 2425,
  13647. bottom: 0.123
  13648. }
  13649. },
  13650. masculine: {
  13651. height: math.unit(5, "feet"),
  13652. weight: math.unit(100, "lb"),
  13653. name: "Masculine",
  13654. image: {
  13655. source: "./media/characters/sammy-mouse/masculine.svg",
  13656. extra: 2526 / 2425,
  13657. bottom: 0.123
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Micro",
  13664. height: math.unit(5, "inches")
  13665. },
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(5, "feet"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(60, "feet")
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(4, "feet"),
  13682. weight: math.unit(50, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/kole/front.svg",
  13686. extra: 1423 / 1303,
  13687. bottom: 0.025
  13688. }
  13689. },
  13690. back: {
  13691. height: math.unit(4, "feet"),
  13692. weight: math.unit(50, "lb"),
  13693. name: "Back",
  13694. image: {
  13695. source: "./media/characters/kole/back.svg",
  13696. extra: 1426 / 1280,
  13697. bottom: 0.02
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(4, "feet"),
  13705. default: true
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(2.5, "feet"),
  13714. weight: math.unit(32, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/rufran/front.svg",
  13718. extra: 1313/885,
  13719. bottom: 94/1407
  13720. }
  13721. },
  13722. side: {
  13723. height: math.unit(2.5, "feet"),
  13724. weight: math.unit(32, "lb"),
  13725. name: "Side",
  13726. image: {
  13727. source: "./media/characters/rufran/side.svg",
  13728. extra: 1109/852,
  13729. bottom: 118/1227
  13730. }
  13731. },
  13732. back: {
  13733. height: math.unit(2.5, "feet"),
  13734. weight: math.unit(32, "lb"),
  13735. name: "Back",
  13736. image: {
  13737. source: "./media/characters/rufran/back.svg",
  13738. extra: 1280/878,
  13739. bottom: 131/1411
  13740. }
  13741. },
  13742. mouth: {
  13743. height: math.unit(1.13, "feet"),
  13744. name: "Mouth",
  13745. image: {
  13746. source: "./media/characters/rufran/mouth.svg"
  13747. }
  13748. },
  13749. foot: {
  13750. height: math.unit(1.33, "feet"),
  13751. name: "Foot",
  13752. image: {
  13753. source: "./media/characters/rufran/foot.svg"
  13754. }
  13755. },
  13756. koboldFront: {
  13757. height: math.unit(2 + 6 / 12, "feet"),
  13758. weight: math.unit(20, "lb"),
  13759. name: "Front (Kobold)",
  13760. image: {
  13761. source: "./media/characters/rufran/kobold-front.svg",
  13762. extra: 2041 / 1839,
  13763. bottom: 0.055
  13764. }
  13765. },
  13766. koboldBack: {
  13767. height: math.unit(2 + 6 / 12, "feet"),
  13768. weight: math.unit(20, "lb"),
  13769. name: "Back (Kobold)",
  13770. image: {
  13771. source: "./media/characters/rufran/kobold-back.svg",
  13772. extra: 2054 / 1839,
  13773. bottom: 0.01
  13774. }
  13775. },
  13776. koboldHand: {
  13777. height: math.unit(0.2166, "meters"),
  13778. name: "Hand (Kobold)",
  13779. image: {
  13780. source: "./media/characters/rufran/kobold-hand.svg"
  13781. }
  13782. },
  13783. koboldFoot: {
  13784. height: math.unit(0.185, "meters"),
  13785. name: "Foot (Kobold)",
  13786. image: {
  13787. source: "./media/characters/rufran/kobold-foot.svg"
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Micro",
  13794. height: math.unit(1, "inch")
  13795. },
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(2 + 6 / 12, "feet"),
  13799. default: true
  13800. },
  13801. {
  13802. name: "Big",
  13803. height: math.unit(60, "feet")
  13804. },
  13805. {
  13806. name: "Macro",
  13807. height: math.unit(325, "feet")
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(0.3, "meters"),
  13816. weight: math.unit(3.5, "kg"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/chip/front.svg",
  13820. extra: 748 / 674
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(1, "inch"),
  13828. default: true
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13834. {
  13835. side: {
  13836. height: math.unit(2.3, "meters"),
  13837. weight: math.unit(3500, "lb"),
  13838. name: "Side",
  13839. image: {
  13840. source: "./media/characters/torvid/side.svg",
  13841. extra: 1972 / 722,
  13842. bottom: 0.035
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Normal",
  13849. height: math.unit(2.3, "meters"),
  13850. default: true
  13851. },
  13852. ]
  13853. ))
  13854. characterMakers.push(() => makeCharacter(
  13855. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13856. {
  13857. front: {
  13858. height: math.unit(2, "meters"),
  13859. weight: math.unit(150.5, "kg"),
  13860. name: "Front",
  13861. image: {
  13862. source: "./media/characters/susan/front.svg",
  13863. extra: 693 / 635,
  13864. bottom: 0.05
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Megamacro",
  13871. height: math.unit(505, "miles"),
  13872. default: true
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/raindrops/front.svg",
  13885. extra: 2655 / 2461,
  13886. bottom: 49 / 2705
  13887. }
  13888. },
  13889. back: {
  13890. height: math.unit(6, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Back",
  13893. image: {
  13894. source: "./media/characters/raindrops/back.svg",
  13895. extra: 2574 / 2400,
  13896. bottom: 65 / 2634
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(6, "inches")
  13904. },
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(6 + 2 / 12, "feet")
  13908. },
  13909. {
  13910. name: "Macro",
  13911. height: math.unit(131, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(15, "miles")
  13917. },
  13918. {
  13919. name: "Gigamacro",
  13920. height: math.unit(4000, "miles")
  13921. },
  13922. {
  13923. name: "Teramacro",
  13924. height: math.unit(315000, "miles")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(2.794, "meters"),
  13933. weight: math.unit(325, "kg"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/tezwa/front.svg",
  13937. extra: 2083 / 1906,
  13938. bottom: 0.031
  13939. }
  13940. },
  13941. foot: {
  13942. height: math.unit(0.687, "meters"),
  13943. name: "Foot",
  13944. image: {
  13945. source: "./media/characters/tezwa/foot.svg"
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(9 + 2 / 12, "feet"),
  13953. default: true
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(58, "feet"),
  13962. weight: math.unit(89000, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/typhus/front.svg",
  13966. extra: 816 / 800,
  13967. bottom: 0.065
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Macro",
  13974. height: math.unit(58, "feet"),
  13975. default: true
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(12, "feet"),
  13984. weight: math.unit(6, "tonnes"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/lyra-von-wulf/front.svg",
  13988. extra: 1,
  13989. bottom: 0.10
  13990. }
  13991. },
  13992. frontMecha: {
  13993. height: math.unit(12, "feet"),
  13994. weight: math.unit(12, "tonnes"),
  13995. name: "Front (Mecha)",
  13996. image: {
  13997. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13998. extra: 1,
  13999. bottom: 0.042
  14000. }
  14001. },
  14002. maw: {
  14003. height: math.unit(2.2, "feet"),
  14004. name: "Maw",
  14005. image: {
  14006. source: "./media/characters/lyra-von-wulf/maw.svg"
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Classic",
  14018. height: math.unit(50, "feet")
  14019. },
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(500, "feet")
  14023. },
  14024. {
  14025. name: "Megamacro",
  14026. height: math.unit(1, "mile")
  14027. },
  14028. {
  14029. name: "Gigamacro",
  14030. height: math.unit(400, "miles")
  14031. },
  14032. {
  14033. name: "Teramacro",
  14034. height: math.unit(22000, "miles")
  14035. },
  14036. {
  14037. name: "Solarmacro",
  14038. height: math.unit(8600000, "miles")
  14039. },
  14040. {
  14041. name: "Galactic",
  14042. height: math.unit(1057000, "lightyears")
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14048. {
  14049. front: {
  14050. height: math.unit(6 + 10 / 12, "feet"),
  14051. weight: math.unit(150, "lb"),
  14052. name: "Front",
  14053. image: {
  14054. source: "./media/characters/dixon/front.svg",
  14055. extra: 3361 / 3209,
  14056. bottom: 0.01
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(6 + 10 / 12, "feet"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Big",
  14068. height: math.unit(12, "meters")
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(500, "meters")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(2, "km")
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(185, "cm"),
  14085. weight: math.unit(68, "kg"),
  14086. name: "Front",
  14087. image: {
  14088. source: "./media/characters/kauko/front.svg",
  14089. extra: 1455 / 1421,
  14090. bottom: 0.03
  14091. }
  14092. },
  14093. back: {
  14094. height: math.unit(185, "cm"),
  14095. weight: math.unit(68, "kg"),
  14096. name: "Back",
  14097. image: {
  14098. source: "./media/characters/kauko/back.svg",
  14099. extra: 1455 / 1421,
  14100. bottom: 0.004
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(185, "cm"),
  14108. default: true
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14114. {
  14115. frontSfw: {
  14116. height: math.unit(5, "meters"),
  14117. weight: math.unit(4250, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/varg/front-sfw.svg",
  14121. extra: 1103/1010,
  14122. bottom: 50/1153
  14123. },
  14124. form: "anthro",
  14125. default: true
  14126. },
  14127. backSfw: {
  14128. height: math.unit(5, "meters"),
  14129. weight: math.unit(4250, "lb"),
  14130. name: "Back",
  14131. image: {
  14132. source: "./media/characters/varg/back-sfw.svg",
  14133. extra: 1038/1022,
  14134. bottom: 36/1074
  14135. },
  14136. form: "anthro"
  14137. },
  14138. frontNsfw: {
  14139. height: math.unit(5, "meters"),
  14140. weight: math.unit(4250, "lb"),
  14141. name: "Front (NSFW)",
  14142. image: {
  14143. source: "./media/characters/varg/front-nsfw.svg",
  14144. extra: 1103/1010,
  14145. bottom: 50/1153
  14146. },
  14147. form: "anthro"
  14148. },
  14149. sheath: {
  14150. height: math.unit(3.8, "feet"),
  14151. weight: math.unit(90, "kilograms"),
  14152. name: "Sheath",
  14153. image: {
  14154. source: "./media/characters/varg/sheath.svg"
  14155. },
  14156. form: "anthro"
  14157. },
  14158. dick: {
  14159. height: math.unit(4.6, "feet"),
  14160. weight: math.unit(451, "kilograms"),
  14161. name: "Dick",
  14162. image: {
  14163. source: "./media/characters/varg/dick.svg"
  14164. },
  14165. form: "anthro"
  14166. },
  14167. feralSfw: {
  14168. height: math.unit(5, "meters"),
  14169. weight: math.unit(100000, "lb"),
  14170. name: "Side",
  14171. image: {
  14172. source: "./media/characters/varg/feral-sfw.svg",
  14173. extra: 1065/511,
  14174. bottom: 211/1276
  14175. },
  14176. form: "feral",
  14177. default: true
  14178. },
  14179. feralNsfw: {
  14180. height: math.unit(5, "meters"),
  14181. weight: math.unit(100000, "lb"),
  14182. name: "Side (NSFW)",
  14183. image: {
  14184. source: "./media/characters/varg/feral-nsfw.svg",
  14185. extra: 1065/511,
  14186. bottom: 211/1276
  14187. },
  14188. form: "feral",
  14189. },
  14190. feralSheath: {
  14191. height: math.unit(9.8, "feet"),
  14192. weight: math.unit(2000, "kilograms"),
  14193. name: "Sheath",
  14194. image: {
  14195. source: "./media/characters/varg/sheath.svg"
  14196. },
  14197. form: "feral"
  14198. },
  14199. feralDick: {
  14200. height: math.unit(13.11, "feet"),
  14201. weight: math.unit(10440, "kilograms"),
  14202. name: "Dick",
  14203. image: {
  14204. source: "./media/characters/varg/dick.svg"
  14205. },
  14206. form: "feral"
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(5, "meters"),
  14213. form: "anthro"
  14214. },
  14215. {
  14216. name: "Macro",
  14217. height: math.unit(200, "meters"),
  14218. form: "anthro"
  14219. },
  14220. {
  14221. name: "Megamacro",
  14222. height: math.unit(20, "kilometers"),
  14223. form: "anthro"
  14224. },
  14225. {
  14226. name: "True Size",
  14227. height: math.unit(211, "km"),
  14228. form: "anthro",
  14229. default: true
  14230. },
  14231. {
  14232. name: "Gigamacro",
  14233. height: math.unit(1000, "km"),
  14234. form: "anthro"
  14235. },
  14236. {
  14237. name: "Gigamacro+",
  14238. height: math.unit(8000, "km"),
  14239. form: "anthro"
  14240. },
  14241. {
  14242. name: "Teramacro",
  14243. height: math.unit(1000000, "km"),
  14244. form: "anthro"
  14245. },
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(5, "meters"),
  14249. form: "feral"
  14250. },
  14251. {
  14252. name: "Macro",
  14253. height: math.unit(200, "meters"),
  14254. form: "feral"
  14255. },
  14256. {
  14257. name: "Megamacro",
  14258. height: math.unit(20, "kilometers"),
  14259. form: "feral"
  14260. },
  14261. {
  14262. name: "True Size",
  14263. height: math.unit(211, "km"),
  14264. form: "feral",
  14265. default: true
  14266. },
  14267. {
  14268. name: "Gigamacro",
  14269. height: math.unit(1000, "km"),
  14270. form: "feral"
  14271. },
  14272. {
  14273. name: "Gigamacro+",
  14274. height: math.unit(8000, "km"),
  14275. form: "feral"
  14276. },
  14277. {
  14278. name: "Teramacro",
  14279. height: math.unit(1000000, "km"),
  14280. form: "feral"
  14281. },
  14282. ],
  14283. {
  14284. "anthro": {
  14285. name: "Anthro",
  14286. default: true
  14287. },
  14288. "feral": {
  14289. name: "Feral",
  14290. },
  14291. }
  14292. ))
  14293. characterMakers.push(() => makeCharacter(
  14294. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14295. {
  14296. front: {
  14297. height: math.unit(7 + 7 / 12, "feet"),
  14298. weight: math.unit(267, "lb"),
  14299. name: "Front",
  14300. image: {
  14301. source: "./media/characters/dayza/front.svg",
  14302. extra: 1262 / 1200,
  14303. bottom: 0.035
  14304. }
  14305. },
  14306. side: {
  14307. height: math.unit(7 + 7 / 12, "feet"),
  14308. weight: math.unit(267, "lb"),
  14309. name: "Side",
  14310. image: {
  14311. source: "./media/characters/dayza/side.svg",
  14312. extra: 1295 / 1245,
  14313. bottom: 0.05
  14314. }
  14315. },
  14316. back: {
  14317. height: math.unit(7 + 7 / 12, "feet"),
  14318. weight: math.unit(267, "lb"),
  14319. name: "Back",
  14320. image: {
  14321. source: "./media/characters/dayza/back.svg",
  14322. extra: 1241 / 1170
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Normal",
  14329. height: math.unit(7 + 7 / 12, "feet"),
  14330. default: true
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(155, "feet")
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14340. {
  14341. front: {
  14342. height: math.unit(6 + 5 / 12, "feet"),
  14343. weight: math.unit(160, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/xanthos/front.svg",
  14347. extra: 1,
  14348. bottom: 0.04
  14349. }
  14350. },
  14351. back: {
  14352. height: math.unit(6 + 5 / 12, "feet"),
  14353. weight: math.unit(160, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/xanthos/back.svg",
  14357. extra: 1,
  14358. bottom: 0.03
  14359. }
  14360. },
  14361. hand: {
  14362. height: math.unit(0.928, "feet"),
  14363. name: "Hand",
  14364. image: {
  14365. source: "./media/characters/xanthos/hand.svg"
  14366. }
  14367. },
  14368. foot: {
  14369. height: math.unit(1.286, "feet"),
  14370. name: "Foot",
  14371. image: {
  14372. source: "./media/characters/xanthos/foot.svg"
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(6 + 5 / 12, "feet"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Normal+",
  14384. height: math.unit(6, "meters")
  14385. },
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(40, "feet")
  14389. },
  14390. {
  14391. name: "Macro+",
  14392. height: math.unit(200, "meters")
  14393. },
  14394. {
  14395. name: "Megamacro",
  14396. height: math.unit(20, "km")
  14397. },
  14398. {
  14399. name: "Megamacro+",
  14400. height: math.unit(100, "km")
  14401. },
  14402. {
  14403. name: "Gigamacro",
  14404. height: math.unit(200, "megameters")
  14405. },
  14406. {
  14407. name: "Gigamacro+",
  14408. height: math.unit(1.5, "gigameters")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6 + 3 / 12, "feet"),
  14417. weight: math.unit(215, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/grynn/front.svg",
  14421. extra: 4627 / 4209,
  14422. bottom: 0.047
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Micro",
  14429. height: math.unit(6, "inches")
  14430. },
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(6 + 3 / 12, "feet"),
  14434. default: true
  14435. },
  14436. {
  14437. name: "Big",
  14438. height: math.unit(104, "feet")
  14439. },
  14440. {
  14441. name: "Macro",
  14442. height: math.unit(944, "feet")
  14443. },
  14444. {
  14445. name: "Macro+",
  14446. height: math.unit(9480, "feet")
  14447. },
  14448. {
  14449. name: "Megamacro",
  14450. height: math.unit(78752, "feet")
  14451. },
  14452. {
  14453. name: "Megamacro+",
  14454. height: math.unit(630128, "feet")
  14455. },
  14456. {
  14457. name: "Megamacro++",
  14458. height: math.unit(3150695, "feet")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(7 + 5 / 12, "feet"),
  14467. weight: math.unit(450, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/mocha-aura/front.svg",
  14471. extra: 1907 / 1817,
  14472. bottom: 0.04
  14473. }
  14474. },
  14475. back: {
  14476. height: math.unit(7 + 5 / 12, "feet"),
  14477. weight: math.unit(450, "lb"),
  14478. name: "Back",
  14479. image: {
  14480. source: "./media/characters/mocha-aura/back.svg",
  14481. extra: 1900 / 1825,
  14482. bottom: 0.045
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Nano",
  14489. height: math.unit(1, "nm")
  14490. },
  14491. {
  14492. name: "Megamicro",
  14493. height: math.unit(1, "mm")
  14494. },
  14495. {
  14496. name: "Micro",
  14497. height: math.unit(3, "inches")
  14498. },
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(7 + 5 / 12, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Macro",
  14506. height: math.unit(30, "feet")
  14507. },
  14508. {
  14509. name: "Megamacro",
  14510. height: math.unit(3500, "feet")
  14511. },
  14512. {
  14513. name: "Teramacro",
  14514. height: math.unit(500000, "miles")
  14515. },
  14516. {
  14517. name: "Petamacro",
  14518. height: math.unit(50000000000000000, "parsecs")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/ilisha-devya/front.svg",
  14531. extra: 1053/1049,
  14532. bottom: 270/1323
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/ilisha-devya/back.svg",
  14541. extra: 1131/1128,
  14542. bottom: 39/1170
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(500, "feet"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Megamacro",
  14554. height: math.unit(10, "miles")
  14555. },
  14556. {
  14557. name: "Gigamacro",
  14558. height: math.unit(100000, "miles")
  14559. },
  14560. {
  14561. name: "Examacro",
  14562. height: math.unit(1e9, "lightyears")
  14563. },
  14564. {
  14565. name: "Omniversal",
  14566. height: math.unit(1e33, "lightyears")
  14567. },
  14568. {
  14569. name: "Beyond Infinite",
  14570. height: math.unit(1e100, "lightyears")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14576. {
  14577. Side: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(150, "lb"),
  14580. name: "Side",
  14581. image: {
  14582. source: "./media/characters/mira/side.svg",
  14583. extra: 900 / 799,
  14584. bottom: 0.02
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Human Size",
  14591. height: math.unit(6, "feet")
  14592. },
  14593. {
  14594. name: "Macro",
  14595. height: math.unit(100, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Megamacro",
  14600. height: math.unit(10, "miles")
  14601. },
  14602. {
  14603. name: "Gigamacro",
  14604. height: math.unit(25000, "miles")
  14605. },
  14606. {
  14607. name: "Teramacro",
  14608. height: math.unit(300, "AU")
  14609. },
  14610. {
  14611. name: "Full Size",
  14612. height: math.unit(4.5e10, "lightyears")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14618. {
  14619. front: {
  14620. height: math.unit(6, "feet"),
  14621. weight: math.unit(150, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/holly/front.svg",
  14625. extra: 639 / 606
  14626. }
  14627. },
  14628. back: {
  14629. height: math.unit(6, "feet"),
  14630. weight: math.unit(150, "lb"),
  14631. name: "Back",
  14632. image: {
  14633. source: "./media/characters/holly/back.svg",
  14634. extra: 623 / 598
  14635. }
  14636. },
  14637. frontWorking: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front (Working)",
  14641. image: {
  14642. source: "./media/characters/holly/front-working.svg",
  14643. extra: 607 / 577,
  14644. bottom: 0.048
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(12 + 3 / 12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/porter/front.svg",
  14665. extra: 1,
  14666. bottom: 0.01
  14667. }
  14668. },
  14669. frontRobes: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Front (Robes)",
  14673. image: {
  14674. source: "./media/characters/porter/front-robes.svg",
  14675. extra: 1.01,
  14676. bottom: 0.01
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(11 + 9 / 12, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14690. {
  14691. legendary: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Legendary",
  14695. image: {
  14696. source: "./media/characters/lucy/legendary.svg",
  14697. extra: 1355 / 1100,
  14698. bottom: 0.045
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Legendary",
  14705. height: math.unit(86882 * 2, "miles"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(150, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/drusilla/front.svg",
  14719. extra: 678 / 635,
  14720. bottom: 0.03
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/drusilla/back.svg",
  14729. extra: 678 / 635,
  14730. bottom: 0.005
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Macro",
  14737. height: math.unit(100, "feet")
  14738. },
  14739. {
  14740. name: "Canon Height",
  14741. height: math.unit(2000, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(180, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/renard-thatch/front.svg",
  14755. extra: 2411 / 2275,
  14756. bottom: 0.01
  14757. }
  14758. },
  14759. frontPosing: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(180, "lb"),
  14762. name: "Front (Posing)",
  14763. image: {
  14764. source: "./media/characters/renard-thatch/front-posing.svg",
  14765. extra: 2381 / 2261,
  14766. bottom: 0.01
  14767. }
  14768. },
  14769. back: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(180, "lb"),
  14772. name: "Back",
  14773. image: {
  14774. source: "./media/characters/renard-thatch/back.svg",
  14775. extra: 2428 / 2288
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Micro",
  14782. height: math.unit(3, "inches")
  14783. },
  14784. {
  14785. name: "Default",
  14786. height: math.unit(6, "feet"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Macro",
  14791. height: math.unit(75, "feet")
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(1450, "feet"),
  14800. weight: math.unit(1.21e6, "tons"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/sekvra/front.svg",
  14804. extra: 1193/1190,
  14805. bottom: 78/1271
  14806. }
  14807. },
  14808. side: {
  14809. height: math.unit(1450, "feet"),
  14810. weight: math.unit(1.21e6, "tons"),
  14811. name: "Side",
  14812. image: {
  14813. source: "./media/characters/sekvra/side.svg",
  14814. extra: 1193/1190,
  14815. bottom: 52/1245
  14816. }
  14817. },
  14818. back: {
  14819. height: math.unit(1450, "feet"),
  14820. weight: math.unit(1.21e6, "tons"),
  14821. name: "Back",
  14822. image: {
  14823. source: "./media/characters/sekvra/back.svg",
  14824. extra: 1219/1216,
  14825. bottom: 21/1240
  14826. }
  14827. },
  14828. frontClothed: {
  14829. height: math.unit(1450, "feet"),
  14830. weight: math.unit(1.21e6, "tons"),
  14831. name: "Front (Clothed)",
  14832. image: {
  14833. source: "./media/characters/sekvra/front-clothed.svg",
  14834. extra: 1192/1189,
  14835. bottom: 79/1271
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Macro",
  14842. height: math.unit(1450, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(15000, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/carmine/front.svg",
  14860. extra: 1557/1538,
  14861. bottom: 68/1625
  14862. }
  14863. },
  14864. frontArmor: {
  14865. height: math.unit(6, "feet"),
  14866. weight: math.unit(150, "lb"),
  14867. name: "Front (Armor)",
  14868. image: {
  14869. source: "./media/characters/carmine/front-armor.svg",
  14870. extra: 1549/1530,
  14871. bottom: 82/1631
  14872. }
  14873. },
  14874. mouth: {
  14875. height: math.unit(0.55, "feet"),
  14876. name: "Mouth",
  14877. image: {
  14878. source: "./media/characters/carmine/mouth.svg"
  14879. }
  14880. },
  14881. hand: {
  14882. height: math.unit(1.05, "feet"),
  14883. name: "Hand",
  14884. image: {
  14885. source: "./media/characters/carmine/hand.svg"
  14886. }
  14887. },
  14888. foot: {
  14889. height: math.unit(0.6, "feet"),
  14890. name: "Foot",
  14891. image: {
  14892. source: "./media/characters/carmine/foot.svg"
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Large",
  14899. height: math.unit(1, "mile")
  14900. },
  14901. {
  14902. name: "Huge",
  14903. height: math.unit(40, "miles"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Colossal",
  14908. height: math.unit(2500, "miles")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/elyssia/front.svg",
  14921. extra: 2201 / 2035,
  14922. bottom: 0.05
  14923. }
  14924. },
  14925. frontClothed: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(150, "lb"),
  14928. name: "Front (Clothed)",
  14929. image: {
  14930. source: "./media/characters/elyssia/front-clothed.svg",
  14931. extra: 2201 / 2035,
  14932. bottom: 0.05
  14933. }
  14934. },
  14935. back: {
  14936. height: math.unit(6, "feet"),
  14937. weight: math.unit(150, "lb"),
  14938. name: "Back",
  14939. image: {
  14940. source: "./media/characters/elyssia/back.svg",
  14941. extra: 2201 / 2035,
  14942. bottom: 0.013
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Smaller",
  14949. height: math.unit(150, "feet")
  14950. },
  14951. {
  14952. name: "Standard",
  14953. height: math.unit(1400, "feet"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Distracted",
  14958. height: math.unit(15000, "feet")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(7 + 4/12, "feet"),
  14967. weight: math.unit(690, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/geno-maxwell/front.svg",
  14971. extra: 984/856,
  14972. bottom: 87/1071
  14973. }
  14974. },
  14975. back: {
  14976. height: math.unit(7 + 4/12, "feet"),
  14977. weight: math.unit(690, "lb"),
  14978. name: "Back",
  14979. image: {
  14980. source: "./media/characters/geno-maxwell/back.svg",
  14981. extra: 981/854,
  14982. bottom: 57/1038
  14983. }
  14984. },
  14985. frontCostume: {
  14986. height: math.unit(7 + 4/12, "feet"),
  14987. weight: math.unit(690, "lb"),
  14988. name: "Front (Costume)",
  14989. image: {
  14990. source: "./media/characters/geno-maxwell/front-costume.svg",
  14991. extra: 984/856,
  14992. bottom: 87/1071
  14993. }
  14994. },
  14995. backcostume: {
  14996. height: math.unit(7 + 4/12, "feet"),
  14997. weight: math.unit(690, "lb"),
  14998. name: "Back (Costume)",
  14999. image: {
  15000. source: "./media/characters/geno-maxwell/back-costume.svg",
  15001. extra: 981/854,
  15002. bottom: 57/1038
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Micro",
  15009. height: math.unit(3, "inches")
  15010. },
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(7 + 4 / 12, "feet"),
  15014. default: true
  15015. },
  15016. {
  15017. name: "Macro",
  15018. height: math.unit(220, "feet")
  15019. },
  15020. {
  15021. name: "Megamacro",
  15022. height: math.unit(11, "miles")
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(7 + 4/12, "feet"),
  15031. weight: math.unit(750, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/regena-maxwell/front.svg",
  15035. extra: 984/856,
  15036. bottom: 87/1071
  15037. }
  15038. },
  15039. back: {
  15040. height: math.unit(7 + 4/12, "feet"),
  15041. weight: math.unit(750, "lb"),
  15042. name: "Back",
  15043. image: {
  15044. source: "./media/characters/regena-maxwell/back.svg",
  15045. extra: 981/854,
  15046. bottom: 57/1038
  15047. }
  15048. },
  15049. frontCostume: {
  15050. height: math.unit(7 + 4/12, "feet"),
  15051. weight: math.unit(750, "lb"),
  15052. name: "Front (Costume)",
  15053. image: {
  15054. source: "./media/characters/regena-maxwell/front-costume.svg",
  15055. extra: 984/856,
  15056. bottom: 87/1071
  15057. }
  15058. },
  15059. backcostume: {
  15060. height: math.unit(7 + 4/12, "feet"),
  15061. weight: math.unit(750, "lb"),
  15062. name: "Back (Costume)",
  15063. image: {
  15064. source: "./media/characters/regena-maxwell/back-costume.svg",
  15065. extra: 981/854,
  15066. bottom: 57/1038
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(7 + 4 / 12, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(220, "feet")
  15079. },
  15080. {
  15081. name: "Megamacro",
  15082. height: math.unit(11, "miles")
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15095. extra: 860 / 690,
  15096. bottom: 0.03
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(1.7, "meters"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(6, "feet"),
  15113. weight: math.unit(150, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/quilly/front.svg",
  15117. extra: 890 / 776
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Gigamacro",
  15124. height: math.unit(404090, "miles"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(7 + 8 / 12, "feet"),
  15134. weight: math.unit(350, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/tempest/front.svg",
  15138. extra: 1175 / 1086,
  15139. bottom: 0.02
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Normal",
  15146. height: math.unit(7 + 8 / 12, "feet"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15153. {
  15154. side: {
  15155. height: math.unit(4 + 5 / 12, "feet"),
  15156. weight: math.unit(80, "lb"),
  15157. name: "Side",
  15158. image: {
  15159. source: "./media/characters/rodger/side.svg",
  15160. extra: 1235 / 1118
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Micro",
  15167. height: math.unit(1, "inch")
  15168. },
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(4 + 5 / 12, "feet"),
  15172. default: true
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(120, "feet")
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/danyel/front.svg",
  15189. extra: 1185 / 1123,
  15190. bottom: 0.05
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Shrunken",
  15197. height: math.unit(0.5, "mm")
  15198. },
  15199. {
  15200. name: "Micro",
  15201. height: math.unit(1, "mm"),
  15202. default: true
  15203. },
  15204. {
  15205. name: "Upsized",
  15206. height: math.unit(5 + 5 / 12, "feet")
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(5 + 6 / 12, "feet"),
  15215. weight: math.unit(200, "lb"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/vivian-bijoux/front.svg",
  15219. extra: 1217/1209,
  15220. bottom: 76/1293
  15221. }
  15222. },
  15223. back: {
  15224. height: math.unit(5 + 6 / 12, "feet"),
  15225. weight: math.unit(200, "lb"),
  15226. name: "Back",
  15227. image: {
  15228. source: "./media/characters/vivian-bijoux/back.svg",
  15229. extra: 1214/1208,
  15230. bottom: 51/1265
  15231. }
  15232. },
  15233. dressed: {
  15234. height: math.unit(5 + 6 / 12, "feet"),
  15235. weight: math.unit(200, "lb"),
  15236. name: "Dressed",
  15237. image: {
  15238. source: "./media/characters/vivian-bijoux/dressed.svg",
  15239. extra: 1217/1209,
  15240. bottom: 76/1293
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(5 + 6 / 12, "feet"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "Bad Dream",
  15252. height: math.unit(500, "feet")
  15253. },
  15254. {
  15255. name: "Nightmare",
  15256. height: math.unit(500, "miles")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6 + 1 / 12, "feet"),
  15265. weight: math.unit(260, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/zeta/front.svg",
  15269. extra: 1968 / 1889,
  15270. bottom: 0.06
  15271. }
  15272. },
  15273. back: {
  15274. height: math.unit(6 + 1 / 12, "feet"),
  15275. weight: math.unit(260, "lb"),
  15276. name: "Back",
  15277. image: {
  15278. source: "./media/characters/zeta/back.svg",
  15279. extra: 1944 / 1858,
  15280. bottom: 0.03
  15281. }
  15282. },
  15283. hand: {
  15284. height: math.unit(1.112, "feet"),
  15285. name: "Hand",
  15286. image: {
  15287. source: "./media/characters/zeta/hand.svg"
  15288. }
  15289. },
  15290. foot: {
  15291. height: math.unit(1.48, "feet"),
  15292. name: "Foot",
  15293. image: {
  15294. source: "./media/characters/zeta/foot.svg"
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Micro",
  15301. height: math.unit(6, "inches")
  15302. },
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(6 + 1 / 12, "feet"),
  15306. default: true
  15307. },
  15308. {
  15309. name: "Macro",
  15310. height: math.unit(20, "feet")
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(150, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/jamie-larsen/front.svg",
  15323. extra: 962 / 933,
  15324. bottom: 0.02
  15325. }
  15326. },
  15327. back: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Back",
  15331. image: {
  15332. source: "./media/characters/jamie-larsen/back.svg",
  15333. extra: 997 / 946
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Macro",
  15340. height: math.unit(28 + 7 / 12, "feet"),
  15341. default: true
  15342. },
  15343. {
  15344. name: "Macro+",
  15345. height: math.unit(180, "feet")
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(10, "miles")
  15350. },
  15351. {
  15352. name: "Gigamacro",
  15353. height: math.unit(200000, "miles")
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(6, "feet"),
  15362. weight: math.unit(120, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/vance/front.svg",
  15366. extra: 1980 / 1890,
  15367. bottom: 0.09
  15368. }
  15369. },
  15370. back: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(120, "lb"),
  15373. name: "Back",
  15374. image: {
  15375. source: "./media/characters/vance/back.svg",
  15376. extra: 2081 / 1994,
  15377. bottom: 0.014
  15378. }
  15379. },
  15380. hand: {
  15381. height: math.unit(0.88, "feet"),
  15382. name: "Hand",
  15383. image: {
  15384. source: "./media/characters/vance/hand.svg"
  15385. }
  15386. },
  15387. foot: {
  15388. height: math.unit(0.64, "feet"),
  15389. name: "Foot",
  15390. image: {
  15391. source: "./media/characters/vance/foot.svg"
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Small",
  15398. height: math.unit(90, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(100, "meters")
  15404. },
  15405. {
  15406. name: "Megamacro",
  15407. height: math.unit(15, "miles")
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6, "feet"),
  15416. weight: math.unit(180, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/xochitl/front.svg",
  15420. extra: 2297 / 2261,
  15421. bottom: 0.065
  15422. }
  15423. },
  15424. back: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(180, "lb"),
  15427. name: "Back",
  15428. image: {
  15429. source: "./media/characters/xochitl/back.svg",
  15430. extra: 2386 / 2354,
  15431. bottom: 0.01
  15432. }
  15433. },
  15434. foot: {
  15435. height: math.unit(6 / 5 * 1.15, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Foot",
  15438. image: {
  15439. source: "./media/characters/xochitl/foot.svg"
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Macro",
  15446. height: math.unit(80, "feet")
  15447. },
  15448. {
  15449. name: "Macro+",
  15450. height: math.unit(400, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Gigamacro",
  15455. height: math.unit(80000, "miles")
  15456. },
  15457. {
  15458. name: "Gigamacro+",
  15459. height: math.unit(400000, "miles")
  15460. },
  15461. {
  15462. name: "Teramacro",
  15463. height: math.unit(300, "AU")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/vincent/front.svg",
  15476. extra: 1130 / 1080,
  15477. bottom: 0.055
  15478. }
  15479. },
  15480. beak: {
  15481. height: math.unit(6 * 0.1, "feet"),
  15482. name: "Beak",
  15483. image: {
  15484. source: "./media/characters/vincent/beak.svg"
  15485. }
  15486. },
  15487. hand: {
  15488. height: math.unit(6 * 0.85, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Hand",
  15491. image: {
  15492. source: "./media/characters/vincent/hand.svg"
  15493. }
  15494. },
  15495. foot: {
  15496. height: math.unit(6 * 0.19, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Foot",
  15499. image: {
  15500. source: "./media/characters/vincent/foot.svg"
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Base",
  15507. height: math.unit(6 + 5 / 12, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(300, "feet")
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(2, "miles")
  15517. },
  15518. {
  15519. name: "Gigamacro",
  15520. height: math.unit(1000, "miles")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(2, "meters"),
  15529. weight: math.unit(500, "kg"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/coatl/front.svg",
  15533. extra: 3948 / 3500,
  15534. bottom: 0.082
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(4, "meters")
  15542. },
  15543. {
  15544. name: "Macro",
  15545. height: math.unit(100, "meters"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Macro+",
  15550. height: math.unit(300, "meters")
  15551. },
  15552. {
  15553. name: "Megamacro",
  15554. height: math.unit(3, "gigameters")
  15555. },
  15556. {
  15557. name: "Megamacro+",
  15558. height: math.unit(300, "terameters")
  15559. },
  15560. {
  15561. name: "Megamacro++",
  15562. height: math.unit(3, "lightyears")
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(50, "kg"),
  15572. name: "front",
  15573. image: {
  15574. source: "./media/characters/shiroryu/front.svg",
  15575. extra: 1990 / 1935
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Mortal Mingling",
  15582. height: math.unit(3, "meters")
  15583. },
  15584. {
  15585. name: "Kaiju-ish",
  15586. height: math.unit(250, "meters")
  15587. },
  15588. {
  15589. name: "Somewhat Godly",
  15590. height: math.unit(400, "km"),
  15591. default: true
  15592. },
  15593. {
  15594. name: "Planetary",
  15595. height: math.unit(300, "megameters")
  15596. },
  15597. {
  15598. name: "Galaxy-dwarfing",
  15599. height: math.unit(450, "kiloparsecs")
  15600. },
  15601. {
  15602. name: "Universe Eater",
  15603. height: math.unit(150, "gigaparsecs")
  15604. },
  15605. {
  15606. name: "Almost Immeasurable",
  15607. height: math.unit(1.3e266, "yottaparsecs")
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/umeko/front.svg",
  15620. extra: 1,
  15621. bottom: 0.019
  15622. }
  15623. },
  15624. frontArmored: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front (Armored)",
  15628. image: {
  15629. source: "./media/characters/umeko/front-armored.svg",
  15630. extra: 1,
  15631. bottom: 0.021
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Macro",
  15638. height: math.unit(220, "feet"),
  15639. default: true
  15640. },
  15641. {
  15642. name: "Guardian Dragon",
  15643. height: math.unit(50, "miles")
  15644. },
  15645. {
  15646. name: "Cosmic",
  15647. height: math.unit(800000, "miles")
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(6, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/cassidy/front.svg",
  15660. extra: 810/808,
  15661. bottom: 41/851
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Canon Height",
  15668. height: math.unit(120, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Macro+",
  15673. height: math.unit(400, "feet")
  15674. },
  15675. {
  15676. name: "Macro++",
  15677. height: math.unit(4000, "feet")
  15678. },
  15679. {
  15680. name: "Megamacro",
  15681. height: math.unit(3, "miles")
  15682. },
  15683. ]
  15684. ))
  15685. characterMakers.push(() => makeCharacter(
  15686. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15687. {
  15688. front: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Front",
  15692. image: {
  15693. source: "./media/characters/isaac/front.svg",
  15694. extra: 896 / 815,
  15695. bottom: 0.11
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Human Size",
  15702. height: math.unit(8, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Macro",
  15707. height: math.unit(400, "feet")
  15708. },
  15709. {
  15710. name: "Megamacro",
  15711. height: math.unit(50, "miles")
  15712. },
  15713. {
  15714. name: "Canon Height",
  15715. height: math.unit(200, "AU")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(72, "kg"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/sleekit/front.svg",
  15728. extra: 4693 / 4487,
  15729. bottom: 0.012
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Minimum Height",
  15736. height: math.unit(10, "meters")
  15737. },
  15738. {
  15739. name: "Smaller",
  15740. height: math.unit(25, "meters")
  15741. },
  15742. {
  15743. name: "Larger",
  15744. height: math.unit(38, "meters"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Maximum height",
  15749. height: math.unit(100, "meters")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/nillia/front.svg",
  15762. extra: 719/665,
  15763. bottom: 6/725
  15764. }
  15765. },
  15766. back: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Back",
  15770. image: {
  15771. source: "./media/characters/nillia/back.svg",
  15772. extra: 705/651,
  15773. bottom: 5/710
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Canon Height",
  15780. height: math.unit(489, "feet"),
  15781. default: true
  15782. }
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(6, "feet"),
  15790. weight: math.unit(150, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/mesmyriza/front.svg",
  15794. extra: 2067 / 1784,
  15795. bottom: 0.035
  15796. }
  15797. },
  15798. foot: {
  15799. height: math.unit(6 / (250 / 35), "feet"),
  15800. name: "Foot",
  15801. image: {
  15802. source: "./media/characters/mesmyriza/foot.svg"
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Macro",
  15809. height: math.unit(457, "meters"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Megamacro",
  15814. height: math.unit(8, "megameters")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(6, "feet"),
  15823. weight: math.unit(250, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/saudade/front.svg",
  15827. extra: 1172 / 1139,
  15828. bottom: 0.035
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Micro",
  15835. height: math.unit(3, "inches")
  15836. },
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(6, "feet"),
  15840. default: true
  15841. },
  15842. {
  15843. name: "Macro",
  15844. height: math.unit(50, "feet")
  15845. },
  15846. {
  15847. name: "Megamacro",
  15848. height: math.unit(2800, "feet")
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(5 + 4 / 12, "feet"),
  15857. weight: math.unit(100, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/keireer/front.svg",
  15861. extra: 716 / 666,
  15862. bottom: 0.05
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(5 + 4 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(5.5, "feet"),
  15879. weight: math.unit(90, "kg"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/mirja/front.svg",
  15883. extra: 1452/1262,
  15884. bottom: 67/1519
  15885. }
  15886. },
  15887. frontDressed: {
  15888. height: math.unit(5.5, "feet"),
  15889. weight: math.unit(90, "lb"),
  15890. name: "Front (Dressed)",
  15891. image: {
  15892. source: "./media/characters/mirja/dressed.svg",
  15893. extra: 1452/1262,
  15894. bottom: 67/1519
  15895. }
  15896. },
  15897. back: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(90, "lb"),
  15900. name: "Back",
  15901. image: {
  15902. source: "./media/characters/mirja/back.svg",
  15903. extra: 1892/1795,
  15904. bottom: 48/1940
  15905. }
  15906. },
  15907. maw: {
  15908. height: math.unit(1.312, "feet"),
  15909. name: "Maw",
  15910. image: {
  15911. source: "./media/characters/mirja/maw.svg"
  15912. }
  15913. },
  15914. paw: {
  15915. height: math.unit(1.15, "feet"),
  15916. name: "Paw",
  15917. image: {
  15918. source: "./media/characters/mirja/paw.svg"
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "\"Incognito\"",
  15925. height: math.unit(3, "meters")
  15926. },
  15927. {
  15928. name: "Strolling Size",
  15929. height: math.unit(15, "km")
  15930. },
  15931. {
  15932. name: "Larger Strolling Size",
  15933. height: math.unit(400, "km")
  15934. },
  15935. {
  15936. name: "Preferred Size",
  15937. height: math.unit(5000, "km"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "True Size",
  15942. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(15, "feet"),
  15951. weight: math.unit(880, "kg"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/nightraver/front.svg",
  15955. extra: 2444 / 2160,
  15956. bottom: 0.027
  15957. }
  15958. },
  15959. back: {
  15960. height: math.unit(15, "feet"),
  15961. weight: math.unit(880, "kg"),
  15962. name: "Back",
  15963. image: {
  15964. source: "./media/characters/nightraver/back.svg",
  15965. extra: 2309 / 2180,
  15966. bottom: 0.005
  15967. }
  15968. },
  15969. sole: {
  15970. height: math.unit(2.878, "feet"),
  15971. name: "Sole",
  15972. image: {
  15973. source: "./media/characters/nightraver/sole.svg"
  15974. }
  15975. },
  15976. foot: {
  15977. height: math.unit(2.285, "feet"),
  15978. name: "Foot",
  15979. image: {
  15980. source: "./media/characters/nightraver/foot.svg"
  15981. }
  15982. },
  15983. maw: {
  15984. height: math.unit(2.67, "feet"),
  15985. name: "Maw",
  15986. image: {
  15987. source: "./media/characters/nightraver/maw.svg"
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Micro",
  15994. height: math.unit(1, "cm")
  15995. },
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(15, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Macro",
  16003. height: math.unit(300, "feet")
  16004. },
  16005. {
  16006. name: "Megamacro",
  16007. height: math.unit(300, "miles")
  16008. },
  16009. {
  16010. name: "Gigamacro",
  16011. height: math.unit(10000, "miles")
  16012. },
  16013. ]
  16014. ))
  16015. characterMakers.push(() => makeCharacter(
  16016. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16017. {
  16018. side: {
  16019. height: math.unit(2, "inches"),
  16020. weight: math.unit(5, "grams"),
  16021. name: "Side",
  16022. image: {
  16023. source: "./media/characters/arc/side.svg"
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Micro",
  16030. height: math.unit(2, "inches"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(1.1938, "meters"),
  16040. weight: math.unit(54, "kg"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/nebula-shahar/front.svg",
  16044. extra: 1642 / 1436,
  16045. bottom: 0.06
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Megamicro",
  16052. height: math.unit(0.3, "mm")
  16053. },
  16054. {
  16055. name: "Micro",
  16056. height: math.unit(3, "cm")
  16057. },
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(138, "cm"),
  16061. default: true
  16062. },
  16063. {
  16064. name: "Macro",
  16065. height: math.unit(30, "m")
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(5.24, "feet"),
  16074. weight: math.unit(150, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/shayla/front.svg",
  16078. extra: 1512 / 1414,
  16079. bottom: 0.01
  16080. }
  16081. },
  16082. back: {
  16083. height: math.unit(5.24, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Back",
  16086. image: {
  16087. source: "./media/characters/shayla/back.svg",
  16088. extra: 1512 / 1414
  16089. }
  16090. },
  16091. hand: {
  16092. height: math.unit(0.7781496062992126, "feet"),
  16093. name: "Hand",
  16094. image: {
  16095. source: "./media/characters/shayla/hand.svg"
  16096. }
  16097. },
  16098. foot: {
  16099. height: math.unit(1.4206036745406823, "feet"),
  16100. name: "Foot",
  16101. image: {
  16102. source: "./media/characters/shayla/foot.svg"
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Micro",
  16109. height: math.unit(0.32, "feet")
  16110. },
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(5.24, "feet"),
  16114. default: true
  16115. },
  16116. {
  16117. name: "Macro",
  16118. height: math.unit(492.12, "feet")
  16119. },
  16120. {
  16121. name: "Megamacro",
  16122. height: math.unit(186.41, "miles")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(2.2, "m"),
  16131. weight: math.unit(120, "kg"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/pia-jr/front.svg",
  16135. extra: 1000 / 970,
  16136. bottom: 0.035
  16137. }
  16138. },
  16139. hand: {
  16140. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16141. name: "Hand",
  16142. image: {
  16143. source: "./media/characters/pia-jr/hand.svg"
  16144. }
  16145. },
  16146. paw: {
  16147. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16148. name: "Paw",
  16149. image: {
  16150. source: "./media/characters/pia-jr/paw.svg"
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Micro",
  16157. height: math.unit(1.2, "cm")
  16158. },
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(2.2, "m"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Macro",
  16166. height: math.unit(180, "m")
  16167. },
  16168. {
  16169. name: "Megamacro",
  16170. height: math.unit(420, "km")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(2, "m"),
  16179. weight: math.unit(115, "kg"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/pia-sr/front.svg",
  16183. extra: 760 / 730,
  16184. bottom: 0.015
  16185. }
  16186. },
  16187. back: {
  16188. height: math.unit(2, "m"),
  16189. weight: math.unit(115, "kg"),
  16190. name: "Back",
  16191. image: {
  16192. source: "./media/characters/pia-sr/back.svg",
  16193. extra: 760 / 730,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. hand: {
  16198. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16199. name: "Hand",
  16200. image: {
  16201. source: "./media/characters/pia-sr/hand.svg"
  16202. }
  16203. },
  16204. foot: {
  16205. height: math.unit(1.83, "feet"),
  16206. name: "Foot",
  16207. image: {
  16208. source: "./media/characters/pia-sr/foot.svg"
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Micro",
  16215. height: math.unit(88, "mm")
  16216. },
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(2, "m"),
  16220. default: true
  16221. },
  16222. {
  16223. name: "Macro",
  16224. height: math.unit(200, "m")
  16225. },
  16226. {
  16227. name: "Megamacro",
  16228. height: math.unit(420, "km")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(8 + 2 / 12, "feet"),
  16237. weight: math.unit(300, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/kibibyte/front.svg",
  16241. extra: 2221 / 2098,
  16242. bottom: 0.04
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(8 + 2 / 12, "feet"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Socialable Macro",
  16254. height: math.unit(50, "feet")
  16255. },
  16256. {
  16257. name: "Macro",
  16258. height: math.unit(300, "feet")
  16259. },
  16260. {
  16261. name: "Megamacro",
  16262. height: math.unit(500, "miles")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(150, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/felix/front.svg",
  16275. extra: 762 / 722,
  16276. bottom: 0.02
  16277. }
  16278. },
  16279. frontClothed: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Front (Clothed)",
  16283. image: {
  16284. source: "./media/characters/felix/front-clothed.svg",
  16285. extra: 762 / 722,
  16286. bottom: 0.02
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(6 + 8 / 12, "feet"),
  16294. default: true
  16295. },
  16296. {
  16297. name: "Macro",
  16298. height: math.unit(2600, "feet")
  16299. },
  16300. {
  16301. name: "Megamacro",
  16302. height: math.unit(450, "miles")
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6 + 1 / 12, "feet"),
  16311. weight: math.unit(250, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/tobo/front.svg",
  16315. extra: 608 / 586,
  16316. bottom: 0.023
  16317. }
  16318. },
  16319. back: {
  16320. height: math.unit(6 + 1 / 12, "feet"),
  16321. weight: math.unit(250, "lb"),
  16322. name: "Back",
  16323. image: {
  16324. source: "./media/characters/tobo/back.svg",
  16325. extra: 608 / 586
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Nano",
  16332. height: math.unit(2, "nm")
  16333. },
  16334. {
  16335. name: "Megamicro",
  16336. height: math.unit(0.1, "mm")
  16337. },
  16338. {
  16339. name: "Micro",
  16340. height: math.unit(1, "inch"),
  16341. default: true
  16342. },
  16343. {
  16344. name: "Human-sized",
  16345. height: math.unit(6 + 1 / 12, "feet")
  16346. },
  16347. {
  16348. name: "Macro",
  16349. height: math.unit(250, "feet")
  16350. },
  16351. {
  16352. name: "Megamacro",
  16353. height: math.unit(75, "miles")
  16354. },
  16355. {
  16356. name: "Texas-sized",
  16357. height: math.unit(750, "miles")
  16358. },
  16359. {
  16360. name: "Teramacro",
  16361. height: math.unit(50000, "miles")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(6, "feet"),
  16370. weight: math.unit(269, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/danny-kapowsky/front.svg",
  16374. extra: 766 / 736,
  16375. bottom: 0.044
  16376. }
  16377. },
  16378. back: {
  16379. height: math.unit(6, "feet"),
  16380. weight: math.unit(269, "lb"),
  16381. name: "Back",
  16382. image: {
  16383. source: "./media/characters/danny-kapowsky/back.svg",
  16384. extra: 797 / 760,
  16385. bottom: 0.025
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Macro",
  16392. height: math.unit(150, "feet"),
  16393. default: true
  16394. },
  16395. {
  16396. name: "Macro+",
  16397. height: math.unit(200, "feet")
  16398. },
  16399. {
  16400. name: "Macro++",
  16401. height: math.unit(300, "feet")
  16402. },
  16403. {
  16404. name: "Macro+++",
  16405. height: math.unit(400, "feet")
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16411. {
  16412. side: {
  16413. height: math.unit(6, "feet"),
  16414. weight: math.unit(170, "lb"),
  16415. name: "Side",
  16416. image: {
  16417. source: "./media/characters/finn/side.svg",
  16418. extra: 1953 / 1807,
  16419. bottom: 0.057
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Megamacro",
  16426. height: math.unit(14445, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(5 + 6 / 12, "feet"),
  16436. weight: math.unit(125, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/roy/front.svg",
  16440. extra: 1,
  16441. bottom: 0.11
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Micro",
  16448. height: math.unit(3, "inches"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(5 + 6 / 12, "feet")
  16454. },
  16455. {
  16456. name: "Lesser Macro",
  16457. height: math.unit(60, "feet")
  16458. },
  16459. {
  16460. name: "Greater Macro",
  16461. height: math.unit(120, "feet")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(6, "feet"),
  16470. weight: math.unit(100, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/aevsivs/front.svg",
  16474. extra: 1,
  16475. bottom: 0.03
  16476. }
  16477. },
  16478. back: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(100, "lb"),
  16481. name: "Back",
  16482. image: {
  16483. source: "./media/characters/aevsivs/back.svg"
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Micro",
  16490. height: math.unit(2, "inches"),
  16491. default: true
  16492. },
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(5, "feet")
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(5 + 7 / 12, "feet"),
  16504. weight: math.unit(159, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/hildegard/front.svg",
  16508. extra: 289 / 269,
  16509. bottom: 7.63 / 297.8
  16510. }
  16511. },
  16512. back: {
  16513. height: math.unit(5 + 7 / 12, "feet"),
  16514. weight: math.unit(159, "lb"),
  16515. name: "Back",
  16516. image: {
  16517. source: "./media/characters/hildegard/back.svg",
  16518. extra: 280 / 260,
  16519. bottom: 2.3 / 282
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(5 + 7 / 12, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16533. {
  16534. bernard: {
  16535. height: math.unit(2 + 7 / 12, "feet"),
  16536. weight: math.unit(66, "lb"),
  16537. name: "Bernard",
  16538. rename: true,
  16539. image: {
  16540. source: "./media/characters/bernard-wilder/bernard.svg",
  16541. extra: 192 / 128,
  16542. bottom: 0.05
  16543. }
  16544. },
  16545. wilder: {
  16546. height: math.unit(5 + 8 / 12, "feet"),
  16547. weight: math.unit(143, "lb"),
  16548. name: "Wilder",
  16549. rename: true,
  16550. image: {
  16551. source: "./media/characters/bernard-wilder/wilder.svg",
  16552. extra: 361 / 312,
  16553. bottom: 0.02
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(2 + 7 / 12, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16567. {
  16568. anthro: {
  16569. height: math.unit(6 + 1 / 12, "feet"),
  16570. weight: math.unit(155, "lb"),
  16571. name: "Anthro",
  16572. image: {
  16573. source: "./media/characters/hearth/anthro.svg",
  16574. extra: 1178/1136,
  16575. bottom: 28/1206
  16576. }
  16577. },
  16578. feral: {
  16579. height: math.unit(3.78, "feet"),
  16580. weight: math.unit(35, "kg"),
  16581. name: "Feral",
  16582. image: {
  16583. source: "./media/characters/hearth/feral.svg",
  16584. extra: 153 / 135,
  16585. bottom: 0.03
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 1 / 12, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(182, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/ingrid/front.svg",
  16606. extra: 294 / 268,
  16607. bottom: 0.027
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(6, "feet"),
  16615. default: true
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16621. {
  16622. eevee: {
  16623. height: math.unit(2 + 10 / 12, "feet"),
  16624. weight: math.unit(86, "lb"),
  16625. name: "Malgam",
  16626. image: {
  16627. source: "./media/characters/malgam/eevee.svg",
  16628. extra: 952/784,
  16629. bottom: 38/990
  16630. }
  16631. },
  16632. sylveon: {
  16633. height: math.unit(4, "feet"),
  16634. weight: math.unit(101, "lb"),
  16635. name: "Future Malgam",
  16636. rename: true,
  16637. image: {
  16638. source: "./media/characters/malgam/sylveon.svg",
  16639. extra: 371 / 325,
  16640. bottom: 0.015
  16641. }
  16642. },
  16643. gigantamax: {
  16644. height: math.unit(50, "feet"),
  16645. name: "Gigantamax Malgam",
  16646. rename: true,
  16647. image: {
  16648. source: "./media/characters/malgam/gigantamax.svg"
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(2 + 10 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(5 + 11 / 12, "feet"),
  16665. weight: math.unit(188, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/fleur/front.svg",
  16669. extra: 309 / 283,
  16670. bottom: 0.007
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(5 + 11 / 12, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(5 + 4 / 12, "feet"),
  16687. weight: math.unit(122, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/jude/front.svg",
  16691. extra: 288 / 273,
  16692. bottom: 0.03
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Normal",
  16699. height: math.unit(5 + 4 / 12, "feet"),
  16700. default: true
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(5 + 11 / 12, "feet"),
  16709. weight: math.unit(190, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/seara/front.svg",
  16713. extra: 1,
  16714. bottom: 0.05
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(5 + 11 / 12, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(16 + 5 / 12, "feet"),
  16731. weight: math.unit(524, "lb"),
  16732. name: "Front",
  16733. image: {
  16734. source: "./media/characters/caspian-lugia/front.svg",
  16735. extra: 1,
  16736. bottom: 0.04
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(16 + 5 / 12, "feet"),
  16744. default: true
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(5 + 7 / 12, "feet"),
  16753. weight: math.unit(170, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/mika/front.svg",
  16757. extra: 1,
  16758. bottom: 0.016
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(5 + 7 / 12, "feet"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(6 + 2 / 12, "feet"),
  16775. weight: math.unit(268, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/sol/front.svg",
  16779. extra: 247 / 231,
  16780. bottom: 0.05
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(6 + 2 / 12, "feet"),
  16788. default: true
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16794. {
  16795. buizel: {
  16796. height: math.unit(2 + 5 / 12, "feet"),
  16797. weight: math.unit(87, "lb"),
  16798. name: "Front",
  16799. image: {
  16800. source: "./media/characters/umiko/buizel.svg",
  16801. extra: 172 / 157,
  16802. bottom: 0.01
  16803. },
  16804. form: "buizel",
  16805. default: true
  16806. },
  16807. floatzel: {
  16808. height: math.unit(5 + 9 / 12, "feet"),
  16809. weight: math.unit(250, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/umiko/floatzel.svg",
  16813. extra: 1076/1006,
  16814. bottom: 15/1091
  16815. },
  16816. form: "floatzel",
  16817. default: true
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(2 + 5 / 12, "feet"),
  16824. form: "buizel",
  16825. default: true
  16826. },
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(5 + 9 / 12, "feet"),
  16830. form: "floatzel",
  16831. default: true
  16832. },
  16833. ],
  16834. {
  16835. "buizel": {
  16836. name: "Buizel"
  16837. },
  16838. "floatzel": {
  16839. name: "Floatzel",
  16840. default: true
  16841. }
  16842. }
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6 + 2 / 12, "feet"),
  16849. weight: math.unit(146, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/iliac/front.svg",
  16853. extra: 389 / 365,
  16854. bottom: 0.035
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(6 + 2 / 12, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(170, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/topaz/front.svg",
  16875. extra: 317 / 303,
  16876. bottom: 0.055
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(6, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(5 + 11 / 12, "feet"),
  16893. weight: math.unit(144, "lb"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/gabriel/front.svg",
  16897. extra: 285 / 262,
  16898. bottom: 0.004
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(5 + 11 / 12, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16912. {
  16913. side: {
  16914. height: math.unit(6 + 5 / 12, "feet"),
  16915. weight: math.unit(300, "lb"),
  16916. name: "Side",
  16917. image: {
  16918. source: "./media/characters/tempest-suicune/side.svg",
  16919. extra: 195 / 154,
  16920. bottom: 0.04
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(6 + 5 / 12, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(7 + 2 / 12, "feet"),
  16937. weight: math.unit(322, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/vulcan/front.svg",
  16941. extra: 154 / 147,
  16942. bottom: 0.04
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(7 + 2 / 12, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(5 + 10 / 12, "feet"),
  16959. weight: math.unit(264, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/gault/front.svg",
  16963. extra: 161 / 140,
  16964. bottom: 0.028
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(5 + 10 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/shard/front.svg",
  16985. extra: 273 / 238,
  16986. bottom: 0.02
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(3 + 6 / 12, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(5 + 11 / 12, "feet"),
  17003. weight: math.unit(146, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/ashe/front.svg",
  17007. extra: 400 / 373,
  17008. bottom: 0.01
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(5 + 11 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(5 + 5 / 12, "feet"),
  17025. weight: math.unit(135, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/beatrix/front.svg",
  17029. extra: 392 / 379,
  17030. bottom: 0.01
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(6 + 2/12, "feet"),
  17047. weight: math.unit(135, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/ignatius/front.svg",
  17051. extra: 1380/1259,
  17052. bottom: 27/1407
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(6 + 2/12, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(6 + 2 / 12, "feet"),
  17069. weight: math.unit(138, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/mei-li/front.svg",
  17073. extra: 237 / 229,
  17074. bottom: 0.03
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(6 + 2 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(2 + 4 / 12, "feet"),
  17091. weight: math.unit(62, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/puru/front.svg",
  17095. extra: 206 / 149,
  17096. bottom: 0.06
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(2 + 4 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17110. {
  17111. anthro: {
  17112. height: math.unit(5 + 8/12, "feet"),
  17113. weight: math.unit(200, "lb"),
  17114. energyNeed: math.unit(2000, "kcal"),
  17115. name: "Anthro",
  17116. image: {
  17117. source: "./media/characters/kee/anthro.svg",
  17118. extra: 3251/3184,
  17119. bottom: 250/3501
  17120. }
  17121. },
  17122. taur: {
  17123. height: math.unit(11, "feet"),
  17124. weight: math.unit(500, "lb"),
  17125. energyNeed: math.unit(5000, "kcal"),
  17126. name: "Taur",
  17127. image: {
  17128. source: "./media/characters/kee/taur.svg",
  17129. extra: 1362/1320,
  17130. bottom: 83/1445
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 8/12, "feet"),
  17138. default: true
  17139. },
  17140. {
  17141. name: "Macro",
  17142. height: math.unit(35, "feet")
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17148. {
  17149. anthro: {
  17150. height: math.unit(7, "feet"),
  17151. weight: math.unit(190, "lb"),
  17152. name: "Anthro",
  17153. image: {
  17154. source: "./media/characters/cobalt-dracha/anthro.svg",
  17155. extra: 231 / 225,
  17156. bottom: 0.04
  17157. }
  17158. },
  17159. feral: {
  17160. height: math.unit(9 + 7 / 12, "feet"),
  17161. weight: math.unit(294, "lb"),
  17162. name: "Feral",
  17163. image: {
  17164. source: "./media/characters/cobalt-dracha/feral.svg",
  17165. extra: 692 / 633,
  17166. bottom: 0.05
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17180. {
  17181. fallen: {
  17182. height: math.unit(11 + 8 / 12, "feet"),
  17183. weight: math.unit(485, "lb"),
  17184. name: "Java (Fallen)",
  17185. rename: true,
  17186. image: {
  17187. source: "./media/characters/java/fallen.svg",
  17188. extra: 226 / 208,
  17189. bottom: 0.005
  17190. }
  17191. },
  17192. godkin: {
  17193. height: math.unit(10 + 6 / 12, "feet"),
  17194. weight: math.unit(328, "lb"),
  17195. name: "Java (Godkin)",
  17196. rename: true,
  17197. image: {
  17198. source: "./media/characters/java/godkin.svg",
  17199. extra: 1104/1068,
  17200. bottom: 36/1140
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(11 + 8 / 12, "feet"),
  17208. default: true
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(5 + 9 / 12, "feet"),
  17217. weight: math.unit(170, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/purna/front.svg",
  17221. extra: 239 / 229,
  17222. bottom: 0.01
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(5 + 9 / 12, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(5 + 9 / 12, "feet"),
  17239. weight: math.unit(142, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/kuva/front.svg",
  17243. extra: 281 / 271,
  17244. bottom: 0.006
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(5 + 9 / 12, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17258. {
  17259. anthro: {
  17260. height: math.unit(9 + 2 / 12, "feet"),
  17261. weight: math.unit(270, "lb"),
  17262. name: "Anthro",
  17263. image: {
  17264. source: "./media/characters/embra/anthro.svg",
  17265. extra: 200 / 187,
  17266. bottom: 0.02
  17267. }
  17268. },
  17269. feral: {
  17270. height: math.unit(18 + 8 / 12, "feet"),
  17271. weight: math.unit(576, "lb"),
  17272. name: "Feral",
  17273. image: {
  17274. source: "./media/characters/embra/feral.svg",
  17275. extra: 152 / 137,
  17276. bottom: 0.037
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(9 + 2 / 12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17290. {
  17291. anthro: {
  17292. height: math.unit(10 + 9 / 12, "feet"),
  17293. weight: math.unit(224, "lb"),
  17294. name: "Anthro",
  17295. image: {
  17296. source: "./media/characters/grottos/anthro.svg",
  17297. extra: 350 / 332,
  17298. bottom: 0.045
  17299. }
  17300. },
  17301. feral: {
  17302. height: math.unit(20 + 7 / 12, "feet"),
  17303. weight: math.unit(629, "lb"),
  17304. name: "Feral",
  17305. image: {
  17306. source: "./media/characters/grottos/feral.svg",
  17307. extra: 207 / 190,
  17308. bottom: 0.05
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(10 + 9 / 12, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17322. {
  17323. anthro: {
  17324. height: math.unit(9 + 6 / 12, "feet"),
  17325. weight: math.unit(298, "lb"),
  17326. name: "Anthro",
  17327. image: {
  17328. source: "./media/characters/frifna/anthro.svg",
  17329. extra: 282 / 269,
  17330. bottom: 0.015
  17331. }
  17332. },
  17333. feral: {
  17334. height: math.unit(16 + 2 / 12, "feet"),
  17335. weight: math.unit(624, "lb"),
  17336. name: "Feral",
  17337. image: {
  17338. source: "./media/characters/frifna/feral.svg"
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(9 + 6 / 12, "feet"),
  17346. default: true
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17352. {
  17353. front: {
  17354. height: math.unit(6 + 2 / 12, "feet"),
  17355. weight: math.unit(168, "lb"),
  17356. name: "Front",
  17357. image: {
  17358. source: "./media/characters/elise/front.svg",
  17359. extra: 276 / 271
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(6 + 2 / 12, "feet"),
  17367. default: true
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(5 + 10 / 12, "feet"),
  17376. weight: math.unit(210, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/glade/front.svg",
  17380. extra: 258 / 247,
  17381. bottom: 0.008
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(5 + 10 / 12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(5 + 10 / 12, "feet"),
  17398. weight: math.unit(129, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/rina/front.svg",
  17402. extra: 266 / 255,
  17403. bottom: 0.005
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(5 + 10 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(6 + 1 / 12, "feet"),
  17420. weight: math.unit(192, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/veronica/front.svg",
  17424. extra: 319 / 309,
  17425. bottom: 0.005
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(6 + 1 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(9 + 3 / 12, "feet"),
  17442. weight: math.unit(1100, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/braxton/front.svg",
  17446. extra: 1057 / 984,
  17447. bottom: 0.05
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(9 + 3 / 12, "feet")
  17455. },
  17456. {
  17457. name: "Giant",
  17458. height: math.unit(300, "feet"),
  17459. default: true
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(700, "feet")
  17464. },
  17465. {
  17466. name: "Megamacro",
  17467. height: math.unit(6000, "feet")
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(6 + 7 / 12, "feet"),
  17476. weight: math.unit(150, "lb"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/blue-feyonics/front.svg",
  17480. extra: 1403 / 1306,
  17481. bottom: 0.047
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(6 + 7 / 12, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(1.8, "meters"),
  17498. weight: math.unit(60, "kg"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/maxwell/front.svg",
  17502. extra: 2060 / 1873
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(1, "mm")
  17510. },
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(1.8, "meter"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(30, "meters")
  17519. },
  17520. {
  17521. name: "Megamacro",
  17522. height: math.unit(10, "km")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6, "feet"),
  17531. weight: math.unit(150, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/jack/front.svg",
  17535. extra: 1754 / 1640,
  17536. bottom: 0.01
  17537. }
  17538. },
  17539. },
  17540. [
  17541. {
  17542. name: "Normal",
  17543. height: math.unit(80000, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Max size",
  17548. height: math.unit(10, "lightyears")
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17554. {
  17555. urban: {
  17556. height: math.unit(5, "feet"),
  17557. weight: math.unit(240, "lb"),
  17558. name: "Urban",
  17559. image: {
  17560. source: "./media/characters/cafat/urban.svg",
  17561. extra: 1223/1126,
  17562. bottom: 205/1428
  17563. }
  17564. },
  17565. summer: {
  17566. height: math.unit(5, "feet"),
  17567. weight: math.unit(240, "lb"),
  17568. name: "Summer",
  17569. image: {
  17570. source: "./media/characters/cafat/summer.svg",
  17571. extra: 1223/1126,
  17572. bottom: 205/1428
  17573. }
  17574. },
  17575. winter: {
  17576. height: math.unit(5, "feet"),
  17577. weight: math.unit(240, "lb"),
  17578. name: "Winter",
  17579. image: {
  17580. source: "./media/characters/cafat/winter.svg",
  17581. extra: 1223/1126,
  17582. bottom: 205/1428
  17583. }
  17584. },
  17585. lingerie: {
  17586. height: math.unit(5, "feet"),
  17587. weight: math.unit(240, "lb"),
  17588. name: "Lingerie",
  17589. image: {
  17590. source: "./media/characters/cafat/lingerie.svg",
  17591. extra: 1223/1126,
  17592. bottom: 205/1428
  17593. }
  17594. },
  17595. upright: {
  17596. height: math.unit(6.3, "feet"),
  17597. weight: math.unit(240, "lb"),
  17598. name: "Upright",
  17599. image: {
  17600. source: "./media/characters/cafat/upright.svg",
  17601. bottom: 0.01
  17602. }
  17603. },
  17604. uprightFull: {
  17605. height: math.unit(6.3, "feet"),
  17606. weight: math.unit(240, "lb"),
  17607. name: "Upright (Full)",
  17608. image: {
  17609. source: "./media/characters/cafat/upright-full.svg",
  17610. bottom: 0.01
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Small",
  17617. height: math.unit(5, "feet"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Large",
  17622. height: math.unit(13, "feet")
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(6, "feet"),
  17631. weight: math.unit(150, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/verin-raharra/front.svg",
  17635. extra: 5019 / 4835,
  17636. bottom: 0.023
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(7 + 5 / 12, "feet"),
  17644. default: true
  17645. },
  17646. {
  17647. name: "Upsized",
  17648. height: math.unit(20, "feet")
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(7, "feet"),
  17657. weight: math.unit(230, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/nakata/front.svg",
  17661. extra: 1.005,
  17662. bottom: 0.01
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(7, "feet"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Big",
  17674. height: math.unit(14, "feet")
  17675. },
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(400, "feet")
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(4.91, "feet"),
  17687. weight: math.unit(100, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/lily/front.svg",
  17691. extra: 1585 / 1415,
  17692. bottom: 0.02
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(4.91, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17706. {
  17707. laying: {
  17708. height: math.unit(4 + 4 / 12, "feet"),
  17709. weight: math.unit(600, "lb"),
  17710. name: "Laying",
  17711. image: {
  17712. source: "./media/characters/sheila/laying.svg",
  17713. extra: 1333 / 1265,
  17714. bottom: 0.16
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(4 + 4 / 12, "feet"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(6, "feet"),
  17731. weight: math.unit(190, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/sax/front.svg",
  17735. extra: 1187 / 973,
  17736. bottom: 0.042
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Micro",
  17743. height: math.unit(4, "inches"),
  17744. default: true
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(6, "feet"),
  17753. weight: math.unit(150, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/pandora/front.svg",
  17757. extra: 2720 / 2556,
  17758. bottom: 0.015
  17759. }
  17760. },
  17761. back: {
  17762. height: math.unit(6, "feet"),
  17763. weight: math.unit(150, "lb"),
  17764. name: "Back",
  17765. image: {
  17766. source: "./media/characters/pandora/back.svg",
  17767. extra: 2720 / 2556,
  17768. bottom: 0.01
  17769. }
  17770. },
  17771. beans: {
  17772. height: math.unit(6 / 8, "feet"),
  17773. name: "Beans",
  17774. image: {
  17775. source: "./media/characters/pandora/beans.svg"
  17776. }
  17777. },
  17778. collar: {
  17779. height: math.unit(0.31, "feet"),
  17780. name: "Collar",
  17781. image: {
  17782. source: "./media/characters/pandora/collar.svg"
  17783. }
  17784. },
  17785. skirt: {
  17786. height: math.unit(6, "feet"),
  17787. weight: math.unit(150, "lb"),
  17788. name: "Skirt",
  17789. image: {
  17790. source: "./media/characters/pandora/skirt.svg",
  17791. extra: 1622 / 1525,
  17792. bottom: 0.015
  17793. }
  17794. },
  17795. hoodie: {
  17796. height: math.unit(6, "feet"),
  17797. weight: math.unit(150, "lb"),
  17798. name: "Hoodie",
  17799. image: {
  17800. source: "./media/characters/pandora/hoodie.svg",
  17801. extra: 1622 / 1525,
  17802. bottom: 0.015
  17803. }
  17804. },
  17805. casual: {
  17806. height: math.unit(6, "feet"),
  17807. weight: math.unit(150, "lb"),
  17808. name: "Casual",
  17809. image: {
  17810. source: "./media/characters/pandora/casual.svg",
  17811. extra: 1622 / 1525,
  17812. bottom: 0.015
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(6, "feet")
  17820. },
  17821. {
  17822. name: "Big Steppy",
  17823. height: math.unit(1, "km"),
  17824. default: true
  17825. },
  17826. {
  17827. name: "Galactic Steppy",
  17828. height: math.unit(2, "gigameters")
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17834. {
  17835. side: {
  17836. height: math.unit(10, "feet"),
  17837. weight: math.unit(800, "kg"),
  17838. name: "Side",
  17839. image: {
  17840. source: "./media/characters/venio-darcony/side.svg",
  17841. extra: 1373 / 1003,
  17842. bottom: 0.037
  17843. }
  17844. },
  17845. front: {
  17846. height: math.unit(19, "feet"),
  17847. weight: math.unit(800, "kg"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/venio-darcony/front.svg"
  17851. }
  17852. },
  17853. back: {
  17854. height: math.unit(19, "feet"),
  17855. weight: math.unit(800, "kg"),
  17856. name: "Back",
  17857. image: {
  17858. source: "./media/characters/venio-darcony/back.svg"
  17859. }
  17860. },
  17861. sideNsfw: {
  17862. height: math.unit(10, "feet"),
  17863. weight: math.unit(800, "kg"),
  17864. name: "Side (NSFW)",
  17865. image: {
  17866. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17867. extra: 1373 / 1003,
  17868. bottom: 0.037
  17869. }
  17870. },
  17871. frontNsfw: {
  17872. height: math.unit(19, "feet"),
  17873. weight: math.unit(800, "kg"),
  17874. name: "Front (NSFW)",
  17875. image: {
  17876. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17877. }
  17878. },
  17879. backNsfw: {
  17880. height: math.unit(19, "feet"),
  17881. weight: math.unit(800, "kg"),
  17882. name: "Back (NSFW)",
  17883. image: {
  17884. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17885. }
  17886. },
  17887. sideArmored: {
  17888. height: math.unit(10, "feet"),
  17889. weight: math.unit(800, "kg"),
  17890. name: "Side (Armored)",
  17891. image: {
  17892. source: "./media/characters/venio-darcony/side-armored.svg",
  17893. extra: 1373 / 1003,
  17894. bottom: 0.037
  17895. }
  17896. },
  17897. frontArmored: {
  17898. height: math.unit(19, "feet"),
  17899. weight: math.unit(900, "kg"),
  17900. name: "Front (Armored)",
  17901. image: {
  17902. source: "./media/characters/venio-darcony/front-armored.svg"
  17903. }
  17904. },
  17905. backArmored: {
  17906. height: math.unit(19, "feet"),
  17907. weight: math.unit(900, "kg"),
  17908. name: "Back (Armored)",
  17909. image: {
  17910. source: "./media/characters/venio-darcony/back-armored.svg"
  17911. }
  17912. },
  17913. sword: {
  17914. height: math.unit(10, "feet"),
  17915. weight: math.unit(50, "lb"),
  17916. name: "Sword",
  17917. image: {
  17918. source: "./media/characters/venio-darcony/sword.svg"
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(10, "feet")
  17926. },
  17927. {
  17928. name: "Macro",
  17929. height: math.unit(130, "feet"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Macro+",
  17934. height: math.unit(240, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(150, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/veski/front.svg",
  17947. extra: 1299 / 1225,
  17948. bottom: 0.04
  17949. }
  17950. },
  17951. back: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Back",
  17955. image: {
  17956. source: "./media/characters/veski/back.svg",
  17957. extra: 1299 / 1225,
  17958. bottom: 0.008
  17959. }
  17960. },
  17961. maw: {
  17962. height: math.unit(1.5 * 1.21, "feet"),
  17963. name: "Maw",
  17964. image: {
  17965. source: "./media/characters/veski/maw.svg"
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(2, "km"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(5 + 7 / 12, "feet"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/isabelle/front.svg",
  17985. extra: 2130 / 1976,
  17986. bottom: 0.05
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Supermicro",
  17993. height: math.unit(10, "micrometers")
  17994. },
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(1, "inch")
  17998. },
  17999. {
  18000. name: "Tiny",
  18001. height: math.unit(5, "inches")
  18002. },
  18003. {
  18004. name: "Standard",
  18005. height: math.unit(5 + 7 / 12, "inches")
  18006. },
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(80, "meters"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Megamacro",
  18014. height: math.unit(250, "meters")
  18015. },
  18016. {
  18017. name: "Gigamacro",
  18018. height: math.unit(5, "km")
  18019. },
  18020. {
  18021. name: "Cosmic",
  18022. height: math.unit(2.5e6, "miles")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(6, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/hanzo/front.svg",
  18035. extra: 374 / 344,
  18036. bottom: 0.02
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(8, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(7, "feet"),
  18053. weight: math.unit(130, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/anna/front.svg",
  18057. extra: 169 / 145,
  18058. bottom: 0.06
  18059. }
  18060. },
  18061. full: {
  18062. height: math.unit(4.96, "feet"),
  18063. weight: math.unit(220, "lb"),
  18064. name: "Full",
  18065. image: {
  18066. source: "./media/characters/anna/full.svg",
  18067. extra: 138 / 114,
  18068. bottom: 0.15
  18069. }
  18070. },
  18071. tongue: {
  18072. height: math.unit(2.53, "feet"),
  18073. name: "Tongue",
  18074. image: {
  18075. source: "./media/characters/anna/tongue.svg"
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(7, "feet"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(7, "feet"),
  18092. weight: math.unit(150, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/ian-corvid/front.svg",
  18096. extra: 150 / 142,
  18097. bottom: 0.02
  18098. }
  18099. },
  18100. back: {
  18101. height: math.unit(7, "feet"),
  18102. weight: math.unit(150, "lb"),
  18103. name: "Back",
  18104. image: {
  18105. source: "./media/characters/ian-corvid/back.svg",
  18106. extra: 150 / 143,
  18107. bottom: 0.01
  18108. }
  18109. },
  18110. stomping: {
  18111. height: math.unit(7, "feet"),
  18112. weight: math.unit(150, "lb"),
  18113. name: "Stomping",
  18114. image: {
  18115. source: "./media/characters/ian-corvid/stomping.svg",
  18116. extra: 76 / 72
  18117. }
  18118. },
  18119. sitting: {
  18120. height: math.unit(7 / 1.8, "feet"),
  18121. weight: math.unit(150, "lb"),
  18122. name: "Sitting",
  18123. image: {
  18124. source: "./media/characters/ian-corvid/sitting.svg",
  18125. extra: 1400 / 1269,
  18126. bottom: 0.15
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Tiny Microw",
  18133. height: math.unit(1, "inch")
  18134. },
  18135. {
  18136. name: "Microw",
  18137. height: math.unit(6, "inches")
  18138. },
  18139. {
  18140. name: "Crow",
  18141. height: math.unit(7 + 1 / 12, "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Macrow",
  18146. height: math.unit(176, "feet")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(5 + 7 / 12, "feet"),
  18155. weight: math.unit(147, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/natalie-kellon/front.svg",
  18159. extra: 1214 / 1141,
  18160. bottom: 0.02
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Micro",
  18167. height: math.unit(1 / 16, "inch")
  18168. },
  18169. {
  18170. name: "Tiny",
  18171. height: math.unit(4, "inches")
  18172. },
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(5 + 7 / 12, "feet"),
  18176. default: true
  18177. },
  18178. {
  18179. name: "Amazon",
  18180. height: math.unit(12, "feet")
  18181. },
  18182. {
  18183. name: "Giantess",
  18184. height: math.unit(160, "meters")
  18185. },
  18186. {
  18187. name: "Titaness",
  18188. height: math.unit(800, "meters")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(6, "feet"),
  18197. weight: math.unit(150, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/alluria/front.svg",
  18201. extra: 806 / 738,
  18202. bottom: 0.01
  18203. }
  18204. },
  18205. side: {
  18206. height: math.unit(6, "feet"),
  18207. weight: math.unit(150, "lb"),
  18208. name: "Side",
  18209. image: {
  18210. source: "./media/characters/alluria/side.svg",
  18211. extra: 800 / 750,
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(6, "feet"),
  18216. weight: math.unit(150, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/alluria/back.svg",
  18220. extra: 806 / 738,
  18221. }
  18222. },
  18223. frontMaid: {
  18224. height: math.unit(6, "feet"),
  18225. weight: math.unit(150, "lb"),
  18226. name: "Front (Maid)",
  18227. image: {
  18228. source: "./media/characters/alluria/front-maid.svg",
  18229. extra: 806 / 738,
  18230. bottom: 0.01
  18231. }
  18232. },
  18233. sideMaid: {
  18234. height: math.unit(6, "feet"),
  18235. weight: math.unit(150, "lb"),
  18236. name: "Side (Maid)",
  18237. image: {
  18238. source: "./media/characters/alluria/side-maid.svg",
  18239. extra: 800 / 750,
  18240. bottom: 0.005
  18241. }
  18242. },
  18243. backMaid: {
  18244. height: math.unit(6, "feet"),
  18245. weight: math.unit(150, "lb"),
  18246. name: "Back (Maid)",
  18247. image: {
  18248. source: "./media/characters/alluria/back-maid.svg",
  18249. extra: 806 / 738,
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Micro",
  18256. height: math.unit(6, "inches"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/kyle/front.svg",
  18270. extra: 1069 / 962,
  18271. bottom: 77.228 / 1727.45
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(150, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(6, "feet"),
  18288. weight: math.unit(300, "lb"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/duncan/front.svg",
  18292. extra: 1650 / 1482,
  18293. bottom: 0.05
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Macro",
  18300. height: math.unit(100, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18307. {
  18308. front: {
  18309. height: math.unit(5 + 4 / 12, "feet"),
  18310. weight: math.unit(220, "lb"),
  18311. name: "Front",
  18312. image: {
  18313. source: "./media/characters/memory/front.svg",
  18314. extra: 3641 / 3545,
  18315. bottom: 0.03
  18316. }
  18317. },
  18318. back: {
  18319. height: math.unit(5 + 4 / 12, "feet"),
  18320. weight: math.unit(220, "lb"),
  18321. name: "Back",
  18322. image: {
  18323. source: "./media/characters/memory/back.svg",
  18324. extra: 3641 / 3545,
  18325. bottom: 0.025
  18326. }
  18327. },
  18328. frontSkirt: {
  18329. height: math.unit(5 + 4 / 12, "feet"),
  18330. weight: math.unit(220, "lb"),
  18331. name: "Front (Skirt)",
  18332. image: {
  18333. source: "./media/characters/memory/front-skirt.svg",
  18334. extra: 3641 / 3545,
  18335. bottom: 0.03
  18336. }
  18337. },
  18338. frontDress: {
  18339. height: math.unit(5 + 4 / 12, "feet"),
  18340. weight: math.unit(220, "lb"),
  18341. name: "Front (Dress)",
  18342. image: {
  18343. source: "./media/characters/memory/front-dress.svg",
  18344. extra: 3641 / 3545,
  18345. bottom: 0.03
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Micro",
  18352. height: math.unit(6, "inches"),
  18353. default: true
  18354. },
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(5 + 4 / 12, "feet")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(4 + 11 / 12, "feet"),
  18366. weight: math.unit(100, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/luno/front.svg",
  18370. extra: 1535 / 1487,
  18371. bottom: 0.03
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(3, "inches")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(4 + 11 / 12, "feet"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(300, "feet")
  18388. },
  18389. {
  18390. name: "Megamacro",
  18391. height: math.unit(700, "miles")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(6 + 2 / 12, "feet"),
  18400. weight: math.unit(170, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/jamesy/front.svg",
  18404. extra: 440 / 382,
  18405. bottom: 0.005
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Micro",
  18412. height: math.unit(3, "inches")
  18413. },
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(6 + 2 / 12, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Macro",
  18421. height: math.unit(300, "feet")
  18422. },
  18423. {
  18424. name: "Megamacro",
  18425. height: math.unit(700, "miles")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(6, "feet"),
  18434. weight: math.unit(160, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/mark/front.svg",
  18438. extra: 3300 / 3100,
  18439. bottom: 136.42 / 3440.47
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Macro",
  18446. height: math.unit(120, "meters")
  18447. },
  18448. {
  18449. name: "Bigger Macro",
  18450. height: math.unit(350, "meters")
  18451. },
  18452. {
  18453. name: "Megamacro",
  18454. height: math.unit(8, "km"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Continental",
  18459. height: math.unit(4550, "km")
  18460. },
  18461. {
  18462. name: "Planetary",
  18463. height: math.unit(65000, "km")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6, "feet"),
  18472. weight: math.unit(400, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/mac/front.svg",
  18476. extra: 1048 / 987.7,
  18477. bottom: 60 / 1107.6,
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Macro",
  18484. height: math.unit(500, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18491. {
  18492. front: {
  18493. height: math.unit(5 + 2 / 12, "feet"),
  18494. weight: math.unit(190, "lb"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/bari/front.svg",
  18498. extra: 3156 / 2880,
  18499. bottom: 0.03
  18500. }
  18501. },
  18502. back: {
  18503. height: math.unit(5 + 2 / 12, "feet"),
  18504. weight: math.unit(190, "lb"),
  18505. name: "Back",
  18506. image: {
  18507. source: "./media/characters/bari/back.svg",
  18508. extra: 3260 / 2834,
  18509. bottom: 0.025
  18510. }
  18511. },
  18512. frontPlush: {
  18513. height: math.unit(5 + 2 / 12, "feet"),
  18514. weight: math.unit(190, "lb"),
  18515. name: "Front (Plush)",
  18516. image: {
  18517. source: "./media/characters/bari/front-plush.svg",
  18518. extra: 1112 / 1061,
  18519. bottom: 0.002
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Micro",
  18526. height: math.unit(3, "inches")
  18527. },
  18528. {
  18529. name: "Normal",
  18530. height: math.unit(5 + 2 / 12, "feet"),
  18531. default: true
  18532. },
  18533. {
  18534. name: "Macro",
  18535. height: math.unit(20, "feet")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6 + 1 / 12, "feet"),
  18544. weight: math.unit(275, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/hunter-misha-raven/front.svg"
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Mortal",
  18554. height: math.unit(6 + 1 / 12, "feet")
  18555. },
  18556. {
  18557. name: "Divine",
  18558. height: math.unit(1.12134e34, "parsecs"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(6 + 3 / 12, "feet"),
  18568. weight: math.unit(220, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/max-calore/front.svg",
  18572. extra: 1700 / 1648,
  18573. bottom: 0.01
  18574. }
  18575. },
  18576. back: {
  18577. height: math.unit(6 + 3 / 12, "feet"),
  18578. weight: math.unit(220, "lb"),
  18579. name: "Back",
  18580. image: {
  18581. source: "./media/characters/max-calore/back.svg",
  18582. extra: 1700 / 1648,
  18583. bottom: 0.01
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(6 + 3 / 12, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18597. {
  18598. side: {
  18599. height: math.unit(2 + 8 / 12, "feet"),
  18600. weight: math.unit(99, "lb"),
  18601. name: "Side",
  18602. image: {
  18603. source: "./media/characters/aspen/side.svg",
  18604. extra: 152 / 138,
  18605. bottom: 0.032
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(2 + 8 / 12, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(3 + 2 / 12, "feet"),
  18622. weight: math.unit(224, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/sheila-feral-wolf/side.svg",
  18626. extra: 179 / 166,
  18627. bottom: 0.03
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(3 + 2 / 12, "feet"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18641. {
  18642. side: {
  18643. height: math.unit(1 + 9 / 12, "feet"),
  18644. weight: math.unit(38, "lb"),
  18645. name: "Side",
  18646. image: {
  18647. source: "./media/characters/michelle/side.svg",
  18648. extra: 147 / 136.7,
  18649. bottom: 0.03
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(1 + 9 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(1.54, "feet"),
  18666. weight: math.unit(50, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/nino/front.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(1.54, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(1.49, "feet"),
  18686. weight: math.unit(45, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/viola/front.svg"
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(1.49, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(6 + 5 / 12, "feet"),
  18706. weight: math.unit(580, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/atlas/front.svg",
  18710. extra: 298.5 / 290,
  18711. bottom: 0.015
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6 + 5 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18725. {
  18726. side: {
  18727. height: math.unit(15.6, "inches"),
  18728. weight: math.unit(10, "lb"),
  18729. name: "Side",
  18730. image: {
  18731. source: "./media/characters/davy/side.svg",
  18732. extra: 200 / 170,
  18733. bottom: 0.01
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(15.6, "inches"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18747. {
  18748. side: {
  18749. height: math.unit(4 + 8 / 12, "feet"),
  18750. weight: math.unit(166, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/fiona/side.svg",
  18754. extra: 232 / 220,
  18755. bottom: 0.03
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(4 + 8 / 12, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18769. {
  18770. front: {
  18771. height: math.unit(26, "inches"),
  18772. weight: math.unit(35, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/lyla/front.svg",
  18776. bottom: 0.1
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(3, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18790. {
  18791. side: {
  18792. height: math.unit(1.8, "feet"),
  18793. weight: math.unit(44, "lb"),
  18794. name: "Side",
  18795. image: {
  18796. source: "./media/characters/perseus/side.svg",
  18797. bottom: 0.21
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(1.8, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18811. {
  18812. side: {
  18813. height: math.unit(4 + 2 / 12, "feet"),
  18814. weight: math.unit(20, "lb"),
  18815. name: "Side",
  18816. image: {
  18817. source: "./media/characters/remus/side.svg"
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(4 + 2 / 12, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(4 + 11 / 12, "feet"),
  18834. weight: math.unit(114, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/raf/front.svg",
  18838. extra: 1504/1339,
  18839. bottom: 26/1530
  18840. }
  18841. },
  18842. side: {
  18843. height: math.unit(4 + 11 / 12, "feet"),
  18844. weight: math.unit(114, "lb"),
  18845. name: "Side",
  18846. image: {
  18847. source: "./media/characters/raf/side.svg",
  18848. extra: 1466/1316,
  18849. bottom: 29/1495
  18850. }
  18851. },
  18852. paw: {
  18853. height: math.unit(1.45, "feet"),
  18854. name: "Paw",
  18855. image: {
  18856. source: "./media/characters/raf/paw.svg"
  18857. },
  18858. extraAttributes: {
  18859. "toeSize": {
  18860. name: "Toe Size",
  18861. power: 2,
  18862. type: "area",
  18863. base: math.unit(0.004, "m^2")
  18864. },
  18865. "padSize": {
  18866. name: "Pad Size",
  18867. power: 2,
  18868. type: "area",
  18869. base: math.unit(0.04, "m^2")
  18870. },
  18871. "footSize": {
  18872. name: "Foot Size",
  18873. power: 2,
  18874. type: "area",
  18875. base: math.unit(0.08, "m^2")
  18876. },
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(2, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(4 + 11 / 12, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(70, "feet")
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(1.5, "meters"),
  18901. weight: math.unit(68, "kg"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/liam-einarr/front.svg",
  18905. extra: 2822 / 2666
  18906. }
  18907. },
  18908. back: {
  18909. height: math.unit(1.5, "meters"),
  18910. weight: math.unit(68, "kg"),
  18911. name: "Back",
  18912. image: {
  18913. source: "./media/characters/liam-einarr/back.svg",
  18914. extra: 2822 / 2666,
  18915. bottom: 0.015
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(1.5, "meters"),
  18923. default: true
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(150, "meters")
  18928. },
  18929. {
  18930. name: "Megamacro",
  18931. height: math.unit(35, "km")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18937. {
  18938. front: {
  18939. height: math.unit(6, "feet"),
  18940. weight: math.unit(75, "kg"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/linda/front.svg",
  18944. extra: 930 / 874,
  18945. bottom: 0.004
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(6, "feet"),
  18953. default: true
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 8 / 12, "feet"),
  18962. weight: math.unit(220, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/caylex/front.svg",
  18966. extra: 821 / 772,
  18967. bottom: 0.07
  18968. }
  18969. },
  18970. back: {
  18971. height: math.unit(6 + 8 / 12, "feet"),
  18972. weight: math.unit(220, "lb"),
  18973. name: "Back",
  18974. image: {
  18975. source: "./media/characters/caylex/back.svg",
  18976. extra: 821 / 772,
  18977. bottom: 0.022
  18978. }
  18979. },
  18980. hand: {
  18981. height: math.unit(1.25, "feet"),
  18982. name: "Hand",
  18983. image: {
  18984. source: "./media/characters/caylex/hand.svg"
  18985. }
  18986. },
  18987. foot: {
  18988. height: math.unit(1.6, "feet"),
  18989. name: "Foot",
  18990. image: {
  18991. source: "./media/characters/caylex/foot.svg"
  18992. }
  18993. },
  18994. armored: {
  18995. height: math.unit(6 + 8 / 12, "feet"),
  18996. weight: math.unit(250, "lb"),
  18997. name: "Armored",
  18998. image: {
  18999. source: "./media/characters/caylex/armored.svg",
  19000. extra: 1420 / 1310,
  19001. bottom: 0.045
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(6 + 8 / 12, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Normal+",
  19013. height: math.unit(12, "feet")
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(7 + 6 / 12, "feet"),
  19022. weight: math.unit(288, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/alana/front.svg",
  19026. extra: 679 / 653,
  19027. bottom: 22.5 / 701
  19028. }
  19029. },
  19030. },
  19031. [
  19032. {
  19033. name: "Normal",
  19034. height: math.unit(7 + 6 / 12, "feet")
  19035. },
  19036. {
  19037. name: "Large",
  19038. height: math.unit(50, "feet")
  19039. },
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(100, "feet"),
  19043. default: true
  19044. },
  19045. {
  19046. name: "Macro+",
  19047. height: math.unit(200, "feet")
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19053. {
  19054. front: {
  19055. height: math.unit(6 + 1 / 12, "feet"),
  19056. weight: math.unit(210, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/hasani/front.svg",
  19060. extra: 244 / 232,
  19061. bottom: 0.01
  19062. }
  19063. },
  19064. back: {
  19065. height: math.unit(6 + 1 / 12, "feet"),
  19066. weight: math.unit(210, "lb"),
  19067. name: "Back",
  19068. image: {
  19069. source: "./media/characters/hasani/back.svg",
  19070. extra: 244 / 232,
  19071. bottom: 0.01
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(6 + 1 / 12, "feet")
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(175, "feet"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(1.82, "meters"),
  19092. weight: math.unit(140, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/nita/front.svg",
  19096. extra: 2473 / 2363,
  19097. bottom: 0.01
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(1.82, "m")
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(300, "m")
  19109. },
  19110. {
  19111. name: "Mistake Canon",
  19112. height: math.unit(0.5, "miles"),
  19113. default: true
  19114. },
  19115. {
  19116. name: "Big Mistake",
  19117. height: math.unit(13, "miles")
  19118. },
  19119. {
  19120. name: "Playing God",
  19121. height: math.unit(2450, "miles")
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(4, "feet"),
  19130. weight: math.unit(120, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/shiriko/front.svg",
  19134. extra: 970/934,
  19135. bottom: 5/975
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(4, "feet"),
  19143. default: true
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(6, "feet"),
  19152. name: "front",
  19153. image: {
  19154. source: "./media/characters/deja/front.svg",
  19155. extra: 926 / 840,
  19156. bottom: 0.07
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Planck Length",
  19163. height: math.unit(1.6e-35, "meters")
  19164. },
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(30.48, "meters"),
  19168. default: true
  19169. },
  19170. {
  19171. name: "Universal",
  19172. height: math.unit(8.8e26, "meters")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19178. {
  19179. side: {
  19180. height: math.unit(8, "feet"),
  19181. weight: math.unit(6300, "lb"),
  19182. name: "Side",
  19183. image: {
  19184. source: "./media/characters/anima/side.svg",
  19185. bottom: 0.035
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(8, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(8, "feet"),
  19202. weight: math.unit(350, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/bianca/front.svg",
  19206. extra: 234 / 225,
  19207. bottom: 0.03
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(8, "feet"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(11 + 5/12, "feet"),
  19224. weight: math.unit(1200, "lb"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/adinia/front.svg",
  19228. extra: 1767/1641,
  19229. bottom: 44/1811
  19230. },
  19231. extraAttributes: {
  19232. "energyIntake": {
  19233. name: "Energy Intake",
  19234. power: 3,
  19235. type: "energy",
  19236. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19237. },
  19238. }
  19239. },
  19240. back: {
  19241. height: math.unit(11 + 5/12, "feet"),
  19242. weight: math.unit(1200, "lb"),
  19243. name: "Back",
  19244. image: {
  19245. source: "./media/characters/adinia/back.svg",
  19246. extra: 1834/1684,
  19247. bottom: 14/1848
  19248. },
  19249. extraAttributes: {
  19250. "energyIntake": {
  19251. name: "Energy Intake",
  19252. power: 3,
  19253. type: "energy",
  19254. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19255. },
  19256. }
  19257. },
  19258. maw: {
  19259. height: math.unit(3.79, "feet"),
  19260. name: "Maw",
  19261. image: {
  19262. source: "./media/characters/adinia/maw.svg"
  19263. }
  19264. },
  19265. rump: {
  19266. height: math.unit(4.6, "feet"),
  19267. name: "Rump",
  19268. image: {
  19269. source: "./media/characters/adinia/rump.svg"
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(11 + 5 / 12, "feet"),
  19277. default: true
  19278. },
  19279. ]
  19280. ))
  19281. characterMakers.push(() => makeCharacter(
  19282. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19283. {
  19284. front: {
  19285. height: math.unit(3, "meters"),
  19286. weight: math.unit(200, "kg"),
  19287. name: "Front",
  19288. image: {
  19289. source: "./media/characters/lykasa/front.svg",
  19290. extra: 1076 / 976,
  19291. bottom: 0.06
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(3, "meters")
  19299. },
  19300. {
  19301. name: "Kaiju",
  19302. height: math.unit(120, "meters"),
  19303. default: true
  19304. },
  19305. {
  19306. name: "Mega Kaiju",
  19307. height: math.unit(240, "km")
  19308. },
  19309. {
  19310. name: "Giga Kaiju",
  19311. height: math.unit(400, "megameters")
  19312. },
  19313. {
  19314. name: "Tera Kaiju",
  19315. height: math.unit(800, "gigameters")
  19316. },
  19317. {
  19318. name: "Kaiju Dragon Goddess",
  19319. height: math.unit(26, "zettaparsecs")
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19325. {
  19326. side: {
  19327. height: math.unit(283 / 124 * 6, "feet"),
  19328. weight: math.unit(35000, "lb"),
  19329. name: "Side",
  19330. image: {
  19331. source: "./media/characters/malfaren/side.svg",
  19332. extra: 1310/529,
  19333. bottom: 24/1334
  19334. }
  19335. },
  19336. front: {
  19337. height: math.unit(22.36, "feet"),
  19338. weight: math.unit(35000, "lb"),
  19339. name: "Front",
  19340. image: {
  19341. source: "./media/characters/malfaren/front.svg",
  19342. extra: 1237/1115,
  19343. bottom: 32/1269
  19344. }
  19345. },
  19346. maw: {
  19347. height: math.unit(6.9, "feet"),
  19348. name: "Maw",
  19349. image: {
  19350. source: "./media/characters/malfaren/maw.svg"
  19351. }
  19352. },
  19353. dick: {
  19354. height: math.unit(6.19, "feet"),
  19355. name: "Dick",
  19356. image: {
  19357. source: "./media/characters/malfaren/dick.svg"
  19358. }
  19359. },
  19360. eye: {
  19361. height: math.unit(0.69, "feet"),
  19362. name: "Eye",
  19363. image: {
  19364. source: "./media/characters/malfaren/eye.svg"
  19365. }
  19366. },
  19367. },
  19368. [
  19369. {
  19370. name: "Big",
  19371. height: math.unit(283 / 162 * 6, "feet"),
  19372. },
  19373. {
  19374. name: "Bigger",
  19375. height: math.unit(283 / 124 * 6, "feet")
  19376. },
  19377. {
  19378. name: "Massive",
  19379. height: math.unit(283 / 92 * 6, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "👀💦",
  19384. height: math.unit(283 / 73 * 6, "feet"),
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(1.7, "m"),
  19393. weight: math.unit(70, "kg"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/kernel/front.svg",
  19397. extra: 222 / 210,
  19398. bottom: 0.007
  19399. }
  19400. },
  19401. },
  19402. [
  19403. {
  19404. name: "Nano",
  19405. height: math.unit(17, "micrometers")
  19406. },
  19407. {
  19408. name: "Micro",
  19409. height: math.unit(1.7, "mm")
  19410. },
  19411. {
  19412. name: "Small",
  19413. height: math.unit(1.7, "cm")
  19414. },
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(1.7, "m"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19424. {
  19425. front: {
  19426. height: math.unit(1.75, "meters"),
  19427. weight: math.unit(65, "kg"),
  19428. name: "Front",
  19429. image: {
  19430. source: "./media/characters/jayne-folest/front.svg",
  19431. extra: 2115 / 2007,
  19432. bottom: 0.02
  19433. }
  19434. },
  19435. back: {
  19436. height: math.unit(1.75, "meters"),
  19437. weight: math.unit(65, "kg"),
  19438. name: "Back",
  19439. image: {
  19440. source: "./media/characters/jayne-folest/back.svg",
  19441. extra: 2115 / 2007,
  19442. bottom: 0.005
  19443. }
  19444. },
  19445. frontClothed: {
  19446. height: math.unit(1.75, "meters"),
  19447. weight: math.unit(65, "kg"),
  19448. name: "Front (Clothed)",
  19449. image: {
  19450. source: "./media/characters/jayne-folest/front-clothed.svg",
  19451. extra: 2115 / 2007,
  19452. bottom: 0.035
  19453. }
  19454. },
  19455. hand: {
  19456. height: math.unit(1 / 1.260, "feet"),
  19457. name: "Hand",
  19458. image: {
  19459. source: "./media/characters/jayne-folest/hand.svg"
  19460. }
  19461. },
  19462. foot: {
  19463. height: math.unit(1 / 0.918, "feet"),
  19464. name: "Foot",
  19465. image: {
  19466. source: "./media/characters/jayne-folest/foot.svg"
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Micro",
  19473. height: math.unit(4, "cm")
  19474. },
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(1.75, "meters")
  19478. },
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(47.5, "meters"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(180, "cm"),
  19491. weight: math.unit(70, "kg"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/algier/front.svg",
  19495. extra: 596 / 572,
  19496. bottom: 0.04
  19497. }
  19498. },
  19499. back: {
  19500. height: math.unit(180, "cm"),
  19501. weight: math.unit(70, "kg"),
  19502. name: "Back",
  19503. image: {
  19504. source: "./media/characters/algier/back.svg",
  19505. extra: 596 / 572,
  19506. bottom: 0.025
  19507. }
  19508. },
  19509. frontdressed: {
  19510. height: math.unit(180, "cm"),
  19511. weight: math.unit(150, "kg"),
  19512. name: "Front-dressed",
  19513. image: {
  19514. source: "./media/characters/algier/front-dressed.svg",
  19515. extra: 596 / 572,
  19516. bottom: 0.038
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(5, "cm")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(180, "cm"),
  19528. default: true
  19529. },
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(64, "m")
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19538. {
  19539. upright: {
  19540. height: math.unit(7, "feet"),
  19541. weight: math.unit(300, "lb"),
  19542. name: "Upright",
  19543. image: {
  19544. source: "./media/characters/pretzel/upright.svg",
  19545. extra: 534 / 522,
  19546. bottom: 0.065
  19547. }
  19548. },
  19549. sprawling: {
  19550. height: math.unit(3.75, "feet"),
  19551. weight: math.unit(300, "lb"),
  19552. name: "Sprawling",
  19553. image: {
  19554. source: "./media/characters/pretzel/sprawling.svg",
  19555. extra: 314 / 281,
  19556. bottom: 0.1
  19557. }
  19558. },
  19559. tongue: {
  19560. height: math.unit(2, "feet"),
  19561. name: "Tongue",
  19562. image: {
  19563. source: "./media/characters/pretzel/tongue.svg"
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(7, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Oversized",
  19575. height: math.unit(15, "feet")
  19576. },
  19577. {
  19578. name: "Huge",
  19579. height: math.unit(30, "feet")
  19580. },
  19581. {
  19582. name: "Macro",
  19583. height: math.unit(250, "feet")
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19589. {
  19590. sideFront: {
  19591. height: math.unit(5 + 2 / 12, "feet"),
  19592. weight: math.unit(120, "lb"),
  19593. name: "Front Side",
  19594. image: {
  19595. source: "./media/characters/roxi/side-front.svg",
  19596. extra: 2924 / 2717,
  19597. bottom: 0.08
  19598. }
  19599. },
  19600. sideBack: {
  19601. height: math.unit(5 + 2 / 12, "feet"),
  19602. weight: math.unit(120, "lb"),
  19603. name: "Back Side",
  19604. image: {
  19605. source: "./media/characters/roxi/side-back.svg",
  19606. extra: 2904 / 2693,
  19607. bottom: 0.06
  19608. }
  19609. },
  19610. front: {
  19611. height: math.unit(5 + 2 / 12, "feet"),
  19612. weight: math.unit(120, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/roxi/front.svg",
  19616. extra: 2028 / 1907,
  19617. bottom: 0.01
  19618. }
  19619. },
  19620. frontAlt: {
  19621. height: math.unit(5 + 2 / 12, "feet"),
  19622. weight: math.unit(120, "lb"),
  19623. name: "Front (Alt)",
  19624. image: {
  19625. source: "./media/characters/roxi/front-alt.svg",
  19626. extra: 1828 / 1798,
  19627. bottom: 0.01
  19628. }
  19629. },
  19630. sitting: {
  19631. height: math.unit(2.8, "feet"),
  19632. weight: math.unit(120, "lb"),
  19633. name: "Sitting",
  19634. image: {
  19635. source: "./media/characters/roxi/sitting.svg",
  19636. extra: 2660 / 2462,
  19637. bottom: 0.1
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(5 + 2 / 12, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19651. {
  19652. side: {
  19653. height: math.unit(55, "feet"),
  19654. weight: math.unit(153, "tons"),
  19655. name: "Side",
  19656. image: {
  19657. source: "./media/characters/shadow/side.svg",
  19658. extra: 701 / 628,
  19659. bottom: 0.02
  19660. }
  19661. },
  19662. flying: {
  19663. height: math.unit(145, "feet"),
  19664. weight: math.unit(153, "tons"),
  19665. name: "Flying",
  19666. image: {
  19667. source: "./media/characters/shadow/flying.svg"
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(55, "feet"),
  19675. default: true
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(6, "feet"),
  19684. weight: math.unit(200, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/marcie/front.svg",
  19688. extra: 960 / 876,
  19689. bottom: 58 / 1017.87
  19690. }
  19691. },
  19692. },
  19693. [
  19694. {
  19695. name: "Macro",
  19696. height: math.unit(1, "mile"),
  19697. default: true
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(7, "feet"),
  19706. weight: math.unit(200, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/kachina/front.svg",
  19710. extra: 1290.68 / 1119,
  19711. bottom: 36.5 / 1327.18
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(7, "feet"),
  19719. default: true
  19720. },
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19725. {
  19726. looking: {
  19727. height: math.unit(2, "meters"),
  19728. weight: math.unit(300, "kg"),
  19729. name: "Looking",
  19730. image: {
  19731. source: "./media/characters/kash/looking.svg",
  19732. extra: 474 / 344,
  19733. bottom: 0.03
  19734. }
  19735. },
  19736. side: {
  19737. height: math.unit(2, "meters"),
  19738. weight: math.unit(300, "kg"),
  19739. name: "Side",
  19740. image: {
  19741. source: "./media/characters/kash/side.svg",
  19742. extra: 302 / 251,
  19743. bottom: 0.03
  19744. }
  19745. },
  19746. front: {
  19747. height: math.unit(2, "meters"),
  19748. weight: math.unit(300, "kg"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/kash/front.svg",
  19752. extra: 495 / 360,
  19753. bottom: 0.015
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(2, "meters"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Big",
  19765. height: math.unit(3, "meters")
  19766. },
  19767. {
  19768. name: "Large",
  19769. height: math.unit(5, "meters")
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19775. {
  19776. feeding: {
  19777. height: math.unit(6.7, "feet"),
  19778. weight: math.unit(350, "lb"),
  19779. name: "Feeding",
  19780. image: {
  19781. source: "./media/characters/lalim/feeding.svg",
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(6.7, "feet"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(9.5, "feet"),
  19798. weight: math.unit(600, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/de'vout/front.svg",
  19802. extra: 1443 / 1328,
  19803. bottom: 0.025
  19804. }
  19805. },
  19806. back: {
  19807. height: math.unit(9.5, "feet"),
  19808. weight: math.unit(600, "lb"),
  19809. name: "Back",
  19810. image: {
  19811. source: "./media/characters/de'vout/back.svg",
  19812. extra: 1443 / 1328
  19813. }
  19814. },
  19815. frontDressed: {
  19816. height: math.unit(9.5, "feet"),
  19817. weight: math.unit(600, "lb"),
  19818. name: "Front (Dressed",
  19819. image: {
  19820. source: "./media/characters/de'vout/front-dressed.svg",
  19821. extra: 1443 / 1328,
  19822. bottom: 0.025
  19823. }
  19824. },
  19825. backDressed: {
  19826. height: math.unit(9.5, "feet"),
  19827. weight: math.unit(600, "lb"),
  19828. name: "Back (Dressed",
  19829. image: {
  19830. source: "./media/characters/de'vout/back-dressed.svg",
  19831. extra: 1443 / 1328
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(9.5, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(8, "feet"),
  19848. weight: math.unit(225, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/talana/front.svg",
  19852. extra: 1410 / 1300,
  19853. bottom: 0.015
  19854. }
  19855. },
  19856. frontDressed: {
  19857. height: math.unit(8, "feet"),
  19858. weight: math.unit(225, "lb"),
  19859. name: "Front (Dressed",
  19860. image: {
  19861. source: "./media/characters/talana/front-dressed.svg",
  19862. extra: 1410 / 1300,
  19863. bottom: 0.015
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(8, "feet"),
  19871. default: true
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19877. {
  19878. side: {
  19879. height: math.unit(7.2, "feet"),
  19880. weight: math.unit(150, "lb"),
  19881. name: "Side",
  19882. image: {
  19883. source: "./media/characters/xeauvok/side.svg",
  19884. extra: 1975 / 1523,
  19885. bottom: 0.07
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(7.2, "feet"),
  19893. default: true
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19899. {
  19900. side: {
  19901. height: math.unit(4, "meters"),
  19902. weight: math.unit(2200, "kg"),
  19903. name: "Side",
  19904. image: {
  19905. source: "./media/characters/zara/side.svg",
  19906. extra: 765/744,
  19907. bottom: 156/921
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(4, "meters"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19921. {
  19922. side: {
  19923. height: math.unit(6, "feet"),
  19924. weight: math.unit(150, "lb"),
  19925. name: "Side",
  19926. image: {
  19927. source: "./media/characters/richard-dragon/side.svg",
  19928. extra: 845 / 340,
  19929. bottom: 0.017
  19930. }
  19931. },
  19932. maw: {
  19933. height: math.unit(2.97, "feet"),
  19934. name: "Maw",
  19935. image: {
  19936. source: "./media/characters/richard-dragon/maw.svg"
  19937. }
  19938. },
  19939. },
  19940. [
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(4, "feet"),
  19948. weight: math.unit(100, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/richard-smeargle/front.svg",
  19952. extra: 2952 / 2820,
  19953. bottom: 0.028
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(4, "feet"),
  19961. default: true
  19962. },
  19963. {
  19964. name: "Dynamax",
  19965. height: math.unit(20, "meters")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19971. {
  19972. front: {
  19973. height: math.unit(6, "feet"),
  19974. weight: math.unit(110, "lb"),
  19975. name: "Front",
  19976. image: {
  19977. source: "./media/characters/klay/front.svg",
  19978. extra: 962 / 883,
  19979. bottom: 0.04
  19980. }
  19981. },
  19982. back: {
  19983. height: math.unit(6, "feet"),
  19984. weight: math.unit(110, "lb"),
  19985. name: "Back",
  19986. image: {
  19987. source: "./media/characters/klay/back.svg",
  19988. extra: 962 / 883
  19989. }
  19990. },
  19991. beans: {
  19992. height: math.unit(1.15, "feet"),
  19993. name: "Beans",
  19994. image: {
  19995. source: "./media/characters/klay/beans.svg"
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Micro",
  20002. height: math.unit(6, "inches")
  20003. },
  20004. {
  20005. name: "Mini",
  20006. height: math.unit(3, "feet")
  20007. },
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(6, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Big",
  20015. height: math.unit(25, "feet")
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(100, "feet")
  20020. },
  20021. {
  20022. name: "Megamacro",
  20023. height: math.unit(400, "feet")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(6, "feet"),
  20032. weight: math.unit(160, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/marcus/front.svg",
  20036. extra: 734 / 676,
  20037. bottom: 0.03
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Little",
  20044. height: math.unit(6, "feet")
  20045. },
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(110, "feet"),
  20049. default: true
  20050. },
  20051. {
  20052. name: "Macro",
  20053. height: math.unit(250, "feet")
  20054. },
  20055. {
  20056. name: "Megamacro",
  20057. height: math.unit(1000, "feet")
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(7, "feet"),
  20066. weight: math.unit(275, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/claude-delroute/front.svg",
  20070. extra: 902/827,
  20071. bottom: 26/928
  20072. }
  20073. },
  20074. side: {
  20075. height: math.unit(7, "feet"),
  20076. weight: math.unit(275, "lb"),
  20077. name: "Side",
  20078. image: {
  20079. source: "./media/characters/claude-delroute/side.svg",
  20080. extra: 908/853,
  20081. bottom: 16/924
  20082. }
  20083. },
  20084. back: {
  20085. height: math.unit(7, "feet"),
  20086. weight: math.unit(275, "lb"),
  20087. name: "Back",
  20088. image: {
  20089. source: "./media/characters/claude-delroute/back.svg",
  20090. extra: 911/829,
  20091. bottom: 18/929
  20092. }
  20093. },
  20094. maw: {
  20095. height: math.unit(0.6407, "meters"),
  20096. name: "Maw",
  20097. image: {
  20098. source: "./media/characters/claude-delroute/maw.svg"
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(7, "feet"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Lorge",
  20110. height: math.unit(20, "feet")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(8 + 4 / 12, "feet"),
  20119. weight: math.unit(600, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/dragonien/front.svg",
  20123. extra: 100 / 94,
  20124. bottom: 3.3 / 103.3445
  20125. }
  20126. },
  20127. back: {
  20128. height: math.unit(8 + 4 / 12, "feet"),
  20129. weight: math.unit(600, "lb"),
  20130. name: "Back",
  20131. image: {
  20132. source: "./media/characters/dragonien/back.svg",
  20133. extra: 776 / 746,
  20134. bottom: 6.4 / 782.0616
  20135. }
  20136. },
  20137. foot: {
  20138. height: math.unit(1.54, "feet"),
  20139. name: "Foot",
  20140. image: {
  20141. source: "./media/characters/dragonien/foot.svg",
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(8 + 4 / 12, "feet"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Macro",
  20153. height: math.unit(200, "feet")
  20154. },
  20155. {
  20156. name: "Megamacro",
  20157. height: math.unit(1, "mile")
  20158. },
  20159. {
  20160. name: "Gigamacro",
  20161. height: math.unit(1000, "miles")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20167. {
  20168. front: {
  20169. height: math.unit(5 + 2 / 12, "feet"),
  20170. weight: math.unit(110, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/desta/front.svg",
  20174. extra: 767 / 726,
  20175. bottom: 11.7 / 779
  20176. }
  20177. },
  20178. back: {
  20179. height: math.unit(5 + 2 / 12, "feet"),
  20180. weight: math.unit(110, "lb"),
  20181. name: "Back",
  20182. image: {
  20183. source: "./media/characters/desta/back.svg",
  20184. extra: 777 / 728,
  20185. bottom: 6 / 784
  20186. }
  20187. },
  20188. frontAlt: {
  20189. height: math.unit(5 + 2 / 12, "feet"),
  20190. weight: math.unit(110, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/desta/front-alt.svg",
  20194. extra: 1482 / 1417
  20195. }
  20196. },
  20197. side: {
  20198. height: math.unit(5 + 2 / 12, "feet"),
  20199. weight: math.unit(110, "lb"),
  20200. name: "Side",
  20201. image: {
  20202. source: "./media/characters/desta/side.svg",
  20203. extra: 2579 / 2491,
  20204. bottom: 0.053
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Micro",
  20211. height: math.unit(6, "inches")
  20212. },
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(5 + 2 / 12, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(62, "feet")
  20221. },
  20222. {
  20223. name: "Megamacro",
  20224. height: math.unit(1800, "feet")
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(10, "feet"),
  20233. weight: math.unit(700, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/storm-alystar/front.svg",
  20237. extra: 2112 / 1898,
  20238. bottom: 0.034
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Micro",
  20245. height: math.unit(3.5, "inches")
  20246. },
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(10, "feet"),
  20250. default: true
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(400, "feet")
  20255. },
  20256. {
  20257. name: "Deific",
  20258. height: math.unit(60, "miles")
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(2.35, "meters"),
  20267. weight: math.unit(119, "kg"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/ilia/front.svg",
  20271. extra: 1285 / 1255,
  20272. bottom: 0.06
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(2.35, "meters")
  20280. },
  20281. {
  20282. name: "Macro",
  20283. height: math.unit(140, "meters"),
  20284. default: true
  20285. },
  20286. {
  20287. name: "Megamacro",
  20288. height: math.unit(100, "miles")
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(6 + 5 / 12, "feet"),
  20297. weight: math.unit(190, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/kingdead/front.svg",
  20301. extra: 1228 / 1177
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Micro",
  20308. height: math.unit(7, "inches")
  20309. },
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(6 + 5 / 12, "feet")
  20313. },
  20314. {
  20315. name: "Macro",
  20316. height: math.unit(150, "feet"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Megamacro",
  20321. height: math.unit(200, "miles")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(8, "feet"),
  20330. weight: math.unit(600, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/kyrehx/front.svg",
  20334. extra: 1195 / 1095,
  20335. bottom: 0.034
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Micro",
  20342. height: math.unit(2, "inches")
  20343. },
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(8, "feet"),
  20347. default: true
  20348. },
  20349. {
  20350. name: "Macro",
  20351. height: math.unit(255, "feet")
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20360. weight: math.unit(184, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/xang/front.svg",
  20364. extra: 845 / 755
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(0.935 * 146, "feet")
  20377. },
  20378. {
  20379. name: "Megamacro",
  20380. height: math.unit(0.935 * 3, "miles")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20386. {
  20387. frontDressed: {
  20388. height: math.unit(5 + 7 / 12, "feet"),
  20389. weight: math.unit(140, "lb"),
  20390. name: "Front (Dressed)",
  20391. image: {
  20392. source: "./media/characters/doc-weardno/front-dressed.svg",
  20393. extra: 263 / 234
  20394. }
  20395. },
  20396. backDressed: {
  20397. height: math.unit(5 + 7 / 12, "feet"),
  20398. weight: math.unit(140, "lb"),
  20399. name: "Back (Dressed)",
  20400. image: {
  20401. source: "./media/characters/doc-weardno/back-dressed.svg",
  20402. extra: 266 / 238
  20403. }
  20404. },
  20405. front: {
  20406. height: math.unit(5 + 7 / 12, "feet"),
  20407. weight: math.unit(140, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/doc-weardno/front.svg",
  20411. extra: 254 / 233
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Micro",
  20418. height: math.unit(3, "inches")
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(5 + 7 / 12, "feet"),
  20423. default: true
  20424. },
  20425. {
  20426. name: "Macro",
  20427. height: math.unit(25, "feet")
  20428. },
  20429. {
  20430. name: "Megamacro",
  20431. height: math.unit(2, "miles")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(6 + 2 / 12, "feet"),
  20440. weight: math.unit(153, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/seth-whilst/front.svg",
  20444. bottom: 0.07
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Micro",
  20451. height: math.unit(5, "inches")
  20452. },
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(6 + 2 / 12, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(3, "inches"),
  20465. weight: math.unit(8, "grams"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/pocket-jabari/front.svg",
  20469. extra: 1024 / 974,
  20470. bottom: 0.039
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Minimicro",
  20477. height: math.unit(8, "mm")
  20478. },
  20479. {
  20480. name: "Micro",
  20481. height: math.unit(3, "inches"),
  20482. default: true
  20483. },
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(3, "feet")
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20492. {
  20493. frontDressed: {
  20494. height: math.unit(15, "feet"),
  20495. weight: math.unit(3280, "lb"),
  20496. name: "Front (Dressed)",
  20497. image: {
  20498. source: "./media/characters/sapphy/front-dressed.svg",
  20499. extra: 1951/1654,
  20500. bottom: 194/2145
  20501. },
  20502. form: "anthro",
  20503. default: true
  20504. },
  20505. backDressed: {
  20506. height: math.unit(15, "feet"),
  20507. weight: math.unit(3280, "lb"),
  20508. name: "Back (Dressed)",
  20509. image: {
  20510. source: "./media/characters/sapphy/back-dressed.svg",
  20511. extra: 2058/1918,
  20512. bottom: 125/2183
  20513. },
  20514. form: "anthro"
  20515. },
  20516. frontNude: {
  20517. height: math.unit(15, "feet"),
  20518. weight: math.unit(3280, "lb"),
  20519. name: "Front (Nude)",
  20520. image: {
  20521. source: "./media/characters/sapphy/front-nude.svg",
  20522. extra: 1951/1654,
  20523. bottom: 194/2145
  20524. },
  20525. form: "anthro"
  20526. },
  20527. backNude: {
  20528. height: math.unit(15, "feet"),
  20529. weight: math.unit(3280, "lb"),
  20530. name: "Back (Nude)",
  20531. image: {
  20532. source: "./media/characters/sapphy/back-nude.svg",
  20533. extra: 2058/1918,
  20534. bottom: 125/2183
  20535. },
  20536. form: "anthro"
  20537. },
  20538. full: {
  20539. height: math.unit(15, "feet"),
  20540. weight: math.unit(3280, "lb"),
  20541. name: "Full",
  20542. image: {
  20543. source: "./media/characters/sapphy/full.svg",
  20544. extra: 1396/1317,
  20545. bottom: 44/1440
  20546. },
  20547. form: "anthro"
  20548. },
  20549. dick: {
  20550. height: math.unit(3.8, "feet"),
  20551. name: "Dick",
  20552. image: {
  20553. source: "./media/characters/sapphy/dick.svg"
  20554. },
  20555. form: "anthro"
  20556. },
  20557. feral: {
  20558. height: math.unit(35, "feet"),
  20559. weight: math.unit(160, "tons"),
  20560. name: "Feral",
  20561. image: {
  20562. source: "./media/characters/sapphy/feral.svg",
  20563. extra: 1050/573,
  20564. bottom: 60/1110
  20565. },
  20566. form: "feral",
  20567. default: true
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(15, "feet"),
  20574. form: "anthro"
  20575. },
  20576. {
  20577. name: "Casual Macro",
  20578. height: math.unit(120, "feet"),
  20579. form: "anthro"
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(2150, "feet"),
  20584. default: true,
  20585. form: "anthro"
  20586. },
  20587. {
  20588. name: "Megamacro",
  20589. height: math.unit(8, "miles"),
  20590. form: "anthro"
  20591. },
  20592. {
  20593. name: "Galaxy Mom",
  20594. height: math.unit(6, "megalightyears"),
  20595. form: "anthro"
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(35, "feet"),
  20600. form: "feral",
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(300, "feet"),
  20606. form: "feral"
  20607. },
  20608. {
  20609. name: "Galaxy Mom",
  20610. height: math.unit(10, "megalightyears"),
  20611. form: "feral"
  20612. },
  20613. ],
  20614. {
  20615. "anthro": {
  20616. name: "Anthro",
  20617. default: true
  20618. },
  20619. "feral": {
  20620. name: "Feral"
  20621. }
  20622. }
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20626. {
  20627. hyenaFront: {
  20628. height: math.unit(6, "feet"),
  20629. weight: math.unit(190, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/kiro/hyena-front.svg",
  20633. extra: 927/839,
  20634. bottom: 91/1018
  20635. },
  20636. form: "hyena",
  20637. default: true
  20638. },
  20639. front: {
  20640. height: math.unit(6, "feet"),
  20641. weight: math.unit(170, "lb"),
  20642. name: "Front",
  20643. image: {
  20644. source: "./media/characters/kiro/front.svg",
  20645. extra: 1064 / 1012,
  20646. bottom: 0.052
  20647. },
  20648. form: "folf",
  20649. default: true
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Micro",
  20655. height: math.unit(6, "inches"),
  20656. form: "folf"
  20657. },
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(6, "feet"),
  20661. form: "folf",
  20662. default: true
  20663. },
  20664. {
  20665. name: "Macro",
  20666. height: math.unit(72, "feet"),
  20667. form: "folf"
  20668. },
  20669. {
  20670. name: "Micro",
  20671. height: math.unit(6, "inches"),
  20672. form: "hyena"
  20673. },
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(6, "feet"),
  20677. form: "hyena",
  20678. default: true
  20679. },
  20680. {
  20681. name: "Macro",
  20682. height: math.unit(72, "feet"),
  20683. form: "hyena"
  20684. },
  20685. ],
  20686. {
  20687. "hyena": {
  20688. name: "Hyena",
  20689. default: true
  20690. },
  20691. "folf": {
  20692. name: "Folf",
  20693. },
  20694. }
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(5 + 9 / 12, "feet"),
  20701. weight: math.unit(175, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/irishfox/front.svg",
  20705. extra: 1912 / 1680,
  20706. bottom: 0.02
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Nano",
  20713. height: math.unit(1, "mm")
  20714. },
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(2, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 9 / 12, "feet"),
  20722. default: true
  20723. },
  20724. {
  20725. name: "Macro",
  20726. height: math.unit(45, "feet")
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6 + 1 / 12, "feet"),
  20735. weight: math.unit(75, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/aronai-sieyes/front.svg",
  20739. extra: 1532/1450,
  20740. bottom: 42/1574
  20741. }
  20742. },
  20743. side: {
  20744. height: math.unit(6 + 1 / 12, "feet"),
  20745. weight: math.unit(75, "lb"),
  20746. name: "Side",
  20747. image: {
  20748. source: "./media/characters/aronai-sieyes/side.svg",
  20749. extra: 1422/1365,
  20750. bottom: 148/1570
  20751. }
  20752. },
  20753. back: {
  20754. height: math.unit(6 + 1 / 12, "feet"),
  20755. weight: math.unit(75, "lb"),
  20756. name: "Back",
  20757. image: {
  20758. source: "./media/characters/aronai-sieyes/back.svg",
  20759. extra: 1526/1464,
  20760. bottom: 51/1577
  20761. }
  20762. },
  20763. dressed: {
  20764. height: math.unit(6 + 1 / 12, "feet"),
  20765. weight: math.unit(75, "lb"),
  20766. name: "Dressed",
  20767. image: {
  20768. source: "./media/characters/aronai-sieyes/dressed.svg",
  20769. extra: 1559/1483,
  20770. bottom: 39/1598
  20771. }
  20772. },
  20773. slit: {
  20774. height: math.unit(1.3, "feet"),
  20775. name: "Slit",
  20776. image: {
  20777. source: "./media/characters/aronai-sieyes/slit.svg"
  20778. }
  20779. },
  20780. slitSpread: {
  20781. height: math.unit(0.9, "feet"),
  20782. name: "Slit (Spread)",
  20783. image: {
  20784. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20785. }
  20786. },
  20787. rump: {
  20788. height: math.unit(1.3, "feet"),
  20789. name: "Rump",
  20790. image: {
  20791. source: "./media/characters/aronai-sieyes/rump.svg"
  20792. }
  20793. },
  20794. maw: {
  20795. height: math.unit(1.25, "feet"),
  20796. name: "Maw",
  20797. image: {
  20798. source: "./media/characters/aronai-sieyes/maw.svg"
  20799. }
  20800. },
  20801. feral: {
  20802. height: math.unit(18, "feet"),
  20803. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20804. name: "Feral",
  20805. image: {
  20806. source: "./media/characters/aronai-sieyes/feral.svg",
  20807. extra: 1530 / 1240,
  20808. bottom: 0.035
  20809. }
  20810. },
  20811. },
  20812. [
  20813. {
  20814. name: "Micro",
  20815. height: math.unit(2, "inches")
  20816. },
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(6 + 1 / 12, "feet"),
  20820. default: true
  20821. }
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(12, "feet"),
  20829. weight: math.unit(410, "kg"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/xuna/front.svg",
  20833. extra: 2184 / 1980
  20834. }
  20835. },
  20836. side: {
  20837. height: math.unit(12, "feet"),
  20838. weight: math.unit(410, "kg"),
  20839. name: "Side",
  20840. image: {
  20841. source: "./media/characters/xuna/side.svg",
  20842. extra: 2184 / 1980
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(12, "feet"),
  20847. weight: math.unit(410, "kg"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/xuna/back.svg",
  20851. extra: 2184 / 1980
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Nano glow",
  20858. height: math.unit(10, "nm")
  20859. },
  20860. {
  20861. name: "Micro floof",
  20862. height: math.unit(0.3, "m")
  20863. },
  20864. {
  20865. name: "Huggable softy boi",
  20866. height: math.unit(3.6576, "m"),
  20867. default: true
  20868. },
  20869. {
  20870. name: "Admirable floof",
  20871. height: math.unit(80, "meters")
  20872. },
  20873. {
  20874. name: "Gentle macro",
  20875. height: math.unit(300, "meters")
  20876. },
  20877. {
  20878. name: "Very careful floof",
  20879. height: math.unit(3200, "meters")
  20880. },
  20881. {
  20882. name: "The mega floof",
  20883. height: math.unit(36000, "meters")
  20884. },
  20885. {
  20886. name: "Giga-fur-Wicker",
  20887. height: math.unit(4800000, "meters")
  20888. },
  20889. {
  20890. name: "Licky world",
  20891. height: math.unit(20000000, "meters")
  20892. },
  20893. {
  20894. name: "Floofy cyan sun",
  20895. height: math.unit(1500000000, "meters")
  20896. },
  20897. {
  20898. name: "Milky Wicker",
  20899. height: math.unit(1000000000000000000000, "meters")
  20900. },
  20901. {
  20902. name: "The observing Wicker",
  20903. height: math.unit(999999999999999999999999999, "meters")
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20909. {
  20910. front: {
  20911. height: math.unit(5 + 9 / 12, "feet"),
  20912. weight: math.unit(150, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/arokha-sieyes/front.svg",
  20916. extra: 1425 / 1284,
  20917. bottom: 0.05
  20918. }
  20919. },
  20920. },
  20921. [
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(5 + 9 / 12, "feet")
  20925. },
  20926. {
  20927. name: "Macro",
  20928. height: math.unit(30, "meters"),
  20929. default: true
  20930. },
  20931. ]
  20932. ))
  20933. characterMakers.push(() => makeCharacter(
  20934. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20935. {
  20936. front: {
  20937. height: math.unit(6, "feet"),
  20938. weight: math.unit(180, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/arokh-sieyes/front.svg",
  20942. extra: 1830 / 1769,
  20943. bottom: 0.01
  20944. }
  20945. },
  20946. },
  20947. [
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(6, "feet")
  20951. },
  20952. {
  20953. name: "Macro",
  20954. height: math.unit(30, "meters"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20961. {
  20962. side: {
  20963. height: math.unit(13 + 1 / 12, "feet"),
  20964. weight: math.unit(8.5, "tonnes"),
  20965. preyCapacity: math.unit(36, "people"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/goldeneye/side.svg",
  20969. extra: 1139/741,
  20970. bottom: 98/1237
  20971. }
  20972. },
  20973. front: {
  20974. height: math.unit(5.1, "feet"),
  20975. weight: math.unit(8.5, "tonnes"),
  20976. preyCapacity: math.unit(36, "people"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/goldeneye/front.svg",
  20980. extra: 635/365,
  20981. bottom: 598/1233
  20982. }
  20983. },
  20984. maw: {
  20985. height: math.unit(6.6, "feet"),
  20986. name: "Maw",
  20987. image: {
  20988. source: "./media/characters/goldeneye/maw.svg"
  20989. }
  20990. },
  20991. headFront: {
  20992. height: math.unit(8, "feet"),
  20993. name: "Head (Front)",
  20994. image: {
  20995. source: "./media/characters/goldeneye/head-front.svg"
  20996. }
  20997. },
  20998. headSide: {
  20999. height: math.unit(6, "feet"),
  21000. name: "Head (Side)",
  21001. image: {
  21002. source: "./media/characters/goldeneye/head-side.svg"
  21003. }
  21004. },
  21005. headBack: {
  21006. height: math.unit(8, "feet"),
  21007. name: "Head (Back)",
  21008. image: {
  21009. source: "./media/characters/goldeneye/head-back.svg"
  21010. }
  21011. },
  21012. paw: {
  21013. height: math.unit(3.4, "feet"),
  21014. name: "Paw",
  21015. image: {
  21016. source: "./media/characters/goldeneye/paw.svg"
  21017. }
  21018. },
  21019. toering: {
  21020. height: math.unit(0.45, "feet"),
  21021. name: "Toering",
  21022. image: {
  21023. source: "./media/characters/goldeneye/toering.svg"
  21024. }
  21025. },
  21026. eyes: {
  21027. height: math.unit(0.5, "feet"),
  21028. name: "Eyes",
  21029. image: {
  21030. source: "./media/characters/goldeneye/eyes.svg"
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(13 + 1 / 12, "feet"),
  21038. default: true
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21044. {
  21045. front: {
  21046. height: math.unit(6 + 1 / 12, "feet"),
  21047. weight: math.unit(210, "lb"),
  21048. name: "Front",
  21049. image: {
  21050. source: "./media/characters/leonardo-lycheborne/front.svg",
  21051. extra: 776/723,
  21052. bottom: 34/810
  21053. }
  21054. },
  21055. side: {
  21056. height: math.unit(6 + 1 / 12, "feet"),
  21057. weight: math.unit(210, "lb"),
  21058. name: "Side",
  21059. image: {
  21060. source: "./media/characters/leonardo-lycheborne/side.svg",
  21061. extra: 780/728,
  21062. bottom: 12/792
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(6 + 1 / 12, "feet"),
  21067. weight: math.unit(210, "lb"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/leonardo-lycheborne/back.svg",
  21071. extra: 775/721,
  21072. bottom: 17/792
  21073. }
  21074. },
  21075. hand: {
  21076. height: math.unit(1.08, "feet"),
  21077. name: "Hand",
  21078. image: {
  21079. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21080. }
  21081. },
  21082. foot: {
  21083. height: math.unit(1.32, "feet"),
  21084. name: "Foot",
  21085. image: {
  21086. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21087. }
  21088. },
  21089. maw: {
  21090. height: math.unit(1, "feet"),
  21091. name: "Maw",
  21092. image: {
  21093. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21094. }
  21095. },
  21096. were: {
  21097. height: math.unit(20, "feet"),
  21098. weight: math.unit(7800, "lb"),
  21099. name: "Were",
  21100. image: {
  21101. source: "./media/characters/leonardo-lycheborne/were.svg",
  21102. extra: 1224/1165,
  21103. bottom: 72/1296
  21104. }
  21105. },
  21106. feral: {
  21107. height: math.unit(7.5, "feet"),
  21108. weight: math.unit(600, "lb"),
  21109. name: "Feral",
  21110. image: {
  21111. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21112. extra: 797/702,
  21113. bottom: 139/936
  21114. }
  21115. },
  21116. taur: {
  21117. height: math.unit(11, "feet"),
  21118. weight: math.unit(3300, "lb"),
  21119. name: "Taur",
  21120. image: {
  21121. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21122. extra: 1271/1197,
  21123. bottom: 47/1318
  21124. }
  21125. },
  21126. barghest: {
  21127. height: math.unit(11, "feet"),
  21128. weight: math.unit(1300, "lb"),
  21129. name: "Barghest",
  21130. image: {
  21131. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21132. extra: 1291/1204,
  21133. bottom: 37/1328
  21134. }
  21135. },
  21136. dick: {
  21137. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21138. name: "Dick",
  21139. image: {
  21140. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21141. }
  21142. },
  21143. dickWere: {
  21144. height: math.unit((20) / 3.8, "feet"),
  21145. name: "Dick (Were)",
  21146. image: {
  21147. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21148. }
  21149. },
  21150. },
  21151. [
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(6 + 1 / 12, "feet"),
  21155. default: true
  21156. },
  21157. ]
  21158. ))
  21159. characterMakers.push(() => makeCharacter(
  21160. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21161. {
  21162. front: {
  21163. height: math.unit(10, "feet"),
  21164. weight: math.unit(350, "lb"),
  21165. name: "Front",
  21166. image: {
  21167. source: "./media/characters/jet/front.svg",
  21168. extra: 2050 / 1980,
  21169. bottom: 0.013
  21170. }
  21171. },
  21172. back: {
  21173. height: math.unit(10, "feet"),
  21174. weight: math.unit(350, "lb"),
  21175. name: "Back",
  21176. image: {
  21177. source: "./media/characters/jet/back.svg",
  21178. extra: 2050 / 1980,
  21179. bottom: 0.013
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Micro",
  21186. height: math.unit(6, "inches")
  21187. },
  21188. {
  21189. name: "Normal",
  21190. height: math.unit(10, "feet"),
  21191. default: true
  21192. },
  21193. {
  21194. name: "Macro",
  21195. height: math.unit(100, "feet")
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(15, "feet"),
  21204. weight: math.unit(2800, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/tanarath/front.svg",
  21208. extra: 2392 / 2220,
  21209. bottom: 0.03
  21210. }
  21211. },
  21212. back: {
  21213. height: math.unit(15, "feet"),
  21214. weight: math.unit(2800, "lb"),
  21215. name: "Back",
  21216. image: {
  21217. source: "./media/characters/tanarath/back.svg",
  21218. extra: 2392 / 2220,
  21219. bottom: 0.03
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(15, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(7 + 1 / 12, "feet"),
  21236. weight: math.unit(175, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/patty-cattybatty/front.svg",
  21240. extra: 908 / 874,
  21241. bottom: 0.025
  21242. }
  21243. },
  21244. },
  21245. [
  21246. {
  21247. name: "Micro",
  21248. height: math.unit(1, "inch")
  21249. },
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(7 + 1 / 12, "feet")
  21253. },
  21254. {
  21255. name: "Mini Macro",
  21256. height: math.unit(155, "feet")
  21257. },
  21258. {
  21259. name: "Macro",
  21260. height: math.unit(1077, "feet")
  21261. },
  21262. {
  21263. name: "Mega Macro",
  21264. height: math.unit(47650, "feet"),
  21265. default: true
  21266. },
  21267. {
  21268. name: "Giga Macro",
  21269. height: math.unit(440, "miles")
  21270. },
  21271. {
  21272. name: "Tera Macro",
  21273. height: math.unit(8700, "miles")
  21274. },
  21275. {
  21276. name: "Planetary Macro",
  21277. height: math.unit(32700, "miles")
  21278. },
  21279. {
  21280. name: "Solar Macro",
  21281. height: math.unit(550000, "miles")
  21282. },
  21283. {
  21284. name: "Celestial Macro",
  21285. height: math.unit(2.5, "AU")
  21286. },
  21287. ]
  21288. ))
  21289. characterMakers.push(() => makeCharacter(
  21290. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21291. {
  21292. front: {
  21293. height: math.unit(4 + 5 / 12, "feet"),
  21294. weight: math.unit(90, "lb"),
  21295. name: "Front",
  21296. image: {
  21297. source: "./media/characters/cappu/front.svg",
  21298. extra: 1247 / 1152,
  21299. bottom: 0.012
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(4 + 5 / 12, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21313. {
  21314. frontDressed: {
  21315. height: math.unit(70, "cm"),
  21316. weight: math.unit(6, "kg"),
  21317. name: "Front (Dressed)",
  21318. image: {
  21319. source: "./media/characters/sebi/front-dressed.svg",
  21320. extra: 713.5 / 686.5,
  21321. bottom: 0.003
  21322. }
  21323. },
  21324. front: {
  21325. height: math.unit(70, "cm"),
  21326. weight: math.unit(5, "kg"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/sebi/front.svg",
  21330. extra: 713.5 / 686.5,
  21331. bottom: 0.003
  21332. }
  21333. }
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(70, "cm"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(8, "meters")
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(6, "feet"),
  21352. weight: math.unit(150, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/typhek/front.svg",
  21356. extra: 1948 / 1929,
  21357. bottom: 0.025
  21358. }
  21359. },
  21360. side: {
  21361. height: math.unit(6, "feet"),
  21362. weight: math.unit(150, "lb"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/typhek/side.svg",
  21366. extra: 2034 / 2010,
  21367. bottom: 0.003
  21368. }
  21369. },
  21370. back: {
  21371. height: math.unit(6, "feet"),
  21372. weight: math.unit(150, "lb"),
  21373. name: "Back",
  21374. image: {
  21375. source: "./media/characters/typhek/back.svg",
  21376. extra: 2005 / 1978,
  21377. bottom: 0.004
  21378. }
  21379. },
  21380. palm: {
  21381. height: math.unit(1.2, "feet"),
  21382. name: "Palm",
  21383. image: {
  21384. source: "./media/characters/typhek/palm.svg"
  21385. }
  21386. },
  21387. fist: {
  21388. height: math.unit(1.1, "feet"),
  21389. name: "Fist",
  21390. image: {
  21391. source: "./media/characters/typhek/fist.svg"
  21392. }
  21393. },
  21394. foot: {
  21395. height: math.unit(1.57, "feet"),
  21396. name: "Foot",
  21397. image: {
  21398. source: "./media/characters/typhek/foot.svg"
  21399. }
  21400. },
  21401. sole: {
  21402. height: math.unit(2.05, "feet"),
  21403. name: "Sole",
  21404. image: {
  21405. source: "./media/characters/typhek/sole.svg"
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Macro",
  21412. height: math.unit(40, "stories"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Megamacro",
  21417. height: math.unit(1, "mile")
  21418. },
  21419. {
  21420. name: "Gigamacro",
  21421. height: math.unit(4000, "solarradii")
  21422. },
  21423. {
  21424. name: "Universal",
  21425. height: math.unit(1.1, "universes")
  21426. }
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21431. {
  21432. side: {
  21433. height: math.unit(5 + 7 / 12, "feet"),
  21434. weight: math.unit(150, "lb"),
  21435. name: "Side",
  21436. image: {
  21437. source: "./media/characters/kassy/side.svg",
  21438. extra: 1280 / 1225,
  21439. bottom: 0.002
  21440. }
  21441. },
  21442. front: {
  21443. height: math.unit(5 + 7 / 12, "feet"),
  21444. weight: math.unit(150, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/kassy/front.svg",
  21448. extra: 1280 / 1225,
  21449. bottom: 0.025
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(5 + 7 / 12, "feet"),
  21454. weight: math.unit(150, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/kassy/back.svg",
  21458. extra: 1280 / 1225,
  21459. bottom: 0.002
  21460. }
  21461. },
  21462. foot: {
  21463. height: math.unit(1.266, "feet"),
  21464. name: "Foot",
  21465. image: {
  21466. source: "./media/characters/kassy/foot.svg"
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Normal",
  21473. height: math.unit(5 + 7 / 12, "feet")
  21474. },
  21475. {
  21476. name: "Macro",
  21477. height: math.unit(137, "feet"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Megamacro",
  21482. height: math.unit(1, "mile")
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(6 + 1 / 12, "feet"),
  21491. weight: math.unit(200, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/neil/front.svg",
  21495. extra: 1326 / 1250,
  21496. bottom: 0.023
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Normal",
  21503. height: math.unit(6 + 1 / 12, "feet"),
  21504. default: true
  21505. },
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(200, "feet")
  21509. },
  21510. ]
  21511. ))
  21512. characterMakers.push(() => makeCharacter(
  21513. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21514. {
  21515. front: {
  21516. height: math.unit(5 + 9 / 12, "feet"),
  21517. weight: math.unit(190, "lb"),
  21518. name: "Front",
  21519. image: {
  21520. source: "./media/characters/atticus/front.svg",
  21521. extra: 2934 / 2785,
  21522. bottom: 0.025
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(5 + 9 / 12, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(180, "feet")
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21540. {
  21541. side: {
  21542. height: math.unit(9, "feet"),
  21543. weight: math.unit(650, "lb"),
  21544. name: "Side",
  21545. image: {
  21546. source: "./media/characters/milo/side.svg",
  21547. extra: 2644 / 2310,
  21548. bottom: 0.032
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Normal",
  21555. height: math.unit(9, "feet"),
  21556. default: true
  21557. },
  21558. {
  21559. name: "Macro",
  21560. height: math.unit(300, "feet")
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21566. {
  21567. side: {
  21568. height: math.unit(8, "meters"),
  21569. weight: math.unit(90000, "kg"),
  21570. name: "Side",
  21571. image: {
  21572. source: "./media/characters/ijzer/side.svg",
  21573. extra: 2756 / 1600,
  21574. bottom: 0.01
  21575. }
  21576. },
  21577. },
  21578. [
  21579. {
  21580. name: "Small",
  21581. height: math.unit(3, "meters")
  21582. },
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(8, "meters"),
  21586. default: true
  21587. },
  21588. {
  21589. name: "Normal+",
  21590. height: math.unit(10, "meters")
  21591. },
  21592. {
  21593. name: "Bigger",
  21594. height: math.unit(24, "meters")
  21595. },
  21596. {
  21597. name: "Huge",
  21598. height: math.unit(80, "meters")
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21604. {
  21605. front: {
  21606. height: math.unit(6 + 2 / 12, "feet"),
  21607. weight: math.unit(153, "lb"),
  21608. name: "Front",
  21609. image: {
  21610. source: "./media/characters/luca-cervicum/front.svg",
  21611. extra: 370 / 327,
  21612. bottom: 0.015
  21613. }
  21614. },
  21615. back: {
  21616. height: math.unit(6 + 2 / 12, "feet"),
  21617. weight: math.unit(153, "lb"),
  21618. name: "Back",
  21619. image: {
  21620. source: "./media/characters/luca-cervicum/back.svg",
  21621. extra: 367 / 333,
  21622. bottom: 0.005
  21623. }
  21624. },
  21625. frontGear: {
  21626. height: math.unit(6 + 2 / 12, "feet"),
  21627. weight: math.unit(173, "lb"),
  21628. name: "Front (Gear)",
  21629. image: {
  21630. source: "./media/characters/luca-cervicum/front-gear.svg",
  21631. extra: 377 / 333,
  21632. bottom: 0.006
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(6 + 2 / 12, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(6 + 1 / 12, "feet"),
  21649. weight: math.unit(304, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/oliver/front.svg",
  21653. extra: 157 / 143,
  21654. bottom: 0.08
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(6 + 1 / 12, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(5 + 7 / 12, "feet"),
  21671. weight: math.unit(140, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/shane/front.svg",
  21675. extra: 304 / 289,
  21676. bottom: 0.005
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(5 + 7 / 12, "feet"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(5 + 9 / 12, "feet"),
  21693. weight: math.unit(178, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/shin/front.svg",
  21697. extra: 159 / 151,
  21698. bottom: 0.015
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(5 + 9 / 12, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(5 + 10 / 12, "feet"),
  21715. weight: math.unit(168, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/xerxes/front.svg",
  21719. extra: 282 / 260,
  21720. bottom: 0.045
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(5 + 10 / 12, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(6 + 7 / 12, "feet"),
  21737. weight: math.unit(208, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/chaska/front.svg",
  21741. extra: 332 / 319,
  21742. bottom: 0.015
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(6 + 7 / 12, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21756. {
  21757. front: {
  21758. height: math.unit(5 + 8 / 12, "feet"),
  21759. weight: math.unit(208, "lb"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/enuk/front.svg",
  21763. extra: 437 / 406,
  21764. bottom: 0.02
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(5 + 8 / 12, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(5 + 10 / 12, "feet"),
  21781. weight: math.unit(252, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/bruun/front.svg",
  21785. extra: 197 / 187,
  21786. bottom: 0.012
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5 + 10 / 12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(6 + 10 / 12, "feet"),
  21803. weight: math.unit(255, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/alexeev/front.svg",
  21807. extra: 213 / 200,
  21808. bottom: 0.05
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(6 + 10 / 12, "feet"),
  21816. default: true
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(2 + 8 / 12, "feet"),
  21825. weight: math.unit(22, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/evelyn/front.svg",
  21829. extra: 208 / 180
  21830. }
  21831. },
  21832. },
  21833. [
  21834. {
  21835. name: "Normal",
  21836. height: math.unit(2 + 8 / 12, "feet"),
  21837. default: true
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(5 + 9 / 12, "feet"),
  21846. weight: math.unit(139, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/inca/front.svg",
  21850. extra: 294 / 291,
  21851. bottom: 0.03
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(5 + 9 / 12, "feet"),
  21859. default: true
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21865. {
  21866. front: {
  21867. height: math.unit(6 + 3 / 12, "feet"),
  21868. weight: math.unit(185, "lb"),
  21869. name: "Front",
  21870. image: {
  21871. source: "./media/characters/mera/front.svg",
  21872. extra: 291 / 277,
  21873. bottom: 0.03
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(6 + 3 / 12, "feet"),
  21881. default: true
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(6 + 7 / 12, "feet"),
  21890. weight: math.unit(160, "lb"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/ceres/front.svg",
  21894. extra: 1023 / 950,
  21895. bottom: 0.027
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(6 + 7 / 12, "feet"),
  21900. weight: math.unit(160, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/ceres/back.svg",
  21904. extra: 1023 / 950
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(6 + 7 / 12, "feet"),
  21912. default: true
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(5 + 10 / 12, "feet"),
  21921. weight: math.unit(150, "lb"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/kris/front.svg",
  21925. extra: 885 / 803,
  21926. bottom: 0.03
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(5 + 10 / 12, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(7, "feet"),
  21943. weight: math.unit(120, "kg"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/taluthus/front.svg",
  21947. extra: 903 / 833,
  21948. bottom: 0.015
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Normal",
  21955. height: math.unit(7, "feet"),
  21956. default: true
  21957. },
  21958. {
  21959. name: "Macro",
  21960. height: math.unit(300, "feet")
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(5 + 9 / 12, "feet"),
  21969. weight: math.unit(145, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/dawn/front.svg",
  21973. extra: 2094 / 2016,
  21974. bottom: 0.025
  21975. }
  21976. },
  21977. back: {
  21978. height: math.unit(5 + 9 / 12, "feet"),
  21979. weight: math.unit(160, "lb"),
  21980. name: "Back",
  21981. image: {
  21982. source: "./media/characters/dawn/back.svg",
  21983. extra: 2112 / 2080,
  21984. bottom: 0.005
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(6 + 7 / 12, "feet"),
  21992. default: true
  21993. },
  21994. ]
  21995. ))
  21996. characterMakers.push(() => makeCharacter(
  21997. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21998. {
  21999. anthro: {
  22000. height: math.unit(8 + 3 / 12, "feet"),
  22001. weight: math.unit(450, "lb"),
  22002. name: "Anthro",
  22003. image: {
  22004. source: "./media/characters/arador/anthro.svg",
  22005. extra: 1835 / 1718,
  22006. bottom: 0.025
  22007. }
  22008. },
  22009. feral: {
  22010. height: math.unit(4, "feet"),
  22011. weight: math.unit(200, "lb"),
  22012. name: "Feral",
  22013. image: {
  22014. source: "./media/characters/arador/feral.svg",
  22015. extra: 1683 / 1514,
  22016. bottom: 0.07
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(8 + 3 / 12, "feet")
  22024. },
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(82.5, "feet"),
  22028. default: true
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22034. {
  22035. front: {
  22036. height: math.unit(5 + 10 / 12, "feet"),
  22037. weight: math.unit(125, "lb"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/dharsi/front.svg",
  22041. extra: 716 / 630,
  22042. bottom: 0.035
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Nano",
  22049. height: math.unit(100, "nm")
  22050. },
  22051. {
  22052. name: "Micro",
  22053. height: math.unit(2, "inches")
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 10 / 12, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(1000, "feet")
  22063. },
  22064. {
  22065. name: "Megamacro",
  22066. height: math.unit(10, "miles")
  22067. },
  22068. {
  22069. name: "Gigamacro",
  22070. height: math.unit(3000, "miles")
  22071. },
  22072. {
  22073. name: "Teramacro",
  22074. height: math.unit(500000, "miles")
  22075. },
  22076. {
  22077. name: "Teramacro+",
  22078. height: math.unit(30, "galaxies")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(6, "feet"),
  22087. weight: math.unit(150, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/deathy/front.svg",
  22091. extra: 1552 / 1463,
  22092. bottom: 0.025
  22093. }
  22094. },
  22095. side: {
  22096. height: math.unit(6, "feet"),
  22097. weight: math.unit(150, "lb"),
  22098. name: "Side",
  22099. image: {
  22100. source: "./media/characters/deathy/side.svg",
  22101. extra: 1604 / 1455,
  22102. bottom: 0.025
  22103. }
  22104. },
  22105. back: {
  22106. height: math.unit(6, "feet"),
  22107. weight: math.unit(150, "lb"),
  22108. name: "Back",
  22109. image: {
  22110. source: "./media/characters/deathy/back.svg",
  22111. extra: 1580 / 1463,
  22112. bottom: 0.005
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Micro",
  22119. height: math.unit(5, "millimeters")
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(6 + 5 / 12, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22130. {
  22131. front: {
  22132. height: math.unit(16, "feet"),
  22133. weight: math.unit(4000, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/juniper/front.svg",
  22137. bottom: 0.04
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(16, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(6, "feet"),
  22154. weight: math.unit(150, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/hipster/front.svg",
  22158. extra: 1312 / 1209,
  22159. bottom: 0.025
  22160. }
  22161. },
  22162. back: {
  22163. height: math.unit(6, "feet"),
  22164. weight: math.unit(150, "lb"),
  22165. name: "Back",
  22166. image: {
  22167. source: "./media/characters/hipster/back.svg",
  22168. extra: 1281 / 1196,
  22169. bottom: 0.01
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Micro",
  22176. height: math.unit(1, "mm")
  22177. },
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(4, "inches"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(500, "feet")
  22186. },
  22187. {
  22188. name: "Megamacro",
  22189. height: math.unit(1000, "miles")
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(6, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/tendirmuldr/front.svg",
  22202. extra: 1878 / 1772,
  22203. bottom: 0.015
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Megamacro",
  22210. height: math.unit(1500, "miles"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22217. {
  22218. front: {
  22219. height: math.unit(14, "feet"),
  22220. weight: math.unit(12000, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/mort/front.svg",
  22224. extra: 365 / 318,
  22225. bottom: 0.01
  22226. }
  22227. },
  22228. side: {
  22229. height: math.unit(14, "feet"),
  22230. weight: math.unit(12000, "lb"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/mort/side.svg",
  22234. extra: 365 / 318,
  22235. bottom: 0.052
  22236. },
  22237. default: true
  22238. },
  22239. back: {
  22240. height: math.unit(14, "feet"),
  22241. weight: math.unit(12000, "lb"),
  22242. name: "Back",
  22243. image: {
  22244. source: "./media/characters/mort/back.svg",
  22245. extra: 371 / 332,
  22246. bottom: 0.18
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(14, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22260. {
  22261. front: {
  22262. height: math.unit(8, "feet"),
  22263. weight: math.unit(1, "ton"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/lycoa/front.svg",
  22267. extra: 1836/1728,
  22268. bottom: 81/1917
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(8, "feet"),
  22273. weight: math.unit(1, "ton"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/lycoa/back.svg",
  22277. extra: 1785/1720,
  22278. bottom: 91/1876
  22279. }
  22280. },
  22281. head: {
  22282. height: math.unit(1.6243, "feet"),
  22283. name: "Head",
  22284. image: {
  22285. source: "./media/characters/lycoa/head.svg",
  22286. extra: 1011/782,
  22287. bottom: 0/1011
  22288. }
  22289. },
  22290. tailmaw: {
  22291. height: math.unit(1.9, "feet"),
  22292. name: "Tailmaw",
  22293. image: {
  22294. source: "./media/characters/lycoa/tailmaw.svg"
  22295. }
  22296. },
  22297. tentacles: {
  22298. height: math.unit(2.1, "feet"),
  22299. name: "Tentacles",
  22300. image: {
  22301. source: "./media/characters/lycoa/tentacles.svg"
  22302. }
  22303. },
  22304. dick: {
  22305. height: math.unit(1.73, "feet"),
  22306. name: "Dick",
  22307. image: {
  22308. source: "./media/characters/lycoa/dick.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(8, "feet"),
  22316. default: true
  22317. },
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(30, "feet")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22326. {
  22327. front: {
  22328. height: math.unit(4 + 2 / 12, "feet"),
  22329. weight: math.unit(70, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/naldara/front.svg",
  22333. extra: 1664/1387,
  22334. bottom: 81/1745
  22335. },
  22336. form: "anthro",
  22337. default: true
  22338. },
  22339. naga: {
  22340. height: math.unit(20, "feet"),
  22341. weight: math.unit(15000, "kg"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/naldara/naga.svg",
  22345. extra: 1590/1396,
  22346. bottom: 285/1875
  22347. },
  22348. form: "naga",
  22349. default: true
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(4 + 2 / 12, "feet"),
  22356. form: "anthro",
  22357. default: true
  22358. },
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(20, "feet"),
  22362. form: "naga",
  22363. default: true
  22364. },
  22365. ],
  22366. {
  22367. "anthro": {
  22368. name: "Anthro",
  22369. default: true
  22370. },
  22371. "naga": {
  22372. name: "Naga"
  22373. }
  22374. }
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(13 + 7 / 12, "feet"),
  22381. weight: math.unit(1500, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/briar/front.svg",
  22385. extra: 1223/1157,
  22386. bottom: 123/1346
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(13 + 7 / 12, "feet"),
  22394. default: true
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22400. {
  22401. side: {
  22402. height: math.unit(16, "feet"),
  22403. weight: math.unit(500, "lb"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/vanguard/side.svg",
  22407. extra: 1022/914,
  22408. bottom: 30/1052
  22409. }
  22410. },
  22411. sideAlt: {
  22412. height: math.unit(10, "feet"),
  22413. weight: math.unit(500, "lb"),
  22414. name: "Side (Alt)",
  22415. image: {
  22416. source: "./media/characters/vanguard/side-alt.svg",
  22417. extra: 502 / 425,
  22418. bottom: 0.087
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Normal",
  22425. height: math.unit(17.71, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(7.5, "feet"),
  22435. weight: math.unit(2, "lb"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/artemis/work-safe-front.svg",
  22439. extra: 1192 / 1075,
  22440. bottom: 0.07
  22441. },
  22442. form: "work-safe",
  22443. default: true
  22444. },
  22445. frontNsfw: {
  22446. height: math.unit(7.5, "feet"),
  22447. weight: math.unit(2, "lb"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/artemis/calibrating-front.svg",
  22451. extra: 1192 / 1075,
  22452. bottom: 0.07
  22453. },
  22454. form: "calibrating",
  22455. default: true
  22456. },
  22457. frontNsfwer: {
  22458. height: math.unit(7.5, "feet"),
  22459. weight: math.unit(2, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/artemis/oversize-load-front.svg",
  22463. extra: 1192 / 1075,
  22464. bottom: 0.07
  22465. },
  22466. form: "oversize-load",
  22467. default: true
  22468. },
  22469. side: {
  22470. height: math.unit(7.5, "feet"),
  22471. weight: math.unit(2, "lb"),
  22472. name: "Side",
  22473. image: {
  22474. source: "./media/characters/artemis/work-safe-side.svg",
  22475. extra: 1192 / 1075,
  22476. bottom: 0.07
  22477. },
  22478. form: "work-safe"
  22479. },
  22480. sideNsfw: {
  22481. height: math.unit(7.5, "feet"),
  22482. weight: math.unit(2, "lb"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/artemis/calibrating-side.svg",
  22486. extra: 1192 / 1075,
  22487. bottom: 0.07
  22488. },
  22489. form: "calibrating"
  22490. },
  22491. sideNsfwer: {
  22492. height: math.unit(7.5, "feet"),
  22493. weight: math.unit(2, "lb"),
  22494. name: "Side",
  22495. image: {
  22496. source: "./media/characters/artemis/oversize-load-side.svg",
  22497. extra: 1192 / 1075,
  22498. bottom: 0.07
  22499. },
  22500. form: "oversize-load"
  22501. },
  22502. maw: {
  22503. height: math.unit(1.1, "feet"),
  22504. name: "Maw",
  22505. image: {
  22506. source: "./media/characters/artemis/maw.svg"
  22507. },
  22508. form: "work-safe"
  22509. },
  22510. stomach: {
  22511. height: math.unit(0.95, "feet"),
  22512. name: "Stomach",
  22513. image: {
  22514. source: "./media/characters/artemis/stomach.svg"
  22515. },
  22516. form: "work-safe"
  22517. },
  22518. dickCanine: {
  22519. height: math.unit(1, "feet"),
  22520. name: "Dick (Canine)",
  22521. image: {
  22522. source: "./media/characters/artemis/dick-canine.svg"
  22523. },
  22524. form: "calibrating"
  22525. },
  22526. dickEquine: {
  22527. height: math.unit(0.85, "feet"),
  22528. name: "Dick (Equine)",
  22529. image: {
  22530. source: "./media/characters/artemis/dick-equine.svg"
  22531. },
  22532. form: "calibrating"
  22533. },
  22534. dickExotic: {
  22535. height: math.unit(0.85, "feet"),
  22536. name: "Dick (Exotic)",
  22537. image: {
  22538. source: "./media/characters/artemis/dick-exotic.svg"
  22539. },
  22540. form: "calibrating"
  22541. },
  22542. dickCanineBigger: {
  22543. height: math.unit(1 * 1.33, "feet"),
  22544. name: "Dick (Canine)",
  22545. image: {
  22546. source: "./media/characters/artemis/dick-canine.svg"
  22547. },
  22548. form: "oversize-load"
  22549. },
  22550. dickEquineBigger: {
  22551. height: math.unit(0.85 * 1.33, "feet"),
  22552. name: "Dick (Equine)",
  22553. image: {
  22554. source: "./media/characters/artemis/dick-equine.svg"
  22555. },
  22556. form: "oversize-load"
  22557. },
  22558. dickExoticBigger: {
  22559. height: math.unit(0.85 * 1.33, "feet"),
  22560. name: "Dick (Exotic)",
  22561. image: {
  22562. source: "./media/characters/artemis/dick-exotic.svg"
  22563. },
  22564. form: "oversize-load"
  22565. },
  22566. },
  22567. [
  22568. {
  22569. name: "Normal",
  22570. height: math.unit(7.5, "feet"),
  22571. form: "work-safe",
  22572. default: true
  22573. },
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(7.5, "feet"),
  22577. form: "calibrating",
  22578. default: true
  22579. },
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(7.5, "feet"),
  22583. form: "oversize-load",
  22584. default: true
  22585. },
  22586. {
  22587. name: "Enlarged",
  22588. height: math.unit(12, "feet"),
  22589. form: "work-safe",
  22590. },
  22591. {
  22592. name: "Enlarged",
  22593. height: math.unit(12, "feet"),
  22594. form: "calibrating",
  22595. },
  22596. {
  22597. name: "Enlarged",
  22598. height: math.unit(12, "feet"),
  22599. form: "oversize-load",
  22600. },
  22601. ],
  22602. {
  22603. "work-safe": {
  22604. name: "Work-Safe",
  22605. default: true
  22606. },
  22607. "calibrating": {
  22608. name: "Calibrating"
  22609. },
  22610. "oversize-load": {
  22611. name: "Oversize Load"
  22612. }
  22613. }
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(5 + 3 / 12, "feet"),
  22620. weight: math.unit(160, "lb"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/kira/front.svg",
  22624. extra: 906 / 786,
  22625. bottom: 0.01
  22626. }
  22627. },
  22628. back: {
  22629. height: math.unit(5 + 3 / 12, "feet"),
  22630. weight: math.unit(160, "lb"),
  22631. name: "Back",
  22632. image: {
  22633. source: "./media/characters/kira/back.svg",
  22634. extra: 882 / 757,
  22635. bottom: 0.005
  22636. }
  22637. },
  22638. frontDressed: {
  22639. height: math.unit(5 + 3 / 12, "feet"),
  22640. weight: math.unit(160, "lb"),
  22641. name: "Front (Dressed)",
  22642. image: {
  22643. source: "./media/characters/kira/front-dressed.svg",
  22644. extra: 906 / 786,
  22645. bottom: 0.01
  22646. }
  22647. },
  22648. beans: {
  22649. height: math.unit(0.92, "feet"),
  22650. name: "Beans",
  22651. image: {
  22652. source: "./media/characters/kira/beans.svg"
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Normal",
  22659. height: math.unit(5 + 3 / 12, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(5 + 4 / 12, "feet"),
  22669. weight: math.unit(145, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/scramble/front.svg",
  22673. extra: 763 / 727,
  22674. bottom: 0.05
  22675. }
  22676. },
  22677. back: {
  22678. height: math.unit(5 + 4 / 12, "feet"),
  22679. weight: math.unit(145, "lb"),
  22680. name: "Back",
  22681. image: {
  22682. source: "./media/characters/scramble/back.svg",
  22683. extra: 826 / 737,
  22684. bottom: 0.002
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(5 + 4 / 12, "feet"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22698. {
  22699. side: {
  22700. height: math.unit(6 + 2 / 12, "feet"),
  22701. weight: math.unit(190, "lb"),
  22702. name: "Side",
  22703. image: {
  22704. source: "./media/characters/biscuit/side.svg",
  22705. extra: 858 / 791,
  22706. bottom: 0.044
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(6 + 2 / 12, "feet"),
  22714. default: true
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(5 + 2 / 12, "feet"),
  22723. weight: math.unit(120, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/poffin/front.svg",
  22727. extra: 786 / 680,
  22728. bottom: 0.005
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Normal",
  22735. height: math.unit(5 + 2 / 12, "feet"),
  22736. default: true
  22737. },
  22738. ]
  22739. ))
  22740. characterMakers.push(() => makeCharacter(
  22741. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22742. {
  22743. front: {
  22744. height: math.unit(6 + 3 / 12, "feet"),
  22745. weight: math.unit(519, "lb"),
  22746. name: "Front",
  22747. image: {
  22748. source: "./media/characters/dhari/front.svg",
  22749. extra: 1048 / 946,
  22750. bottom: 0.015
  22751. }
  22752. },
  22753. back: {
  22754. height: math.unit(6 + 3 / 12, "feet"),
  22755. weight: math.unit(519, "lb"),
  22756. name: "Back",
  22757. image: {
  22758. source: "./media/characters/dhari/back.svg",
  22759. extra: 1048 / 931,
  22760. bottom: 0.005
  22761. }
  22762. },
  22763. frontDressed: {
  22764. height: math.unit(6 + 3 / 12, "feet"),
  22765. weight: math.unit(519, "lb"),
  22766. name: "Front (Dressed)",
  22767. image: {
  22768. source: "./media/characters/dhari/front-dressed.svg",
  22769. extra: 1713 / 1546,
  22770. bottom: 0.02
  22771. }
  22772. },
  22773. backDressed: {
  22774. height: math.unit(6 + 3 / 12, "feet"),
  22775. weight: math.unit(519, "lb"),
  22776. name: "Back (Dressed)",
  22777. image: {
  22778. source: "./media/characters/dhari/back-dressed.svg",
  22779. extra: 1699 / 1537,
  22780. bottom: 0.01
  22781. }
  22782. },
  22783. maw: {
  22784. height: math.unit(0.95, "feet"),
  22785. name: "Maw",
  22786. image: {
  22787. source: "./media/characters/dhari/maw.svg"
  22788. }
  22789. },
  22790. wereFront: {
  22791. height: math.unit(12 + 8 / 12, "feet"),
  22792. weight: math.unit(4000, "lb"),
  22793. name: "Front (Were)",
  22794. image: {
  22795. source: "./media/characters/dhari/were-front.svg",
  22796. extra: 1065 / 969,
  22797. bottom: 0.015
  22798. }
  22799. },
  22800. wereBack: {
  22801. height: math.unit(12 + 8 / 12, "feet"),
  22802. weight: math.unit(4000, "lb"),
  22803. name: "Back (Were)",
  22804. image: {
  22805. source: "./media/characters/dhari/were-back.svg",
  22806. extra: 1065 / 969,
  22807. bottom: 0.012
  22808. }
  22809. },
  22810. wereMaw: {
  22811. height: math.unit(0.625, "meters"),
  22812. name: "Maw (Were)",
  22813. image: {
  22814. source: "./media/characters/dhari/were-maw.svg"
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(6 + 3 / 12, "feet"),
  22822. default: true
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22828. {
  22829. anthro: {
  22830. height: math.unit(5 + 7 / 12, "feet"),
  22831. weight: math.unit(175, "lb"),
  22832. name: "Anthro",
  22833. image: {
  22834. source: "./media/characters/rena-dyne/anthro.svg",
  22835. extra: 1849 / 1785,
  22836. bottom: 0.005
  22837. }
  22838. },
  22839. taur: {
  22840. height: math.unit(15 + 6 / 12, "feet"),
  22841. weight: math.unit(8000, "lb"),
  22842. name: "Taur",
  22843. image: {
  22844. source: "./media/characters/rena-dyne/taur.svg",
  22845. extra: 2315 / 2234,
  22846. bottom: 0.033
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(5 + 7 / 12, "feet"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(8, "feet"),
  22863. weight: math.unit(600, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/weremeep/front.svg",
  22867. extra: 970/849,
  22868. bottom: 7/977
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(8, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Lorg",
  22880. height: math.unit(12, "feet")
  22881. },
  22882. {
  22883. name: "Oh Lawd She Comin'",
  22884. height: math.unit(20, "feet")
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22890. {
  22891. front: {
  22892. height: math.unit(4, "feet"),
  22893. weight: math.unit(90, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/reza/front.svg",
  22897. extra: 1183 / 1111,
  22898. bottom: 0.017
  22899. }
  22900. },
  22901. back: {
  22902. height: math.unit(4, "feet"),
  22903. weight: math.unit(90, "lb"),
  22904. name: "Back",
  22905. image: {
  22906. source: "./media/characters/reza/back.svg",
  22907. extra: 1183 / 1111,
  22908. bottom: 0.01
  22909. }
  22910. },
  22911. drake: {
  22912. height: math.unit(30, "feet"),
  22913. weight: math.unit(246960, "lb"),
  22914. name: "Drake",
  22915. image: {
  22916. source: "./media/characters/reza/drake.svg",
  22917. extra: 2350 / 2024,
  22918. bottom: 60.7 / 2403
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(4, "feet"),
  22926. default: true
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22932. {
  22933. side: {
  22934. height: math.unit(15, "feet"),
  22935. weight: math.unit(14, "tons"),
  22936. name: "Side",
  22937. image: {
  22938. source: "./media/characters/athea/side.svg",
  22939. extra: 960 / 540,
  22940. bottom: 0.003
  22941. }
  22942. },
  22943. sitting: {
  22944. height: math.unit(6 * 2.85, "feet"),
  22945. weight: math.unit(14, "tons"),
  22946. name: "Sitting",
  22947. image: {
  22948. source: "./media/characters/athea/sitting.svg",
  22949. extra: 621 / 581,
  22950. bottom: 0.075
  22951. }
  22952. },
  22953. maw: {
  22954. height: math.unit(7.59498031496063, "feet"),
  22955. name: "Maw",
  22956. image: {
  22957. source: "./media/characters/athea/maw.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Lap Cat",
  22964. height: math.unit(2.5, "feet")
  22965. },
  22966. {
  22967. name: "Minimacro",
  22968. height: math.unit(15, "feet"),
  22969. default: true
  22970. },
  22971. {
  22972. name: "Macro",
  22973. height: math.unit(120, "feet")
  22974. },
  22975. {
  22976. name: "Macro+",
  22977. height: math.unit(640, "feet")
  22978. },
  22979. {
  22980. name: "Colossus",
  22981. height: math.unit(2.2, "miles")
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(8 + 8 / 12, "feet"),
  22990. weight: math.unit(130, "kg"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/seroko/front.svg",
  22994. extra: 1385 / 1280,
  22995. bottom: 0.025
  22996. }
  22997. },
  22998. back: {
  22999. height: math.unit(8 + 8 / 12, "feet"),
  23000. weight: math.unit(130, "kg"),
  23001. name: "Back",
  23002. image: {
  23003. source: "./media/characters/seroko/back.svg",
  23004. extra: 1369 / 1238,
  23005. bottom: 0.018
  23006. }
  23007. },
  23008. frontDressed: {
  23009. height: math.unit(8 + 8 / 12, "feet"),
  23010. weight: math.unit(130, "kg"),
  23011. name: "Front (Dressed)",
  23012. image: {
  23013. source: "./media/characters/seroko/front-dressed.svg",
  23014. extra: 1366 / 1275,
  23015. bottom: 0.03
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(8 + 8 / 12, "feet"),
  23023. default: true
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(5.5, "feet"),
  23032. weight: math.unit(160, "lb"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/quatzi/front.svg",
  23036. extra: 2346 / 2242,
  23037. bottom: 0.015
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Normal",
  23044. height: math.unit(5.5, "feet"),
  23045. default: true
  23046. },
  23047. {
  23048. name: "Big",
  23049. height: math.unit(7.7, "feet")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(5 + 11 / 12, "feet"),
  23058. weight: math.unit(180, "lb"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/sen/front.svg",
  23062. extra: 1321 / 1254,
  23063. bottom: 0.015
  23064. }
  23065. },
  23066. side: {
  23067. height: math.unit(5 + 11 / 12, "feet"),
  23068. weight: math.unit(180, "lb"),
  23069. name: "Side",
  23070. image: {
  23071. source: "./media/characters/sen/side.svg",
  23072. extra: 1321 / 1254,
  23073. bottom: 0.007
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(5 + 11 / 12, "feet"),
  23078. weight: math.unit(180, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/sen/back.svg",
  23082. extra: 1321 / 1254
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(5 + 11 / 12, "feet"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(166.6, "cm"),
  23099. weight: math.unit(66.6, "kg"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/fruity/front.svg",
  23103. extra: 1510 / 1386,
  23104. bottom: 0.04
  23105. }
  23106. },
  23107. back: {
  23108. height: math.unit(166.6, "cm"),
  23109. weight: math.unit(66.6, "lb"),
  23110. name: "Back",
  23111. image: {
  23112. source: "./media/characters/fruity/back.svg",
  23113. extra: 1563 / 1435,
  23114. bottom: 0.005
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(166.6, "cm"),
  23122. default: true
  23123. },
  23124. {
  23125. name: "Demonic",
  23126. height: math.unit(166.6, "feet")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23132. {
  23133. side: {
  23134. height: math.unit(10, "feet"),
  23135. weight: math.unit(500, "lb"),
  23136. name: "Side",
  23137. image: {
  23138. source: "./media/characters/zost/side.svg",
  23139. extra: 2870/2533,
  23140. bottom: 252/3122
  23141. }
  23142. },
  23143. mawFront: {
  23144. height: math.unit(1.08, "meters"),
  23145. name: "Maw (Front)",
  23146. image: {
  23147. source: "./media/characters/zost/maw-front.svg"
  23148. }
  23149. },
  23150. mawSide: {
  23151. height: math.unit(2.66, "feet"),
  23152. name: "Maw (Side)",
  23153. image: {
  23154. source: "./media/characters/zost/maw-side.svg"
  23155. }
  23156. },
  23157. wingspan: {
  23158. height: math.unit(7.4, "feet"),
  23159. name: "Wingspan",
  23160. image: {
  23161. source: "./media/characters/zost/wingspan.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(10, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(5 + 4 / 12, "feet"),
  23178. weight: math.unit(120, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/luci/front.svg",
  23182. extra: 1985 / 1884,
  23183. bottom: 0.04
  23184. }
  23185. },
  23186. back: {
  23187. height: math.unit(5 + 4 / 12, "feet"),
  23188. weight: math.unit(120, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/luci/back.svg",
  23192. extra: 1892 / 1791,
  23193. bottom: 0.002
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(5 + 4 / 12, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(1500, "feet"),
  23210. weight: math.unit(3.8e6, "tons"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/2th/front.svg",
  23214. extra: 3489 / 3350,
  23215. bottom: 0.1
  23216. }
  23217. },
  23218. foot: {
  23219. height: math.unit(461, "feet"),
  23220. name: "Foot",
  23221. image: {
  23222. source: "./media/characters/2th/foot.svg"
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "\"Micro\"",
  23229. height: math.unit(15 + 7 / 12, "feet")
  23230. },
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(1500, "feet"),
  23234. default: true
  23235. },
  23236. {
  23237. name: "Macro",
  23238. height: math.unit(5000, "feet")
  23239. },
  23240. {
  23241. name: "Megamacro",
  23242. height: math.unit(15, "miles")
  23243. },
  23244. {
  23245. name: "Gigamacro",
  23246. height: math.unit(4000, "miles")
  23247. },
  23248. {
  23249. name: "Galactic",
  23250. height: math.unit(50, "AU")
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(5 + 6 / 12, "feet"),
  23259. weight: math.unit(220, "lb"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/amethyst/front.svg",
  23263. extra: 2078 / 2040,
  23264. bottom: 0.045
  23265. }
  23266. },
  23267. back: {
  23268. height: math.unit(5 + 6 / 12, "feet"),
  23269. weight: math.unit(220, "lb"),
  23270. name: "Back",
  23271. image: {
  23272. source: "./media/characters/amethyst/back.svg",
  23273. extra: 2021 / 1989,
  23274. bottom: 0.02
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(5 + 6 / 12, "feet"),
  23282. default: true
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(4 + 11 / 12, "feet"),
  23291. weight: math.unit(120, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/yumi-akiyama/front.svg",
  23295. extra: 1327 / 1235,
  23296. bottom: 0.02
  23297. }
  23298. },
  23299. back: {
  23300. height: math.unit(4 + 11 / 12, "feet"),
  23301. weight: math.unit(120, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/yumi-akiyama/back.svg",
  23305. extra: 1287 / 1245,
  23306. bottom: 0.002
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Galactic",
  23313. height: math.unit(50, "galaxies"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Universal",
  23318. height: math.unit(100, "universes")
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23324. {
  23325. front: {
  23326. height: math.unit(8, "feet"),
  23327. weight: math.unit(500, "lb"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/rifter-yrmori/front.svg",
  23331. extra: 1180 / 1125,
  23332. bottom: 0.02
  23333. }
  23334. },
  23335. back: {
  23336. height: math.unit(8, "feet"),
  23337. weight: math.unit(500, "lb"),
  23338. name: "Back",
  23339. image: {
  23340. source: "./media/characters/rifter-yrmori/back.svg",
  23341. extra: 1190 / 1145,
  23342. bottom: 0.001
  23343. }
  23344. },
  23345. wings: {
  23346. height: math.unit(7.75, "feet"),
  23347. weight: math.unit(500, "lb"),
  23348. name: "Wings",
  23349. image: {
  23350. source: "./media/characters/rifter-yrmori/wings.svg",
  23351. extra: 1357 / 1285
  23352. }
  23353. },
  23354. maw: {
  23355. height: math.unit(0.8, "feet"),
  23356. name: "Maw",
  23357. image: {
  23358. source: "./media/characters/rifter-yrmori/maw.svg"
  23359. }
  23360. },
  23361. mawfront: {
  23362. height: math.unit(1.45, "feet"),
  23363. name: "Maw (Front)",
  23364. image: {
  23365. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(8, "feet"),
  23373. default: true
  23374. },
  23375. {
  23376. name: "Macro",
  23377. height: math.unit(42, "meters")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23383. {
  23384. were: {
  23385. height: math.unit(25 + 6 / 12, "feet"),
  23386. weight: math.unit(10000, "lb"),
  23387. name: "Were",
  23388. image: {
  23389. source: "./media/characters/tahajin/were.svg",
  23390. extra: 801 / 770,
  23391. bottom: 0.042
  23392. }
  23393. },
  23394. aquatic: {
  23395. height: math.unit(6 + 4 / 12, "feet"),
  23396. weight: math.unit(160, "lb"),
  23397. name: "Aquatic",
  23398. image: {
  23399. source: "./media/characters/tahajin/aquatic.svg",
  23400. extra: 572 / 542,
  23401. bottom: 0.04
  23402. }
  23403. },
  23404. chow: {
  23405. height: math.unit(8 + 11 / 12, "feet"),
  23406. weight: math.unit(450, "lb"),
  23407. name: "Chow",
  23408. image: {
  23409. source: "./media/characters/tahajin/chow.svg",
  23410. extra: 660 / 640,
  23411. bottom: 0.015
  23412. }
  23413. },
  23414. demiNaga: {
  23415. height: math.unit(6 + 8 / 12, "feet"),
  23416. weight: math.unit(300, "lb"),
  23417. name: "Demi Naga",
  23418. image: {
  23419. source: "./media/characters/tahajin/demi-naga.svg",
  23420. extra: 643 / 615,
  23421. bottom: 0.1
  23422. }
  23423. },
  23424. data: {
  23425. height: math.unit(5, "inches"),
  23426. weight: math.unit(0.1, "lb"),
  23427. name: "Data",
  23428. image: {
  23429. source: "./media/characters/tahajin/data.svg"
  23430. }
  23431. },
  23432. fluu: {
  23433. height: math.unit(5 + 7 / 12, "feet"),
  23434. weight: math.unit(140, "lb"),
  23435. name: "Fluu",
  23436. image: {
  23437. source: "./media/characters/tahajin/fluu.svg",
  23438. extra: 628 / 592,
  23439. bottom: 0.02
  23440. }
  23441. },
  23442. starWarrior: {
  23443. height: math.unit(4 + 5 / 12, "feet"),
  23444. weight: math.unit(50, "lb"),
  23445. name: "Star Warrior",
  23446. image: {
  23447. source: "./media/characters/tahajin/star-warrior.svg"
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(25 + 6 / 12, "feet"),
  23455. default: true
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23461. {
  23462. front: {
  23463. height: math.unit(8, "feet"),
  23464. weight: math.unit(350, "lb"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/gabira/front.svg",
  23468. extra: 1261/1154,
  23469. bottom: 51/1312
  23470. }
  23471. },
  23472. back: {
  23473. height: math.unit(8, "feet"),
  23474. weight: math.unit(350, "lb"),
  23475. name: "Back",
  23476. image: {
  23477. source: "./media/characters/gabira/back.svg",
  23478. extra: 1265/1163,
  23479. bottom: 46/1311
  23480. }
  23481. },
  23482. head: {
  23483. height: math.unit(2.85, "feet"),
  23484. name: "Head",
  23485. image: {
  23486. source: "./media/characters/gabira/head.svg"
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(8, "feet"),
  23494. default: true
  23495. },
  23496. ]
  23497. ))
  23498. characterMakers.push(() => makeCharacter(
  23499. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23500. {
  23501. front: {
  23502. height: math.unit(5 + 3 / 12, "feet"),
  23503. weight: math.unit(137, "lb"),
  23504. name: "Front",
  23505. image: {
  23506. source: "./media/characters/sasha-katraine/front.svg",
  23507. extra: 1745/1694,
  23508. bottom: 37/1782
  23509. }
  23510. },
  23511. back: {
  23512. height: math.unit(5 + 3 / 12, "feet"),
  23513. weight: math.unit(137, "lb"),
  23514. name: "Back",
  23515. image: {
  23516. source: "./media/characters/sasha-katraine/back.svg",
  23517. extra: 1776/1699,
  23518. bottom: 26/1802
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Micro",
  23525. height: math.unit(5, "inches")
  23526. },
  23527. {
  23528. name: "Normal",
  23529. height: math.unit(5 + 3 / 12, "feet"),
  23530. default: true
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23536. {
  23537. side: {
  23538. height: math.unit(4, "inches"),
  23539. weight: math.unit(200, "grams"),
  23540. name: "Side",
  23541. image: {
  23542. source: "./media/characters/der/side.svg",
  23543. extra: 719 / 400,
  23544. bottom: 30.6 / 749.9187
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Micro",
  23551. height: math.unit(4, "inches"),
  23552. default: true
  23553. },
  23554. ]
  23555. ))
  23556. characterMakers.push(() => makeCharacter(
  23557. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23558. {
  23559. side: {
  23560. height: math.unit(30, "meters"),
  23561. weight: math.unit(700, "tonnes"),
  23562. name: "Side",
  23563. image: {
  23564. source: "./media/characters/fixerdragon/side.svg",
  23565. extra: (1293.0514 - 116.03) / 1106.86,
  23566. bottom: 116.03 / 1293.0514
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Planck",
  23573. height: math.unit(1.6e-35, "meters")
  23574. },
  23575. {
  23576. name: "Micro",
  23577. height: math.unit(0.4, "meters")
  23578. },
  23579. {
  23580. name: "Normal",
  23581. height: math.unit(30, "meters"),
  23582. default: true
  23583. },
  23584. {
  23585. name: "Megamacro",
  23586. height: math.unit(1.2, "megameters")
  23587. },
  23588. {
  23589. name: "Teramacro",
  23590. height: math.unit(130, "terameters")
  23591. },
  23592. {
  23593. name: "Yottamacro",
  23594. height: math.unit(6200, "yottameters")
  23595. },
  23596. ]
  23597. ));
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23600. {
  23601. front: {
  23602. height: math.unit(8, "feet"),
  23603. weight: math.unit(250, "lb"),
  23604. name: "Front",
  23605. image: {
  23606. source: "./media/characters/kite/front.svg",
  23607. extra: 2796 / 2659,
  23608. bottom: 0.002
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(8, "feet"),
  23616. default: true
  23617. },
  23618. {
  23619. name: "Macro",
  23620. height: math.unit(360, "feet")
  23621. },
  23622. {
  23623. name: "Megamacro",
  23624. height: math.unit(1500, "feet")
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23630. {
  23631. front: {
  23632. height: math.unit(5 + 11/12, "feet"),
  23633. weight: math.unit(170, "lb"),
  23634. name: "Front",
  23635. image: {
  23636. source: "./media/characters/poojawa-vynar/front.svg",
  23637. extra: 1735/1585,
  23638. bottom: 96/1831
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(5 + 11/12, "feet"),
  23643. weight: math.unit(170, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/poojawa-vynar/back.svg",
  23647. extra: 1749/1607,
  23648. bottom: 28/1777
  23649. }
  23650. },
  23651. male: {
  23652. height: math.unit(5 + 11/12, "feet"),
  23653. weight: math.unit(170, "lb"),
  23654. name: "Male",
  23655. image: {
  23656. source: "./media/characters/poojawa-vynar/male.svg",
  23657. extra: 1855/1713,
  23658. bottom: 63/1918
  23659. }
  23660. },
  23661. taur: {
  23662. height: math.unit(5 + 11/12, "feet"),
  23663. weight: math.unit(170, "lb"),
  23664. name: "Taur",
  23665. image: {
  23666. source: "./media/characters/poojawa-vynar/taur.svg",
  23667. extra: 1151/1059,
  23668. bottom: 356/1507
  23669. }
  23670. },
  23671. frontDressed: {
  23672. height: math.unit(5 + 11/12, "feet"),
  23673. weight: math.unit(170, "lb"),
  23674. name: "Front (Dressed)",
  23675. image: {
  23676. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23677. extra: 1735/1585,
  23678. bottom: 96/1831
  23679. }
  23680. },
  23681. backDressed: {
  23682. height: math.unit(5 + 11/12, "feet"),
  23683. weight: math.unit(170, "lb"),
  23684. name: "Back (Dressed)",
  23685. image: {
  23686. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23687. extra: 1749/1607,
  23688. bottom: 28/1777
  23689. }
  23690. },
  23691. maleDressed: {
  23692. height: math.unit(5 + 11/12, "feet"),
  23693. weight: math.unit(170, "lb"),
  23694. name: "Male (Dressed)",
  23695. image: {
  23696. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23697. extra: 1855/1713,
  23698. bottom: 63/1918
  23699. }
  23700. },
  23701. taurDressed: {
  23702. height: math.unit(5 + 11/12, "feet"),
  23703. weight: math.unit(170, "lb"),
  23704. name: "Taur (Dressed)",
  23705. image: {
  23706. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23707. extra: 1151/1059,
  23708. bottom: 356/1507
  23709. }
  23710. },
  23711. maw: {
  23712. height: math.unit(1.46, "feet"),
  23713. name: "Maw",
  23714. image: {
  23715. source: "./media/characters/poojawa-vynar/maw.svg"
  23716. }
  23717. },
  23718. head: {
  23719. height: math.unit(2.34, "feet"),
  23720. name: "Head",
  23721. image: {
  23722. source: "./media/characters/poojawa-vynar/head.svg"
  23723. }
  23724. },
  23725. paw: {
  23726. height: math.unit(1.61, "feet"),
  23727. name: "Paw",
  23728. image: {
  23729. source: "./media/characters/poojawa-vynar/paw.svg"
  23730. }
  23731. },
  23732. pawToering: {
  23733. height: math.unit(1.72, "feet"),
  23734. name: "Paw (Toering)",
  23735. image: {
  23736. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23737. }
  23738. },
  23739. toering: {
  23740. height: math.unit(2.9, "inches"),
  23741. name: "Toering",
  23742. image: {
  23743. source: "./media/characters/poojawa-vynar/toering.svg"
  23744. }
  23745. },
  23746. shaft: {
  23747. height: math.unit(0.625, "feet"),
  23748. name: "Shaft",
  23749. image: {
  23750. source: "./media/characters/poojawa-vynar/shaft.svg"
  23751. }
  23752. },
  23753. spade: {
  23754. height: math.unit(0.42, "feet"),
  23755. name: "Spade",
  23756. image: {
  23757. source: "./media/characters/poojawa-vynar/spade.svg"
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Shortstack",
  23764. height: math.unit(4, "feet")
  23765. },
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(5 + 11 / 12, "feet"),
  23769. default: true
  23770. },
  23771. {
  23772. name: "Tauric",
  23773. height: math.unit(4, "meters")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(293, "meters"),
  23782. weight: math.unit(70400, "tons"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/violette/front.svg",
  23786. extra: 1227 / 1180,
  23787. bottom: 0.005
  23788. }
  23789. },
  23790. back: {
  23791. height: math.unit(293, "meters"),
  23792. weight: math.unit(70400, "tons"),
  23793. name: "Back",
  23794. image: {
  23795. source: "./media/characters/violette/back.svg",
  23796. extra: 1227 / 1180,
  23797. bottom: 0.005
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(293, "meters"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(1050, "feet"),
  23814. weight: math.unit(200000, "tons"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/alessandra/front.svg",
  23818. extra: 960 / 912,
  23819. bottom: 0.06
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Macro",
  23826. height: math.unit(1050, "feet")
  23827. },
  23828. {
  23829. name: "Macro+",
  23830. height: math.unit(900, "meters"),
  23831. default: true
  23832. },
  23833. ]
  23834. ))
  23835. characterMakers.push(() => makeCharacter(
  23836. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23837. {
  23838. front: {
  23839. height: math.unit(5, "feet"),
  23840. weight: math.unit(187, "lb"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/person/front.svg",
  23844. extra: 3087 / 2945,
  23845. bottom: 91 / 3181
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(3, "inches")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(5, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(90, "feet")
  23862. },
  23863. {
  23864. name: "Max Size",
  23865. height: math.unit(280, "feet")
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(4.5, "meters"),
  23874. weight: math.unit(3200, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/ty/front.svg",
  23878. extra: 1038 / 960,
  23879. bottom: 31.156 / 1068
  23880. }
  23881. },
  23882. back: {
  23883. height: math.unit(4.5, "meters"),
  23884. weight: math.unit(3200, "lb"),
  23885. name: "Back",
  23886. image: {
  23887. source: "./media/characters/ty/back.svg",
  23888. extra: 1044 / 966,
  23889. bottom: 7.48 / 1049
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(4.5, "meters"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(5 + 4 / 12, "feet"),
  23906. weight: math.unit(115, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/rocky/front.svg",
  23910. extra: 1012 / 975,
  23911. bottom: 54 / 1066
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Normal",
  23918. height: math.unit(5 + 4 / 12, "feet"),
  23919. default: true
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23925. {
  23926. upright: {
  23927. height: math.unit(6, "meters"),
  23928. weight: math.unit(4000, "kg"),
  23929. name: "Upright",
  23930. image: {
  23931. source: "./media/characters/ruin/upright.svg",
  23932. extra: 668 / 661,
  23933. bottom: 42 / 799.8396
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(6, "meters"),
  23941. default: true
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23947. {
  23948. front: {
  23949. height: math.unit(5, "feet"),
  23950. weight: math.unit(106, "lb"),
  23951. name: "Front",
  23952. image: {
  23953. source: "./media/characters/robin/front.svg",
  23954. extra: 862 / 799,
  23955. bottom: 42.4 / 914.8856
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(5, "feet"),
  23963. default: true
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23969. {
  23970. side: {
  23971. height: math.unit(3, "feet"),
  23972. weight: math.unit(225, "lb"),
  23973. name: "Side",
  23974. image: {
  23975. source: "./media/characters/saian/side.svg",
  23976. extra: 566 / 356,
  23977. bottom: 79.7 / 643
  23978. }
  23979. },
  23980. maw: {
  23981. height: math.unit(2.85, "feet"),
  23982. name: "Maw",
  23983. image: {
  23984. source: "./media/characters/saian/maw.svg"
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Normal",
  23991. height: math.unit(3, "feet"),
  23992. default: true
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23998. {
  23999. side: {
  24000. height: math.unit(8, "feet"),
  24001. weight: math.unit(300, "lb"),
  24002. name: "Side",
  24003. image: {
  24004. source: "./media/characters/equus-silvermane/side.svg",
  24005. extra: 2176 / 2050,
  24006. bottom: 65.7 / 2245
  24007. }
  24008. },
  24009. front: {
  24010. height: math.unit(8, "feet"),
  24011. weight: math.unit(300, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/equus-silvermane/front.svg",
  24015. extra: 4633 / 4400,
  24016. bottom: 71.3 / 4706.915
  24017. }
  24018. },
  24019. sideStepping: {
  24020. height: math.unit(8, "feet"),
  24021. weight: math.unit(300, "lb"),
  24022. name: "Side (Stepping)",
  24023. image: {
  24024. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24025. extra: 1968 / 1860,
  24026. bottom: 16.4 / 1989
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(8, "feet")
  24034. },
  24035. {
  24036. name: "Minimacro",
  24037. height: math.unit(75, "feet"),
  24038. default: true
  24039. },
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(150, "feet")
  24043. },
  24044. {
  24045. name: "Macro+",
  24046. height: math.unit(1000, "feet")
  24047. },
  24048. {
  24049. name: "Megamacro",
  24050. height: math.unit(1, "mile")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24056. {
  24057. side: {
  24058. height: math.unit(20, "feet"),
  24059. weight: math.unit(30000, "kg"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/windar/side.svg",
  24063. extra: 1491 / 1248,
  24064. bottom: 82.56 / 1568
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(20, "feet"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24078. {
  24079. side: {
  24080. height: math.unit(15.66, "feet"),
  24081. weight: math.unit(150, "lb"),
  24082. name: "Side",
  24083. image: {
  24084. source: "./media/characters/melody/side.svg",
  24085. extra: 1097 / 944,
  24086. bottom: 11.8 / 1109
  24087. }
  24088. },
  24089. sideOutfit: {
  24090. height: math.unit(15.66, "feet"),
  24091. weight: math.unit(150, "lb"),
  24092. name: "Side (Outfit)",
  24093. image: {
  24094. source: "./media/characters/melody/side-outfit.svg",
  24095. extra: 1097 / 944,
  24096. bottom: 11.8 / 1109
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(15.66, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24110. {
  24111. armoredFront: {
  24112. height: math.unit(8, "feet"),
  24113. weight: math.unit(325, "lb"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/windera/armored-front.svg",
  24117. extra: 1830/1598,
  24118. bottom: 151/1981
  24119. },
  24120. form: "armored",
  24121. default: true
  24122. },
  24123. macroFront: {
  24124. height: math.unit(70, "feet"),
  24125. weight: math.unit(315453, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/windera/macro-front.svg",
  24129. extra: 963/883,
  24130. bottom: 23/986
  24131. },
  24132. form: "macro",
  24133. default: true
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(8, "feet"),
  24140. default: true,
  24141. form: "armored"
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(70, "feet"),
  24146. default: true,
  24147. form: "macro"
  24148. },
  24149. ],
  24150. {
  24151. "armored": {
  24152. name: "Armored",
  24153. default: true
  24154. },
  24155. "macro": {
  24156. name: "Macro",
  24157. },
  24158. }
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24162. {
  24163. front: {
  24164. height: math.unit(28.75, "feet"),
  24165. weight: math.unit(2000, "kg"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/sonear/front.svg",
  24169. extra: 1041.1 / 964.9,
  24170. bottom: 53.7 / 1096.6
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(28.75, "feet"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24184. {
  24185. side: {
  24186. height: math.unit(25.5, "feet"),
  24187. weight: math.unit(23000, "kg"),
  24188. name: "Side",
  24189. image: {
  24190. source: "./media/characters/kanara/side.svg"
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(25.5, "feet"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24204. {
  24205. side: {
  24206. height: math.unit(10, "feet"),
  24207. weight: math.unit(1000, "kg"),
  24208. name: "Side",
  24209. image: {
  24210. source: "./media/characters/ereus/side.svg",
  24211. extra: 1157 / 959,
  24212. bottom: 153 / 1312.5
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(10, "feet"),
  24220. default: true
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24226. {
  24227. side: {
  24228. height: math.unit(4.5, "feet"),
  24229. weight: math.unit(500, "lb"),
  24230. name: "Side",
  24231. image: {
  24232. source: "./media/characters/e-ter/side.svg",
  24233. extra: 1550 / 1248,
  24234. bottom: 146 / 1694
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(4.5, "feet"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24248. {
  24249. side: {
  24250. height: math.unit(9.7, "feet"),
  24251. weight: math.unit(4000, "kg"),
  24252. name: "Side",
  24253. image: {
  24254. source: "./media/characters/yamie/side.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(9.7, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(50, "feet"),
  24271. weight: math.unit(50000, "kg"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/anders/front.svg",
  24275. extra: 570 / 539,
  24276. bottom: 14.7 / 586.7
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Large",
  24283. height: math.unit(50, "feet")
  24284. },
  24285. {
  24286. name: "Macro",
  24287. height: math.unit(2000, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Megamacro",
  24292. height: math.unit(12, "miles")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(7 + 2 / 12, "feet"),
  24301. weight: math.unit(300, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/reban/front.svg",
  24305. extra: 1287/1212,
  24306. bottom: 148/1435
  24307. }
  24308. },
  24309. head: {
  24310. height: math.unit(1.95, "feet"),
  24311. name: "Head",
  24312. image: {
  24313. source: "./media/characters/reban/head.svg"
  24314. }
  24315. },
  24316. maw: {
  24317. height: math.unit(0.95, "feet"),
  24318. name: "Maw",
  24319. image: {
  24320. source: "./media/characters/reban/maw.svg"
  24321. }
  24322. },
  24323. foot: {
  24324. height: math.unit(1.65, "feet"),
  24325. name: "Foot",
  24326. image: {
  24327. source: "./media/characters/reban/foot.svg"
  24328. }
  24329. },
  24330. dick: {
  24331. height: math.unit(7 / 5, "feet"),
  24332. name: "Dick",
  24333. image: {
  24334. source: "./media/characters/reban/dick.svg"
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Natural Height",
  24341. height: math.unit(7 + 2 / 12, "feet")
  24342. },
  24343. {
  24344. name: "Macro",
  24345. height: math.unit(500, "feet"),
  24346. default: true
  24347. },
  24348. {
  24349. name: "Canon Height",
  24350. height: math.unit(50, "AU")
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(6, "feet"),
  24359. weight: math.unit(150, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/terrance-keayes/front.svg",
  24363. extra: 1.005,
  24364. bottom: 151 / 1615
  24365. }
  24366. },
  24367. side: {
  24368. height: math.unit(6, "feet"),
  24369. weight: math.unit(150, "lb"),
  24370. name: "Side",
  24371. image: {
  24372. source: "./media/characters/terrance-keayes/side.svg",
  24373. extra: 1.005,
  24374. bottom: 129.4 / 1544
  24375. }
  24376. },
  24377. back: {
  24378. height: math.unit(6, "feet"),
  24379. weight: math.unit(150, "lb"),
  24380. name: "Back",
  24381. image: {
  24382. source: "./media/characters/terrance-keayes/back.svg",
  24383. extra: 1.005,
  24384. bottom: 58.4 / 1557.3
  24385. }
  24386. },
  24387. dick: {
  24388. height: math.unit(6 * 0.208, "feet"),
  24389. name: "Dick",
  24390. image: {
  24391. source: "./media/characters/terrance-keayes/dick.svg"
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Canon Height",
  24398. height: math.unit(35, "miles"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(6, "feet"),
  24408. weight: math.unit(150, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/ofelia/front.svg",
  24412. extra: 1130/1117,
  24413. bottom: 91/1221
  24414. }
  24415. },
  24416. back: {
  24417. height: math.unit(6, "feet"),
  24418. weight: math.unit(150, "lb"),
  24419. name: "Back",
  24420. image: {
  24421. source: "./media/characters/ofelia/back.svg",
  24422. extra: 1172/1159,
  24423. bottom: 28/1200
  24424. }
  24425. },
  24426. maw: {
  24427. height: math.unit(1, "feet"),
  24428. name: "Maw",
  24429. image: {
  24430. source: "./media/characters/ofelia/maw.svg"
  24431. }
  24432. },
  24433. foot: {
  24434. height: math.unit(1.949, "feet"),
  24435. name: "Foot",
  24436. image: {
  24437. source: "./media/characters/ofelia/foot.svg"
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Canon Height",
  24444. height: math.unit(2000, "miles"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24451. {
  24452. front: {
  24453. height: math.unit(6, "feet"),
  24454. weight: math.unit(150, "lb"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/samuel/front.svg",
  24458. extra: 265 / 258,
  24459. bottom: 2 / 266.1566
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Macro",
  24466. height: math.unit(100, "feet"),
  24467. default: true
  24468. },
  24469. {
  24470. name: "Full Size",
  24471. height: math.unit(1000, "miles")
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(6, "feet"),
  24480. weight: math.unit(300, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/beishir-kiel/front.svg",
  24484. extra: 569 / 547,
  24485. bottom: 41.9 / 609
  24486. }
  24487. },
  24488. maw: {
  24489. height: math.unit(6 * 0.202, "feet"),
  24490. name: "Maw",
  24491. image: {
  24492. source: "./media/characters/beishir-kiel/maw.svg"
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Macro",
  24499. height: math.unit(300, "feet"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(5 + 7/12, "feet"),
  24509. weight: math.unit(120, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/logan-grey/front.svg",
  24513. extra: 1836/1738,
  24514. bottom: 108/1944
  24515. }
  24516. },
  24517. back: {
  24518. height: math.unit(5 + 7/12, "feet"),
  24519. weight: math.unit(120, "lb"),
  24520. name: "Back",
  24521. image: {
  24522. source: "./media/characters/logan-grey/back.svg",
  24523. extra: 1880/1794,
  24524. bottom: 24/1904
  24525. }
  24526. },
  24527. frontSfw: {
  24528. height: math.unit(5 + 7/12, "feet"),
  24529. weight: math.unit(120, "lb"),
  24530. name: "Front (SFW)",
  24531. image: {
  24532. source: "./media/characters/logan-grey/front-sfw.svg",
  24533. extra: 1836/1738,
  24534. bottom: 108/1944
  24535. }
  24536. },
  24537. backSfw: {
  24538. height: math.unit(5 + 7/12, "feet"),
  24539. weight: math.unit(120, "lb"),
  24540. name: "Back (SFW)",
  24541. image: {
  24542. source: "./media/characters/logan-grey/back-sfw.svg",
  24543. extra: 1880/1794,
  24544. bottom: 24/1904
  24545. }
  24546. },
  24547. hands: {
  24548. height: math.unit(0.84, "feet"),
  24549. name: "Hands",
  24550. image: {
  24551. source: "./media/characters/logan-grey/hands.svg"
  24552. }
  24553. },
  24554. paws: {
  24555. height: math.unit(0.72, "feet"),
  24556. name: "Paws",
  24557. image: {
  24558. source: "./media/characters/logan-grey/paws.svg"
  24559. }
  24560. },
  24561. cock: {
  24562. height: math.unit(1.45, "feet"),
  24563. name: "Cock",
  24564. image: {
  24565. source: "./media/characters/logan-grey/cock.svg"
  24566. }
  24567. },
  24568. cockAlt: {
  24569. height: math.unit(1.437, "feet"),
  24570. name: "Cock (alt)",
  24571. image: {
  24572. source: "./media/characters/logan-grey/cock-alt.svg"
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Normal",
  24579. height: math.unit(5 + 8 / 12, "feet")
  24580. },
  24581. {
  24582. name: "The 500 Foot Femboy",
  24583. height: math.unit(500, "feet"),
  24584. default: true
  24585. },
  24586. {
  24587. name: "Megmacro",
  24588. height: math.unit(20, "miles")
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(8 + 2 / 12, "feet"),
  24597. weight: math.unit(275, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/draganta/front.svg",
  24601. extra: 1177 / 1135,
  24602. bottom: 33.46 / 1212.1
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Normal",
  24609. height: math.unit(8 + 6 / 12, "feet"),
  24610. default: true
  24611. },
  24612. {
  24613. name: "Macro",
  24614. height: math.unit(150, "feet")
  24615. },
  24616. {
  24617. name: "Megamacro",
  24618. height: math.unit(1000, "miles")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(1.72, "m"),
  24627. weight: math.unit(80, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/voski/front.svg",
  24631. extra: 2076.22 / 2022.4,
  24632. bottom: 102.7 / 2177.3866
  24633. }
  24634. },
  24635. frontFlaccid: {
  24636. height: math.unit(1.72, "m"),
  24637. weight: math.unit(80, "lb"),
  24638. name: "Front (Flaccid)",
  24639. image: {
  24640. source: "./media/characters/voski/front-flaccid.svg",
  24641. extra: 2076.22 / 2022.4,
  24642. bottom: 102.7 / 2177.3866
  24643. }
  24644. },
  24645. frontErect: {
  24646. height: math.unit(1.72, "m"),
  24647. weight: math.unit(80, "lb"),
  24648. name: "Front (Erect)",
  24649. image: {
  24650. source: "./media/characters/voski/front-erect.svg",
  24651. extra: 2076.22 / 2022.4,
  24652. bottom: 102.7 / 2177.3866
  24653. }
  24654. },
  24655. back: {
  24656. height: math.unit(1.72, "m"),
  24657. weight: math.unit(80, "lb"),
  24658. name: "Back",
  24659. image: {
  24660. source: "./media/characters/voski/back.svg",
  24661. extra: 2104 / 2051,
  24662. bottom: 10.45 / 2113.63
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(1.72, "m")
  24670. },
  24671. {
  24672. name: "Macro",
  24673. height: math.unit(55, "m"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Macro+",
  24678. height: math.unit(300, "m")
  24679. },
  24680. {
  24681. name: "Macro++",
  24682. height: math.unit(700, "m")
  24683. },
  24684. {
  24685. name: "Macro+++",
  24686. height: math.unit(4500, "m")
  24687. },
  24688. {
  24689. name: "Macro++++",
  24690. height: math.unit(45, "km")
  24691. },
  24692. {
  24693. name: "Macro+++++",
  24694. height: math.unit(1220, "km")
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(2.3, "m"),
  24703. weight: math.unit(304, "kg"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/icowom-lee/front.svg",
  24707. extra: 985 / 955,
  24708. bottom: 25.4 / 1012
  24709. }
  24710. },
  24711. fronttentacles: {
  24712. height: math.unit(2.3, "m"),
  24713. weight: math.unit(304, "kg"),
  24714. name: "Front-tentacles",
  24715. image: {
  24716. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24717. extra: 985 / 955,
  24718. bottom: 25.4 / 1012
  24719. }
  24720. },
  24721. back: {
  24722. height: math.unit(2.3, "m"),
  24723. weight: math.unit(304, "kg"),
  24724. name: "Back",
  24725. image: {
  24726. source: "./media/characters/icowom-lee/back.svg",
  24727. extra: 975 / 954,
  24728. bottom: 9.5 / 985
  24729. }
  24730. },
  24731. backtentacles: {
  24732. height: math.unit(2.3, "m"),
  24733. weight: math.unit(304, "kg"),
  24734. name: "Back-tentacles",
  24735. image: {
  24736. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24737. extra: 975 / 954,
  24738. bottom: 9.5 / 985
  24739. }
  24740. },
  24741. frontDressed: {
  24742. height: math.unit(2.3, "m"),
  24743. weight: math.unit(304, "kg"),
  24744. name: "Front (Dressed)",
  24745. image: {
  24746. source: "./media/characters/icowom-lee/front-dressed.svg",
  24747. extra: 3076 / 2933,
  24748. bottom: 51.4 / 3125.1889
  24749. }
  24750. },
  24751. rump: {
  24752. height: math.unit(0.776, "meters"),
  24753. name: "Rump",
  24754. image: {
  24755. source: "./media/characters/icowom-lee/rump.svg"
  24756. }
  24757. },
  24758. genitals: {
  24759. height: math.unit(0.78, "meters"),
  24760. name: "Genitals",
  24761. image: {
  24762. source: "./media/characters/icowom-lee/genitals.svg"
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(2.3, "meters"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "Macro",
  24774. height: math.unit(94, "meters"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(22, "meters"),
  24784. weight: math.unit(21000, "kg"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/shock-diamond/front.svg",
  24788. extra: 2204 / 2053,
  24789. bottom: 65 / 2239.47
  24790. }
  24791. },
  24792. frontNude: {
  24793. height: math.unit(22, "meters"),
  24794. weight: math.unit(21000, "kg"),
  24795. name: "Front (Nude)",
  24796. image: {
  24797. source: "./media/characters/shock-diamond/front-nude.svg",
  24798. extra: 2514 / 2285,
  24799. bottom: 13 / 2527.56
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(3, "meters")
  24807. },
  24808. {
  24809. name: "Macro",
  24810. height: math.unit(22, "meters"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(5 + 4/12, "feet"),
  24820. weight: math.unit(125, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/rory/front.svg",
  24824. extra: 1790/1681,
  24825. bottom: 66/1856
  24826. },
  24827. form: "normal",
  24828. default: true
  24829. },
  24830. back: {
  24831. height: math.unit(5 + 4/12, "feet"),
  24832. weight: math.unit(125, "lb"),
  24833. name: "Back",
  24834. image: {
  24835. source: "./media/characters/rory/back.svg",
  24836. extra: 1805/1690,
  24837. bottom: 56/1861
  24838. },
  24839. form: "normal"
  24840. },
  24841. frontDressed: {
  24842. height: math.unit(5 + 4/12, "feet"),
  24843. weight: math.unit(125, "lb"),
  24844. name: "Front (Dressed)",
  24845. image: {
  24846. source: "./media/characters/rory/front-dressed.svg",
  24847. extra: 1790/1681,
  24848. bottom: 66/1856
  24849. },
  24850. form: "normal"
  24851. },
  24852. backDressed: {
  24853. height: math.unit(5 + 4/12, "feet"),
  24854. weight: math.unit(125, "lb"),
  24855. name: "Back (Dressed)",
  24856. image: {
  24857. source: "./media/characters/rory/back-dressed.svg",
  24858. extra: 1805/1690,
  24859. bottom: 56/1861
  24860. },
  24861. form: "normal"
  24862. },
  24863. frontNsfw: {
  24864. height: math.unit(5 + 4/12, "feet"),
  24865. weight: math.unit(125, "lb"),
  24866. name: "Front (NSFW)",
  24867. image: {
  24868. source: "./media/characters/rory/front-nsfw.svg",
  24869. extra: 1790/1681,
  24870. bottom: 66/1856
  24871. },
  24872. form: "normal"
  24873. },
  24874. backNsfw: {
  24875. height: math.unit(5 + 4/12, "feet"),
  24876. weight: math.unit(125, "lb"),
  24877. name: "Back (NSFW)",
  24878. image: {
  24879. source: "./media/characters/rory/back-nsfw.svg",
  24880. extra: 1805/1690,
  24881. bottom: 56/1861
  24882. },
  24883. form: "normal"
  24884. },
  24885. dick: {
  24886. height: math.unit(0.8, "feet"),
  24887. name: "Dick",
  24888. image: {
  24889. source: "./media/characters/rory/dick.svg"
  24890. },
  24891. form: "normal"
  24892. },
  24893. thicc_front: {
  24894. height: math.unit(5 + 4/12, "feet"),
  24895. weight: math.unit(195, "lb"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/rory/thicc-front.svg",
  24899. extra: 1220/1100,
  24900. bottom: 103/1323
  24901. },
  24902. form: "thicc",
  24903. default: true
  24904. },
  24905. thicc_back: {
  24906. height: math.unit(5 + 4/12, "feet"),
  24907. weight: math.unit(195, "lb"),
  24908. name: "Back",
  24909. image: {
  24910. source: "./media/characters/rory/thicc-back.svg",
  24911. extra: 1166/1086,
  24912. bottom: 35/1201
  24913. },
  24914. form: "thicc"
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Micro",
  24920. height: math.unit(3, "inches"),
  24921. allForms: true
  24922. },
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(5 + 4/12, "feet"),
  24926. allForms: true,
  24927. default: true
  24928. },
  24929. {
  24930. name: "Macro",
  24931. height: math.unit(90, "feet"),
  24932. allForms: true
  24933. },
  24934. {
  24935. name: "Supercharged",
  24936. height: math.unit(270, "feet"),
  24937. allForms: true
  24938. },
  24939. ],
  24940. {
  24941. "normal": {
  24942. name: "Normal",
  24943. default: true
  24944. },
  24945. "thicc": {
  24946. name: "Thicc",
  24947. },
  24948. }
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(5 + 9 / 12, "feet"),
  24955. weight: math.unit(190, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/sprisk/front.svg",
  24959. extra: 1225 / 1180,
  24960. bottom: 42.7 / 1266.4
  24961. }
  24962. },
  24963. frontNsfw: {
  24964. height: math.unit(5 + 9 / 12, "feet"),
  24965. weight: math.unit(190, "lb"),
  24966. name: "Front (NSFW)",
  24967. image: {
  24968. source: "./media/characters/sprisk/front-nsfw.svg",
  24969. extra: 1225 / 1180,
  24970. bottom: 42.7 / 1266.4
  24971. }
  24972. },
  24973. back: {
  24974. height: math.unit(5 + 9 / 12, "feet"),
  24975. weight: math.unit(190, "lb"),
  24976. name: "Back",
  24977. image: {
  24978. source: "./media/characters/sprisk/back.svg",
  24979. extra: 1247 / 1200,
  24980. bottom: 5.6 / 1253.04
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Tiny",
  24987. height: math.unit(2, "inches")
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(5 + 9 / 12, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Mini Macro",
  24996. height: math.unit(18, "feet")
  24997. },
  24998. {
  24999. name: "Macro",
  25000. height: math.unit(100, "feet")
  25001. },
  25002. {
  25003. name: "MACRO",
  25004. height: math.unit(50, "miles")
  25005. },
  25006. {
  25007. name: "M A C R O",
  25008. height: math.unit(300, "miles")
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25014. {
  25015. side: {
  25016. height: math.unit(15.6, "meters"),
  25017. weight: math.unit(700000, "kg"),
  25018. name: "Side",
  25019. image: {
  25020. source: "./media/characters/bunsen/side.svg",
  25021. extra: 1644 / 358
  25022. }
  25023. },
  25024. foot: {
  25025. height: math.unit(1.611 * 1644 / 358, "meter"),
  25026. name: "Foot",
  25027. image: {
  25028. source: "./media/characters/bunsen/foot.svg"
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Small",
  25035. height: math.unit(10, "feet")
  25036. },
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(15.6, "meters"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(4 + 11 / 12, "feet"),
  25049. weight: math.unit(140, "lb"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/sesh/front.svg",
  25053. extra: 3420 / 3231,
  25054. bottom: 72 / 3949.5
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(4 + 11 / 12, "feet")
  25062. },
  25063. {
  25064. name: "Grown",
  25065. height: math.unit(15, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Macro",
  25070. height: math.unit(1500, "feet")
  25071. },
  25072. {
  25073. name: "Megamacro",
  25074. height: math.unit(30, "miles")
  25075. },
  25076. {
  25077. name: "Continental",
  25078. height: math.unit(3000, "miles")
  25079. },
  25080. {
  25081. name: "Gravity Mass",
  25082. height: math.unit(300000, "miles")
  25083. },
  25084. {
  25085. name: "Planet Buster",
  25086. height: math.unit(30000000, "miles")
  25087. },
  25088. {
  25089. name: "Big",
  25090. height: math.unit(3000000000, "miles")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(9, "feet"),
  25099. weight: math.unit(350, "lb"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/pepper/front.svg",
  25103. extra: 1448 / 1312,
  25104. bottom: 9.4 / 1457.88
  25105. }
  25106. },
  25107. back: {
  25108. height: math.unit(9, "feet"),
  25109. weight: math.unit(350, "lb"),
  25110. name: "Back",
  25111. image: {
  25112. source: "./media/characters/pepper/back.svg",
  25113. extra: 1423 / 1300,
  25114. bottom: 4.6 / 1429
  25115. }
  25116. },
  25117. maw: {
  25118. height: math.unit(0.932, "feet"),
  25119. name: "Maw",
  25120. image: {
  25121. source: "./media/characters/pepper/maw.svg"
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(9, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(6, "feet"),
  25138. weight: math.unit(150, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/maelstrom/front.svg",
  25142. extra: 2100 / 1883,
  25143. bottom: 94 / 2196.7
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Less Kaiju",
  25150. height: math.unit(200, "feet")
  25151. },
  25152. {
  25153. name: "Kaiju",
  25154. height: math.unit(400, "feet"),
  25155. default: true
  25156. },
  25157. {
  25158. name: "Kaiju-er",
  25159. height: math.unit(600, "feet")
  25160. },
  25161. ]
  25162. ))
  25163. characterMakers.push(() => makeCharacter(
  25164. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25165. {
  25166. front: {
  25167. height: math.unit(6 + 5 / 12, "feet"),
  25168. weight: math.unit(180, "lb"),
  25169. name: "Front",
  25170. image: {
  25171. source: "./media/characters/lexir/front.svg",
  25172. extra: 180 / 172,
  25173. bottom: 12 / 192
  25174. }
  25175. },
  25176. back: {
  25177. height: math.unit(6 + 5 / 12, "feet"),
  25178. weight: math.unit(180, "lb"),
  25179. name: "Back",
  25180. image: {
  25181. source: "./media/characters/lexir/back.svg",
  25182. extra: 1273/1201,
  25183. bottom: 39/1312
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Very Smal",
  25190. height: math.unit(1, "nm")
  25191. },
  25192. {
  25193. name: "Normal",
  25194. height: math.unit(6 + 5 / 12, "feet"),
  25195. default: true
  25196. },
  25197. {
  25198. name: "Macro",
  25199. height: math.unit(1, "mile")
  25200. },
  25201. {
  25202. name: "Megamacro",
  25203. height: math.unit(50, "miles")
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(1.5, "meters"),
  25212. weight: math.unit(100, "lb"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/maksio/front.svg",
  25216. extra: 1549 / 1531,
  25217. bottom: 123.7 / 1674.5429
  25218. }
  25219. },
  25220. back: {
  25221. height: math.unit(1.5, "meters"),
  25222. weight: math.unit(100, "lb"),
  25223. name: "Back",
  25224. image: {
  25225. source: "./media/characters/maksio/back.svg",
  25226. extra: 1541 / 1509,
  25227. bottom: 97 / 1639
  25228. }
  25229. },
  25230. hand: {
  25231. height: math.unit(0.621, "feet"),
  25232. name: "Hand",
  25233. image: {
  25234. source: "./media/characters/maksio/hand.svg"
  25235. }
  25236. },
  25237. foot: {
  25238. height: math.unit(1.611, "feet"),
  25239. name: "Foot",
  25240. image: {
  25241. source: "./media/characters/maksio/foot.svg"
  25242. }
  25243. },
  25244. },
  25245. [
  25246. {
  25247. name: "Shrunken",
  25248. height: math.unit(10, "cm")
  25249. },
  25250. {
  25251. name: "Normal",
  25252. height: math.unit(150, "cm"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(100, "feet"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/erza-bear/front.svg",
  25265. extra: 2449 / 2390,
  25266. bottom: 46 / 2494
  25267. }
  25268. },
  25269. back: {
  25270. height: math.unit(100, "feet"),
  25271. name: "Back",
  25272. image: {
  25273. source: "./media/characters/erza-bear/back.svg",
  25274. extra: 2489 / 2430,
  25275. bottom: 85.4 / 2480
  25276. }
  25277. },
  25278. tail: {
  25279. height: math.unit(42, "feet"),
  25280. name: "Tail",
  25281. image: {
  25282. source: "./media/characters/erza-bear/tail.svg"
  25283. }
  25284. },
  25285. tongue: {
  25286. height: math.unit(8, "feet"),
  25287. name: "Tongue",
  25288. image: {
  25289. source: "./media/characters/erza-bear/tongue.svg"
  25290. }
  25291. },
  25292. dick: {
  25293. height: math.unit(10.5, "feet"),
  25294. name: "Dick",
  25295. image: {
  25296. source: "./media/characters/erza-bear/dick.svg"
  25297. }
  25298. },
  25299. dickVertical: {
  25300. height: math.unit(16.9, "feet"),
  25301. name: "Dick (Vertical)",
  25302. image: {
  25303. source: "./media/characters/erza-bear/dick-vertical.svg"
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Macro",
  25310. height: math.unit(100, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(172, "cm"),
  25320. weight: math.unit(73, "kg"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/violet-flor/front.svg",
  25324. extra: 1530 / 1442,
  25325. bottom: 61.9 / 1588.8
  25326. }
  25327. },
  25328. back: {
  25329. height: math.unit(180, "cm"),
  25330. weight: math.unit(73, "kg"),
  25331. name: "Back",
  25332. image: {
  25333. source: "./media/characters/violet-flor/back.svg",
  25334. extra: 1692 / 1630,
  25335. bottom: 20 / 1712
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(172, "cm"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(6, "feet"),
  25352. weight: math.unit(220, "lb"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/lynn-rhea/front.svg",
  25356. extra: 310 / 273
  25357. }
  25358. },
  25359. back: {
  25360. height: math.unit(6, "feet"),
  25361. weight: math.unit(220, "lb"),
  25362. name: "Back",
  25363. image: {
  25364. source: "./media/characters/lynn-rhea/back.svg",
  25365. extra: 310 / 273
  25366. }
  25367. },
  25368. dicks: {
  25369. height: math.unit(0.9, "feet"),
  25370. name: "Dicks",
  25371. image: {
  25372. source: "./media/characters/lynn-rhea/dicks.svg"
  25373. }
  25374. },
  25375. slit: {
  25376. height: math.unit(0.4, "feet"),
  25377. name: "Slit",
  25378. image: {
  25379. source: "./media/characters/lynn-rhea/slit.svg"
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Micro",
  25386. height: math.unit(1, "inch")
  25387. },
  25388. {
  25389. name: "Macro",
  25390. height: math.unit(60, "feet"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Megamacro",
  25395. height: math.unit(2, "miles")
  25396. },
  25397. {
  25398. name: "Gigamacro",
  25399. height: math.unit(3, "earths")
  25400. },
  25401. {
  25402. name: "Galactic",
  25403. height: math.unit(0.8, "galaxies")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25409. {
  25410. front: {
  25411. height: math.unit(1600, "feet"),
  25412. weight: math.unit(85758785169, "kg"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/valathos/front.svg",
  25416. extra: 1451 / 1339
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(1600, "feet"),
  25424. default: true
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(7 + 5 / 12, "feet"),
  25433. weight: math.unit(300, "lb"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/azula/front.svg",
  25437. extra: 3208 / 2880,
  25438. bottom: 80.2 / 3277
  25439. }
  25440. },
  25441. back: {
  25442. height: math.unit(7 + 5 / 12, "feet"),
  25443. weight: math.unit(300, "lb"),
  25444. name: "Back",
  25445. image: {
  25446. source: "./media/characters/azula/back.svg",
  25447. extra: 3169 / 2822,
  25448. bottom: 150.6 / 3321
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Normal",
  25455. height: math.unit(7 + 5 / 12, "feet"),
  25456. default: true
  25457. },
  25458. {
  25459. name: "Big",
  25460. height: math.unit(20, "feet")
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(5 + 1 / 12, "feet"),
  25469. weight: math.unit(110, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/rupert/front.svg",
  25473. extra: 1549 / 1495,
  25474. bottom: 54.2 / 1604.4
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(5 + 1 / 12, "feet"),
  25482. default: true
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25488. {
  25489. front: {
  25490. height: math.unit(8 + 4 / 12, "feet"),
  25491. weight: math.unit(350, "lb"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/sheera-castellar/front.svg",
  25495. extra: 1957 / 1894,
  25496. bottom: 26.97 / 1975.017
  25497. }
  25498. },
  25499. side: {
  25500. height: math.unit(8 + 4 / 12, "feet"),
  25501. weight: math.unit(350, "lb"),
  25502. name: "Side",
  25503. image: {
  25504. source: "./media/characters/sheera-castellar/side.svg",
  25505. extra: 1957 / 1894
  25506. }
  25507. },
  25508. back: {
  25509. height: math.unit(8 + 4 / 12, "feet"),
  25510. weight: math.unit(350, "lb"),
  25511. name: "Back",
  25512. image: {
  25513. source: "./media/characters/sheera-castellar/back.svg",
  25514. extra: 1957 / 1894
  25515. }
  25516. },
  25517. angled: {
  25518. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25519. weight: math.unit(350, "lb"),
  25520. name: "Angled",
  25521. image: {
  25522. source: "./media/characters/sheera-castellar/angled.svg",
  25523. extra: 1807 / 1707,
  25524. bottom: 68 / 1875
  25525. }
  25526. },
  25527. genitals: {
  25528. height: math.unit(2.2, "feet"),
  25529. name: "Genitals",
  25530. image: {
  25531. source: "./media/characters/sheera-castellar/genitals.svg"
  25532. }
  25533. },
  25534. taur: {
  25535. height: math.unit(10 + 6/12, "feet"),
  25536. name: "Taur",
  25537. image: {
  25538. source: "./media/characters/sheera-castellar/taur.svg",
  25539. extra: 2017/1909,
  25540. bottom: 185/2202
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Normal",
  25547. height: math.unit(8 + 4 / 12, "feet")
  25548. },
  25549. {
  25550. name: "Macro",
  25551. height: math.unit(150, "feet"),
  25552. default: true
  25553. },
  25554. {
  25555. name: "Macro+",
  25556. height: math.unit(800, "feet")
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(6, "feet"),
  25565. weight: math.unit(150, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/jaipur/front.svg",
  25569. extra: 3860 / 3731,
  25570. bottom: 287 / 4140
  25571. }
  25572. },
  25573. back: {
  25574. height: math.unit(6, "feet"),
  25575. weight: math.unit(150, "lb"),
  25576. name: "Back",
  25577. image: {
  25578. source: "./media/characters/jaipur/back.svg",
  25579. extra: 1637/1561,
  25580. bottom: 154/1791
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Normal",
  25587. height: math.unit(1.85, "meters"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(150, "meters")
  25593. },
  25594. {
  25595. name: "Macro+",
  25596. height: math.unit(0.5, "miles")
  25597. },
  25598. {
  25599. name: "Macro++",
  25600. height: math.unit(2.5, "miles")
  25601. },
  25602. {
  25603. name: "Macro+++",
  25604. height: math.unit(12, "miles")
  25605. },
  25606. {
  25607. name: "Macro++++",
  25608. height: math.unit(120, "miles")
  25609. },
  25610. {
  25611. name: "Macro+++++",
  25612. height: math.unit(1200, "miles")
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25618. {
  25619. front: {
  25620. height: math.unit(6, "feet"),
  25621. weight: math.unit(150, "lb"),
  25622. name: "Front",
  25623. image: {
  25624. source: "./media/characters/sheila-wolf/front.svg",
  25625. extra: 1931 / 1808,
  25626. bottom: 29.5 / 1960
  25627. }
  25628. },
  25629. dick: {
  25630. height: math.unit(1.464, "feet"),
  25631. name: "Dick",
  25632. image: {
  25633. source: "./media/characters/sheila-wolf/dick.svg"
  25634. }
  25635. },
  25636. muzzle: {
  25637. height: math.unit(0.513, "feet"),
  25638. name: "Muzzle",
  25639. image: {
  25640. source: "./media/characters/sheila-wolf/muzzle.svg"
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Macro",
  25647. height: math.unit(70, "feet"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(32, "meters"),
  25657. weight: math.unit(300000, "kg"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/almor/front.svg",
  25661. extra: 1408 / 1322,
  25662. bottom: 94.6 / 1506.5
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Macro",
  25669. height: math.unit(32, "meters"),
  25670. default: true
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25676. {
  25677. front: {
  25678. height: math.unit(7, "feet"),
  25679. weight: math.unit(200, "lb"),
  25680. name: "Front",
  25681. image: {
  25682. source: "./media/characters/silver/front.svg",
  25683. extra: 472.1 / 450.5,
  25684. bottom: 26.5 / 499.424
  25685. }
  25686. },
  25687. },
  25688. [
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(7, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Macro",
  25696. height: math.unit(800, "feet")
  25697. },
  25698. {
  25699. name: "Megamacro",
  25700. height: math.unit(250, "miles")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(6, "feet"),
  25709. weight: math.unit(150, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/pliskin/front.svg",
  25713. extra: 1469 / 1359,
  25714. bottom: 70 / 1540
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Micro",
  25721. height: math.unit(3, "inches")
  25722. },
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(5 + 11 / 12, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(120, "feet")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(6, "feet"),
  25739. weight: math.unit(150, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/sammy/front.svg",
  25743. extra: 1193 / 1089,
  25744. bottom: 30.5 / 1226
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Macro",
  25751. height: math.unit(1700, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Examacro",
  25756. height: math.unit(2.5e9, "lightyears")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(21, "meters"),
  25765. weight: math.unit(12, "tonnes"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/kuru/front.svg",
  25769. extra: 4301 / 3785,
  25770. bottom: 371.3 / 4691
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(21, "meters"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(23, "meters"),
  25787. weight: math.unit(12.2, "tonnes"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/rakka/front.svg",
  25791. extra: 4670 / 4169,
  25792. bottom: 301 / 4968.7
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Macro",
  25799. height: math.unit(23, "meters"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(6, "feet"),
  25809. weight: math.unit(150, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/rhys-feline/front.svg",
  25813. extra: 2488 / 2308,
  25814. bottom: 35.67 / 2519.19
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Really Small",
  25821. height: math.unit(1, "nm")
  25822. },
  25823. {
  25824. name: "Micro",
  25825. height: math.unit(4, "inches")
  25826. },
  25827. {
  25828. name: "Normal",
  25829. height: math.unit(4 + 10 / 12, "feet"),
  25830. default: true
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(100, "feet")
  25835. },
  25836. {
  25837. name: "Megamacto",
  25838. height: math.unit(50, "miles")
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25844. {
  25845. side: {
  25846. height: math.unit(30, "feet"),
  25847. weight: math.unit(35000, "kg"),
  25848. name: "Side",
  25849. image: {
  25850. source: "./media/characters/alydar/side.svg",
  25851. extra: 234 / 222,
  25852. bottom: 6.5 / 241
  25853. }
  25854. },
  25855. front: {
  25856. height: math.unit(30, "feet"),
  25857. weight: math.unit(35000, "kg"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/alydar/front.svg",
  25861. extra: 223.37 / 210.2,
  25862. bottom: 22.3 / 246.76
  25863. }
  25864. },
  25865. top: {
  25866. height: math.unit(64.54, "feet"),
  25867. weight: math.unit(35000, "kg"),
  25868. name: "Top",
  25869. image: {
  25870. source: "./media/characters/alydar/top.svg"
  25871. }
  25872. },
  25873. anthro: {
  25874. height: math.unit(30, "feet"),
  25875. weight: math.unit(9000, "kg"),
  25876. name: "Anthro",
  25877. image: {
  25878. source: "./media/characters/alydar/anthro.svg",
  25879. extra: 432 / 421,
  25880. bottom: 7.18 / 440
  25881. }
  25882. },
  25883. maw: {
  25884. height: math.unit(11.693, "feet"),
  25885. name: "Maw",
  25886. image: {
  25887. source: "./media/characters/alydar/maw.svg"
  25888. }
  25889. },
  25890. head: {
  25891. height: math.unit(11.693, "feet"),
  25892. name: "Head",
  25893. image: {
  25894. source: "./media/characters/alydar/head.svg"
  25895. }
  25896. },
  25897. headAlt: {
  25898. height: math.unit(12.861, "feet"),
  25899. name: "Head (Alt)",
  25900. image: {
  25901. source: "./media/characters/alydar/head-alt.svg"
  25902. }
  25903. },
  25904. wing: {
  25905. height: math.unit(20.712, "feet"),
  25906. name: "Wing",
  25907. image: {
  25908. source: "./media/characters/alydar/wing.svg"
  25909. }
  25910. },
  25911. wingFeather: {
  25912. height: math.unit(9.662, "feet"),
  25913. name: "Wing Feather",
  25914. image: {
  25915. source: "./media/characters/alydar/wing-feather.svg"
  25916. }
  25917. },
  25918. countourFeather: {
  25919. height: math.unit(4.154, "feet"),
  25920. name: "Contour Feather",
  25921. image: {
  25922. source: "./media/characters/alydar/contour-feather.svg"
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Diplomatic",
  25929. height: math.unit(13, "feet"),
  25930. default: true
  25931. },
  25932. {
  25933. name: "Small",
  25934. height: math.unit(30, "feet")
  25935. },
  25936. {
  25937. name: "Normal",
  25938. height: math.unit(95, "feet"),
  25939. default: true
  25940. },
  25941. {
  25942. name: "Large",
  25943. height: math.unit(285, "feet")
  25944. },
  25945. {
  25946. name: "Incomprehensible",
  25947. height: math.unit(450, "megameters")
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25953. {
  25954. side: {
  25955. height: math.unit(11, "feet"),
  25956. weight: math.unit(1750, "kg"),
  25957. name: "Side",
  25958. image: {
  25959. source: "./media/characters/selicia/side.svg",
  25960. extra: 440 / 396,
  25961. bottom: 24.8 / 465.979
  25962. }
  25963. },
  25964. maw: {
  25965. height: math.unit(4.665, "feet"),
  25966. name: "Maw",
  25967. image: {
  25968. source: "./media/characters/selicia/maw.svg"
  25969. }
  25970. },
  25971. },
  25972. [
  25973. {
  25974. name: "Normal",
  25975. height: math.unit(11, "feet"),
  25976. default: true
  25977. },
  25978. ]
  25979. ))
  25980. characterMakers.push(() => makeCharacter(
  25981. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25982. {
  25983. side: {
  25984. height: math.unit(2 + 6 / 12, "feet"),
  25985. weight: math.unit(30, "lb"),
  25986. name: "Side",
  25987. image: {
  25988. source: "./media/characters/layla/side.svg",
  25989. extra: 244 / 188,
  25990. bottom: 18.2 / 262.1
  25991. }
  25992. },
  25993. back: {
  25994. height: math.unit(2 + 6 / 12, "feet"),
  25995. weight: math.unit(30, "lb"),
  25996. name: "Back",
  25997. image: {
  25998. source: "./media/characters/layla/back.svg",
  25999. extra: 308 / 241.5,
  26000. bottom: 8.9 / 316.8
  26001. }
  26002. },
  26003. cumming: {
  26004. height: math.unit(2 + 6 / 12, "feet"),
  26005. weight: math.unit(30, "lb"),
  26006. name: "Cumming",
  26007. image: {
  26008. source: "./media/characters/layla/cumming.svg",
  26009. extra: 342 / 279,
  26010. bottom: 595 / 938
  26011. }
  26012. },
  26013. dickFlaccid: {
  26014. height: math.unit(2.595, "feet"),
  26015. name: "Flaccid Genitals",
  26016. image: {
  26017. source: "./media/characters/layla/dick-flaccid.svg"
  26018. }
  26019. },
  26020. dickErect: {
  26021. height: math.unit(2.359, "feet"),
  26022. name: "Erect Genitals",
  26023. image: {
  26024. source: "./media/characters/layla/dick-erect.svg"
  26025. }
  26026. },
  26027. dragon: {
  26028. height: math.unit(40, "feet"),
  26029. name: "Dragon",
  26030. image: {
  26031. source: "./media/characters/layla/dragon.svg",
  26032. extra: 610/535,
  26033. bottom: 367/977
  26034. }
  26035. },
  26036. taur: {
  26037. height: math.unit(30, "feet"),
  26038. name: "Taur",
  26039. image: {
  26040. source: "./media/characters/layla/taur.svg",
  26041. extra: 1268/1199,
  26042. bottom: 112/1380
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Micro",
  26049. height: math.unit(1, "inch")
  26050. },
  26051. {
  26052. name: "Small",
  26053. height: math.unit(1, "foot")
  26054. },
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(2 + 6 / 12, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(200, "feet")
  26063. },
  26064. {
  26065. name: "Megamacro",
  26066. height: math.unit(1000, "miles")
  26067. },
  26068. {
  26069. name: "Planetary",
  26070. height: math.unit(8000, "miles")
  26071. },
  26072. {
  26073. name: "True Layla",
  26074. height: math.unit(200000 * 7, "multiverses")
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26080. {
  26081. back: {
  26082. height: math.unit(10.5, "feet"),
  26083. weight: math.unit(800, "lb"),
  26084. name: "Back",
  26085. image: {
  26086. source: "./media/characters/knox/back.svg",
  26087. extra: 1486 / 1089,
  26088. bottom: 107 / 1601.4
  26089. }
  26090. },
  26091. side: {
  26092. height: math.unit(10.5, "feet"),
  26093. weight: math.unit(800, "lb"),
  26094. name: "Side",
  26095. image: {
  26096. source: "./media/characters/knox/side.svg",
  26097. extra: 244 / 218,
  26098. bottom: 14 / 260
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Compact",
  26105. height: math.unit(10.5, "feet"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Dynamax",
  26110. height: math.unit(210, "feet")
  26111. },
  26112. {
  26113. name: "Full Macro",
  26114. height: math.unit(850, "feet")
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(28, "feet"),
  26123. weight: math.unit(10500, "lb"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/kayda/front.svg",
  26127. extra: 1536 / 1428,
  26128. bottom: 68.7 / 1603
  26129. }
  26130. },
  26131. back: {
  26132. height: math.unit(28, "feet"),
  26133. weight: math.unit(10500, "lb"),
  26134. name: "Back",
  26135. image: {
  26136. source: "./media/characters/kayda/back.svg",
  26137. extra: 1557 / 1464,
  26138. bottom: 39.5 / 1597.49
  26139. }
  26140. },
  26141. dick: {
  26142. height: math.unit(3.858, "feet"),
  26143. name: "Dick",
  26144. image: {
  26145. source: "./media/characters/kayda/dick.svg"
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(28, "feet"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26159. {
  26160. front: {
  26161. height: math.unit(10 + 11 / 12, "feet"),
  26162. weight: math.unit(1400, "lb"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/brian/front.svg",
  26166. extra: 737 / 692,
  26167. bottom: 55.4 / 785
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(10 + 11 / 12, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(5 + 8 / 12, "feet"),
  26184. weight: math.unit(140, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/khemri/front.svg",
  26188. extra: 4780 / 4059,
  26189. bottom: 80.1 / 4859.25
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Micro",
  26196. height: math.unit(6, "inches")
  26197. },
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(5 + 8 / 12, "feet"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26207. {
  26208. front: {
  26209. height: math.unit(13, "feet"),
  26210. weight: math.unit(1700, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/felix-braveheart/front.svg",
  26214. extra: 1222 / 1157,
  26215. bottom: 53.2 / 1280
  26216. }
  26217. },
  26218. back: {
  26219. height: math.unit(13, "feet"),
  26220. weight: math.unit(1700, "lb"),
  26221. name: "Back",
  26222. image: {
  26223. source: "./media/characters/felix-braveheart/back.svg",
  26224. extra: 1277 / 1203,
  26225. bottom: 50.2 / 1327
  26226. }
  26227. },
  26228. feral: {
  26229. height: math.unit(6, "feet"),
  26230. weight: math.unit(400, "lb"),
  26231. name: "Feral",
  26232. image: {
  26233. source: "./media/characters/felix-braveheart/feral.svg",
  26234. extra: 682 / 625,
  26235. bottom: 6.9 / 688
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(13, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26249. {
  26250. side: {
  26251. height: math.unit(5 + 11 / 12, "feet"),
  26252. weight: math.unit(1400, "lb"),
  26253. name: "Side",
  26254. image: {
  26255. source: "./media/characters/shadow-blade/side.svg",
  26256. extra: 1726 / 1267,
  26257. bottom: 58.4 / 1785
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Normal",
  26264. height: math.unit(5 + 11 / 12, "feet"),
  26265. default: true
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26271. {
  26272. front: {
  26273. height: math.unit(1 + 6 / 12, "feet"),
  26274. weight: math.unit(25, "lb"),
  26275. name: "Front",
  26276. image: {
  26277. source: "./media/characters/karla-halldor/front.svg",
  26278. extra: 1459 / 1383,
  26279. bottom: 12 / 1472
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(1 + 6 / 12, "feet"),
  26287. default: true
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(6 + 2 / 12, "feet"),
  26296. weight: math.unit(160, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/ariam/front.svg",
  26300. extra: 1073/976,
  26301. bottom: 52/1125
  26302. }
  26303. },
  26304. back: {
  26305. height: math.unit(6 + 2/12, "feet"),
  26306. weight: math.unit(160, "lb"),
  26307. name: "Back",
  26308. image: {
  26309. source: "./media/characters/ariam/back.svg",
  26310. extra: 1103/1023,
  26311. bottom: 9/1112
  26312. }
  26313. },
  26314. dressed: {
  26315. height: math.unit(6 + 2/12, "feet"),
  26316. weight: math.unit(160, "lb"),
  26317. name: "Dressed",
  26318. image: {
  26319. source: "./media/characters/ariam/dressed.svg",
  26320. extra: 1099/1009,
  26321. bottom: 25/1124
  26322. }
  26323. },
  26324. squatting: {
  26325. height: math.unit(4.1, "feet"),
  26326. weight: math.unit(160, "lb"),
  26327. name: "Squatting",
  26328. image: {
  26329. source: "./media/characters/ariam/squatting.svg",
  26330. extra: 2617 / 2112,
  26331. bottom: 61.2 / 2681,
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(6 + 2 / 12, "feet"),
  26339. default: true
  26340. },
  26341. {
  26342. name: "Normal+",
  26343. height: math.unit(4, "meters")
  26344. },
  26345. {
  26346. name: "Macro",
  26347. height: math.unit(50, "meters")
  26348. },
  26349. {
  26350. name: "Macro+",
  26351. height: math.unit(100, "meters")
  26352. },
  26353. {
  26354. name: "Megamacro",
  26355. height: math.unit(20, "km")
  26356. },
  26357. {
  26358. name: "Caretaker",
  26359. height: math.unit(444, "megameters")
  26360. },
  26361. ]
  26362. ))
  26363. characterMakers.push(() => makeCharacter(
  26364. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26365. {
  26366. front: {
  26367. height: math.unit(1.67, "meters"),
  26368. weight: math.unit(140, "lb"),
  26369. name: "Front",
  26370. image: {
  26371. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26372. extra: 438 / 410,
  26373. bottom: 0.75 / 439
  26374. }
  26375. },
  26376. },
  26377. [
  26378. {
  26379. name: "Shrunken",
  26380. height: math.unit(7.6, "cm")
  26381. },
  26382. {
  26383. name: "Human Scale",
  26384. height: math.unit(1.67, "meters")
  26385. },
  26386. {
  26387. name: "Wolxi Scale",
  26388. height: math.unit(36.7, "meters"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(1.73, "meters"),
  26398. weight: math.unit(240, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/izue-two-mothers/front.svg",
  26402. extra: 469 / 437,
  26403. bottom: 1.24 / 470.6
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Shrunken",
  26410. height: math.unit(7.86, "cm")
  26411. },
  26412. {
  26413. name: "Human Scale",
  26414. height: math.unit(1.73, "meters")
  26415. },
  26416. {
  26417. name: "Wolxi Scale",
  26418. height: math.unit(38, "meters"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(1.55, "meters"),
  26428. weight: math.unit(120, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/teeku-love-shack/front.svg",
  26432. extra: 387 / 362,
  26433. bottom: 1.51 / 388
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Shrunken",
  26440. height: math.unit(7, "cm")
  26441. },
  26442. {
  26443. name: "Human Scale",
  26444. height: math.unit(1.55, "meters")
  26445. },
  26446. {
  26447. name: "Wolxi Scale",
  26448. height: math.unit(34.1, "meters"),
  26449. default: true
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26455. {
  26456. front: {
  26457. height: math.unit(1.83, "meters"),
  26458. weight: math.unit(135, "lb"),
  26459. name: "Front",
  26460. image: {
  26461. source: "./media/characters/dejma-the-red/front.svg",
  26462. extra: 480 / 458,
  26463. bottom: 1.8 / 482
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Shrunken",
  26470. height: math.unit(8.3, "cm")
  26471. },
  26472. {
  26473. name: "Human Scale",
  26474. height: math.unit(1.83, "meters")
  26475. },
  26476. {
  26477. name: "Wolxi Scale",
  26478. height: math.unit(40, "meters"),
  26479. default: true
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(1.78, "meters"),
  26488. weight: math.unit(65, "kg"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/aki/front.svg",
  26492. extra: 452 / 415
  26493. }
  26494. },
  26495. frontNsfw: {
  26496. height: math.unit(1.78, "meters"),
  26497. weight: math.unit(65, "kg"),
  26498. name: "Front (NSFW)",
  26499. image: {
  26500. source: "./media/characters/aki/front-nsfw.svg",
  26501. extra: 452 / 415
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(1.78, "meters"),
  26506. weight: math.unit(65, "kg"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/aki/back.svg",
  26510. extra: 452 / 415
  26511. }
  26512. },
  26513. rump: {
  26514. height: math.unit(2.05, "feet"),
  26515. name: "Rump",
  26516. image: {
  26517. source: "./media/characters/aki/rump.svg"
  26518. }
  26519. },
  26520. dick: {
  26521. height: math.unit(0.95, "feet"),
  26522. name: "Dick",
  26523. image: {
  26524. source: "./media/characters/aki/dick.svg"
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Micro",
  26531. height: math.unit(15, "cm")
  26532. },
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(178, "cm"),
  26536. default: true
  26537. },
  26538. {
  26539. name: "Macro",
  26540. height: math.unit(214, "m")
  26541. },
  26542. {
  26543. name: "Macro+",
  26544. height: math.unit(534, "m")
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(5 + 5 / 12, "feet"),
  26553. weight: math.unit(120, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/ari/front.svg",
  26557. extra: 1550/1471,
  26558. bottom: 39/1589
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(5 + 5 / 12, "feet")
  26566. },
  26567. {
  26568. name: "Macro",
  26569. height: math.unit(100, "feet"),
  26570. default: true
  26571. },
  26572. {
  26573. name: "Megamacro",
  26574. height: math.unit(100, "miles")
  26575. },
  26576. {
  26577. name: "Gigamacro",
  26578. height: math.unit(80000, "miles")
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26584. {
  26585. side: {
  26586. height: math.unit(9, "feet"),
  26587. weight: math.unit(400, "kg"),
  26588. name: "Side",
  26589. image: {
  26590. source: "./media/characters/bolt/side.svg",
  26591. extra: 1126 / 896,
  26592. bottom: 60 / 1187.3,
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Micro",
  26599. height: math.unit(5, "inches")
  26600. },
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(9, "feet"),
  26604. default: true
  26605. },
  26606. {
  26607. name: "Macro",
  26608. height: math.unit(700, "feet")
  26609. },
  26610. {
  26611. name: "Max Size",
  26612. height: math.unit(1.52e22, "yottameters")
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(4.3, "meters"),
  26621. weight: math.unit(3, "tons"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/draekon-sylviar/front.svg",
  26625. extra: 2072/1512,
  26626. bottom: 74/2146
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(4.3, "meters"),
  26631. weight: math.unit(3, "tons"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/draekon-sylviar/back.svg",
  26635. extra: 1639/1483,
  26636. bottom: 41/1680
  26637. }
  26638. },
  26639. feral: {
  26640. height: math.unit(1.15, "meters"),
  26641. weight: math.unit(3, "tons"),
  26642. name: "Feral",
  26643. image: {
  26644. source: "./media/characters/draekon-sylviar/feral.svg",
  26645. extra: 1033/395,
  26646. bottom: 130/1163
  26647. }
  26648. },
  26649. maw: {
  26650. height: math.unit(1.3, "meters"),
  26651. name: "Maw",
  26652. image: {
  26653. source: "./media/characters/draekon-sylviar/maw.svg"
  26654. }
  26655. },
  26656. mawSeparated: {
  26657. height: math.unit(1.53, "meters"),
  26658. name: "Separated Maw",
  26659. image: {
  26660. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26661. }
  26662. },
  26663. tail: {
  26664. height: math.unit(1.15, "meters"),
  26665. name: "Tail",
  26666. image: {
  26667. source: "./media/characters/draekon-sylviar/tail.svg"
  26668. }
  26669. },
  26670. tailDick: {
  26671. height: math.unit(1.15, "meters"),
  26672. name: "Tail (Dick)",
  26673. image: {
  26674. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26675. }
  26676. },
  26677. tailDickSeparated: {
  26678. height: math.unit(1.19, "meters"),
  26679. name: "Tail (Separated Dick)",
  26680. image: {
  26681. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26682. }
  26683. },
  26684. slit: {
  26685. height: math.unit(1, "meters"),
  26686. name: "Slit",
  26687. image: {
  26688. source: "./media/characters/draekon-sylviar/slit.svg"
  26689. }
  26690. },
  26691. dick: {
  26692. height: math.unit(1.15, "meters"),
  26693. name: "Dick",
  26694. image: {
  26695. source: "./media/characters/draekon-sylviar/dick.svg"
  26696. }
  26697. },
  26698. dickSeparated: {
  26699. height: math.unit(1.1, "meters"),
  26700. name: "Separated Dick",
  26701. image: {
  26702. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26703. }
  26704. },
  26705. sheath: {
  26706. height: math.unit(1.15, "meters"),
  26707. name: "Sheath",
  26708. image: {
  26709. source: "./media/characters/draekon-sylviar/sheath.svg"
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Small",
  26716. height: math.unit(4.53 / 2, "meters"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(4.53, "meters"),
  26722. default: true
  26723. },
  26724. {
  26725. name: "Large",
  26726. height: math.unit(4.53 * 2, "meters"),
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(6 + 2 / 12, "feet"),
  26735. weight: math.unit(180, "lb"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/brawler/front.svg",
  26739. extra: 3301 / 3027,
  26740. bottom: 138 / 3439
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(6 + 2 / 12, "feet"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(11, "feet"),
  26757. weight: math.unit(1000, "lb"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/alex/front.svg",
  26761. bottom: 44.5 / 620
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Micro",
  26768. height: math.unit(5, "inches")
  26769. },
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(11, "feet"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(9.5e9, "feet")
  26778. },
  26779. {
  26780. name: "Max Size",
  26781. height: math.unit(1.4e283, "yottameters")
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26787. {
  26788. female: {
  26789. height: math.unit(29.9, "m"),
  26790. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26791. name: "Female",
  26792. image: {
  26793. source: "./media/characters/zenari/female.svg",
  26794. extra: 3281.6 / 3217,
  26795. bottom: 72.2 / 3353
  26796. }
  26797. },
  26798. male: {
  26799. height: math.unit(27.7, "m"),
  26800. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26801. name: "Male",
  26802. image: {
  26803. source: "./media/characters/zenari/male.svg",
  26804. extra: 3008 / 2991,
  26805. bottom: 54.6 / 3069
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(29.7, "meters"),
  26813. default: true
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26819. {
  26820. female: {
  26821. height: math.unit(23.8, "m"),
  26822. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26823. name: "Female",
  26824. image: {
  26825. source: "./media/characters/mactarian/female.svg",
  26826. extra: 2662 / 2569,
  26827. bottom: 73 / 2736
  26828. }
  26829. },
  26830. male: {
  26831. height: math.unit(23.8, "m"),
  26832. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26833. name: "Male",
  26834. image: {
  26835. source: "./media/characters/mactarian/male.svg",
  26836. extra: 2673 / 2600,
  26837. bottom: 76 / 2750
  26838. }
  26839. },
  26840. },
  26841. [
  26842. {
  26843. name: "Macro",
  26844. height: math.unit(23.8, "meters"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26851. {
  26852. female: {
  26853. height: math.unit(19.3, "m"),
  26854. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26855. name: "Female",
  26856. image: {
  26857. source: "./media/characters/umok/female.svg",
  26858. extra: 2186 / 2078,
  26859. bottom: 87 / 2277
  26860. }
  26861. },
  26862. male: {
  26863. height: math.unit(19.5, "m"),
  26864. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26865. name: "Male",
  26866. image: {
  26867. source: "./media/characters/umok/male.svg",
  26868. extra: 2233 / 2140,
  26869. bottom: 24.4 / 2258
  26870. }
  26871. },
  26872. },
  26873. [
  26874. {
  26875. name: "Macro",
  26876. height: math.unit(19.3, "meters"),
  26877. default: true
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26883. {
  26884. female: {
  26885. height: math.unit(26.15, "m"),
  26886. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26887. name: "Female",
  26888. image: {
  26889. source: "./media/characters/joraxian/female.svg",
  26890. extra: 2912 / 2824,
  26891. bottom: 36 / 2956
  26892. }
  26893. },
  26894. male: {
  26895. height: math.unit(25.4, "m"),
  26896. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26897. name: "Male",
  26898. image: {
  26899. source: "./media/characters/joraxian/male.svg",
  26900. extra: 2877 / 2721,
  26901. bottom: 82 / 2967
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Macro",
  26908. height: math.unit(26.15, "meters"),
  26909. default: true
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26915. {
  26916. female: {
  26917. height: math.unit(21.6, "m"),
  26918. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26919. name: "Female",
  26920. image: {
  26921. source: "./media/characters/sthara/female.svg",
  26922. extra: 2516 / 2347,
  26923. bottom: 21.5 / 2537
  26924. }
  26925. },
  26926. male: {
  26927. height: math.unit(24, "m"),
  26928. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26929. name: "Male",
  26930. image: {
  26931. source: "./media/characters/sthara/male.svg",
  26932. extra: 2732 / 2607,
  26933. bottom: 23 / 2732
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Macro",
  26940. height: math.unit(21.6, "meters"),
  26941. default: true
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(6 + 4 / 12, "feet"),
  26950. weight: math.unit(175, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/luka-bryzant/front.svg",
  26954. extra: 311 / 289,
  26955. bottom: 4 / 315
  26956. }
  26957. },
  26958. back: {
  26959. height: math.unit(6 + 4 / 12, "feet"),
  26960. weight: math.unit(175, "lb"),
  26961. name: "Back",
  26962. image: {
  26963. source: "./media/characters/luka-bryzant/back.svg",
  26964. extra: 311 / 289,
  26965. bottom: 3.8 / 313.7
  26966. }
  26967. },
  26968. },
  26969. [
  26970. {
  26971. name: "Micro",
  26972. height: math.unit(10, "inches")
  26973. },
  26974. {
  26975. name: "Normal",
  26976. height: math.unit(6 + 4 / 12, "feet"),
  26977. default: true
  26978. },
  26979. {
  26980. name: "Large",
  26981. height: math.unit(12, "feet")
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26987. {
  26988. front: {
  26989. height: math.unit(5 + 7 / 12, "feet"),
  26990. weight: math.unit(185, "lb"),
  26991. name: "Front",
  26992. image: {
  26993. source: "./media/characters/aman-aquila/front.svg",
  26994. extra: 1013 / 976,
  26995. bottom: 45.6 / 1057
  26996. }
  26997. },
  26998. side: {
  26999. height: math.unit(5 + 7 / 12, "feet"),
  27000. weight: math.unit(185, "lb"),
  27001. name: "Side",
  27002. image: {
  27003. source: "./media/characters/aman-aquila/side.svg",
  27004. extra: 1054 / 1011,
  27005. bottom: 15 / 1070
  27006. }
  27007. },
  27008. back: {
  27009. height: math.unit(5 + 7 / 12, "feet"),
  27010. weight: math.unit(185, "lb"),
  27011. name: "Back",
  27012. image: {
  27013. source: "./media/characters/aman-aquila/back.svg",
  27014. extra: 1026 / 970,
  27015. bottom: 12 / 1039
  27016. }
  27017. },
  27018. head: {
  27019. height: math.unit(1.211, "feet"),
  27020. name: "Head",
  27021. image: {
  27022. source: "./media/characters/aman-aquila/head.svg",
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Minimicro",
  27029. height: math.unit(0.057, "inches")
  27030. },
  27031. {
  27032. name: "Micro",
  27033. height: math.unit(7, "inches")
  27034. },
  27035. {
  27036. name: "Mini",
  27037. height: math.unit(3 + 7 / 12, "feet")
  27038. },
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(5 + 7 / 12, "feet"),
  27042. default: true
  27043. },
  27044. {
  27045. name: "Macro",
  27046. height: math.unit(157 + 7 / 12, "feet")
  27047. },
  27048. {
  27049. name: "Megamacro",
  27050. height: math.unit(1557 + 7 / 12, "feet")
  27051. },
  27052. {
  27053. name: "Gigamacro",
  27054. height: math.unit(15557 + 7 / 12, "feet")
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(3 + 2 / 12, "inches"),
  27063. weight: math.unit(0.3, "ounces"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/hiphae/front.svg",
  27067. extra: 1931 / 1683,
  27068. bottom: 24 / 1955
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(3 + 1 / 2, "inches"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(5 + 10 / 12, "feet"),
  27085. weight: math.unit(165, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/nicky/front.svg",
  27089. extra: 3144 / 2886,
  27090. bottom: 45.6 / 3192
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(5 + 10 / 12, "feet"),
  27095. weight: math.unit(165, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/nicky/back.svg",
  27099. extra: 3055 / 2804,
  27100. bottom: 28.4 / 3087
  27101. }
  27102. },
  27103. frontclothed: {
  27104. height: math.unit(5 + 10 / 12, "feet"),
  27105. weight: math.unit(165, "lb"),
  27106. name: "Front-clothed",
  27107. image: {
  27108. source: "./media/characters/nicky/front-clothed.svg",
  27109. extra: 3184.9 / 2926.9,
  27110. bottom: 86.5 / 3239.9
  27111. }
  27112. },
  27113. foot: {
  27114. height: math.unit(1.16, "feet"),
  27115. name: "Foot",
  27116. image: {
  27117. source: "./media/characters/nicky/foot.svg"
  27118. }
  27119. },
  27120. feet: {
  27121. height: math.unit(1.34, "feet"),
  27122. name: "Feet",
  27123. image: {
  27124. source: "./media/characters/nicky/feet.svg"
  27125. }
  27126. },
  27127. maw: {
  27128. height: math.unit(0.9, "feet"),
  27129. name: "Maw",
  27130. image: {
  27131. source: "./media/characters/nicky/maw.svg"
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(5 + 10 / 12, "feet"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Macro",
  27143. height: math.unit(60, "feet")
  27144. },
  27145. {
  27146. name: "Megamacro",
  27147. height: math.unit(1, "mile")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27153. {
  27154. side: {
  27155. height: math.unit(10, "feet"),
  27156. weight: math.unit(600, "lb"),
  27157. name: "Side",
  27158. image: {
  27159. source: "./media/characters/blair/side.svg",
  27160. bottom: 16.6 / 475,
  27161. extra: 458 / 431
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Micro",
  27168. height: math.unit(8, "inches")
  27169. },
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(10, "feet"),
  27173. default: true
  27174. },
  27175. {
  27176. name: "Macro",
  27177. height: math.unit(180, "feet")
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(5 + 4 / 12, "feet"),
  27186. weight: math.unit(125, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/fisher/front.svg",
  27190. extra: 444 / 390,
  27191. bottom: 2 / 444.8
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Micro",
  27198. height: math.unit(4, "inches")
  27199. },
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(5 + 4 / 12, "feet"),
  27203. default: true
  27204. },
  27205. {
  27206. name: "Macro",
  27207. height: math.unit(100, "feet")
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(6.71, "feet"),
  27216. weight: math.unit(200, "lb"),
  27217. preyCapacity: math.unit(1000000, "people"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/gliss/front.svg",
  27221. extra: 2347 / 2231,
  27222. bottom: 113 / 2462
  27223. }
  27224. },
  27225. hammerspaceSize: {
  27226. height: math.unit(6.71 * 717, "feet"),
  27227. weight: math.unit(200, "lb"),
  27228. preyCapacity: math.unit(1000000, "people"),
  27229. name: "Hammerspace Size",
  27230. image: {
  27231. source: "./media/characters/gliss/front.svg",
  27232. extra: 2347 / 2231,
  27233. bottom: 113 / 2462
  27234. }
  27235. },
  27236. },
  27237. [
  27238. {
  27239. name: "Normal",
  27240. height: math.unit(6.71, "feet"),
  27241. default: true
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27247. {
  27248. side: {
  27249. height: math.unit(1.44, "m"),
  27250. weight: math.unit(80, "kg"),
  27251. name: "Side",
  27252. image: {
  27253. source: "./media/characters/dune-anderson/side.svg",
  27254. bottom: 49 / 1426
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Wolf-sized",
  27261. height: math.unit(1.44, "meters")
  27262. },
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(5.05, "meters"),
  27266. default: true
  27267. },
  27268. {
  27269. name: "Big",
  27270. height: math.unit(14.4, "meters")
  27271. },
  27272. {
  27273. name: "Huge",
  27274. height: math.unit(144, "meters")
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(7, "feet"),
  27283. weight: math.unit(425, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/hind/front.svg",
  27287. extra: 2091 / 1860,
  27288. bottom: 129 / 2220
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(7, "feet"),
  27293. weight: math.unit(425, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/hind/back.svg",
  27297. extra: 2091 / 1860,
  27298. bottom: 24.6 / 2309
  27299. }
  27300. },
  27301. tail: {
  27302. height: math.unit(2.8, "feet"),
  27303. name: "Tail",
  27304. image: {
  27305. source: "./media/characters/hind/tail.svg"
  27306. }
  27307. },
  27308. head: {
  27309. height: math.unit(2.55, "feet"),
  27310. name: "Head",
  27311. image: {
  27312. source: "./media/characters/hind/head.svg"
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "XS",
  27319. height: math.unit(0.7, "feet")
  27320. },
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(7, "feet"),
  27324. default: true
  27325. },
  27326. {
  27327. name: "XL",
  27328. height: math.unit(70, "feet")
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(2.1, "meters"),
  27337. weight: math.unit(150, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/tharquench-sizestealer/front.svg",
  27341. extra: 1605/1470,
  27342. bottom: 36/1641
  27343. }
  27344. },
  27345. frontAlt: {
  27346. height: math.unit(2.1, "meters"),
  27347. weight: math.unit(150, "lb"),
  27348. name: "Front (Alt)",
  27349. image: {
  27350. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27351. extra: 2318 / 2063,
  27352. bottom: 93.4 / 2410
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Nano",
  27359. height: math.unit(1, "mm")
  27360. },
  27361. {
  27362. name: "Micro",
  27363. height: math.unit(1, "cm")
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(2.1, "meters"),
  27368. default: true
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(7 + 5 / 12, "feet"),
  27377. weight: math.unit(357, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/solex-draconov/front.svg",
  27381. extra: 1993 / 1865,
  27382. bottom: 117 / 2111
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Natural Height",
  27389. height: math.unit(7 + 5 / 12, "feet"),
  27390. default: true
  27391. },
  27392. {
  27393. name: "Macro",
  27394. height: math.unit(350, "feet")
  27395. },
  27396. {
  27397. name: "Macro+",
  27398. height: math.unit(1000, "feet")
  27399. },
  27400. {
  27401. name: "Megamacro",
  27402. height: math.unit(20, "km")
  27403. },
  27404. {
  27405. name: "Megamacro+",
  27406. height: math.unit(1000, "km")
  27407. },
  27408. {
  27409. name: "Gigamacro",
  27410. height: math.unit(2.5, "Gm")
  27411. },
  27412. {
  27413. name: "Teramacro",
  27414. height: math.unit(15, "Tm")
  27415. },
  27416. {
  27417. name: "Galactic",
  27418. height: math.unit(30, "Zm")
  27419. },
  27420. {
  27421. name: "Universal",
  27422. height: math.unit(21000, "Ym")
  27423. },
  27424. {
  27425. name: "Omniversal",
  27426. height: math.unit(9.861e50, "Ym")
  27427. },
  27428. {
  27429. name: "Existential",
  27430. height: math.unit(1e300, "meters")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27436. {
  27437. side: {
  27438. height: math.unit(25, "feet"),
  27439. weight: math.unit(90000, "lb"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/mandarax/side.svg",
  27443. extra: 614 / 332,
  27444. bottom: 55 / 630
  27445. }
  27446. },
  27447. lounging: {
  27448. height: math.unit(15.4, "feet"),
  27449. weight: math.unit(90000, "lb"),
  27450. name: "Lounging",
  27451. image: {
  27452. source: "./media/characters/mandarax/lounging.svg",
  27453. extra: 817/609,
  27454. bottom: 685/1502
  27455. }
  27456. },
  27457. head: {
  27458. height: math.unit(11.4, "feet"),
  27459. name: "Head",
  27460. image: {
  27461. source: "./media/characters/mandarax/head.svg"
  27462. }
  27463. },
  27464. belly: {
  27465. height: math.unit(33, "feet"),
  27466. name: "Belly",
  27467. preyCapacity: math.unit(500, "people"),
  27468. image: {
  27469. source: "./media/characters/mandarax/belly.svg"
  27470. }
  27471. },
  27472. dick: {
  27473. height: math.unit(8.46, "feet"),
  27474. name: "Dick",
  27475. image: {
  27476. source: "./media/characters/mandarax/dick.svg"
  27477. }
  27478. },
  27479. top: {
  27480. height: math.unit(28, "meters"),
  27481. name: "Top",
  27482. image: {
  27483. source: "./media/characters/mandarax/top.svg"
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Normal",
  27490. height: math.unit(25, "feet"),
  27491. default: true
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27497. {
  27498. front: {
  27499. height: math.unit(5, "feet"),
  27500. weight: math.unit(90, "lb"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/pixil/front.svg",
  27504. extra: 2000 / 1618,
  27505. bottom: 12.3 / 2011
  27506. }
  27507. },
  27508. },
  27509. [
  27510. {
  27511. name: "Normal",
  27512. height: math.unit(5, "feet"),
  27513. default: true
  27514. },
  27515. {
  27516. name: "Megamacro",
  27517. height: math.unit(10, "miles"),
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(7 + 2 / 12, "feet"),
  27526. weight: math.unit(200, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/angel/front.svg",
  27530. extra: 1830 / 1737,
  27531. bottom: 22.6 / 1854,
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(7 + 2 / 12, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(1000, "feet")
  27544. },
  27545. {
  27546. name: "Megamacro",
  27547. height: math.unit(2, "miles")
  27548. },
  27549. {
  27550. name: "Gigamacro",
  27551. height: math.unit(20, "earths")
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27557. {
  27558. front: {
  27559. height: math.unit(5, "feet"),
  27560. weight: math.unit(180, "lb"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/mekana/front.svg",
  27564. extra: 1671 / 1605,
  27565. bottom: 3.5 / 1691
  27566. }
  27567. },
  27568. side: {
  27569. height: math.unit(5, "feet"),
  27570. weight: math.unit(180, "lb"),
  27571. name: "Side",
  27572. image: {
  27573. source: "./media/characters/mekana/side.svg",
  27574. extra: 1671 / 1605,
  27575. bottom: 3.5 / 1691
  27576. }
  27577. },
  27578. back: {
  27579. height: math.unit(5, "feet"),
  27580. weight: math.unit(180, "lb"),
  27581. name: "Back",
  27582. image: {
  27583. source: "./media/characters/mekana/back.svg",
  27584. extra: 1671 / 1605,
  27585. bottom: 3.5 / 1691
  27586. }
  27587. },
  27588. },
  27589. [
  27590. {
  27591. name: "Normal",
  27592. height: math.unit(5, "feet"),
  27593. default: true
  27594. },
  27595. ]
  27596. ))
  27597. characterMakers.push(() => makeCharacter(
  27598. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27599. {
  27600. front: {
  27601. height: math.unit(4 + 6 / 12, "feet"),
  27602. weight: math.unit(80, "lb"),
  27603. name: "Front",
  27604. image: {
  27605. source: "./media/characters/pixie/front.svg",
  27606. extra: 1924 / 1825,
  27607. bottom: 22.4 / 1946
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Normal",
  27614. height: math.unit(4 + 6 / 12, "feet"),
  27615. default: true
  27616. },
  27617. {
  27618. name: "Macro",
  27619. height: math.unit(40, "feet")
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27625. {
  27626. front: {
  27627. height: math.unit(2.1, "meters"),
  27628. weight: math.unit(200, "lb"),
  27629. name: "Front",
  27630. image: {
  27631. source: "./media/characters/the-lascivious/front.svg",
  27632. extra: 1 / 0.893,
  27633. bottom: 3.5 / 573.7
  27634. }
  27635. },
  27636. },
  27637. [
  27638. {
  27639. name: "Human Scale",
  27640. height: math.unit(2.1, "meters")
  27641. },
  27642. {
  27643. name: "Wolxi Scale",
  27644. height: math.unit(46.2, "m"),
  27645. default: true
  27646. },
  27647. {
  27648. name: "Boinker of Buildings",
  27649. height: math.unit(10, "km")
  27650. },
  27651. {
  27652. name: "Shagger of Skyscrapers",
  27653. height: math.unit(40, "km")
  27654. },
  27655. {
  27656. name: "Banger of Boroughs",
  27657. height: math.unit(4000, "km")
  27658. },
  27659. {
  27660. name: "Screwer of States",
  27661. height: math.unit(100000, "km")
  27662. },
  27663. {
  27664. name: "Pounder of Planets",
  27665. height: math.unit(2000000, "km")
  27666. },
  27667. ]
  27668. ))
  27669. characterMakers.push(() => makeCharacter(
  27670. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27671. {
  27672. front: {
  27673. height: math.unit(6, "feet"),
  27674. weight: math.unit(150, "lb"),
  27675. name: "Front",
  27676. image: {
  27677. source: "./media/characters/aj/front.svg",
  27678. extra: 2039 / 1562,
  27679. bottom: 40 / 2079
  27680. }
  27681. },
  27682. },
  27683. [
  27684. {
  27685. name: "Normal",
  27686. height: math.unit(11 + 6 / 12, "feet"),
  27687. default: true
  27688. },
  27689. {
  27690. name: "Megamacro",
  27691. height: math.unit(60, "megameters")
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27697. {
  27698. side: {
  27699. height: math.unit(31 + 8 / 12, "feet"),
  27700. weight: math.unit(75000, "kg"),
  27701. name: "Side",
  27702. image: {
  27703. source: "./media/characters/koros/side.svg",
  27704. extra: 1442 / 1297,
  27705. bottom: 122.7 / 1562
  27706. }
  27707. },
  27708. dicksKingsCrown: {
  27709. height: math.unit(6, "feet"),
  27710. name: "Dicks (King's Crown)",
  27711. image: {
  27712. source: "./media/characters/koros/dicks-kings-crown.svg"
  27713. }
  27714. },
  27715. dicksTailSet: {
  27716. height: math.unit(3, "feet"),
  27717. name: "Dicks (Tail Set)",
  27718. image: {
  27719. source: "./media/characters/koros/dicks-tail-set.svg"
  27720. }
  27721. },
  27722. dickCumming: {
  27723. height: math.unit(7.98, "feet"),
  27724. name: "Dick (Cumming)",
  27725. image: {
  27726. source: "./media/characters/koros/dick-cumming.svg"
  27727. }
  27728. },
  27729. dicksBack: {
  27730. height: math.unit(5.9, "feet"),
  27731. name: "Dicks (Back)",
  27732. image: {
  27733. source: "./media/characters/koros/dicks-back.svg"
  27734. }
  27735. },
  27736. dicksFront: {
  27737. height: math.unit(3.72, "feet"),
  27738. name: "Dicks (Front)",
  27739. image: {
  27740. source: "./media/characters/koros/dicks-front.svg"
  27741. }
  27742. },
  27743. dicksPeeking: {
  27744. height: math.unit(3.0, "feet"),
  27745. name: "Dicks (Peeking)",
  27746. image: {
  27747. source: "./media/characters/koros/dicks-peeking.svg"
  27748. }
  27749. },
  27750. eye: {
  27751. height: math.unit(1.7, "feet"),
  27752. name: "Eye",
  27753. image: {
  27754. source: "./media/characters/koros/eye.svg"
  27755. }
  27756. },
  27757. headFront: {
  27758. height: math.unit(11.69, "feet"),
  27759. name: "Head (Front)",
  27760. image: {
  27761. source: "./media/characters/koros/head-front.svg"
  27762. }
  27763. },
  27764. headSide: {
  27765. height: math.unit(14, "feet"),
  27766. name: "Head (Side)",
  27767. image: {
  27768. source: "./media/characters/koros/head-side.svg"
  27769. }
  27770. },
  27771. leg: {
  27772. height: math.unit(17, "feet"),
  27773. name: "Leg",
  27774. image: {
  27775. source: "./media/characters/koros/leg.svg"
  27776. }
  27777. },
  27778. mawSide: {
  27779. height: math.unit(12.8, "feet"),
  27780. name: "Maw (Side)",
  27781. image: {
  27782. source: "./media/characters/koros/maw-side.svg"
  27783. }
  27784. },
  27785. mawSpitting: {
  27786. height: math.unit(17, "feet"),
  27787. name: "Maw (Spitting)",
  27788. image: {
  27789. source: "./media/characters/koros/maw-spitting.svg"
  27790. }
  27791. },
  27792. slit: {
  27793. height: math.unit(2.8, "feet"),
  27794. name: "Slit",
  27795. image: {
  27796. source: "./media/characters/koros/slit.svg"
  27797. }
  27798. },
  27799. stomach: {
  27800. height: math.unit(6.8, "feet"),
  27801. preyCapacity: math.unit(20, "people"),
  27802. name: "Stomach",
  27803. image: {
  27804. source: "./media/characters/koros/stomach.svg"
  27805. }
  27806. },
  27807. wingspanBottom: {
  27808. height: math.unit(114, "feet"),
  27809. name: "Wingspan (Bottom)",
  27810. image: {
  27811. source: "./media/characters/koros/wingspan-bottom.svg"
  27812. }
  27813. },
  27814. wingspanTop: {
  27815. height: math.unit(104, "feet"),
  27816. name: "Wingspan (Top)",
  27817. image: {
  27818. source: "./media/characters/koros/wingspan-top.svg"
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(31 + 8 / 12, "feet"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(18 + 5 / 12, "feet"),
  27835. weight: math.unit(3750, "kg"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/vexx/front.svg",
  27839. extra: 426 / 396,
  27840. bottom: 31.5 / 458
  27841. }
  27842. },
  27843. maw: {
  27844. height: math.unit(6, "feet"),
  27845. name: "Maw",
  27846. image: {
  27847. source: "./media/characters/vexx/maw.svg"
  27848. }
  27849. },
  27850. },
  27851. [
  27852. {
  27853. name: "Normal",
  27854. height: math.unit(18 + 5 / 12, "feet"),
  27855. default: true
  27856. },
  27857. ]
  27858. ))
  27859. characterMakers.push(() => makeCharacter(
  27860. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27861. {
  27862. front: {
  27863. height: math.unit(17 + 6 / 12, "feet"),
  27864. weight: math.unit(150, "lb"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/baadra/front.svg",
  27868. extra: 1694/1553,
  27869. bottom: 179/1873
  27870. }
  27871. },
  27872. frontAlt: {
  27873. height: math.unit(17 + 6 / 12, "feet"),
  27874. weight: math.unit(150, "lb"),
  27875. name: "Front (Alt)",
  27876. image: {
  27877. source: "./media/characters/baadra/front-alt.svg",
  27878. extra: 3137 / 2890,
  27879. bottom: 168.4 / 3305
  27880. }
  27881. },
  27882. back: {
  27883. height: math.unit(17 + 6 / 12, "feet"),
  27884. weight: math.unit(150, "lb"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/baadra/back.svg",
  27888. extra: 3142 / 2890,
  27889. bottom: 220 / 3371
  27890. }
  27891. },
  27892. head: {
  27893. height: math.unit(5.45, "feet"),
  27894. name: "Head",
  27895. image: {
  27896. source: "./media/characters/baadra/head.svg"
  27897. }
  27898. },
  27899. headAngry: {
  27900. height: math.unit(4.95, "feet"),
  27901. name: "Head (Angry)",
  27902. image: {
  27903. source: "./media/characters/baadra/head-angry.svg"
  27904. }
  27905. },
  27906. headOpen: {
  27907. height: math.unit(6, "feet"),
  27908. name: "Head (Open)",
  27909. image: {
  27910. source: "./media/characters/baadra/head-open.svg"
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(17 + 6 / 12, "feet"),
  27918. default: true
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(7 + 3 / 12, "feet"),
  27927. weight: math.unit(180, "lb"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/juri/front.svg",
  27931. extra: 1401 / 1237,
  27932. bottom: 18.5 / 1418
  27933. }
  27934. },
  27935. side: {
  27936. height: math.unit(7 + 3 / 12, "feet"),
  27937. weight: math.unit(180, "lb"),
  27938. name: "Side",
  27939. image: {
  27940. source: "./media/characters/juri/side.svg",
  27941. extra: 1424 / 1242,
  27942. bottom: 18.5 / 1447
  27943. }
  27944. },
  27945. sitting: {
  27946. height: math.unit(6, "feet"),
  27947. weight: math.unit(180, "lb"),
  27948. name: "Sitting",
  27949. image: {
  27950. source: "./media/characters/juri/sitting.svg",
  27951. extra: 1270 / 1143,
  27952. bottom: 100 / 1343
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(7 + 3 / 12, "feet"),
  27957. weight: math.unit(180, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/juri/back.svg",
  27961. extra: 1377 / 1240,
  27962. bottom: 23.7 / 1405
  27963. }
  27964. },
  27965. maw: {
  27966. height: math.unit(2.8, "feet"),
  27967. name: "Maw",
  27968. image: {
  27969. source: "./media/characters/juri/maw.svg"
  27970. }
  27971. },
  27972. stomach: {
  27973. height: math.unit(0.89, "feet"),
  27974. preyCapacity: math.unit(4, "liters"),
  27975. name: "Stomach",
  27976. image: {
  27977. source: "./media/characters/juri/stomach.svg"
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(7 + 3 / 12, "feet"),
  27985. default: true
  27986. },
  27987. ]
  27988. ))
  27989. characterMakers.push(() => makeCharacter(
  27990. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27991. {
  27992. fox: {
  27993. height: math.unit(5 + 6 / 12, "feet"),
  27994. weight: math.unit(140, "lb"),
  27995. name: "Fox",
  27996. image: {
  27997. source: "./media/characters/maxene-sita/fox.svg",
  27998. extra: 146 / 138,
  27999. bottom: 2.1 / 148.19
  28000. }
  28001. },
  28002. foxLaying: {
  28003. height: math.unit(1.70, "feet"),
  28004. weight: math.unit(140, "lb"),
  28005. name: "Fox (Laying)",
  28006. image: {
  28007. source: "./media/characters/maxene-sita/fox-laying.svg",
  28008. extra: 910 / 572,
  28009. bottom: 71 / 981
  28010. }
  28011. },
  28012. kitsune: {
  28013. height: math.unit(10, "feet"),
  28014. weight: math.unit(800, "lb"),
  28015. name: "Kitsune",
  28016. image: {
  28017. source: "./media/characters/maxene-sita/kitsune.svg",
  28018. extra: 185 / 176,
  28019. bottom: 4.7 / 189.9
  28020. }
  28021. },
  28022. hellhound: {
  28023. height: math.unit(10, "feet"),
  28024. weight: math.unit(700, "lb"),
  28025. name: "Hellhound",
  28026. image: {
  28027. source: "./media/characters/maxene-sita/hellhound.svg",
  28028. extra: 1600 / 1545,
  28029. bottom: 81 / 1681
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(5 + 6 / 12, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28043. {
  28044. front: {
  28045. height: math.unit(3 + 4 / 12, "feet"),
  28046. weight: math.unit(70, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/maia/front.svg",
  28050. extra: 227 / 219.5,
  28051. bottom: 40 / 267
  28052. }
  28053. },
  28054. back: {
  28055. height: math.unit(3 + 4 / 12, "feet"),
  28056. weight: math.unit(70, "lb"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/maia/back.svg",
  28060. extra: 237 / 225
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(3 + 4 / 12, "feet"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(5 + 10 / 12, "feet"),
  28077. weight: math.unit(197, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/jabaro/front.svg",
  28081. extra: 225 / 216,
  28082. bottom: 5.06 / 230
  28083. }
  28084. },
  28085. back: {
  28086. height: math.unit(5 + 10 / 12, "feet"),
  28087. weight: math.unit(197, "lb"),
  28088. name: "Back",
  28089. image: {
  28090. source: "./media/characters/jabaro/back.svg",
  28091. extra: 225 / 219,
  28092. bottom: 1.9 / 227
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(5 + 10 / 12, "feet"),
  28100. default: true
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(5 + 8 / 12, "feet"),
  28109. weight: math.unit(139, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/risa/front.svg",
  28113. extra: 270 / 260,
  28114. bottom: 11.2 / 282
  28115. }
  28116. },
  28117. back: {
  28118. height: math.unit(5 + 8 / 12, "feet"),
  28119. weight: math.unit(139, "lb"),
  28120. name: "Back",
  28121. image: {
  28122. source: "./media/characters/risa/back.svg",
  28123. extra: 264 / 255,
  28124. bottom: 4 / 268
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(5 + 8 / 12, "feet"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(2 + 11 / 12, "feet"),
  28141. weight: math.unit(30, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/weatley/front.svg",
  28145. bottom: 10.7 / 414,
  28146. extra: 403.5 / 362
  28147. }
  28148. },
  28149. back: {
  28150. height: math.unit(2 + 11 / 12, "feet"),
  28151. weight: math.unit(30, "lb"),
  28152. name: "Back",
  28153. image: {
  28154. source: "./media/characters/weatley/back.svg",
  28155. bottom: 10.7 / 414,
  28156. extra: 403.5 / 362
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(2 + 11 / 12, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(5 + 2 / 12, "feet"),
  28173. weight: math.unit(50, "kg"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/mercury-crescent/front.svg",
  28177. extra: 1088 / 1033,
  28178. bottom: 18.9 / 1109
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(5 + 2 / 12, "feet"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28192. {
  28193. front: {
  28194. height: math.unit(2, "feet"),
  28195. weight: math.unit(15, "kg"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/diamond-jones/front.svg",
  28199. extra: 727/723,
  28200. bottom: 46/773
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(2, "feet"),
  28208. default: true
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(3, "feet"),
  28217. weight: math.unit(30, "kg"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/sweet-bit/front.svg",
  28221. extra: 675 / 567,
  28222. bottom: 27.7 / 703
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(3, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28236. {
  28237. side: {
  28238. height: math.unit(9.178, "feet"),
  28239. weight: math.unit(500, "lb"),
  28240. name: "Side",
  28241. image: {
  28242. source: "./media/characters/umbrazen/side.svg",
  28243. extra: 1730 / 1473,
  28244. bottom: 34.6 / 1765
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Normal",
  28251. height: math.unit(9.178, "feet"),
  28252. default: true
  28253. },
  28254. ]
  28255. ))
  28256. characterMakers.push(() => makeCharacter(
  28257. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28258. {
  28259. front: {
  28260. height: math.unit(10, "feet"),
  28261. weight: math.unit(750, "lb"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/arlist/front.svg",
  28265. extra: 961 / 778,
  28266. bottom: 6.2 / 986
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(10, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(5 + 1 / 12, "feet"),
  28283. weight: math.unit(110, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/aradel/front.svg",
  28287. extra: 324 / 303,
  28288. bottom: 3.6 / 329.4
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(5 + 1 / 12, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28302. {
  28303. dressed: {
  28304. height: math.unit(3 + 8 / 12, "feet"),
  28305. weight: math.unit(50, "lb"),
  28306. name: "Dressed",
  28307. image: {
  28308. source: "./media/characters/serryn/dressed.svg",
  28309. extra: 1792 / 1656,
  28310. bottom: 43.5 / 1840
  28311. }
  28312. },
  28313. nude: {
  28314. height: math.unit(3 + 8 / 12, "feet"),
  28315. weight: math.unit(50, "lb"),
  28316. name: "Nude",
  28317. image: {
  28318. source: "./media/characters/serryn/nude.svg",
  28319. extra: 1792 / 1656,
  28320. bottom: 43.5 / 1840
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(3 + 8 / 12, "feet"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(7 + 10 / 12, "feet"),
  28337. weight: math.unit(255, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/xavier-thyme/front.svg",
  28341. extra: 3733 / 3642,
  28342. bottom: 131 / 3869
  28343. }
  28344. },
  28345. frontRaven: {
  28346. height: math.unit(7 + 10 / 12, "feet"),
  28347. weight: math.unit(255, "lb"),
  28348. name: "Front (Raven)",
  28349. image: {
  28350. source: "./media/characters/xavier-thyme/front-raven.svg",
  28351. extra: 4385 / 3642,
  28352. bottom: 131 / 4517
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(7 + 10 / 12, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(1.6, "m"),
  28369. weight: math.unit(50, "kg"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/kiki/front.svg",
  28373. extra: 4682 / 3610,
  28374. bottom: 115 / 4777
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(1.6, "meters"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(50, "m"),
  28391. weight: math.unit(500, "tonnes"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/ryoko/front.svg",
  28395. extra: 4632 / 3926,
  28396. bottom: 193 / 4823
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(50, "meters"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(30, "m"),
  28413. weight: math.unit(22, "tonnes"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/elio/front.svg",
  28417. extra: 4582 / 3720,
  28418. bottom: 236 / 4828
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(30, "meters"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(6 + 3 / 12, "feet"),
  28435. weight: math.unit(120, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/azura/front.svg",
  28439. extra: 1149 / 1135,
  28440. bottom: 45 / 1194
  28441. }
  28442. },
  28443. frontClothed: {
  28444. height: math.unit(6 + 3 / 12, "feet"),
  28445. weight: math.unit(120, "lb"),
  28446. name: "Front (Clothed)",
  28447. image: {
  28448. source: "./media/characters/azura/front-clothed.svg",
  28449. extra: 1149 / 1135,
  28450. bottom: 45 / 1194
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(6 + 3 / 12, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Macro",
  28462. height: math.unit(20 + 6 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(12, "miles")
  28467. },
  28468. {
  28469. name: "Gigamacro",
  28470. height: math.unit(10000, "miles")
  28471. },
  28472. {
  28473. name: "Teramacro",
  28474. height: math.unit(900000, "miles")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(12, "feet"),
  28483. weight: math.unit(1, "ton"),
  28484. capacity: math.unit(660000, "gallons"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/zeus/front.svg",
  28488. extra: 5005 / 4717,
  28489. bottom: 363 / 5388
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(12, "feet")
  28497. },
  28498. {
  28499. name: "Preferred Size",
  28500. height: math.unit(0.5, "miles"),
  28501. default: true
  28502. },
  28503. {
  28504. name: "Giga Horse",
  28505. height: math.unit(300, "miles")
  28506. },
  28507. {
  28508. name: "Riding Planets",
  28509. height: math.unit(30, "megameters")
  28510. },
  28511. {
  28512. name: "Cosmic Giant",
  28513. height: math.unit(3, "zettameters")
  28514. },
  28515. {
  28516. name: "Breeding God",
  28517. height: math.unit(9.92e22, "yottameters")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28523. {
  28524. side: {
  28525. height: math.unit(9, "feet"),
  28526. weight: math.unit(1500, "kg"),
  28527. name: "Side",
  28528. image: {
  28529. source: "./media/characters/fang/side.svg",
  28530. extra: 924 / 866,
  28531. bottom: 47.5 / 972.3
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(9, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Macro",
  28543. height: math.unit(75 + 6 / 12, "feet")
  28544. },
  28545. {
  28546. name: "Teramacro",
  28547. height: math.unit(50000, "miles")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(10, "feet"),
  28556. weight: math.unit(2, "tons"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/rekhit/front.svg",
  28560. extra: 2796 / 2590,
  28561. bottom: 225 / 3022
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(10, "feet"),
  28569. default: true
  28570. },
  28571. {
  28572. name: "Macro",
  28573. height: math.unit(500, "feet")
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(7 + 6.451 / 12, "feet"),
  28582. weight: math.unit(310, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/dahlia-verrick/front.svg",
  28586. extra: 1488 / 1365,
  28587. bottom: 6.2 / 1495
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(7 + 6.451 / 12, "feet"),
  28592. weight: math.unit(310, "lb"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/dahlia-verrick/back.svg",
  28596. extra: 1472 / 1351,
  28597. bottom: 5.28 / 1477
  28598. }
  28599. },
  28600. frontBusiness: {
  28601. height: math.unit(7 + 6.451 / 12, "feet"),
  28602. weight: math.unit(200, "lb"),
  28603. name: "Front (Business)",
  28604. image: {
  28605. source: "./media/characters/dahlia-verrick/front-business.svg",
  28606. extra: 1478 / 1381,
  28607. bottom: 5.5 / 1484
  28608. }
  28609. },
  28610. frontCasual: {
  28611. height: math.unit(7 + 6.451 / 12, "feet"),
  28612. weight: math.unit(200, "lb"),
  28613. name: "Front (Casual)",
  28614. image: {
  28615. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28616. extra: 1478 / 1381,
  28617. bottom: 5.5 / 1484
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Travel-Sized",
  28624. height: math.unit(7.45, "inches")
  28625. },
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(7 + 6.451 / 12, "feet"),
  28629. default: true
  28630. },
  28631. {
  28632. name: "Hitting the Town",
  28633. height: math.unit(37 + 8 / 12, "feet")
  28634. },
  28635. {
  28636. name: "Stomp in the Suburbs",
  28637. height: math.unit(964 + 9.728 / 12, "feet")
  28638. },
  28639. {
  28640. name: "Sit on the City",
  28641. height: math.unit(61747 + 10.592 / 12, "feet")
  28642. },
  28643. {
  28644. name: "Glomp the Globe",
  28645. height: math.unit(252919327 + 4.832 / 12, "feet")
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(6 + 4 / 12, "feet"),
  28654. weight: math.unit(320, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/balina-mahigan/front.svg",
  28658. extra: 447 / 428,
  28659. bottom: 18 / 466
  28660. }
  28661. },
  28662. back: {
  28663. height: math.unit(6 + 4 / 12, "feet"),
  28664. weight: math.unit(320, "lb"),
  28665. name: "Back",
  28666. image: {
  28667. source: "./media/characters/balina-mahigan/back.svg",
  28668. extra: 445 / 428,
  28669. bottom: 4.07 / 448
  28670. }
  28671. },
  28672. arm: {
  28673. height: math.unit(1.88, "feet"),
  28674. name: "Arm",
  28675. image: {
  28676. source: "./media/characters/balina-mahigan/arm.svg"
  28677. }
  28678. },
  28679. backPort: {
  28680. height: math.unit(0.685, "feet"),
  28681. name: "Back Port",
  28682. image: {
  28683. source: "./media/characters/balina-mahigan/back-port.svg"
  28684. }
  28685. },
  28686. hoofpaw: {
  28687. height: math.unit(1.41, "feet"),
  28688. name: "Hoofpaw",
  28689. image: {
  28690. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28691. }
  28692. },
  28693. leftHandBack: {
  28694. height: math.unit(0.938, "feet"),
  28695. name: "Left Hand (Back)",
  28696. image: {
  28697. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28698. }
  28699. },
  28700. leftHandFront: {
  28701. height: math.unit(0.938, "feet"),
  28702. name: "Left Hand (Front)",
  28703. image: {
  28704. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28705. }
  28706. },
  28707. rightHandBack: {
  28708. height: math.unit(0.95, "feet"),
  28709. name: "Right Hand (Back)",
  28710. image: {
  28711. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28712. }
  28713. },
  28714. rightHandFront: {
  28715. height: math.unit(0.95, "feet"),
  28716. name: "Right Hand (Front)",
  28717. image: {
  28718. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(6 + 4 / 12, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(6, "feet"),
  28735. weight: math.unit(320, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/balina-mejeri/front.svg",
  28739. extra: 517 / 488,
  28740. bottom: 44.2 / 561
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(6 + 4 / 12, "feet")
  28748. },
  28749. {
  28750. name: "Business",
  28751. height: math.unit(155, "feet"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28758. {
  28759. kneeling: {
  28760. height: math.unit(6 + 4 / 12, "feet"),
  28761. weight: math.unit(300 * 20, "lb"),
  28762. name: "Kneeling",
  28763. image: {
  28764. source: "./media/characters/balbarian/kneeling.svg",
  28765. extra: 922 / 862,
  28766. bottom: 42.4 / 965
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(6 + 4 / 12, "feet")
  28774. },
  28775. {
  28776. name: "Treasured",
  28777. height: math.unit(18 + 9 / 12, "feet"),
  28778. default: true
  28779. },
  28780. {
  28781. name: "Macro",
  28782. height: math.unit(900, "feet")
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(6 + 4 / 12, "feet"),
  28791. weight: math.unit(325, "lb"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/balina-amarini/front.svg",
  28795. extra: 415 / 403,
  28796. bottom: 19 / 433.4
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(6 + 4 / 12, "feet"),
  28801. weight: math.unit(325, "lb"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/balina-amarini/back.svg",
  28805. extra: 415 / 403,
  28806. bottom: 13.5 / 432
  28807. }
  28808. },
  28809. overdrive: {
  28810. height: math.unit(6 + 4 / 12, "feet"),
  28811. weight: math.unit(400, "lb"),
  28812. name: "Overdrive",
  28813. image: {
  28814. source: "./media/characters/balina-amarini/overdrive.svg",
  28815. extra: 269 / 259,
  28816. bottom: 12 / 282
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Boom",
  28823. height: math.unit(9 + 10 / 12, "feet"),
  28824. default: true
  28825. },
  28826. {
  28827. name: "Macro",
  28828. height: math.unit(280, "feet")
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28834. {
  28835. goddess: {
  28836. height: math.unit(600, "feet"),
  28837. weight: math.unit(2000000, "tons"),
  28838. name: "Goddess",
  28839. image: {
  28840. source: "./media/characters/lady-kubwa/goddess.svg",
  28841. extra: 1240.5 / 1223,
  28842. bottom: 22 / 1263
  28843. }
  28844. },
  28845. goddesser: {
  28846. height: math.unit(900, "feet"),
  28847. weight: math.unit(20000000, "lb"),
  28848. name: "Goddess-er",
  28849. image: {
  28850. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28851. extra: 899 / 888,
  28852. bottom: 12.6 / 912
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(600, "feet"),
  28860. default: true
  28861. },
  28862. {
  28863. name: "Megamacro",
  28864. height: math.unit(250, "miles")
  28865. },
  28866. ]
  28867. ))
  28868. characterMakers.push(() => makeCharacter(
  28869. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28870. {
  28871. front: {
  28872. height: math.unit(7 + 7 / 12, "feet"),
  28873. weight: math.unit(250, "lb"),
  28874. name: "Front",
  28875. image: {
  28876. source: "./media/characters/tala-grovehorn/front.svg",
  28877. extra: 2636 / 2525,
  28878. bottom: 147 / 2781
  28879. }
  28880. },
  28881. back: {
  28882. height: math.unit(7 + 7 / 12, "feet"),
  28883. weight: math.unit(250, "lb"),
  28884. name: "Back",
  28885. image: {
  28886. source: "./media/characters/tala-grovehorn/back.svg",
  28887. extra: 2635 / 2539,
  28888. bottom: 100 / 2732.8
  28889. }
  28890. },
  28891. mouth: {
  28892. height: math.unit(1.15, "feet"),
  28893. name: "Mouth",
  28894. image: {
  28895. source: "./media/characters/tala-grovehorn/mouth.svg"
  28896. }
  28897. },
  28898. dick: {
  28899. height: math.unit(2.36, "feet"),
  28900. name: "Dick",
  28901. image: {
  28902. source: "./media/characters/tala-grovehorn/dick.svg"
  28903. }
  28904. },
  28905. slit: {
  28906. height: math.unit(0.61, "feet"),
  28907. name: "Slit",
  28908. image: {
  28909. source: "./media/characters/tala-grovehorn/slit.svg"
  28910. }
  28911. },
  28912. },
  28913. [
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(7 + 7 / 12, "feet"),
  28921. weight: math.unit(225, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/epona/front.svg",
  28925. extra: 2445 / 2290,
  28926. bottom: 251 / 2696
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(7 + 7 / 12, "feet"),
  28931. weight: math.unit(225, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/epona/back.svg",
  28935. extra: 2546 / 2408,
  28936. bottom: 44 / 2589
  28937. }
  28938. },
  28939. genitals: {
  28940. height: math.unit(1.5, "feet"),
  28941. name: "Genitals",
  28942. image: {
  28943. source: "./media/characters/epona/genitals.svg"
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(7 + 7 / 12, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(7, "feet"),
  28960. weight: math.unit(518, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/avia-bloodbourn/front.svg",
  28964. extra: 1466 / 1350,
  28965. bottom: 65 / 1527
  28966. }
  28967. },
  28968. },
  28969. [
  28970. ]
  28971. ))
  28972. characterMakers.push(() => makeCharacter(
  28973. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28974. {
  28975. front: {
  28976. height: math.unit(9.35, "feet"),
  28977. weight: math.unit(600, "lb"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/amera/front.svg",
  28981. extra: 891 / 818,
  28982. bottom: 30 / 922.7
  28983. }
  28984. },
  28985. back: {
  28986. height: math.unit(9.35, "feet"),
  28987. weight: math.unit(600, "lb"),
  28988. name: "Back",
  28989. image: {
  28990. source: "./media/characters/amera/back.svg",
  28991. extra: 876 / 824,
  28992. bottom: 6.8 / 884
  28993. }
  28994. },
  28995. dick: {
  28996. height: math.unit(2.14, "feet"),
  28997. name: "Dick",
  28998. image: {
  28999. source: "./media/characters/amera/dick.svg"
  29000. }
  29001. },
  29002. },
  29003. [
  29004. {
  29005. name: "Normal",
  29006. height: math.unit(9.35, "feet"),
  29007. default: true
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29013. {
  29014. kneeling: {
  29015. height: math.unit(3 + 4 / 12, "feet"),
  29016. weight: math.unit(90, "lb"),
  29017. name: "Kneeling",
  29018. image: {
  29019. source: "./media/characters/rosewen/kneeling.svg",
  29020. extra: 1835 / 1571,
  29021. bottom: 27.7 / 1862
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(3 + 4 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(5 + 10 / 12, "feet"),
  29038. weight: math.unit(200, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sabah/front.svg",
  29042. extra: 849 / 763,
  29043. bottom: 33.9 / 881
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(5 + 10 / 12, "feet"),
  29051. default: true
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29057. {
  29058. front: {
  29059. height: math.unit(3 + 5 / 12, "feet"),
  29060. weight: math.unit(40, "kg"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/purple-flame/front.svg",
  29064. extra: 1577 / 1412,
  29065. bottom: 97 / 1694
  29066. }
  29067. },
  29068. frontDressed: {
  29069. height: math.unit(3 + 5 / 12, "feet"),
  29070. weight: math.unit(40, "kg"),
  29071. name: "Front (Dressed)",
  29072. image: {
  29073. source: "./media/characters/purple-flame/front-dressed.svg",
  29074. extra: 1577 / 1412,
  29075. bottom: 97 / 1694
  29076. }
  29077. },
  29078. headphones: {
  29079. height: math.unit(0.85, "feet"),
  29080. name: "Headphones",
  29081. image: {
  29082. source: "./media/characters/purple-flame/headphones.svg"
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Really Small",
  29089. height: math.unit(5, "cm")
  29090. },
  29091. {
  29092. name: "Micro",
  29093. height: math.unit(1 + 5 / 12, "feet")
  29094. },
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(3 + 5 / 12, "feet"),
  29098. default: true
  29099. },
  29100. {
  29101. name: "Minimacro",
  29102. height: math.unit(125, "feet")
  29103. },
  29104. {
  29105. name: "Macro",
  29106. height: math.unit(0.5, "miles")
  29107. },
  29108. {
  29109. name: "Megamacro",
  29110. height: math.unit(50, "miles")
  29111. },
  29112. {
  29113. name: "Gigantic",
  29114. height: math.unit(750, "miles")
  29115. },
  29116. {
  29117. name: "Planetary",
  29118. height: math.unit(15000, "miles")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(14, "feet"),
  29127. weight: math.unit(959, "lb"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/arsenal/front.svg",
  29131. extra: 2357 / 2157,
  29132. bottom: 93 / 2458
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(14, "feet"),
  29140. default: true
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29146. {
  29147. front: {
  29148. height: math.unit(6, "feet"),
  29149. weight: math.unit(150, "lb"),
  29150. name: "Front",
  29151. image: {
  29152. source: "./media/characters/adira/front.svg",
  29153. extra: 1078 / 1029,
  29154. bottom: 87 / 1166
  29155. }
  29156. },
  29157. },
  29158. [
  29159. {
  29160. name: "Micro",
  29161. height: math.unit(4, "inches"),
  29162. default: true
  29163. },
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(50, "feet")
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(16, "feet"),
  29175. weight: math.unit(1000, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/grim/front.svg",
  29179. extra: 622 / 614,
  29180. bottom: 18.1 / 642
  29181. }
  29182. },
  29183. back: {
  29184. height: math.unit(16, "feet"),
  29185. weight: math.unit(1000, "lb"),
  29186. name: "Back",
  29187. image: {
  29188. source: "./media/characters/grim/back.svg",
  29189. extra: 610.6 / 602,
  29190. bottom: 40.8 / 652
  29191. }
  29192. },
  29193. hunched: {
  29194. height: math.unit(9.75, "feet"),
  29195. weight: math.unit(1000, "lb"),
  29196. name: "Hunched",
  29197. image: {
  29198. source: "./media/characters/grim/hunched.svg",
  29199. extra: 304 / 297,
  29200. bottom: 35.4 / 394
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Normal",
  29207. height: math.unit(16, "feet"),
  29208. default: true
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(2.3, "meters"),
  29217. weight: math.unit(300, "lb"),
  29218. name: "Front",
  29219. image: {
  29220. source: "./media/characters/sinja/front-sfw.svg",
  29221. extra: 1393 / 1294,
  29222. bottom: 70 / 1463
  29223. }
  29224. },
  29225. frontNsfw: {
  29226. height: math.unit(2.3, "meters"),
  29227. weight: math.unit(300, "lb"),
  29228. name: "Front (NSFW)",
  29229. image: {
  29230. source: "./media/characters/sinja/front-nsfw.svg",
  29231. extra: 1393 / 1294,
  29232. bottom: 70 / 1463
  29233. }
  29234. },
  29235. back: {
  29236. height: math.unit(2.3, "meters"),
  29237. weight: math.unit(300, "lb"),
  29238. name: "Back",
  29239. image: {
  29240. source: "./media/characters/sinja/back.svg",
  29241. extra: 1393 / 1294,
  29242. bottom: 70 / 1463
  29243. }
  29244. },
  29245. head: {
  29246. height: math.unit(1.771, "feet"),
  29247. name: "Head",
  29248. image: {
  29249. source: "./media/characters/sinja/head.svg"
  29250. }
  29251. },
  29252. slit: {
  29253. height: math.unit(0.8, "feet"),
  29254. name: "Slit",
  29255. image: {
  29256. source: "./media/characters/sinja/slit.svg"
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(2.3, "meters")
  29264. },
  29265. {
  29266. name: "Macro",
  29267. height: math.unit(91, "meters"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Megamacro",
  29272. height: math.unit(91440, "meters")
  29273. },
  29274. {
  29275. name: "Gigamacro",
  29276. height: math.unit(60960000, "meters")
  29277. },
  29278. {
  29279. name: "Teramacro",
  29280. height: math.unit(9144000000, "meters")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(1.7, "meters"),
  29289. weight: math.unit(130, "lb"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/kyu/front.svg",
  29293. extra: 415 / 395,
  29294. bottom: 5 / 420
  29295. }
  29296. },
  29297. head: {
  29298. height: math.unit(1.75, "feet"),
  29299. name: "Head",
  29300. image: {
  29301. source: "./media/characters/kyu/head.svg"
  29302. }
  29303. },
  29304. foot: {
  29305. height: math.unit(0.81, "feet"),
  29306. name: "Foot",
  29307. image: {
  29308. source: "./media/characters/kyu/foot.svg"
  29309. }
  29310. },
  29311. },
  29312. [
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(1.7, "meters")
  29316. },
  29317. {
  29318. name: "Macro",
  29319. height: math.unit(131, "feet"),
  29320. default: true
  29321. },
  29322. {
  29323. name: "Megamacro",
  29324. height: math.unit(91440, "meters")
  29325. },
  29326. {
  29327. name: "Gigamacro",
  29328. height: math.unit(60960000, "meters")
  29329. },
  29330. {
  29331. name: "Teramacro",
  29332. height: math.unit(9144000000, "meters")
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(7 + 1 / 12, "feet"),
  29341. weight: math.unit(250, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/joey/front.svg",
  29345. extra: 1791 / 1537,
  29346. bottom: 28 / 1816
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Micro",
  29353. height: math.unit(3, "inches")
  29354. },
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(7 + 1 / 12, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(165, "cm"),
  29367. weight: math.unit(140, "lb"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/sam-evans/front.svg",
  29371. extra: 3417 / 3230,
  29372. bottom: 41.3 / 3417
  29373. }
  29374. },
  29375. frontSixTails: {
  29376. height: math.unit(165, "cm"),
  29377. weight: math.unit(140, "lb"),
  29378. name: "Front-six-tails",
  29379. image: {
  29380. source: "./media/characters/sam-evans/front-six-tails.svg",
  29381. extra: 3417 / 3230,
  29382. bottom: 41.3 / 3417
  29383. }
  29384. },
  29385. back: {
  29386. height: math.unit(165, "cm"),
  29387. weight: math.unit(140, "lb"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/sam-evans/back.svg",
  29391. extra: 3227 / 3032,
  29392. bottom: 6.8 / 3234
  29393. }
  29394. },
  29395. face: {
  29396. height: math.unit(0.68, "feet"),
  29397. name: "Face",
  29398. image: {
  29399. source: "./media/characters/sam-evans/face.svg"
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(165, "cm"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Macro",
  29411. height: math.unit(100, "meters")
  29412. },
  29413. {
  29414. name: "Macro+",
  29415. height: math.unit(800, "meters")
  29416. },
  29417. {
  29418. name: "Macro++",
  29419. height: math.unit(3, "km")
  29420. },
  29421. {
  29422. name: "Macro+++",
  29423. height: math.unit(30, "km")
  29424. },
  29425. ]
  29426. ))
  29427. characterMakers.push(() => makeCharacter(
  29428. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29429. {
  29430. front: {
  29431. height: math.unit(10, "feet"),
  29432. weight: math.unit(750, "lb"),
  29433. name: "Front",
  29434. image: {
  29435. source: "./media/characters/juliet-a/front.svg",
  29436. extra: 1766 / 1720,
  29437. bottom: 43 / 1809
  29438. }
  29439. },
  29440. back: {
  29441. height: math.unit(10, "feet"),
  29442. weight: math.unit(750, "lb"),
  29443. name: "Back",
  29444. image: {
  29445. source: "./media/characters/juliet-a/back.svg",
  29446. extra: 1781 / 1734,
  29447. bottom: 35 / 1810,
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(10, "feet"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Dragon Form",
  29459. height: math.unit(250, "feet")
  29460. },
  29461. {
  29462. name: "Macro",
  29463. height: math.unit(1000, "feet")
  29464. },
  29465. {
  29466. name: "Megamacro",
  29467. height: math.unit(10000, "feet")
  29468. }
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29473. {
  29474. regular: {
  29475. height: math.unit(7 + 3 / 12, "feet"),
  29476. weight: math.unit(260, "lb"),
  29477. name: "Regular",
  29478. image: {
  29479. source: "./media/characters/wild/regular.svg",
  29480. extra: 97.45 / 92,
  29481. bottom: 6.8 / 104.3
  29482. }
  29483. },
  29484. biggums: {
  29485. height: math.unit(8 + 6 / 12, "feet"),
  29486. weight: math.unit(425, "lb"),
  29487. name: "Biggums",
  29488. image: {
  29489. source: "./media/characters/wild/biggums.svg",
  29490. extra: 97.45 / 92,
  29491. bottom: 7.5 / 132.34
  29492. }
  29493. },
  29494. mawRegular: {
  29495. height: math.unit(1.24, "feet"),
  29496. name: "Maw (Regular)",
  29497. image: {
  29498. source: "./media/characters/wild/maw.svg"
  29499. }
  29500. },
  29501. mawBiggums: {
  29502. height: math.unit(1.47, "feet"),
  29503. name: "Maw (Biggums)",
  29504. image: {
  29505. source: "./media/characters/wild/maw.svg"
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(7 + 3 / 12, "feet"),
  29513. default: true
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29519. {
  29520. front: {
  29521. height: math.unit(2.5, "meters"),
  29522. weight: math.unit(200, "kg"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/vidar/front.svg",
  29526. extra: 2994 / 2795,
  29527. bottom: 56 / 3061
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(2.5, "meters"),
  29532. weight: math.unit(200, "kg"),
  29533. name: "Back",
  29534. image: {
  29535. source: "./media/characters/vidar/back.svg",
  29536. extra: 3131 / 2928,
  29537. bottom: 13.5 / 3141.5
  29538. }
  29539. },
  29540. feral: {
  29541. height: math.unit(2.5, "meters"),
  29542. weight: math.unit(2000, "kg"),
  29543. name: "Feral",
  29544. image: {
  29545. source: "./media/characters/vidar/feral.svg",
  29546. extra: 2790 / 1765,
  29547. bottom: 6 / 2796
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(2.5, "meters"),
  29555. default: true
  29556. },
  29557. {
  29558. name: "Macro",
  29559. height: math.unit(100, "meters")
  29560. },
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(5 + 9 / 12, "feet"),
  29568. weight: math.unit(120, "lb"),
  29569. name: "Front",
  29570. image: {
  29571. source: "./media/characters/ash/front.svg",
  29572. extra: 2189 / 1961,
  29573. bottom: 5.2 / 2194
  29574. }
  29575. },
  29576. },
  29577. [
  29578. {
  29579. name: "Normal",
  29580. height: math.unit(5 + 9 / 12, "feet"),
  29581. default: true
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29587. {
  29588. front: {
  29589. height: math.unit(9, "feet"),
  29590. weight: math.unit(10000, "lb"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/gygabite/front.svg",
  29594. bottom: 31.7 / 537.8,
  29595. extra: 505 / 370
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "Normal",
  29602. height: math.unit(9, "feet"),
  29603. default: true
  29604. },
  29605. ]
  29606. ))
  29607. characterMakers.push(() => makeCharacter(
  29608. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29609. {
  29610. front: {
  29611. height: math.unit(12, "feet"),
  29612. weight: math.unit(4000, "lb"),
  29613. name: "Front",
  29614. image: {
  29615. source: "./media/characters/p0tat0/front.svg",
  29616. extra: 1065 / 921,
  29617. bottom: 55.7 / 1121.25
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Normal",
  29624. height: math.unit(12, "feet"),
  29625. default: true
  29626. },
  29627. ]
  29628. ))
  29629. characterMakers.push(() => makeCharacter(
  29630. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29631. {
  29632. side: {
  29633. height: math.unit(6.5, "feet"),
  29634. weight: math.unit(800, "lb"),
  29635. name: "Side",
  29636. image: {
  29637. source: "./media/characters/dusk/side.svg",
  29638. extra: 615 / 373,
  29639. bottom: 53 / 664
  29640. }
  29641. },
  29642. sitting: {
  29643. height: math.unit(7, "feet"),
  29644. weight: math.unit(800, "lb"),
  29645. name: "Sitting",
  29646. image: {
  29647. source: "./media/characters/dusk/sitting.svg",
  29648. extra: 753 / 425,
  29649. bottom: 33 / 774
  29650. }
  29651. },
  29652. head: {
  29653. height: math.unit(6.1, "feet"),
  29654. name: "Head",
  29655. image: {
  29656. source: "./media/characters/dusk/head.svg"
  29657. }
  29658. },
  29659. },
  29660. [
  29661. {
  29662. name: "Normal",
  29663. height: math.unit(7, "feet"),
  29664. default: true
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(15, "feet"),
  29673. weight: math.unit(7000, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/jay-direwolf/front.svg",
  29677. extra: 1810 / 1732,
  29678. bottom: 66 / 1892
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Normal",
  29685. height: math.unit(15, "feet"),
  29686. default: true
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(4 + 9 / 12, "feet"),
  29695. weight: math.unit(130, "lb"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/anchovie/front.svg",
  29699. extra: 382 / 350,
  29700. bottom: 25 / 409
  29701. }
  29702. },
  29703. back: {
  29704. height: math.unit(4 + 9 / 12, "feet"),
  29705. weight: math.unit(130, "lb"),
  29706. name: "Back",
  29707. image: {
  29708. source: "./media/characters/anchovie/back.svg",
  29709. extra: 385 / 352,
  29710. bottom: 16.6 / 402
  29711. }
  29712. },
  29713. frontDressed: {
  29714. height: math.unit(4 + 9 / 12, "feet"),
  29715. weight: math.unit(130, "lb"),
  29716. name: "Front (Dressed)",
  29717. image: {
  29718. source: "./media/characters/anchovie/front-dressed.svg",
  29719. extra: 382 / 350,
  29720. bottom: 25 / 409
  29721. }
  29722. },
  29723. backDressed: {
  29724. height: math.unit(4 + 9 / 12, "feet"),
  29725. weight: math.unit(130, "lb"),
  29726. name: "Back (Dressed)",
  29727. image: {
  29728. source: "./media/characters/anchovie/back-dressed.svg",
  29729. extra: 385 / 352,
  29730. bottom: 16.6 / 402
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Micro",
  29737. height: math.unit(6.4, "inches")
  29738. },
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(4 + 9 / 12, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(2, "meters"),
  29751. weight: math.unit(180, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/acidrenamon/front.svg",
  29755. extra: 987 / 890,
  29756. bottom: 22.8 / 1009
  29757. }
  29758. },
  29759. back: {
  29760. height: math.unit(2, "meters"),
  29761. weight: math.unit(180, "lb"),
  29762. name: "Back",
  29763. image: {
  29764. source: "./media/characters/acidrenamon/back.svg",
  29765. extra: 983 / 891,
  29766. bottom: 8.4 / 992
  29767. }
  29768. },
  29769. head: {
  29770. height: math.unit(1.92, "feet"),
  29771. name: "Head",
  29772. image: {
  29773. source: "./media/characters/acidrenamon/head.svg"
  29774. }
  29775. },
  29776. rump: {
  29777. height: math.unit(1.72, "feet"),
  29778. name: "Rump",
  29779. image: {
  29780. source: "./media/characters/acidrenamon/rump.svg"
  29781. }
  29782. },
  29783. tail: {
  29784. height: math.unit(4.2, "feet"),
  29785. name: "Tail",
  29786. image: {
  29787. source: "./media/characters/acidrenamon/tail.svg"
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(2, "meters"),
  29795. default: true
  29796. },
  29797. {
  29798. name: "Minimacro",
  29799. height: math.unit(7, "meters")
  29800. },
  29801. {
  29802. name: "Macro",
  29803. height: math.unit(200, "meters")
  29804. },
  29805. {
  29806. name: "Gigamacro",
  29807. height: math.unit(0.2, "earths")
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(152, "feet"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/kenzie-lee/front.svg",
  29819. extra: 1869/1774,
  29820. bottom: 128/1997
  29821. }
  29822. },
  29823. side: {
  29824. height: math.unit(86, "feet"),
  29825. name: "Side",
  29826. image: {
  29827. source: "./media/characters/kenzie-lee/side.svg",
  29828. extra: 930/815,
  29829. bottom: 177/1107
  29830. }
  29831. },
  29832. paw: {
  29833. height: math.unit(15, "feet"),
  29834. name: "Paw",
  29835. image: {
  29836. source: "./media/characters/kenzie-lee/paw.svg"
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Kenzie Flea",
  29843. height: math.unit(2, "mm"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Micro",
  29848. height: math.unit(2, "inches")
  29849. },
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(152, "feet")
  29853. },
  29854. {
  29855. name: "Megamacro",
  29856. height: math.unit(7, "miles")
  29857. },
  29858. {
  29859. name: "Gigamacro",
  29860. height: math.unit(8000, "miles")
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(6, "feet"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/withers/front.svg",
  29872. extra: 1935/1760,
  29873. bottom: 72/2007
  29874. }
  29875. },
  29876. back: {
  29877. height: math.unit(6, "feet"),
  29878. name: "Back",
  29879. image: {
  29880. source: "./media/characters/withers/back.svg",
  29881. extra: 1944/1792,
  29882. bottom: 12/1956
  29883. }
  29884. },
  29885. dressed: {
  29886. height: math.unit(6, "feet"),
  29887. name: "Dressed",
  29888. image: {
  29889. source: "./media/characters/withers/dressed.svg",
  29890. extra: 1937/1765,
  29891. bottom: 73/2010
  29892. }
  29893. },
  29894. phase1: {
  29895. height: math.unit(1.1, "feet"),
  29896. name: "Phase 1",
  29897. image: {
  29898. source: "./media/characters/withers/phase-1.svg",
  29899. extra: 1885/1232,
  29900. bottom: 0/1885
  29901. }
  29902. },
  29903. phase2: {
  29904. height: math.unit(1.05, "feet"),
  29905. name: "Phase 2",
  29906. image: {
  29907. source: "./media/characters/withers/phase-2.svg",
  29908. extra: 1792/1090,
  29909. bottom: 0/1792
  29910. }
  29911. },
  29912. partyWipe: {
  29913. height: math.unit(1.1, "feet"),
  29914. name: "Party Wipe",
  29915. image: {
  29916. source: "./media/characters/withers/party-wipe.svg",
  29917. extra: 1864/1207,
  29918. bottom: 0/1864
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(167, "feet"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Megamacro",
  29930. height: math.unit(15, "miles")
  29931. }
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(6 + 7 / 12, "feet"),
  29939. weight: math.unit(250, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/nemoskii/front.svg",
  29943. extra: 2270 / 1734,
  29944. bottom: 86 / 2354
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(6 + 7 / 12, "feet"),
  29949. weight: math.unit(250, "lb"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/nemoskii/back.svg",
  29953. extra: 1845 / 1788,
  29954. bottom: 10.5 / 1852
  29955. }
  29956. },
  29957. head: {
  29958. height: math.unit(1.31, "feet"),
  29959. name: "Head",
  29960. image: {
  29961. source: "./media/characters/nemoskii/head.svg"
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Micro",
  29968. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29969. },
  29970. {
  29971. name: "Normal",
  29972. height: math.unit(6 + 7 / 12, "feet"),
  29973. default: true
  29974. },
  29975. {
  29976. name: "Macro",
  29977. height: math.unit((6 + 7 / 12) * 150, "feet")
  29978. },
  29979. {
  29980. name: "Macro+",
  29981. height: math.unit((6 + 7 / 12) * 500, "feet")
  29982. },
  29983. {
  29984. name: "Megamacro",
  29985. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(1, "mile"),
  29994. weight: math.unit(265261.9, "lb"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/shui/front.svg",
  29998. extra: 1633 / 1564,
  29999. bottom: 91.5 / 1726
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Macro",
  30006. height: math.unit(1, "mile"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30013. {
  30014. front: {
  30015. height: math.unit(12 + 6 / 12, "feet"),
  30016. weight: math.unit(1342, "lb"),
  30017. name: "Front",
  30018. image: {
  30019. source: "./media/characters/arokh-takakura/front.svg",
  30020. extra: 1089 / 1043,
  30021. bottom: 77.4 / 1176.7
  30022. }
  30023. },
  30024. back: {
  30025. height: math.unit(12 + 6 / 12, "feet"),
  30026. weight: math.unit(1342, "lb"),
  30027. name: "Back",
  30028. image: {
  30029. source: "./media/characters/arokh-takakura/back.svg",
  30030. extra: 1046 / 1019,
  30031. bottom: 102 / 1150
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Big",
  30038. height: math.unit(12 + 6 / 12, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(5 + 6 / 12, "feet"),
  30048. weight: math.unit(150, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/theo/front.svg",
  30052. extra: 1184 / 1131,
  30053. bottom: 7.4 / 1191
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Micro",
  30060. height: math.unit(5, "inches")
  30061. },
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(5 + 6 / 12, "feet"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(5 + 9 / 12, "feet"),
  30074. weight: math.unit(130, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/cecelia-swift/front.svg",
  30078. extra: 502 / 484,
  30079. bottom: 23 / 523
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(5 + 9 / 12, "feet"),
  30084. weight: math.unit(130, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/cecelia-swift/back.svg",
  30088. extra: 499 / 485,
  30089. bottom: 12 / 511
  30090. }
  30091. },
  30092. head: {
  30093. height: math.unit(0.90, "feet"),
  30094. name: "Head",
  30095. image: {
  30096. source: "./media/characters/cecelia-swift/head.svg"
  30097. }
  30098. },
  30099. rump: {
  30100. height: math.unit(1.75, "feet"),
  30101. name: "Rump",
  30102. image: {
  30103. source: "./media/characters/cecelia-swift/rump.svg"
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Normal",
  30110. height: math.unit(5 + 9 / 12, "feet"),
  30111. default: true
  30112. },
  30113. {
  30114. name: "Big",
  30115. height: math.unit(50, "feet")
  30116. },
  30117. {
  30118. name: "Macro",
  30119. height: math.unit(100, "feet")
  30120. },
  30121. {
  30122. name: "Macro+",
  30123. height: math.unit(500, "feet")
  30124. },
  30125. {
  30126. name: "Macro++",
  30127. height: math.unit(1000, "feet")
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30133. {
  30134. front: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Front",
  30138. image: {
  30139. source: "./media/characters/kaunan/front.svg",
  30140. extra: 2890 / 2523,
  30141. bottom: 49 / 2939
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(150, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30155. {
  30156. dressed: {
  30157. height: math.unit(175, "cm"),
  30158. weight: math.unit(60, "kg"),
  30159. name: "Dressed",
  30160. image: {
  30161. source: "./media/characters/fei/dressed.svg",
  30162. extra: 1402/1278,
  30163. bottom: 27/1429
  30164. }
  30165. },
  30166. nude: {
  30167. height: math.unit(175, "cm"),
  30168. weight: math.unit(60, "kg"),
  30169. name: "Nude",
  30170. image: {
  30171. source: "./media/characters/fei/nude.svg",
  30172. extra: 1402/1278,
  30173. bottom: 27/1429
  30174. }
  30175. },
  30176. heels: {
  30177. height: math.unit(0.466, "feet"),
  30178. name: "Heels",
  30179. image: {
  30180. source: "./media/characters/fei/heels.svg",
  30181. extra: 156/152,
  30182. bottom: 28/184
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Mortal",
  30189. height: math.unit(175, "cm")
  30190. },
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(3500, "m")
  30194. },
  30195. {
  30196. name: "Stroll",
  30197. height: math.unit(18.4, "km"),
  30198. default: true
  30199. },
  30200. {
  30201. name: "Showoff",
  30202. height: math.unit(175, "km")
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(7, "feet"),
  30211. weight: math.unit(1000, "kg"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/edrax/front.svg",
  30215. extra: 2838 / 2550,
  30216. bottom: 130 / 2968
  30217. }
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Small",
  30223. height: math.unit(7, "feet")
  30224. },
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(1500, "meters")
  30228. },
  30229. {
  30230. name: "Mega",
  30231. height: math.unit(12000000, "km"),
  30232. default: true
  30233. },
  30234. {
  30235. name: "Megamacro",
  30236. height: math.unit(10600000, "lightyears")
  30237. },
  30238. {
  30239. name: "Hypermacro",
  30240. height: math.unit(256, "yottameters")
  30241. },
  30242. ]
  30243. ))
  30244. characterMakers.push(() => makeCharacter(
  30245. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30246. {
  30247. front: {
  30248. height: math.unit(10, "feet"),
  30249. weight: math.unit(750, "lb"),
  30250. name: "Front",
  30251. image: {
  30252. source: "./media/characters/clove/front.svg",
  30253. extra: 1918/1751,
  30254. bottom: 52/1970
  30255. }
  30256. },
  30257. back: {
  30258. height: math.unit(10, "feet"),
  30259. weight: math.unit(750, "lb"),
  30260. name: "Back",
  30261. image: {
  30262. source: "./media/characters/clove/back.svg",
  30263. extra: 1912/1747,
  30264. bottom: 50/1962
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(10, "feet"),
  30272. default: true
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(4, "feet"),
  30281. weight: math.unit(50, "lb"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/alex-rabbit/front.svg",
  30285. extra: 507 / 458,
  30286. bottom: 18.5 / 527
  30287. }
  30288. },
  30289. back: {
  30290. height: math.unit(4, "feet"),
  30291. weight: math.unit(50, "lb"),
  30292. name: "Back",
  30293. image: {
  30294. source: "./media/characters/alex-rabbit/back.svg",
  30295. extra: 502 / 460,
  30296. bottom: 18.9 / 521
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(4, "feet"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(1 + 3 / 12, "feet"),
  30313. weight: math.unit(80, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/zander-rose/front.svg",
  30317. extra: 916 / 797,
  30318. bottom: 17 / 933
  30319. }
  30320. },
  30321. back: {
  30322. height: math.unit(1 + 3 / 12, "feet"),
  30323. weight: math.unit(80, "lb"),
  30324. name: "Back",
  30325. image: {
  30326. source: "./media/characters/zander-rose/back.svg",
  30327. extra: 903 / 779,
  30328. bottom: 31 / 934
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Normal",
  30335. height: math.unit(1 + 3 / 12, "feet"),
  30336. default: true
  30337. },
  30338. ]
  30339. ))
  30340. characterMakers.push(() => makeCharacter(
  30341. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30342. {
  30343. anthro: {
  30344. height: math.unit(6, "feet"),
  30345. weight: math.unit(150, "lb"),
  30346. name: "Anthro",
  30347. image: {
  30348. source: "./media/characters/razz/anthro.svg",
  30349. extra: 1437 / 1343,
  30350. bottom: 48 / 1485
  30351. }
  30352. },
  30353. feral: {
  30354. height: math.unit(6, "feet"),
  30355. weight: math.unit(150, "lb"),
  30356. name: "Feral",
  30357. image: {
  30358. source: "./media/characters/razz/feral.svg",
  30359. extra: 2569 / 1385,
  30360. bottom: 95 / 2664
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(6, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(9 + 4 / 12, "feet"),
  30377. weight: math.unit(500, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/morrigan/front.svg",
  30381. extra: 2707 / 2579,
  30382. bottom: 156 / 2863
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(9 + 4 / 12, "feet"),
  30390. default: true
  30391. },
  30392. ]
  30393. ))
  30394. characterMakers.push(() => makeCharacter(
  30395. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30396. {
  30397. front: {
  30398. height: math.unit(5, "stories"),
  30399. weight: math.unit(4000, "lb"),
  30400. name: "Front",
  30401. image: {
  30402. source: "./media/characters/jenene/front.svg",
  30403. extra: 1780 / 1710,
  30404. bottom: 57 / 1837
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(5, "stories"),
  30412. default: true
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30418. {
  30419. taurSfw: {
  30420. height: math.unit(10, "meters"),
  30421. weight: math.unit(17500, "kg"),
  30422. name: "Taur",
  30423. image: {
  30424. source: "./media/characters/faey/taur-sfw.svg",
  30425. extra: 1200 / 968,
  30426. bottom: 41 / 1241
  30427. }
  30428. },
  30429. chestmaw: {
  30430. height: math.unit(2.01, "meters"),
  30431. name: "Chestmaw",
  30432. image: {
  30433. source: "./media/characters/faey/chestmaw.svg"
  30434. }
  30435. },
  30436. foot: {
  30437. height: math.unit(2.43, "meters"),
  30438. name: "Foot",
  30439. image: {
  30440. source: "./media/characters/faey/foot.svg"
  30441. }
  30442. },
  30443. jaws: {
  30444. height: math.unit(1.66, "meters"),
  30445. name: "Jaws",
  30446. image: {
  30447. source: "./media/characters/faey/jaws.svg"
  30448. }
  30449. },
  30450. tongues: {
  30451. height: math.unit(2.01, "meters"),
  30452. name: "Tongues",
  30453. image: {
  30454. source: "./media/characters/faey/tongues.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Small",
  30461. height: math.unit(10, "meters"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Big",
  30466. height: math.unit(500000, "km")
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30472. {
  30473. front: {
  30474. height: math.unit(7, "feet"),
  30475. weight: math.unit(275, "lb"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/roku/front.svg",
  30479. extra: 903 / 878,
  30480. bottom: 37 / 940
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(7, "feet"),
  30488. default: true
  30489. },
  30490. {
  30491. name: "Macro",
  30492. height: math.unit(500, "feet")
  30493. },
  30494. {
  30495. name: "Megamacro",
  30496. height: math.unit(200, "miles")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(6 + 2 / 12, "feet"),
  30505. weight: math.unit(150, "lb"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/lira/front.svg",
  30509. extra: 1727 / 1605,
  30510. bottom: 26 / 1753
  30511. }
  30512. },
  30513. back: {
  30514. height: math.unit(6 + 2 / 12, "feet"),
  30515. weight: math.unit(150, "lb"),
  30516. name: "Back",
  30517. image: {
  30518. source: "./media/characters/lira/back.svg",
  30519. extra: 1713/1621,
  30520. bottom: 20/1733
  30521. }
  30522. },
  30523. hand: {
  30524. height: math.unit(0.75, "feet"),
  30525. name: "Hand",
  30526. image: {
  30527. source: "./media/characters/lira/hand.svg"
  30528. }
  30529. },
  30530. maw: {
  30531. height: math.unit(0.65, "feet"),
  30532. name: "Maw",
  30533. image: {
  30534. source: "./media/characters/lira/maw.svg"
  30535. }
  30536. },
  30537. pawDigi: {
  30538. height: math.unit(1.6, "feet"),
  30539. name: "Paw Digi",
  30540. image: {
  30541. source: "./media/characters/lira/paw-digi.svg"
  30542. }
  30543. },
  30544. pawPlanti: {
  30545. height: math.unit(1.4, "feet"),
  30546. name: "Paw Planti",
  30547. image: {
  30548. source: "./media/characters/lira/paw-planti.svg"
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(6 + 2 / 12, "feet"),
  30556. default: true
  30557. },
  30558. {
  30559. name: "Macro",
  30560. height: math.unit(100, "feet")
  30561. },
  30562. {
  30563. name: "Macro²",
  30564. height: math.unit(1600, "feet")
  30565. },
  30566. {
  30567. name: "Planetary",
  30568. height: math.unit(20, "earths")
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(6, "feet"),
  30577. weight: math.unit(150, "lb"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/hadjet/front.svg",
  30581. extra: 1480 / 1346,
  30582. bottom: 26 / 1506
  30583. }
  30584. },
  30585. frontNsfw: {
  30586. height: math.unit(6, "feet"),
  30587. weight: math.unit(150, "lb"),
  30588. name: "Front (NSFW)",
  30589. image: {
  30590. source: "./media/characters/hadjet/front-nsfw.svg",
  30591. extra: 1440 / 1358,
  30592. bottom: 52 / 1492
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Macro",
  30599. height: math.unit(10, "stories"),
  30600. default: true
  30601. },
  30602. {
  30603. name: "Megamacro",
  30604. height: math.unit(1.5, "miles")
  30605. },
  30606. {
  30607. name: "Megamacro+",
  30608. height: math.unit(5, "miles")
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30614. {
  30615. side: {
  30616. height: math.unit(106, "feet"),
  30617. weight: math.unit(500, "tonnes"),
  30618. name: "Side",
  30619. image: {
  30620. source: "./media/characters/kodran/side.svg",
  30621. extra: 553 / 480,
  30622. bottom: 33 / 586
  30623. }
  30624. },
  30625. front: {
  30626. height: math.unit(132, "feet"),
  30627. weight: math.unit(500, "tonnes"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/kodran/front.svg",
  30631. extra: 667 / 643,
  30632. bottom: 42 / 709
  30633. }
  30634. },
  30635. flying: {
  30636. height: math.unit(350, "feet"),
  30637. weight: math.unit(500, "tonnes"),
  30638. name: "Flying",
  30639. image: {
  30640. source: "./media/characters/kodran/flying.svg"
  30641. }
  30642. },
  30643. foot: {
  30644. height: math.unit(33, "feet"),
  30645. name: "Foot",
  30646. image: {
  30647. source: "./media/characters/kodran/foot.svg"
  30648. }
  30649. },
  30650. footFront: {
  30651. height: math.unit(19, "feet"),
  30652. name: "Foot (Front)",
  30653. image: {
  30654. source: "./media/characters/kodran/foot-front.svg",
  30655. extra: 261 / 261,
  30656. bottom: 91 / 352
  30657. }
  30658. },
  30659. headFront: {
  30660. height: math.unit(53, "feet"),
  30661. name: "Head (Front)",
  30662. image: {
  30663. source: "./media/characters/kodran/head-front.svg"
  30664. }
  30665. },
  30666. headSide: {
  30667. height: math.unit(65, "feet"),
  30668. name: "Head (Side)",
  30669. image: {
  30670. source: "./media/characters/kodran/head-side.svg"
  30671. }
  30672. },
  30673. throat: {
  30674. height: math.unit(79, "feet"),
  30675. name: "Throat",
  30676. image: {
  30677. source: "./media/characters/kodran/throat.svg"
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Large",
  30684. height: math.unit(106, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30691. {
  30692. side: {
  30693. height: math.unit(11, "feet"),
  30694. weight: math.unit(150, "lb"),
  30695. name: "Side",
  30696. image: {
  30697. source: "./media/characters/pyxaron/side.svg",
  30698. extra: 305 / 195,
  30699. bottom: 17 / 322
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(11, "feet"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(6, "feet"),
  30716. weight: math.unit(150, "lb"),
  30717. name: "Front",
  30718. image: {
  30719. source: "./media/characters/meep/front.svg",
  30720. extra: 88 / 80,
  30721. bottom: 6 / 94
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Fun Sized",
  30728. height: math.unit(2, "inches"),
  30729. default: true
  30730. },
  30731. {
  30732. name: "Friend Sized",
  30733. height: math.unit(8, "inches")
  30734. },
  30735. ]
  30736. ))
  30737. characterMakers.push(() => makeCharacter(
  30738. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30739. {
  30740. front: {
  30741. height: math.unit(15, "feet"),
  30742. weight: math.unit(2500, "lb"),
  30743. name: "Front",
  30744. image: {
  30745. source: "./media/characters/holly-rabbit/front.svg",
  30746. extra: 1433 / 1233,
  30747. bottom: 125 / 1558
  30748. }
  30749. },
  30750. dick: {
  30751. height: math.unit(4.6, "feet"),
  30752. name: "Dick",
  30753. image: {
  30754. source: "./media/characters/holly-rabbit/dick.svg"
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(15, "feet"),
  30762. default: true
  30763. },
  30764. {
  30765. name: "Macro",
  30766. height: math.unit(250, "feet")
  30767. },
  30768. {
  30769. name: "Macro+",
  30770. height: math.unit(2500, "feet")
  30771. },
  30772. ]
  30773. ))
  30774. characterMakers.push(() => makeCharacter(
  30775. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30776. {
  30777. front: {
  30778. height: math.unit(3.02, "meters"),
  30779. weight: math.unit(500, "kg"),
  30780. name: "Front",
  30781. image: {
  30782. source: "./media/characters/drena/front.svg",
  30783. extra: 282 / 243,
  30784. bottom: 8 / 290
  30785. }
  30786. },
  30787. side: {
  30788. height: math.unit(3.02, "meters"),
  30789. weight: math.unit(500, "kg"),
  30790. name: "Side",
  30791. image: {
  30792. source: "./media/characters/drena/side.svg",
  30793. extra: 280 / 245,
  30794. bottom: 10 / 290
  30795. }
  30796. },
  30797. back: {
  30798. height: math.unit(3.02, "meters"),
  30799. weight: math.unit(500, "kg"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/drena/back.svg",
  30803. extra: 278 / 243,
  30804. bottom: 2 / 280
  30805. }
  30806. },
  30807. foot: {
  30808. height: math.unit(0.75, "meters"),
  30809. name: "Foot",
  30810. image: {
  30811. source: "./media/characters/drena/foot.svg"
  30812. }
  30813. },
  30814. maw: {
  30815. height: math.unit(0.82, "meters"),
  30816. name: "Maw",
  30817. image: {
  30818. source: "./media/characters/drena/maw.svg"
  30819. }
  30820. },
  30821. eating: {
  30822. height: math.unit(0.75, "meters"),
  30823. name: "Eating",
  30824. image: {
  30825. source: "./media/characters/drena/eating.svg"
  30826. }
  30827. },
  30828. rump: {
  30829. height: math.unit(0.93, "meters"),
  30830. name: "Rump",
  30831. image: {
  30832. source: "./media/characters/drena/rump.svg"
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(3.02, "meters"),
  30840. default: true
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(6 + 4 / 12, "feet"),
  30849. weight: math.unit(250, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/remmyzilla/front.svg",
  30853. extra: 4033 / 3588,
  30854. bottom: 123 / 4156
  30855. }
  30856. },
  30857. back: {
  30858. height: math.unit(6 + 4 / 12, "feet"),
  30859. weight: math.unit(250, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/remmyzilla/back.svg",
  30863. extra: 2687 / 2555,
  30864. bottom: 48 / 2735
  30865. }
  30866. },
  30867. paw: {
  30868. height: math.unit(1.73, "feet"),
  30869. name: "Paw",
  30870. image: {
  30871. source: "./media/characters/remmyzilla/paw.svg"
  30872. },
  30873. extraAttributes: {
  30874. "toeSize": {
  30875. name: "Toe Size",
  30876. power: 2,
  30877. type: "area",
  30878. base: math.unit(0.0035, "m^2")
  30879. },
  30880. "padSize": {
  30881. name: "Pad Size",
  30882. power: 2,
  30883. type: "area",
  30884. base: math.unit(0.015, "m^2")
  30885. },
  30886. "pawsize": {
  30887. name: "Paw Size",
  30888. power: 2,
  30889. type: "area",
  30890. base: math.unit(0.072, "m^2")
  30891. },
  30892. }
  30893. },
  30894. maw: {
  30895. height: math.unit(1.73, "feet"),
  30896. name: "Maw",
  30897. image: {
  30898. source: "./media/characters/remmyzilla/maw.svg"
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Normal",
  30905. height: math.unit(6 + 4 / 12, "feet")
  30906. },
  30907. {
  30908. name: "Minimacro",
  30909. height: math.unit(12 + 8 / 12, "feet")
  30910. },
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(640, "feet"),
  30914. default: true
  30915. },
  30916. {
  30917. name: "Megamacro",
  30918. height: math.unit(6400, "feet")
  30919. },
  30920. {
  30921. name: "Gigamacro",
  30922. height: math.unit(64000, "miles")
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30928. {
  30929. front: {
  30930. height: math.unit(2.5, "meters"),
  30931. weight: math.unit(300, "lb"),
  30932. name: "Front",
  30933. image: {
  30934. source: "./media/characters/lawrence/front.svg",
  30935. extra: 357 / 335,
  30936. bottom: 30 / 387
  30937. }
  30938. },
  30939. back: {
  30940. height: math.unit(2.5, "meters"),
  30941. weight: math.unit(300, "lb"),
  30942. name: "Back",
  30943. image: {
  30944. source: "./media/characters/lawrence/back.svg",
  30945. extra: 357 / 338,
  30946. bottom: 16 / 373
  30947. }
  30948. },
  30949. head: {
  30950. height: math.unit(0.9, "meter"),
  30951. name: "Head",
  30952. image: {
  30953. source: "./media/characters/lawrence/head.svg"
  30954. }
  30955. },
  30956. maw: {
  30957. height: math.unit(0.7, "meter"),
  30958. name: "Maw",
  30959. image: {
  30960. source: "./media/characters/lawrence/maw.svg"
  30961. }
  30962. },
  30963. footBottom: {
  30964. height: math.unit(0.5, "meter"),
  30965. name: "Foot (Bottom)",
  30966. image: {
  30967. source: "./media/characters/lawrence/foot-bottom.svg"
  30968. }
  30969. },
  30970. footTop: {
  30971. height: math.unit(0.5, "meter"),
  30972. name: "Foot (Top)",
  30973. image: {
  30974. source: "./media/characters/lawrence/foot-top.svg"
  30975. }
  30976. },
  30977. },
  30978. [
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(2.5, "meters"),
  30982. default: true
  30983. },
  30984. {
  30985. name: "Macro",
  30986. height: math.unit(95, "meters")
  30987. },
  30988. {
  30989. name: "Megamacro",
  30990. height: math.unit(150, "km")
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30996. {
  30997. front: {
  30998. height: math.unit(4.2, "meters"),
  30999. preyCapacity: math.unit(50, "m^3"),
  31000. weight: math.unit(30, "tonnes"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/sydney/front.svg",
  31004. extra: 1177/1129,
  31005. bottom: 197/1374
  31006. },
  31007. extraAttributes: {
  31008. "length": {
  31009. name: "Length",
  31010. power: 1,
  31011. type: "length",
  31012. base: math.unit(21, "meters")
  31013. },
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(4.2, "meters"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31027. {
  31028. back: {
  31029. height: math.unit(201, "feet"),
  31030. name: "Back",
  31031. image: {
  31032. source: "./media/characters/jessica/back.svg",
  31033. extra: 273 / 259,
  31034. bottom: 7 / 280
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Normal",
  31041. height: math.unit(201, "feet"),
  31042. default: true
  31043. },
  31044. {
  31045. name: "Megamacro",
  31046. height: math.unit(8, "miles")
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31052. {
  31053. side: {
  31054. height: math.unit(5.6, "m"),
  31055. weight: math.unit(8000, "kg"),
  31056. name: "Side",
  31057. image: {
  31058. source: "./media/characters/victoria/side.svg",
  31059. extra: 1542/1229,
  31060. bottom: 124/1666
  31061. }
  31062. },
  31063. maw: {
  31064. height: math.unit(7.14, "feet"),
  31065. name: "Maw",
  31066. image: {
  31067. source: "./media/characters/victoria/maw.svg"
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(5.6, "m"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31081. {
  31082. front: {
  31083. height: math.unit(5 + 6 / 12, "feet"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/cat/front.svg",
  31087. extra: 1449/1295,
  31088. bottom: 34/1483
  31089. },
  31090. form: "cat",
  31091. default: true
  31092. },
  31093. back: {
  31094. height: math.unit(5 + 6 / 12, "feet"),
  31095. name: "Back",
  31096. image: {
  31097. source: "./media/characters/cat/back.svg",
  31098. extra: 1466/1301,
  31099. bottom: 19/1485
  31100. },
  31101. form: "cat"
  31102. },
  31103. taur: {
  31104. height: math.unit(7, "feet"),
  31105. name: "Taur",
  31106. image: {
  31107. source: "./media/characters/cat/taur.svg",
  31108. extra: 1389/1233,
  31109. bottom: 83/1472
  31110. },
  31111. form: "taur",
  31112. default: true
  31113. },
  31114. lucarioFront: {
  31115. height: math.unit(4, "feet"),
  31116. name: "Lucario (Front)",
  31117. image: {
  31118. source: "./media/characters/cat/lucario-front.svg",
  31119. extra: 1149/1019,
  31120. bottom: 84/1233
  31121. },
  31122. form: "lucario",
  31123. default: true
  31124. },
  31125. lucarioBack: {
  31126. height: math.unit(4, "feet"),
  31127. name: "Lucario (Back)",
  31128. image: {
  31129. source: "./media/characters/cat/lucario-back.svg",
  31130. extra: 1190/1059,
  31131. bottom: 33/1223
  31132. },
  31133. form: "lucario"
  31134. },
  31135. megaLucario: {
  31136. height: math.unit(4, "feet"),
  31137. name: "Mega Lucario",
  31138. image: {
  31139. source: "./media/characters/cat/mega-lucario.svg",
  31140. extra: 1515 / 1319,
  31141. bottom: 63 / 1578
  31142. },
  31143. form: "lucario"
  31144. },
  31145. nickit: {
  31146. height: math.unit(2, "feet"),
  31147. name: "Nickit",
  31148. image: {
  31149. source: "./media/characters/cat/nickit.svg",
  31150. extra: 1980 / 1585,
  31151. bottom: 102 / 2082
  31152. },
  31153. form: "nickit",
  31154. default: true
  31155. },
  31156. lopunnyFront: {
  31157. height: math.unit(5, "feet"),
  31158. name: "Lopunny (Front)",
  31159. image: {
  31160. source: "./media/characters/cat/lopunny-front.svg",
  31161. extra: 1782 / 1469,
  31162. bottom: 38 / 1820
  31163. },
  31164. form: "lopunny",
  31165. default: true
  31166. },
  31167. lopunnyBack: {
  31168. height: math.unit(5, "feet"),
  31169. name: "Lopunny (Back)",
  31170. image: {
  31171. source: "./media/characters/cat/lopunny-back.svg",
  31172. extra: 1660 / 1490,
  31173. bottom: 25 / 1685
  31174. },
  31175. form: "lopunny"
  31176. },
  31177. },
  31178. [
  31179. {
  31180. name: "Really small",
  31181. height: math.unit(1, "nm")
  31182. },
  31183. {
  31184. name: "Micro",
  31185. height: math.unit(5, "inches")
  31186. },
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(5 + 6 / 12, "feet"),
  31190. default: true
  31191. },
  31192. {
  31193. name: "Macro",
  31194. height: math.unit(50, "feet")
  31195. },
  31196. {
  31197. name: "Macro+",
  31198. height: math.unit(150, "feet")
  31199. },
  31200. {
  31201. name: "Megamacro",
  31202. height: math.unit(100, "miles")
  31203. },
  31204. ]
  31205. ))
  31206. characterMakers.push(() => makeCharacter(
  31207. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31208. {
  31209. front: {
  31210. height: math.unit(63.4, "meters"),
  31211. weight: math.unit(3.28349e+6, "kilograms"),
  31212. name: "Front",
  31213. image: {
  31214. source: "./media/characters/kirina-violet/front.svg",
  31215. extra: 2812 / 2725,
  31216. bottom: 0 / 2812
  31217. }
  31218. },
  31219. back: {
  31220. height: math.unit(63.4, "meters"),
  31221. weight: math.unit(3.28349e+6, "kilograms"),
  31222. name: "Back",
  31223. image: {
  31224. source: "./media/characters/kirina-violet/back.svg",
  31225. extra: 2812 / 2725,
  31226. bottom: 0 / 2812
  31227. }
  31228. },
  31229. mouth: {
  31230. height: math.unit(4.35, "meters"),
  31231. name: "Mouth",
  31232. image: {
  31233. source: "./media/characters/kirina-violet/mouth.svg"
  31234. }
  31235. },
  31236. paw: {
  31237. height: math.unit(5.6, "meters"),
  31238. name: "Paw",
  31239. image: {
  31240. source: "./media/characters/kirina-violet/paw.svg"
  31241. }
  31242. },
  31243. tail: {
  31244. height: math.unit(18, "meters"),
  31245. name: "Tail",
  31246. image: {
  31247. source: "./media/characters/kirina-violet/tail.svg"
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(63.4, "meters"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(75, "feet"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/cat-gigachu/front.svg",
  31267. extra: 1239/1027,
  31268. bottom: 32/1271
  31269. }
  31270. },
  31271. back: {
  31272. height: math.unit(75, "feet"),
  31273. name: "Back",
  31274. image: {
  31275. source: "./media/characters/cat-gigachu/back.svg",
  31276. extra: 1229/1030,
  31277. bottom: 9/1238
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Dynamax",
  31284. height: math.unit(75, "feet"),
  31285. default: true
  31286. },
  31287. ]
  31288. ))
  31289. characterMakers.push(() => makeCharacter(
  31290. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31291. {
  31292. front: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(150, "lb"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/sfaiyan/front.svg",
  31298. extra: 999 / 978,
  31299. bottom: 5 / 1004
  31300. }
  31301. },
  31302. },
  31303. [
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(1.82, "meters")
  31307. },
  31308. {
  31309. name: "Giant",
  31310. height: math.unit(2.27, "km"),
  31311. default: true
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31317. {
  31318. front: {
  31319. height: math.unit(179, "cm"),
  31320. weight: math.unit(100, "kg"),
  31321. name: "Front",
  31322. image: {
  31323. source: "./media/characters/raunehkeli/front.svg",
  31324. extra: 1934 / 1926,
  31325. bottom: 0 / 1934
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(179, "cm")
  31333. },
  31334. {
  31335. name: "Maximum",
  31336. height: math.unit(575, "meters"),
  31337. default: true
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(6, "feet"),
  31346. weight: math.unit(150, "lb"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31350. extra: 2625 / 2518,
  31351. bottom: 60 / 2685
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Normal",
  31358. height: math.unit(6 + 2 / 12, "feet")
  31359. },
  31360. {
  31361. name: "Macro",
  31362. height: math.unit(1180, "feet"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31369. {
  31370. front: {
  31371. height: math.unit(5 + 6 / 12, "feet"),
  31372. weight: math.unit(108, "lb"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/lilith-zott/front.svg",
  31376. extra: 2510 / 2238,
  31377. bottom: 100 / 2610
  31378. }
  31379. },
  31380. frontDressed: {
  31381. height: math.unit(5 + 6 / 12, "feet"),
  31382. weight: math.unit(108, "lb"),
  31383. name: "Front (Dressed)",
  31384. image: {
  31385. source: "./media/characters/lilith-zott/front-dressed.svg",
  31386. extra: 2510 / 2238,
  31387. bottom: 100 / 2610
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(5 + 6 / 12, "feet")
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(1030, "feet"),
  31399. default: true
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(6, "feet"),
  31408. weight: math.unit(150, "lb"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31412. extra: 2567 / 2435,
  31413. bottom: 39 / 2606
  31414. }
  31415. },
  31416. frontSuper: {
  31417. height: math.unit(6, "feet"),
  31418. name: "Front (Super)",
  31419. image: {
  31420. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31421. extra: 2567 / 2435,
  31422. bottom: 39 / 2606
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(5 + 10 / 12, "feet")
  31430. },
  31431. {
  31432. name: "Macro",
  31433. height: math.unit(1100, "feet"),
  31434. default: true
  31435. },
  31436. ]
  31437. ))
  31438. characterMakers.push(() => makeCharacter(
  31439. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31440. {
  31441. front: {
  31442. height: math.unit(100, "miles"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/sona/front.svg",
  31446. extra: 2433 / 2201,
  31447. bottom: 53 / 2486
  31448. }
  31449. },
  31450. foot: {
  31451. height: math.unit(16.1, "miles"),
  31452. name: "Foot",
  31453. image: {
  31454. source: "./media/characters/sona/foot.svg"
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Macro",
  31461. height: math.unit(100, "miles"),
  31462. default: true
  31463. },
  31464. ]
  31465. ))
  31466. characterMakers.push(() => makeCharacter(
  31467. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31468. {
  31469. front: {
  31470. height: math.unit(6, "feet"),
  31471. weight: math.unit(150, "lb"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/bailey/front.svg",
  31475. extra: 1778 / 1724,
  31476. bottom: 30 / 1808
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Micro",
  31483. height: math.unit(4, "inches")
  31484. },
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(5 + 5 / 12, "feet"),
  31488. default: true
  31489. },
  31490. {
  31491. name: "Macro",
  31492. height: math.unit(250, "feet")
  31493. },
  31494. {
  31495. name: "Megamacro",
  31496. height: math.unit(100, "miles")
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(5 + 2 / 12, "feet"),
  31505. weight: math.unit(120, "lb"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/snaps/front.svg",
  31509. extra: 2370 / 2177,
  31510. bottom: 48 / 2418
  31511. }
  31512. },
  31513. back: {
  31514. height: math.unit(5 + 2 / 12, "feet"),
  31515. weight: math.unit(120, "lb"),
  31516. name: "Back",
  31517. image: {
  31518. source: "./media/characters/snaps/back.svg",
  31519. extra: 2408 / 2258,
  31520. bottom: 15 / 2423
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Micro",
  31527. height: math.unit(9, "inches")
  31528. },
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(5 + 2 / 12, "feet"),
  31532. default: true
  31533. },
  31534. {
  31535. name: "Mini Macro",
  31536. height: math.unit(10, "feet")
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31542. {
  31543. front: {
  31544. height: math.unit(1.8, "meters"),
  31545. weight: math.unit(85, "kg"),
  31546. name: "Front",
  31547. image: {
  31548. source: "./media/characters/azteck/front.svg",
  31549. extra: 2815 / 2625,
  31550. bottom: 89 / 2904
  31551. }
  31552. },
  31553. back: {
  31554. height: math.unit(1.8, "meters"),
  31555. weight: math.unit(85, "kg"),
  31556. name: "Back",
  31557. image: {
  31558. source: "./media/characters/azteck/back.svg",
  31559. extra: 2856 / 2648,
  31560. bottom: 85 / 2941
  31561. }
  31562. },
  31563. frontDressed: {
  31564. height: math.unit(1.8, "meters"),
  31565. weight: math.unit(85, "kg"),
  31566. name: "Front (Dressed)",
  31567. image: {
  31568. source: "./media/characters/azteck/front-dressed.svg",
  31569. extra: 2147 / 2003,
  31570. bottom: 68 / 2215
  31571. }
  31572. },
  31573. head: {
  31574. height: math.unit(0.47, "meters"),
  31575. weight: math.unit(85, "kg"),
  31576. name: "Head",
  31577. image: {
  31578. source: "./media/characters/azteck/head.svg"
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Bite sized",
  31585. height: math.unit(16, "cm")
  31586. },
  31587. {
  31588. name: "Normal",
  31589. height: math.unit(1.8, "meters"),
  31590. default: true
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(6, "feet"),
  31599. weight: math.unit(150, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/pidge/front.svg",
  31603. extra: 1936/1820,
  31604. bottom: 0/1936
  31605. }
  31606. },
  31607. back: {
  31608. height: math.unit(6, "feet"),
  31609. weight: math.unit(150, "lb"),
  31610. name: "Back",
  31611. image: {
  31612. source: "./media/characters/pidge/back.svg",
  31613. extra: 1938/1843,
  31614. bottom: 0/1938
  31615. }
  31616. },
  31617. casual: {
  31618. height: math.unit(6, "feet"),
  31619. weight: math.unit(150, "lb"),
  31620. name: "Casual",
  31621. image: {
  31622. source: "./media/characters/pidge/casual.svg",
  31623. extra: 1936/1820,
  31624. bottom: 0/1936
  31625. }
  31626. },
  31627. tech: {
  31628. height: math.unit(6, "feet"),
  31629. weight: math.unit(150, "lb"),
  31630. name: "Tech",
  31631. image: {
  31632. source: "./media/characters/pidge/tech.svg",
  31633. extra: 1802/1682,
  31634. bottom: 0/1802
  31635. }
  31636. },
  31637. head: {
  31638. height: math.unit(1.61, "feet"),
  31639. name: "Head",
  31640. image: {
  31641. source: "./media/characters/pidge/head.svg"
  31642. }
  31643. },
  31644. collar: {
  31645. height: math.unit(0.82, "feet"),
  31646. name: "Collar",
  31647. image: {
  31648. source: "./media/characters/pidge/collar.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Macro",
  31655. height: math.unit(2, "mile"),
  31656. default: true
  31657. },
  31658. {
  31659. name: "PUPPY",
  31660. height: math.unit(20, "miles")
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(6, "feet"),
  31669. weight: math.unit(150, "lb"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/en/front.svg",
  31673. extra: 1697 / 1563,
  31674. bottom: 103 / 1800
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(6, "feet"),
  31679. weight: math.unit(150, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/en/back.svg",
  31683. extra: 1700 / 1570,
  31684. bottom: 51 / 1751
  31685. }
  31686. },
  31687. frontDressed: {
  31688. height: math.unit(6, "feet"),
  31689. weight: math.unit(150, "lb"),
  31690. name: "Front (Dressed)",
  31691. image: {
  31692. source: "./media/characters/en/front-dressed.svg",
  31693. extra: 1697 / 1563,
  31694. bottom: 103 / 1800
  31695. }
  31696. },
  31697. backDressed: {
  31698. height: math.unit(6, "feet"),
  31699. weight: math.unit(150, "lb"),
  31700. name: "Back (Dressed)",
  31701. image: {
  31702. source: "./media/characters/en/back-dressed.svg",
  31703. extra: 1700 / 1570,
  31704. bottom: 51 / 1751
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Macro",
  31711. height: math.unit(210, "feet"),
  31712. default: true
  31713. },
  31714. ]
  31715. ))
  31716. characterMakers.push(() => makeCharacter(
  31717. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31718. {
  31719. front: {
  31720. height: math.unit(6, "feet"),
  31721. weight: math.unit(150, "lb"),
  31722. name: "Front",
  31723. image: {
  31724. source: "./media/characters/haze-orris/front.svg",
  31725. extra: 3975 / 3525,
  31726. bottom: 137 / 4112
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Micro",
  31733. height: math.unit(150, "mm"),
  31734. default: true
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(6, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/casselene-yaro/front.svg",
  31747. extra: 4721 / 4541,
  31748. bottom: 82 / 4803
  31749. }
  31750. },
  31751. back: {
  31752. height: math.unit(6, "feet"),
  31753. weight: math.unit(150, "lb"),
  31754. name: "Back",
  31755. image: {
  31756. source: "./media/characters/casselene-yaro/back.svg",
  31757. extra: 4569 / 4377,
  31758. bottom: 69 / 4638
  31759. }
  31760. },
  31761. dressed: {
  31762. height: math.unit(6, "feet"),
  31763. weight: math.unit(150, "lb"),
  31764. name: "Dressed",
  31765. image: {
  31766. source: "./media/characters/casselene-yaro/dressed.svg",
  31767. extra: 4721 / 4541,
  31768. bottom: 82 / 4803
  31769. }
  31770. },
  31771. maw: {
  31772. height: math.unit(1, "feet"),
  31773. name: "Maw",
  31774. image: {
  31775. source: "./media/characters/casselene-yaro/maw.svg"
  31776. }
  31777. },
  31778. },
  31779. [
  31780. {
  31781. name: "Macro",
  31782. height: math.unit(190, "feet"),
  31783. default: true
  31784. },
  31785. ]
  31786. ))
  31787. characterMakers.push(() => makeCharacter(
  31788. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31789. {
  31790. front: {
  31791. height: math.unit(10, "feet"),
  31792. weight: math.unit(15015, "lb"),
  31793. name: "Front",
  31794. image: {
  31795. source: "./media/characters/platine/front.svg",
  31796. extra: 1741/1650,
  31797. bottom: 84/1825
  31798. }
  31799. },
  31800. side: {
  31801. height: math.unit(10, "feet"),
  31802. weight: math.unit(15015, "lb"),
  31803. name: "Side",
  31804. image: {
  31805. source: "./media/characters/platine/side.svg",
  31806. extra: 1790/1705,
  31807. bottom: 29/1819
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(10, "feet"),
  31815. default: true
  31816. },
  31817. {
  31818. name: "Macro",
  31819. height: math.unit(100, "feet")
  31820. },
  31821. {
  31822. name: "Megamacro",
  31823. height: math.unit(1000, "feet")
  31824. },
  31825. ]
  31826. ))
  31827. characterMakers.push(() => makeCharacter(
  31828. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31829. {
  31830. front: {
  31831. height: math.unit(15 + 5 / 12, "feet"),
  31832. weight: math.unit(4600, "lb"),
  31833. name: "Front",
  31834. image: {
  31835. source: "./media/characters/neapolitan-ananassa/front.svg",
  31836. extra: 2903 / 2736,
  31837. bottom: 0 / 2903
  31838. }
  31839. },
  31840. side: {
  31841. height: math.unit(15 + 5 / 12, "feet"),
  31842. weight: math.unit(4600, "lb"),
  31843. name: "Side",
  31844. image: {
  31845. source: "./media/characters/neapolitan-ananassa/side.svg",
  31846. extra: 2925 / 2719,
  31847. bottom: 0 / 2925
  31848. }
  31849. },
  31850. back: {
  31851. height: math.unit(15 + 5 / 12, "feet"),
  31852. weight: math.unit(4600, "lb"),
  31853. name: "Back",
  31854. image: {
  31855. source: "./media/characters/neapolitan-ananassa/back.svg",
  31856. extra: 2903 / 2736,
  31857. bottom: 0 / 2903
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Normal",
  31864. height: math.unit(15 + 5 / 12, "feet"),
  31865. default: true
  31866. },
  31867. {
  31868. name: "Post-Millenium",
  31869. height: math.unit(35 + 5 / 12, "feet")
  31870. },
  31871. {
  31872. name: "Post-Era",
  31873. height: math.unit(450 + 5 / 12, "feet")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(300, "meters"),
  31882. weight: math.unit(125000, "tonnes"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/pazuzu/front.svg",
  31886. extra: 877 / 794,
  31887. bottom: 47 / 924
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Macro",
  31894. height: math.unit(300, "meters"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31901. {
  31902. side: {
  31903. height: math.unit(10 + 7 / 12, "feet"),
  31904. weight: math.unit(2.5, "tons"),
  31905. name: "Side",
  31906. image: {
  31907. source: "./media/characters/aasha/side.svg",
  31908. extra: 1345 / 1245,
  31909. bottom: 111 / 1456
  31910. }
  31911. },
  31912. back: {
  31913. height: math.unit(10 + 7 / 12, "feet"),
  31914. weight: math.unit(2.5, "tons"),
  31915. name: "Back",
  31916. image: {
  31917. source: "./media/characters/aasha/back.svg",
  31918. extra: 1133 / 1057,
  31919. bottom: 257 / 1390
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(10 + 7 / 12, "feet"),
  31927. default: true
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31933. {
  31934. front: {
  31935. height: math.unit(6 + 3 / 12, "feet"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/nevan/front.svg",
  31939. extra: 704 / 704,
  31940. bottom: 28 / 732
  31941. }
  31942. },
  31943. back: {
  31944. height: math.unit(6 + 3 / 12, "feet"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/nevan/back.svg",
  31948. extra: 714 / 714,
  31949. bottom: 21 / 735
  31950. }
  31951. },
  31952. frontFlaccid: {
  31953. height: math.unit(6 + 3 / 12, "feet"),
  31954. name: "Front (Flaccid)",
  31955. image: {
  31956. source: "./media/characters/nevan/front-flaccid.svg",
  31957. extra: 704 / 704,
  31958. bottom: 28 / 732
  31959. }
  31960. },
  31961. frontErect: {
  31962. height: math.unit(6 + 3 / 12, "feet"),
  31963. name: "Front (Erect)",
  31964. image: {
  31965. source: "./media/characters/nevan/front-erect.svg",
  31966. extra: 704 / 704,
  31967. bottom: 28 / 732
  31968. }
  31969. },
  31970. backFlaccid: {
  31971. height: math.unit(6 + 3 / 12, "feet"),
  31972. name: "Back (Flaccid)",
  31973. image: {
  31974. source: "./media/characters/nevan/back-flaccid.svg",
  31975. extra: 714 / 714,
  31976. bottom: 21 / 735
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(6 + 3 / 12, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(4, "feet"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/arhan/front.svg",
  31996. extra: 3368 / 3133,
  31997. bottom: 0 / 3368
  31998. }
  31999. },
  32000. side: {
  32001. height: math.unit(4, "feet"),
  32002. name: "Side",
  32003. image: {
  32004. source: "./media/characters/arhan/side.svg",
  32005. extra: 3347 / 3105,
  32006. bottom: 0 / 3347
  32007. }
  32008. },
  32009. tongue: {
  32010. height: math.unit(1.42, "feet"),
  32011. name: "Tongue",
  32012. image: {
  32013. source: "./media/characters/arhan/tongue.svg"
  32014. }
  32015. },
  32016. head: {
  32017. height: math.unit(0.85, "feet"),
  32018. name: "Head",
  32019. image: {
  32020. source: "./media/characters/arhan/head.svg"
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(4, "feet"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(5 + 7.5 / 12, "feet"),
  32037. weight: math.unit(120, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/digi-duncan/front.svg",
  32041. extra: 330 / 326,
  32042. bottom: 16 / 346
  32043. }
  32044. },
  32045. side: {
  32046. height: math.unit(5 + 7.5 / 12, "feet"),
  32047. weight: math.unit(120, "lb"),
  32048. name: "Side",
  32049. image: {
  32050. source: "./media/characters/digi-duncan/side.svg",
  32051. extra: 341 / 337,
  32052. bottom: 1 / 342
  32053. }
  32054. },
  32055. back: {
  32056. height: math.unit(5 + 7.5 / 12, "feet"),
  32057. weight: math.unit(120, "lb"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/digi-duncan/back.svg",
  32061. extra: 330 / 326,
  32062. bottom: 12 / 342
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Speck",
  32069. height: math.unit(0.25, "mm")
  32070. },
  32071. {
  32072. name: "Micro",
  32073. height: math.unit(5, "mm")
  32074. },
  32075. {
  32076. name: "Tiny",
  32077. height: math.unit(0.5, "inches"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "Human",
  32082. height: math.unit(5 + 7.5 / 12, "feet")
  32083. },
  32084. {
  32085. name: "Minigiant",
  32086. height: math.unit(8 + 5.25, "feet")
  32087. },
  32088. {
  32089. name: "Giant",
  32090. height: math.unit(2000, "feet")
  32091. },
  32092. {
  32093. name: "Mega",
  32094. height: math.unit(371.1, "miles")
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(2, "meters"),
  32103. weight: math.unit(350, "kg"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32107. extra: 898 / 838,
  32108. bottom: 9 / 907
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Micro",
  32115. height: math.unit(8, "meters")
  32116. },
  32117. {
  32118. name: "Normal",
  32119. height: math.unit(50, "meters"),
  32120. default: true
  32121. },
  32122. {
  32123. name: "Macro",
  32124. height: math.unit(500, "meters")
  32125. },
  32126. ]
  32127. ))
  32128. characterMakers.push(() => makeCharacter(
  32129. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32130. {
  32131. front: {
  32132. height: math.unit(6 + 6 / 12, "feet"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/khardesh/front.svg",
  32136. extra: 1788/1596,
  32137. bottom: 66/1854
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(6 + 6 / 12, "feet"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/khardesh/back.svg",
  32145. extra: 1781/1584,
  32146. bottom: 68/1849
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(6 + 6 / 12, "feet"),
  32154. default: true
  32155. },
  32156. {
  32157. name: "Normal+",
  32158. height: math.unit(4, "meters")
  32159. },
  32160. {
  32161. name: "Macro",
  32162. height: math.unit(50, "meters")
  32163. },
  32164. {
  32165. name: "Macro+",
  32166. height: math.unit(100, "meters")
  32167. },
  32168. {
  32169. name: "Megamacro",
  32170. height: math.unit(20, "km")
  32171. },
  32172. ]
  32173. ))
  32174. characterMakers.push(() => makeCharacter(
  32175. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32176. {
  32177. front: {
  32178. height: math.unit(6, "feet"),
  32179. weight: math.unit(150, "lb"),
  32180. name: "Front",
  32181. image: {
  32182. source: "./media/characters/kosho/front.svg",
  32183. extra: 1847 / 1847,
  32184. bottom: 86 / 1933
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Second-stage micro",
  32191. height: math.unit(0.5, "inches")
  32192. },
  32193. {
  32194. name: "First-stage micro",
  32195. height: math.unit(6, "inches")
  32196. },
  32197. {
  32198. name: "Normal",
  32199. height: math.unit(6, "feet"),
  32200. default: true
  32201. },
  32202. {
  32203. name: "First-stage macro",
  32204. height: math.unit(72, "feet")
  32205. },
  32206. {
  32207. name: "Second-stage macro",
  32208. height: math.unit(864, "feet")
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32214. {
  32215. normal: {
  32216. height: math.unit(4 + 6 / 12, "feet"),
  32217. name: "Normal",
  32218. image: {
  32219. source: "./media/characters/hydra/normal.svg",
  32220. extra: 2833 / 2634,
  32221. bottom: 68 / 2901
  32222. }
  32223. },
  32224. smol: {
  32225. height: math.unit(0.705, "inches"),
  32226. name: "Smol",
  32227. image: {
  32228. source: "./media/characters/hydra/smol.svg",
  32229. extra: 2715 / 2540,
  32230. bottom: 0 / 2715
  32231. }
  32232. },
  32233. },
  32234. [
  32235. {
  32236. name: "Normal",
  32237. height: math.unit(4 + 6 / 12, "feet"),
  32238. default: true
  32239. }
  32240. ]
  32241. ))
  32242. characterMakers.push(() => makeCharacter(
  32243. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32244. {
  32245. front: {
  32246. height: math.unit(0.6, "cm"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/daz/front.svg",
  32250. extra: 1682 / 1164,
  32251. bottom: 42 / 1724
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(0.6, "cm"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(6, "feet"),
  32268. weight: math.unit(235, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/theo-pangolin/front.svg",
  32272. extra: 1996 / 1969,
  32273. bottom: 115 / 2111
  32274. }
  32275. },
  32276. back: {
  32277. height: math.unit(6, "feet"),
  32278. weight: math.unit(235, "lb"),
  32279. name: "Back",
  32280. image: {
  32281. source: "./media/characters/theo-pangolin/back.svg",
  32282. extra: 1979 / 1979,
  32283. bottom: 40 / 2019
  32284. }
  32285. },
  32286. feral: {
  32287. height: math.unit(2, "feet"),
  32288. weight: math.unit(30, "lb"),
  32289. name: "Feral",
  32290. image: {
  32291. source: "./media/characters/theo-pangolin/feral.svg",
  32292. extra: 803 / 791,
  32293. bottom: 181 / 984
  32294. }
  32295. },
  32296. footFive: {
  32297. height: math.unit(1.43, "feet"),
  32298. name: "Foot (Five Toes)",
  32299. image: {
  32300. source: "./media/characters/theo-pangolin/foot-five.svg"
  32301. }
  32302. },
  32303. footFour: {
  32304. height: math.unit(1.43, "feet"),
  32305. name: "Foot (Four Toes)",
  32306. image: {
  32307. source: "./media/characters/theo-pangolin/foot-four.svg"
  32308. }
  32309. },
  32310. handFour: {
  32311. height: math.unit(0.81, "feet"),
  32312. name: "Hand (Four Fingers)",
  32313. image: {
  32314. source: "./media/characters/theo-pangolin/hand-four.svg"
  32315. }
  32316. },
  32317. handThree: {
  32318. height: math.unit(0.81, "feet"),
  32319. name: "Hand (Three Fingers)",
  32320. image: {
  32321. source: "./media/characters/theo-pangolin/hand-three.svg"
  32322. }
  32323. },
  32324. headFront: {
  32325. height: math.unit(1.37, "feet"),
  32326. name: "Head (Front)",
  32327. image: {
  32328. source: "./media/characters/theo-pangolin/head-front.svg"
  32329. }
  32330. },
  32331. headSide: {
  32332. height: math.unit(1.43, "feet"),
  32333. name: "Head (Side)",
  32334. image: {
  32335. source: "./media/characters/theo-pangolin/head-side.svg"
  32336. }
  32337. },
  32338. tongue: {
  32339. height: math.unit(2.29, "feet"),
  32340. name: "Tongue",
  32341. image: {
  32342. source: "./media/characters/theo-pangolin/tongue.svg"
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(6, "feet")
  32350. },
  32351. {
  32352. name: "Macro",
  32353. height: math.unit(400, "feet"),
  32354. default: true
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32360. {
  32361. front: {
  32362. height: math.unit(6, "inches"),
  32363. weight: math.unit(0.036, "kg"),
  32364. name: "Front",
  32365. image: {
  32366. source: "./media/characters/renée/front.svg",
  32367. extra: 900 / 886,
  32368. bottom: 8 / 908
  32369. }
  32370. },
  32371. },
  32372. [
  32373. {
  32374. name: "Nano",
  32375. height: math.unit(1, "nm")
  32376. },
  32377. {
  32378. name: "Micro",
  32379. height: math.unit(1, "mm")
  32380. },
  32381. {
  32382. name: "Normal",
  32383. height: math.unit(6, "inches")
  32384. },
  32385. {
  32386. name: "Macro",
  32387. height: math.unit(2000, "feet"),
  32388. default: true
  32389. },
  32390. {
  32391. name: "Megamacro",
  32392. height: math.unit(2, "km")
  32393. },
  32394. {
  32395. name: "Gigamacro",
  32396. height: math.unit(2000, "km")
  32397. },
  32398. {
  32399. name: "Teramacro",
  32400. height: math.unit(250000, "km")
  32401. },
  32402. ]
  32403. ))
  32404. characterMakers.push(() => makeCharacter(
  32405. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32406. {
  32407. front: {
  32408. height: math.unit(4, "meters"),
  32409. weight: math.unit(150, "kg"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/caledvwlch/front.svg",
  32413. extra: 1757/1537,
  32414. bottom: 31/1788
  32415. }
  32416. },
  32417. side: {
  32418. height: math.unit(4, "meters"),
  32419. weight: math.unit(150, "kg"),
  32420. name: "Side",
  32421. image: {
  32422. source: "./media/characters/caledvwlch/side.svg",
  32423. extra: 1605 / 1536,
  32424. bottom: 31 / 1636
  32425. }
  32426. },
  32427. back: {
  32428. height: math.unit(4, "meters"),
  32429. weight: math.unit(150, "kg"),
  32430. name: "Back",
  32431. image: {
  32432. source: "./media/characters/caledvwlch/back.svg",
  32433. extra: 1635 / 1565,
  32434. bottom: 27 / 1662
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "\"Incognito\"",
  32441. height: math.unit(4, "meters")
  32442. },
  32443. {
  32444. name: "Small rampage",
  32445. height: math.unit(600, "meters")
  32446. },
  32447. {
  32448. name: "Mega",
  32449. height: math.unit(30, "km")
  32450. },
  32451. {
  32452. name: "Home-size",
  32453. height: math.unit(50, "km"),
  32454. default: true
  32455. },
  32456. {
  32457. name: "Giga",
  32458. height: math.unit(300, "km")
  32459. },
  32460. {
  32461. name: "Lounging",
  32462. height: math.unit(11000, "km")
  32463. },
  32464. {
  32465. name: "Planet snacking",
  32466. height: math.unit(2000000, "km")
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32472. {
  32473. front: {
  32474. height: math.unit(6, "feet"),
  32475. weight: math.unit(215, "lb"),
  32476. name: "Front",
  32477. image: {
  32478. source: "./media/characters/sapphire-svell/front.svg",
  32479. extra: 495 / 455,
  32480. bottom: 20 / 515
  32481. }
  32482. },
  32483. back: {
  32484. height: math.unit(6, "feet"),
  32485. weight: math.unit(216, "lb"),
  32486. name: "Back",
  32487. image: {
  32488. source: "./media/characters/sapphire-svell/back.svg",
  32489. extra: 497 / 477,
  32490. bottom: 7 / 504
  32491. }
  32492. },
  32493. maw: {
  32494. height: math.unit(1.57, "feet"),
  32495. name: "Maw",
  32496. image: {
  32497. source: "./media/characters/sapphire-svell/maw.svg"
  32498. }
  32499. },
  32500. foot: {
  32501. height: math.unit(1.07, "feet"),
  32502. name: "Foot",
  32503. image: {
  32504. source: "./media/characters/sapphire-svell/foot.svg"
  32505. }
  32506. },
  32507. toering: {
  32508. height: math.unit(1.7, "inch"),
  32509. name: "Toering",
  32510. image: {
  32511. source: "./media/characters/sapphire-svell/toering.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(300, "feet"),
  32519. default: true
  32520. },
  32521. {
  32522. name: "Augmented",
  32523. height: math.unit(1250, "feet")
  32524. },
  32525. {
  32526. name: "Unleashed",
  32527. height: math.unit(3000, "feet")
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32533. {
  32534. side: {
  32535. height: math.unit(2 + 3 / 12, "feet"),
  32536. weight: math.unit(110, "lb"),
  32537. name: "Side",
  32538. image: {
  32539. source: "./media/characters/glitch-flux/side.svg",
  32540. extra: 997 / 805,
  32541. bottom: 20 / 1017
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Normal",
  32548. height: math.unit(2 + 3 / 12, "feet"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(4, "meters"),
  32558. name: "Front",
  32559. image: {
  32560. source: "./media/characters/mid/front.svg",
  32561. extra: 507 / 476,
  32562. bottom: 17 / 524
  32563. }
  32564. },
  32565. back: {
  32566. height: math.unit(4, "meters"),
  32567. name: "Back",
  32568. image: {
  32569. source: "./media/characters/mid/back.svg",
  32570. extra: 519 / 487,
  32571. bottom: 7 / 526
  32572. }
  32573. },
  32574. stuck: {
  32575. height: math.unit(2.2, "meters"),
  32576. name: "Stuck",
  32577. image: {
  32578. source: "./media/characters/mid/stuck.svg",
  32579. extra: 1951 / 1869,
  32580. bottom: 88 / 2039
  32581. }
  32582. }
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(4, "meters"),
  32588. default: true
  32589. },
  32590. {
  32591. name: "Big",
  32592. height: math.unit(10, "meters")
  32593. },
  32594. {
  32595. name: "Macro",
  32596. height: math.unit(800, "meters")
  32597. },
  32598. {
  32599. name: "Megamacro",
  32600. height: math.unit(100, "km")
  32601. },
  32602. {
  32603. name: "Overgrown",
  32604. height: math.unit(1, "parsec")
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32610. {
  32611. front: {
  32612. height: math.unit(2.5, "meters"),
  32613. weight: math.unit(225, "kg"),
  32614. name: "Front",
  32615. image: {
  32616. source: "./media/characters/iris/front.svg",
  32617. extra: 3348 / 3251,
  32618. bottom: 205 / 3553
  32619. }
  32620. },
  32621. maw: {
  32622. height: math.unit(0.56, "meter"),
  32623. name: "Maw",
  32624. image: {
  32625. source: "./media/characters/iris/maw.svg"
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Mewter cat",
  32632. height: math.unit(1.2, "meters")
  32633. },
  32634. {
  32635. name: "Normal",
  32636. height: math.unit(2.5, "meters"),
  32637. default: true
  32638. },
  32639. {
  32640. name: "Minimacro",
  32641. height: math.unit(18, "feet")
  32642. },
  32643. {
  32644. name: "Macro",
  32645. height: math.unit(140, "feet")
  32646. },
  32647. {
  32648. name: "Macro+",
  32649. height: math.unit(180, "meters")
  32650. },
  32651. {
  32652. name: "Megamacro",
  32653. height: math.unit(2746, "meters")
  32654. },
  32655. ]
  32656. ))
  32657. characterMakers.push(() => makeCharacter(
  32658. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32659. {
  32660. front: {
  32661. height: math.unit(6, "feet"),
  32662. weight: math.unit(135, "lb"),
  32663. name: "Front",
  32664. image: {
  32665. source: "./media/characters/axel/front.svg",
  32666. extra: 908 / 908,
  32667. bottom: 58 / 966
  32668. }
  32669. },
  32670. side: {
  32671. height: math.unit(6, "feet"),
  32672. weight: math.unit(135, "lb"),
  32673. name: "Side",
  32674. image: {
  32675. source: "./media/characters/axel/side.svg",
  32676. extra: 958 / 958,
  32677. bottom: 11 / 969
  32678. }
  32679. },
  32680. back: {
  32681. height: math.unit(6, "feet"),
  32682. weight: math.unit(135, "lb"),
  32683. name: "Back",
  32684. image: {
  32685. source: "./media/characters/axel/back.svg",
  32686. extra: 887 / 887,
  32687. bottom: 34 / 921
  32688. }
  32689. },
  32690. head: {
  32691. height: math.unit(1.07, "feet"),
  32692. name: "Head",
  32693. image: {
  32694. source: "./media/characters/axel/head.svg"
  32695. }
  32696. },
  32697. beak: {
  32698. height: math.unit(1.4, "feet"),
  32699. name: "Beak",
  32700. image: {
  32701. source: "./media/characters/axel/beak.svg"
  32702. }
  32703. },
  32704. beakSide: {
  32705. height: math.unit(1.4, "feet"),
  32706. name: "Beak Side",
  32707. image: {
  32708. source: "./media/characters/axel/beak-side.svg"
  32709. }
  32710. },
  32711. sheath: {
  32712. height: math.unit(0.5, "feet"),
  32713. name: "Sheath",
  32714. image: {
  32715. source: "./media/characters/axel/sheath.svg"
  32716. }
  32717. },
  32718. dick: {
  32719. height: math.unit(0.98, "feet"),
  32720. name: "Dick",
  32721. image: {
  32722. source: "./media/characters/axel/dick.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Macro",
  32729. height: math.unit(68, "meters"),
  32730. default: true
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32736. {
  32737. front: {
  32738. height: math.unit(3.5, "meters"),
  32739. weight: math.unit(1200, "kg"),
  32740. name: "Front",
  32741. image: {
  32742. source: "./media/characters/joanna/front.svg",
  32743. extra: 1596 / 1488,
  32744. bottom: 29 / 1625
  32745. }
  32746. },
  32747. back: {
  32748. height: math.unit(3.5, "meters"),
  32749. weight: math.unit(1200, "kg"),
  32750. name: "Back",
  32751. image: {
  32752. source: "./media/characters/joanna/back.svg",
  32753. extra: 1594 / 1495,
  32754. bottom: 26 / 1620
  32755. }
  32756. },
  32757. frontShorts: {
  32758. height: math.unit(3.5, "meters"),
  32759. weight: math.unit(1200, "kg"),
  32760. name: "Front (Shorts)",
  32761. image: {
  32762. source: "./media/characters/joanna/front-shorts.svg",
  32763. extra: 1596 / 1488,
  32764. bottom: 29 / 1625
  32765. }
  32766. },
  32767. frontBiker: {
  32768. height: math.unit(3.5, "meters"),
  32769. weight: math.unit(1200, "kg"),
  32770. name: "Front (Biker)",
  32771. image: {
  32772. source: "./media/characters/joanna/front-biker.svg",
  32773. extra: 1596 / 1488,
  32774. bottom: 29 / 1625
  32775. }
  32776. },
  32777. backBiker: {
  32778. height: math.unit(3.5, "meters"),
  32779. weight: math.unit(1200, "kg"),
  32780. name: "Back (Biker)",
  32781. image: {
  32782. source: "./media/characters/joanna/back-biker.svg",
  32783. extra: 1594 / 1495,
  32784. bottom: 88 / 1682
  32785. }
  32786. },
  32787. bikeLeft: {
  32788. height: math.unit(2.4, "meters"),
  32789. weight: math.unit(1600, "kg"),
  32790. name: "Bike (Left)",
  32791. image: {
  32792. source: "./media/characters/joanna/bike-left.svg",
  32793. extra: 720 / 720,
  32794. bottom: 8 / 728
  32795. }
  32796. },
  32797. bikeRight: {
  32798. height: math.unit(2.4, "meters"),
  32799. weight: math.unit(1600, "kg"),
  32800. name: "Bike (Right)",
  32801. image: {
  32802. source: "./media/characters/joanna/bike-right.svg",
  32803. extra: 720 / 720,
  32804. bottom: 8 / 728
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Incognito",
  32811. height: math.unit(3.5, "meters")
  32812. },
  32813. {
  32814. name: "Casual Big",
  32815. height: math.unit(200, "meters")
  32816. },
  32817. {
  32818. name: "Macro",
  32819. height: math.unit(600, "meters")
  32820. },
  32821. {
  32822. name: "Original",
  32823. height: math.unit(20, "km"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Giga",
  32828. height: math.unit(400, "km")
  32829. },
  32830. {
  32831. name: "Lounging",
  32832. height: math.unit(1500, "km")
  32833. },
  32834. {
  32835. name: "Planetary",
  32836. height: math.unit(200000, "km")
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32842. {
  32843. front: {
  32844. height: math.unit(6, "feet"),
  32845. weight: math.unit(150, "lb"),
  32846. name: "Front",
  32847. image: {
  32848. source: "./media/characters/hugo-sigil/front.svg",
  32849. extra: 522 / 500,
  32850. bottom: 2 / 524
  32851. }
  32852. },
  32853. back: {
  32854. height: math.unit(6, "feet"),
  32855. weight: math.unit(150, "lb"),
  32856. name: "Back",
  32857. image: {
  32858. source: "./media/characters/hugo-sigil/back.svg",
  32859. extra: 519 / 495,
  32860. bottom: 5 / 524
  32861. }
  32862. },
  32863. maw: {
  32864. height: math.unit(1.4, "feet"),
  32865. weight: math.unit(150, "lb"),
  32866. name: "Maw",
  32867. image: {
  32868. source: "./media/characters/hugo-sigil/maw.svg"
  32869. }
  32870. },
  32871. feet: {
  32872. height: math.unit(1.56, "feet"),
  32873. weight: math.unit(150, "lb"),
  32874. name: "Feet",
  32875. image: {
  32876. source: "./media/characters/hugo-sigil/feet.svg",
  32877. extra: 177 / 177,
  32878. bottom: 12 / 189
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(6, "feet")
  32886. },
  32887. {
  32888. name: "Macro",
  32889. height: math.unit(200, "feet"),
  32890. default: true
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(150, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/peri/front.svg",
  32903. extra: 2354 / 2233,
  32904. bottom: 49 / 2403
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Really Small",
  32911. height: math.unit(1, "nm")
  32912. },
  32913. {
  32914. name: "Micro",
  32915. height: math.unit(4, "inches")
  32916. },
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(7, "inches"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "Macro",
  32924. height: math.unit(400, "feet")
  32925. },
  32926. {
  32927. name: "Megamacro",
  32928. height: math.unit(100, "miles")
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32934. {
  32935. frontSlim: {
  32936. height: math.unit(7, "feet"),
  32937. name: "Front (Slim)",
  32938. image: {
  32939. source: "./media/characters/issilora/front-slim.svg",
  32940. extra: 529 / 449,
  32941. bottom: 53 / 582
  32942. }
  32943. },
  32944. sideSlim: {
  32945. height: math.unit(7, "feet"),
  32946. name: "Side (Slim)",
  32947. image: {
  32948. source: "./media/characters/issilora/side-slim.svg",
  32949. extra: 570 / 480,
  32950. bottom: 30 / 600
  32951. }
  32952. },
  32953. backSlim: {
  32954. height: math.unit(7, "feet"),
  32955. name: "Back (Slim)",
  32956. image: {
  32957. source: "./media/characters/issilora/back-slim.svg",
  32958. extra: 537 / 455,
  32959. bottom: 46 / 583
  32960. }
  32961. },
  32962. frontBuff: {
  32963. height: math.unit(7, "feet"),
  32964. name: "Front (Buff)",
  32965. image: {
  32966. source: "./media/characters/issilora/front-buff.svg",
  32967. extra: 2310 / 2035,
  32968. bottom: 335 / 2645
  32969. }
  32970. },
  32971. head: {
  32972. height: math.unit(1.94, "feet"),
  32973. name: "Head",
  32974. image: {
  32975. source: "./media/characters/issilora/head.svg"
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Minimum",
  32982. height: math.unit(7, "feet")
  32983. },
  32984. {
  32985. name: "Comfortable",
  32986. height: math.unit(17, "feet")
  32987. },
  32988. {
  32989. name: "Fun Size",
  32990. height: math.unit(47, "feet")
  32991. },
  32992. {
  32993. name: "Natural Macro",
  32994. height: math.unit(137, "feet"),
  32995. default: true
  32996. },
  32997. {
  32998. name: "Maximum Kaiju",
  32999. height: math.unit(397, "feet")
  33000. },
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33005. {
  33006. front: {
  33007. height: math.unit(50 + 9/12, "feet"),
  33008. weight: math.unit(32.8, "tons"),
  33009. name: "Front",
  33010. image: {
  33011. source: "./media/characters/irb'iiritaahn/front.svg",
  33012. extra: 1878/1826,
  33013. bottom: 326/2204
  33014. }
  33015. },
  33016. back: {
  33017. height: math.unit(50 + 9/12, "feet"),
  33018. weight: math.unit(32.8, "tons"),
  33019. name: "Back",
  33020. image: {
  33021. source: "./media/characters/irb'iiritaahn/back.svg",
  33022. extra: 2052/2018,
  33023. bottom: 152/2204
  33024. }
  33025. },
  33026. head: {
  33027. height: math.unit(12.86, "feet"),
  33028. name: "Head",
  33029. image: {
  33030. source: "./media/characters/irb'iiritaahn/head.svg"
  33031. }
  33032. },
  33033. maw: {
  33034. height: math.unit(9.66, "feet"),
  33035. name: "Maw",
  33036. image: {
  33037. source: "./media/characters/irb'iiritaahn/maw.svg"
  33038. }
  33039. },
  33040. frontDick: {
  33041. height: math.unit(8.78461, "feet"),
  33042. name: "Front Dick",
  33043. image: {
  33044. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33045. }
  33046. },
  33047. rearDick: {
  33048. height: math.unit(8.78461, "feet"),
  33049. name: "Rear Dick",
  33050. image: {
  33051. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33052. }
  33053. },
  33054. rearDickUnfolded: {
  33055. height: math.unit(8.78, "feet"),
  33056. name: "Rear Dick (Unfolded)",
  33057. image: {
  33058. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33059. }
  33060. },
  33061. wings: {
  33062. height: math.unit(43, "feet"),
  33063. name: "Wings",
  33064. image: {
  33065. source: "./media/characters/irb'iiritaahn/wings.svg"
  33066. }
  33067. },
  33068. },
  33069. [
  33070. {
  33071. name: "Macro",
  33072. height: math.unit(50 + 9/12, "feet"),
  33073. default: true
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33079. {
  33080. front: {
  33081. height: math.unit(205, "cm"),
  33082. weight: math.unit(102, "kg"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/irbisgreif/front.svg",
  33086. extra: 785/706,
  33087. bottom: 13/798
  33088. }
  33089. },
  33090. back: {
  33091. height: math.unit(205, "cm"),
  33092. weight: math.unit(102, "kg"),
  33093. name: "Back",
  33094. image: {
  33095. source: "./media/characters/irbisgreif/back.svg",
  33096. extra: 713/701,
  33097. bottom: 26/739
  33098. }
  33099. },
  33100. frontDressed: {
  33101. height: math.unit(216, "cm"),
  33102. weight: math.unit(102, "kg"),
  33103. name: "Front-dressed",
  33104. image: {
  33105. source: "./media/characters/irbisgreif/front-dressed.svg",
  33106. extra: 902/776,
  33107. bottom: 14/916
  33108. }
  33109. },
  33110. sideDressed: {
  33111. height: math.unit(195, "cm"),
  33112. weight: math.unit(102, "kg"),
  33113. name: "Side-dressed",
  33114. image: {
  33115. source: "./media/characters/irbisgreif/side-dressed.svg",
  33116. extra: 788/688,
  33117. bottom: 21/809
  33118. }
  33119. },
  33120. backDressed: {
  33121. height: math.unit(216, "cm"),
  33122. weight: math.unit(102, "kg"),
  33123. name: "Back-dressed",
  33124. image: {
  33125. source: "./media/characters/irbisgreif/back-dressed.svg",
  33126. extra: 901/783,
  33127. bottom: 10/911
  33128. }
  33129. },
  33130. dick: {
  33131. height: math.unit(0.49, "feet"),
  33132. name: "Dick",
  33133. image: {
  33134. source: "./media/characters/irbisgreif/dick.svg"
  33135. }
  33136. },
  33137. wingTop: {
  33138. height: math.unit(1.93 , "feet"),
  33139. name: "Wing-top",
  33140. image: {
  33141. source: "./media/characters/irbisgreif/wing-top.svg"
  33142. }
  33143. },
  33144. wingBottom: {
  33145. height: math.unit(1.93 , "feet"),
  33146. name: "Wing-bottom",
  33147. image: {
  33148. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(216, "cm"),
  33156. default: true
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(6, "feet"),
  33165. weight: math.unit(150, "lb"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/pride/front.svg",
  33169. extra: 1299/1230,
  33170. bottom: 18/1317
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Normal",
  33177. height: math.unit(7, "feet")
  33178. },
  33179. {
  33180. name: "Mini-macro",
  33181. height: math.unit(11, "feet")
  33182. },
  33183. {
  33184. name: "Macro",
  33185. height: math.unit(15, "meters"),
  33186. default: true
  33187. },
  33188. {
  33189. name: "Macro+",
  33190. height: math.unit(40, "meters")
  33191. },
  33192. ]
  33193. ))
  33194. characterMakers.push(() => makeCharacter(
  33195. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33196. {
  33197. front: {
  33198. height: math.unit(4 + 2 / 12, "feet"),
  33199. weight: math.unit(95, "lb"),
  33200. name: "Front",
  33201. image: {
  33202. source: "./media/characters/vaelophis-nyx/front.svg",
  33203. extra: 2532/2330,
  33204. bottom: 0/2532
  33205. }
  33206. },
  33207. back: {
  33208. height: math.unit(4 + 2 / 12, "feet"),
  33209. weight: math.unit(95, "lb"),
  33210. name: "Back",
  33211. image: {
  33212. source: "./media/characters/vaelophis-nyx/back.svg",
  33213. extra: 2484/2361,
  33214. bottom: 0/2484
  33215. }
  33216. },
  33217. feralSide: {
  33218. height: math.unit(2 + 1/12, "feet"),
  33219. weight: math.unit(20, "lb"),
  33220. name: "Feral (Side)",
  33221. image: {
  33222. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33223. extra: 1721/1581,
  33224. bottom: 70/1791
  33225. }
  33226. },
  33227. feralLazing: {
  33228. height: math.unit(1.08, "feet"),
  33229. weight: math.unit(20, "lb"),
  33230. name: "Feral (Lazing)",
  33231. image: {
  33232. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33233. extra: 822/822,
  33234. bottom: 248/1070
  33235. }
  33236. },
  33237. ear: {
  33238. height: math.unit(0.416, "feet"),
  33239. name: "Ear",
  33240. image: {
  33241. source: "./media/characters/vaelophis-nyx/ear.svg"
  33242. }
  33243. },
  33244. eye: {
  33245. height: math.unit(0.0748, "feet"),
  33246. name: "Eye",
  33247. image: {
  33248. source: "./media/characters/vaelophis-nyx/eye.svg"
  33249. }
  33250. },
  33251. mouth: {
  33252. height: math.unit(0.378, "feet"),
  33253. name: "Mouth",
  33254. image: {
  33255. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33256. }
  33257. },
  33258. spade: {
  33259. height: math.unit(0.55, "feet"),
  33260. name: "Spade",
  33261. image: {
  33262. source: "./media/characters/vaelophis-nyx/spade.svg"
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(4 + 2/12, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33276. {
  33277. front: {
  33278. height: math.unit(7, "feet"),
  33279. weight: math.unit(231, "lb"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/flux/front.svg",
  33283. extra: 919/871,
  33284. bottom: 0/919
  33285. }
  33286. },
  33287. back: {
  33288. height: math.unit(7, "feet"),
  33289. weight: math.unit(231, "lb"),
  33290. name: "Back",
  33291. image: {
  33292. source: "./media/characters/flux/back.svg",
  33293. extra: 1040/992,
  33294. bottom: 0/1040
  33295. }
  33296. },
  33297. frontDressed: {
  33298. height: math.unit(7, "feet"),
  33299. weight: math.unit(231, "lb"),
  33300. name: "Front (Dressed)",
  33301. image: {
  33302. source: "./media/characters/flux/front-dressed.svg",
  33303. extra: 919/871,
  33304. bottom: 0/919
  33305. }
  33306. },
  33307. feralSide: {
  33308. height: math.unit(5, "feet"),
  33309. weight: math.unit(150, "lb"),
  33310. name: "Feral (Side)",
  33311. image: {
  33312. source: "./media/characters/flux/feral-side.svg",
  33313. extra: 598/528,
  33314. bottom: 28/626
  33315. }
  33316. },
  33317. head: {
  33318. height: math.unit(1.585, "feet"),
  33319. name: "Head",
  33320. image: {
  33321. source: "./media/characters/flux/head.svg"
  33322. }
  33323. },
  33324. headSide: {
  33325. height: math.unit(1.74, "feet"),
  33326. name: "Head (Side)",
  33327. image: {
  33328. source: "./media/characters/flux/head-side.svg"
  33329. }
  33330. },
  33331. headSideFire: {
  33332. height: math.unit(1.76, "feet"),
  33333. name: "Head (Side, Fire)",
  33334. image: {
  33335. source: "./media/characters/flux/head-side-fire.svg"
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(7, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(9, "feet"),
  33352. weight: math.unit(1012, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/ulfra-lupae/front.svg",
  33356. extra: 1083/1011,
  33357. bottom: 67/1150
  33358. }
  33359. },
  33360. },
  33361. [
  33362. {
  33363. name: "Micro",
  33364. height: math.unit(6, "inches")
  33365. },
  33366. {
  33367. name: "Socializing",
  33368. height: math.unit(6 + 5/12, "feet")
  33369. },
  33370. {
  33371. name: "Normal",
  33372. height: math.unit(9, "feet"),
  33373. default: true
  33374. },
  33375. {
  33376. name: "Macro",
  33377. height: math.unit(150, "feet")
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(5 + 2/12, "feet"),
  33386. weight: math.unit(120, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/timber/front.svg",
  33390. extra: 2814/2705,
  33391. bottom: 181/2995
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(5 + 2/12, "feet"),
  33399. default: true
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(9, "feet"),
  33408. name: "Front",
  33409. image: {
  33410. source: "./media/characters/nicki/front.svg",
  33411. extra: 1240/990,
  33412. bottom: 45/1285
  33413. },
  33414. form: "anthro",
  33415. default: true
  33416. },
  33417. side: {
  33418. height: math.unit(9, "feet"),
  33419. name: "Side",
  33420. image: {
  33421. source: "./media/characters/nicki/side.svg",
  33422. extra: 1047/973,
  33423. bottom: 61/1108
  33424. },
  33425. form: "anthro"
  33426. },
  33427. back: {
  33428. height: math.unit(9, "feet"),
  33429. name: "Back",
  33430. image: {
  33431. source: "./media/characters/nicki/back.svg",
  33432. extra: 1006/965,
  33433. bottom: 39/1045
  33434. },
  33435. form: "anthro"
  33436. },
  33437. taur: {
  33438. height: math.unit(15, "feet"),
  33439. name: "Taur",
  33440. image: {
  33441. source: "./media/characters/nicki/taur.svg",
  33442. extra: 1592/1347,
  33443. bottom: 0/1592
  33444. },
  33445. form: "taur",
  33446. default: true
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(9, "feet"),
  33453. form: "anthro",
  33454. default: true
  33455. },
  33456. {
  33457. name: "Normal",
  33458. height: math.unit(15, "feet"),
  33459. form: "taur",
  33460. default: true
  33461. }
  33462. ],
  33463. {
  33464. "anthro": {
  33465. name: "Anthro",
  33466. default: true
  33467. },
  33468. "taur": {
  33469. name: "Taur"
  33470. }
  33471. }
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(7 + 10/12, "feet"),
  33478. weight: math.unit(3.5, "tons"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/lee/front.svg",
  33482. extra: 1773/1615,
  33483. bottom: 86/1859
  33484. }
  33485. },
  33486. hand: {
  33487. height: math.unit(1.78, "feet"),
  33488. name: "Hand",
  33489. image: {
  33490. source: "./media/characters/lee/hand.svg"
  33491. }
  33492. },
  33493. maw: {
  33494. height: math.unit(1.18, "feet"),
  33495. name: "Maw",
  33496. image: {
  33497. source: "./media/characters/lee/maw.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Normal",
  33504. height: math.unit(7 + 10/12, "feet"),
  33505. default: true
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33511. {
  33512. front: {
  33513. height: math.unit(9, "feet"),
  33514. name: "Front",
  33515. image: {
  33516. source: "./media/characters/guti/front.svg",
  33517. extra: 4551/4355,
  33518. bottom: 123/4674
  33519. }
  33520. },
  33521. tongue: {
  33522. height: math.unit(1, "feet"),
  33523. name: "Tongue",
  33524. image: {
  33525. source: "./media/characters/guti/tongue.svg"
  33526. }
  33527. },
  33528. paw: {
  33529. height: math.unit(1.18, "feet"),
  33530. name: "Paw",
  33531. image: {
  33532. source: "./media/characters/guti/paw.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(9, "feet"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33546. {
  33547. side: {
  33548. height: math.unit(5, "meters"),
  33549. name: "Side",
  33550. image: {
  33551. source: "./media/characters/vesper/side.svg",
  33552. extra: 1605/1518,
  33553. bottom: 0/1605
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Small",
  33560. height: math.unit(5, "meters")
  33561. },
  33562. {
  33563. name: "Sage",
  33564. height: math.unit(100, "meters"),
  33565. default: true
  33566. },
  33567. {
  33568. name: "Fun Size",
  33569. height: math.unit(600, "meters")
  33570. },
  33571. {
  33572. name: "Goddess",
  33573. height: math.unit(20000, "km")
  33574. },
  33575. {
  33576. name: "Maximum",
  33577. height: math.unit(5, "galaxies")
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(6 + 3/12, "feet"),
  33586. weight: math.unit(190, "lb"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/gawain/front.svg",
  33590. extra: 2222/2139,
  33591. bottom: 90/2312
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(6 + 3/12, "feet"),
  33596. weight: math.unit(190, "lb"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/gawain/back.svg",
  33600. extra: 2199/2111,
  33601. bottom: 73/2272
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(6 + 3/12, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33615. {
  33616. side: {
  33617. height: math.unit(3.5, "meters"),
  33618. weight: math.unit(16000, "lb"),
  33619. name: "Side",
  33620. image: {
  33621. source: "./media/characters/dascalti/side.svg",
  33622. extra: 392/273,
  33623. bottom: 47/439
  33624. }
  33625. },
  33626. breath: {
  33627. height: math.unit(7.4, "feet"),
  33628. name: "Breath",
  33629. image: {
  33630. source: "./media/characters/dascalti/breath.svg"
  33631. }
  33632. },
  33633. fed: {
  33634. height: math.unit(3.6, "meters"),
  33635. weight: math.unit(16000, "lb"),
  33636. name: "Fed",
  33637. image: {
  33638. source: "./media/characters/dascalti/fed.svg",
  33639. extra: 1419/820,
  33640. bottom: 95/1514
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Normal",
  33647. height: math.unit(3.5, "meters"),
  33648. default: true
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33654. {
  33655. front: {
  33656. height: math.unit(3 + 5/12, "feet"),
  33657. name: "Front",
  33658. image: {
  33659. source: "./media/characters/mauve/front.svg",
  33660. extra: 1126/1033,
  33661. bottom: 65/1191
  33662. }
  33663. },
  33664. side: {
  33665. height: math.unit(3 + 5/12, "feet"),
  33666. name: "Side",
  33667. image: {
  33668. source: "./media/characters/mauve/side.svg",
  33669. extra: 1089/1001,
  33670. bottom: 29/1118
  33671. }
  33672. },
  33673. back: {
  33674. height: math.unit(3 + 5/12, "feet"),
  33675. name: "Back",
  33676. image: {
  33677. source: "./media/characters/mauve/back.svg",
  33678. extra: 1173/1053,
  33679. bottom: 109/1282
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(3 + 5/12, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33693. {
  33694. front: {
  33695. height: math.unit(6 + 3/12, "feet"),
  33696. weight: math.unit(430, "lb"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/carlos/front.svg",
  33700. extra: 1964/1913,
  33701. bottom: 70/2034
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Normal",
  33708. height: math.unit(6 + 3/12, "feet"),
  33709. default: true
  33710. },
  33711. ]
  33712. ))
  33713. characterMakers.push(() => makeCharacter(
  33714. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33715. {
  33716. back: {
  33717. height: math.unit(5 + 10/12, "feet"),
  33718. weight: math.unit(200, "lb"),
  33719. name: "Back",
  33720. image: {
  33721. source: "./media/characters/jax/back.svg",
  33722. extra: 764/739,
  33723. bottom: 25/789
  33724. }
  33725. },
  33726. },
  33727. [
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(5 + 10/12, "feet"),
  33731. default: true
  33732. },
  33733. ]
  33734. ))
  33735. characterMakers.push(() => makeCharacter(
  33736. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33737. {
  33738. front: {
  33739. height: math.unit(8, "feet"),
  33740. weight: math.unit(250, "lb"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/eikthynir/front.svg",
  33744. extra: 1332/1166,
  33745. bottom: 82/1414
  33746. }
  33747. },
  33748. back: {
  33749. height: math.unit(8, "feet"),
  33750. weight: math.unit(250, "lb"),
  33751. name: "Back",
  33752. image: {
  33753. source: "./media/characters/eikthynir/back.svg",
  33754. extra: 1342/1190,
  33755. bottom: 19/1361
  33756. }
  33757. },
  33758. dick: {
  33759. height: math.unit(2.35, "feet"),
  33760. name: "Dick",
  33761. image: {
  33762. source: "./media/characters/eikthynir/dick.svg"
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(8, "feet"),
  33770. default: true
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(99, "meters"),
  33779. weight: math.unit(13000, "tons"),
  33780. name: "Front",
  33781. image: {
  33782. source: "./media/characters/zlmos/front.svg",
  33783. extra: 2202/1992,
  33784. bottom: 315/2517
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Macro",
  33791. height: math.unit(99, "meters"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(6 + 5/12, "feet"),
  33801. name: "Front",
  33802. image: {
  33803. source: "./media/characters/purri/front.svg",
  33804. extra: 1698/1610,
  33805. bottom: 32/1730
  33806. }
  33807. },
  33808. frontAlt: {
  33809. height: math.unit(6 + 5/12, "feet"),
  33810. name: "Front (Alt)",
  33811. image: {
  33812. source: "./media/characters/purri/front-alt.svg",
  33813. extra: 450/420,
  33814. bottom: 26/476
  33815. }
  33816. },
  33817. boots: {
  33818. height: math.unit(5.5, "feet"),
  33819. name: "Boots",
  33820. image: {
  33821. source: "./media/characters/purri/boots.svg",
  33822. extra: 905/853,
  33823. bottom: 18/923
  33824. }
  33825. },
  33826. lying: {
  33827. height: math.unit(2, "feet"),
  33828. name: "Lying",
  33829. image: {
  33830. source: "./media/characters/purri/lying.svg",
  33831. extra: 940/843,
  33832. bottom: 146/1086
  33833. }
  33834. },
  33835. devious: {
  33836. height: math.unit(1.77, "feet"),
  33837. name: "Devious",
  33838. image: {
  33839. source: "./media/characters/purri/devious.svg",
  33840. extra: 1440/1155,
  33841. bottom: 147/1587
  33842. }
  33843. },
  33844. bean: {
  33845. height: math.unit(1.94, "feet"),
  33846. name: "Bean",
  33847. image: {
  33848. source: "./media/characters/purri/bean.svg"
  33849. }
  33850. },
  33851. },
  33852. [
  33853. {
  33854. name: "Micro",
  33855. height: math.unit(1, "mm")
  33856. },
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(6 + 5/12, "feet"),
  33860. default: true
  33861. },
  33862. {
  33863. name: "Macro :3c",
  33864. height: math.unit(2, "miles")
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(6 + 2/12, "feet"),
  33873. weight: math.unit(250, "lb"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/moonlight/front.svg",
  33877. extra: 1044/908,
  33878. bottom: 56/1100
  33879. }
  33880. },
  33881. feral: {
  33882. height: math.unit(3 + 1/12, "feet"),
  33883. weight: math.unit(50, "kg"),
  33884. name: "Feral",
  33885. image: {
  33886. source: "./media/characters/moonlight/feral.svg",
  33887. extra: 3705/2791,
  33888. bottom: 145/3850
  33889. }
  33890. },
  33891. paw: {
  33892. height: math.unit(1, "feet"),
  33893. name: "Paw",
  33894. image: {
  33895. source: "./media/characters/moonlight/paw.svg"
  33896. }
  33897. },
  33898. paws: {
  33899. height: math.unit(0.98, "feet"),
  33900. name: "Paws",
  33901. image: {
  33902. source: "./media/characters/moonlight/paws.svg",
  33903. extra: 939/939,
  33904. bottom: 50/989
  33905. }
  33906. },
  33907. mouth: {
  33908. height: math.unit(0.48, "feet"),
  33909. name: "Mouth",
  33910. image: {
  33911. source: "./media/characters/moonlight/mouth.svg"
  33912. }
  33913. },
  33914. dick: {
  33915. height: math.unit(1.46, "feet"),
  33916. name: "Dick",
  33917. image: {
  33918. source: "./media/characters/moonlight/dick.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(6 + 2/12, "feet"),
  33926. default: true
  33927. },
  33928. {
  33929. name: "Macro",
  33930. height: math.unit(300, "feet")
  33931. },
  33932. {
  33933. name: "Macro+",
  33934. height: math.unit(1, "mile")
  33935. },
  33936. {
  33937. name: "Mt. Moon",
  33938. height: math.unit(5, "miles")
  33939. },
  33940. {
  33941. name: "Megamacro",
  33942. height: math.unit(15, "miles")
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33948. {
  33949. back: {
  33950. height: math.unit(6, "feet"),
  33951. weight: math.unit(150, "lb"),
  33952. name: "Back",
  33953. image: {
  33954. source: "./media/characters/sylen/back.svg",
  33955. extra: 1335/1273,
  33956. bottom: 107/1442
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(5 + 5/12, "feet")
  33964. },
  33965. {
  33966. name: "Megamacro",
  33967. height: math.unit(3, "miles"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(6, "feet"),
  33977. weight: math.unit(190, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/huttser/front.svg",
  33981. extra: 1152/1058,
  33982. bottom: 23/1175
  33983. }
  33984. },
  33985. side: {
  33986. height: math.unit(6, "feet"),
  33987. weight: math.unit(190, "lb"),
  33988. name: "Side",
  33989. image: {
  33990. source: "./media/characters/huttser/side.svg",
  33991. extra: 1174/1065,
  33992. bottom: 18/1192
  33993. }
  33994. },
  33995. back: {
  33996. height: math.unit(6, "feet"),
  33997. weight: math.unit(190, "lb"),
  33998. name: "Back",
  33999. image: {
  34000. source: "./media/characters/huttser/back.svg",
  34001. extra: 1158/1056,
  34002. bottom: 12/1170
  34003. }
  34004. },
  34005. },
  34006. [
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34011. {
  34012. side: {
  34013. height: math.unit(12 + 9/12, "feet"),
  34014. weight: math.unit(15000, "lb"),
  34015. name: "Side",
  34016. image: {
  34017. source: "./media/characters/faan/side.svg",
  34018. extra: 2747/2697,
  34019. bottom: 0/2747
  34020. }
  34021. },
  34022. front: {
  34023. height: math.unit(12 + 9/12, "feet"),
  34024. weight: math.unit(15000, "lb"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/faan/front.svg",
  34028. extra: 607/571,
  34029. bottom: 24/631
  34030. }
  34031. },
  34032. head: {
  34033. height: math.unit(2.85, "feet"),
  34034. name: "Head",
  34035. image: {
  34036. source: "./media/characters/faan/head.svg"
  34037. }
  34038. },
  34039. headAlt: {
  34040. height: math.unit(3.13, "feet"),
  34041. name: "Head-alt",
  34042. image: {
  34043. source: "./media/characters/faan/head-alt.svg"
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Normal",
  34050. height: math.unit(12 + 9/12, "feet"),
  34051. default: true
  34052. },
  34053. ]
  34054. ))
  34055. characterMakers.push(() => makeCharacter(
  34056. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34057. {
  34058. front: {
  34059. height: math.unit(6, "feet"),
  34060. weight: math.unit(300, "lb"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/tanio/front.svg",
  34064. extra: 711/673,
  34065. bottom: 25/736
  34066. }
  34067. },
  34068. },
  34069. [
  34070. {
  34071. name: "Normal",
  34072. height: math.unit(6, "feet"),
  34073. default: true
  34074. },
  34075. ]
  34076. ))
  34077. characterMakers.push(() => makeCharacter(
  34078. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34079. {
  34080. front: {
  34081. height: math.unit(3, "inches"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/noboru/front.svg",
  34085. extra: 1039/932,
  34086. bottom: 18/1057
  34087. }
  34088. },
  34089. },
  34090. [
  34091. {
  34092. name: "Micro",
  34093. height: math.unit(3, "inches"),
  34094. default: true
  34095. },
  34096. ]
  34097. ))
  34098. characterMakers.push(() => makeCharacter(
  34099. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34100. {
  34101. front: {
  34102. height: math.unit(1.85, "meters"),
  34103. weight: math.unit(80, "kg"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/daniel-barrett/front.svg",
  34107. extra: 355/337,
  34108. bottom: 9/364
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Pico",
  34115. height: math.unit(0.0433, "mm")
  34116. },
  34117. {
  34118. name: "Nano",
  34119. height: math.unit(1.5, "mm")
  34120. },
  34121. {
  34122. name: "Micro",
  34123. height: math.unit(5.3, "cm"),
  34124. default: true
  34125. },
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(1.85, "meters")
  34129. },
  34130. {
  34131. name: "Macro",
  34132. height: math.unit(64.7, "meters")
  34133. },
  34134. {
  34135. name: "Megamacro",
  34136. height: math.unit(2.26, "km")
  34137. },
  34138. {
  34139. name: "Gigamacro",
  34140. height: math.unit(79, "km")
  34141. },
  34142. {
  34143. name: "Teramacro",
  34144. height: math.unit(2765, "km")
  34145. },
  34146. {
  34147. name: "Petamacro",
  34148. height: math.unit(96678, "km")
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(30, "meters"),
  34157. weight: math.unit(400, "tons"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/zeel/front.svg",
  34161. extra: 2599/2599,
  34162. bottom: 226/2825
  34163. }
  34164. },
  34165. },
  34166. [
  34167. {
  34168. name: "Macro",
  34169. height: math.unit(30, "meters"),
  34170. default: true
  34171. },
  34172. ]
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34176. {
  34177. front: {
  34178. height: math.unit(6 + 7/12, "feet"),
  34179. weight: math.unit(210, "lb"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/tarn/front.svg",
  34183. extra: 3517/3220,
  34184. bottom: 91/3608
  34185. }
  34186. },
  34187. back: {
  34188. height: math.unit(6 + 7/12, "feet"),
  34189. weight: math.unit(210, "lb"),
  34190. name: "Back",
  34191. image: {
  34192. source: "./media/characters/tarn/back.svg",
  34193. extra: 3566/3241,
  34194. bottom: 34/3600
  34195. }
  34196. },
  34197. dick: {
  34198. height: math.unit(1.65, "feet"),
  34199. name: "Dick",
  34200. image: {
  34201. source: "./media/characters/tarn/dick.svg"
  34202. }
  34203. },
  34204. paw: {
  34205. height: math.unit(1.80, "feet"),
  34206. name: "Paw",
  34207. image: {
  34208. source: "./media/characters/tarn/paw.svg"
  34209. }
  34210. },
  34211. tongue: {
  34212. height: math.unit(0.97, "feet"),
  34213. name: "Tongue",
  34214. image: {
  34215. source: "./media/characters/tarn/tongue.svg"
  34216. }
  34217. },
  34218. },
  34219. [
  34220. {
  34221. name: "Micro",
  34222. height: math.unit(4, "inches")
  34223. },
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(6 + 7/12, "feet"),
  34227. default: true
  34228. },
  34229. {
  34230. name: "Macro",
  34231. height: math.unit(300, "feet")
  34232. },
  34233. ]
  34234. ))
  34235. characterMakers.push(() => makeCharacter(
  34236. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34237. {
  34238. front: {
  34239. height: math.unit(5 + 7/12, "feet"),
  34240. weight: math.unit(80, "kg"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34244. extra: 3023/2865,
  34245. bottom: 33/3056
  34246. }
  34247. },
  34248. back: {
  34249. height: math.unit(5 + 7/12, "feet"),
  34250. weight: math.unit(80, "kg"),
  34251. name: "Back",
  34252. image: {
  34253. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34254. extra: 3020/2886,
  34255. bottom: 30/3050
  34256. }
  34257. },
  34258. dick: {
  34259. height: math.unit(0.98, "feet"),
  34260. name: "Dick",
  34261. image: {
  34262. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34263. }
  34264. },
  34265. anatomy: {
  34266. height: math.unit(2.86, "feet"),
  34267. name: "Anatomy",
  34268. image: {
  34269. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Really Small",
  34276. height: math.unit(2, "inches")
  34277. },
  34278. {
  34279. name: "Micro",
  34280. height: math.unit(5.583, "inches")
  34281. },
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(5 + 7/12, "feet"),
  34285. default: true
  34286. },
  34287. {
  34288. name: "Macro",
  34289. height: math.unit(67, "feet")
  34290. },
  34291. {
  34292. name: "Megamacro",
  34293. height: math.unit(134, "feet")
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(9, "feet"),
  34302. weight: math.unit(120, "lb"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/sally/front.svg",
  34306. extra: 1506/1349,
  34307. bottom: 66/1572
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(9, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34321. {
  34322. front: {
  34323. height: math.unit(8, "feet"),
  34324. weight: math.unit(900, "lb"),
  34325. name: "Front",
  34326. image: {
  34327. source: "./media/characters/owen/front.svg",
  34328. extra: 1761/1657,
  34329. bottom: 74/1835
  34330. }
  34331. },
  34332. side: {
  34333. height: math.unit(8, "feet"),
  34334. weight: math.unit(900, "lb"),
  34335. name: "Side",
  34336. image: {
  34337. source: "./media/characters/owen/side.svg",
  34338. extra: 1797/1734,
  34339. bottom: 30/1827
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(8, "feet"),
  34344. weight: math.unit(900, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/owen/back.svg",
  34348. extra: 1796/1706,
  34349. bottom: 59/1855
  34350. }
  34351. },
  34352. maw: {
  34353. height: math.unit(1.76, "feet"),
  34354. name: "Maw",
  34355. image: {
  34356. source: "./media/characters/owen/maw.svg"
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(8, "feet"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34370. {
  34371. front: {
  34372. height: math.unit(4, "feet"),
  34373. weight: math.unit(400, "lb"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/ryth/front.svg",
  34377. extra: 1920/1748,
  34378. bottom: 42/1962
  34379. }
  34380. },
  34381. back: {
  34382. height: math.unit(4, "feet"),
  34383. weight: math.unit(400, "lb"),
  34384. name: "Back",
  34385. image: {
  34386. source: "./media/characters/ryth/back.svg",
  34387. extra: 1897/1690,
  34388. bottom: 89/1986
  34389. }
  34390. },
  34391. mouth: {
  34392. height: math.unit(1.39, "feet"),
  34393. name: "Mouth",
  34394. image: {
  34395. source: "./media/characters/ryth/mouth.svg"
  34396. }
  34397. },
  34398. tailmaw: {
  34399. height: math.unit(1.23, "feet"),
  34400. name: "Tailmaw",
  34401. image: {
  34402. source: "./media/characters/ryth/tailmaw.svg"
  34403. }
  34404. },
  34405. goia: {
  34406. height: math.unit(4, "meters"),
  34407. weight: math.unit(10800, "lb"),
  34408. name: "Goia",
  34409. image: {
  34410. source: "./media/characters/ryth/goia.svg",
  34411. extra: 745/640,
  34412. bottom: 107/852
  34413. }
  34414. },
  34415. goiaFront: {
  34416. height: math.unit(4, "meters"),
  34417. weight: math.unit(10800, "lb"),
  34418. name: "Goia (Front)",
  34419. image: {
  34420. source: "./media/characters/ryth/goia-front.svg",
  34421. extra: 750/586,
  34422. bottom: 114/864
  34423. }
  34424. },
  34425. goiaMaw: {
  34426. height: math.unit(5.55, "feet"),
  34427. name: "Goia Maw",
  34428. image: {
  34429. source: "./media/characters/ryth/goia-maw.svg"
  34430. }
  34431. },
  34432. goiaForepaw: {
  34433. height: math.unit(3.5, "feet"),
  34434. name: "Goia Forepaw",
  34435. image: {
  34436. source: "./media/characters/ryth/goia-forepaw.svg"
  34437. }
  34438. },
  34439. goiaHindpaw: {
  34440. height: math.unit(5.55, "feet"),
  34441. name: "Goia Hindpaw",
  34442. image: {
  34443. source: "./media/characters/ryth/goia-hindpaw.svg"
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(4, "feet"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(7, "feet"),
  34460. weight: math.unit(180, "lb"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/necrolance/front.svg",
  34464. extra: 1062/947,
  34465. bottom: 41/1103
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(7, "feet"),
  34470. weight: math.unit(180, "lb"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/necrolance/back.svg",
  34474. extra: 1045/984,
  34475. bottom: 14/1059
  34476. }
  34477. },
  34478. wing: {
  34479. height: math.unit(2.67, "feet"),
  34480. name: "Wing",
  34481. image: {
  34482. source: "./media/characters/necrolance/wing.svg"
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Normal",
  34489. height: math.unit(7, "feet"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34496. {
  34497. front: {
  34498. height: math.unit(76, "meters"),
  34499. weight: math.unit(30000, "tons"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/tyler/front.svg",
  34503. extra: 1640/1640,
  34504. bottom: 114/1754
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Macro",
  34511. height: math.unit(76, "meters"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(4 + 11/12, "feet"),
  34521. weight: math.unit(132, "lb"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/icey/front.svg",
  34525. extra: 2750/2550,
  34526. bottom: 33/2783
  34527. }
  34528. },
  34529. back: {
  34530. height: math.unit(4 + 11/12, "feet"),
  34531. weight: math.unit(132, "lb"),
  34532. name: "Back",
  34533. image: {
  34534. source: "./media/characters/icey/back.svg",
  34535. extra: 2624/2481,
  34536. bottom: 35/2659
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(4 + 11/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(100, "feet"),
  34553. weight: math.unit(0, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/smile/front.svg",
  34557. extra: 2983/2912,
  34558. bottom: 162/3145
  34559. }
  34560. },
  34561. back: {
  34562. height: math.unit(100, "feet"),
  34563. weight: math.unit(0, "lb"),
  34564. name: "Back",
  34565. image: {
  34566. source: "./media/characters/smile/back.svg",
  34567. extra: 3143/3031,
  34568. bottom: 91/3234
  34569. }
  34570. },
  34571. head: {
  34572. height: math.unit(26.3, "feet"),
  34573. weight: math.unit(0, "lb"),
  34574. name: "Head",
  34575. image: {
  34576. source: "./media/characters/smile/head.svg"
  34577. }
  34578. },
  34579. collar: {
  34580. height: math.unit(5.3, "feet"),
  34581. weight: math.unit(0, "lb"),
  34582. name: "Collar",
  34583. image: {
  34584. source: "./media/characters/smile/collar.svg"
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Macro",
  34591. height: math.unit(100, "feet"),
  34592. default: true
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34598. {
  34599. dragon: {
  34600. height: math.unit(26, "feet"),
  34601. weight: math.unit(36, "tons"),
  34602. name: "Dragon",
  34603. image: {
  34604. source: "./media/characters/arimphae/dragon.svg",
  34605. extra: 1574/983,
  34606. bottom: 357/1931
  34607. }
  34608. },
  34609. drake: {
  34610. height: math.unit(9, "feet"),
  34611. weight: math.unit(1.5, "tons"),
  34612. name: "Drake",
  34613. image: {
  34614. source: "./media/characters/arimphae/drake.svg",
  34615. extra: 1120/925,
  34616. bottom: 435/1555
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Small",
  34623. height: math.unit(26*5/9, "feet")
  34624. },
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(26, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34634. {
  34635. front: {
  34636. height: math.unit(8 + 9/12, "feet"),
  34637. name: "Front",
  34638. image: {
  34639. source: "./media/characters/xander/front.svg",
  34640. extra: 1237/974,
  34641. bottom: 94/1331
  34642. }
  34643. },
  34644. },
  34645. [
  34646. {
  34647. name: "Normal",
  34648. height: math.unit(8 + 9/12, "feet"),
  34649. default: true
  34650. },
  34651. {
  34652. name: "Gaze Grabber",
  34653. height: math.unit(13 + 8/12, "feet")
  34654. },
  34655. {
  34656. name: "Jaw Dropper",
  34657. height: math.unit(27, "feet")
  34658. },
  34659. {
  34660. name: "Show Stopper",
  34661. height: math.unit(136, "feet")
  34662. },
  34663. {
  34664. name: "Superstar",
  34665. height: math.unit(1.9e6, "miles")
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34671. {
  34672. side: {
  34673. height: math.unit(2100, "feet"),
  34674. name: "Side",
  34675. image: {
  34676. source: "./media/characters/osiris/side.svg",
  34677. extra: 1105/939,
  34678. bottom: 167/1272
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Macro",
  34685. height: math.unit(2100, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34692. {
  34693. front: {
  34694. height: math.unit(6 + 8/12, "feet"),
  34695. weight: math.unit(225, "lb"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/rhys-londe/front.svg",
  34699. extra: 2258/2141,
  34700. bottom: 188/2446
  34701. }
  34702. },
  34703. back: {
  34704. height: math.unit(6 + 8/12, "feet"),
  34705. weight: math.unit(225, "lb"),
  34706. name: "Back",
  34707. image: {
  34708. source: "./media/characters/rhys-londe/back.svg",
  34709. extra: 2237/2137,
  34710. bottom: 63/2300
  34711. }
  34712. },
  34713. frontNsfw: {
  34714. height: math.unit(6 + 8/12, "feet"),
  34715. weight: math.unit(225, "lb"),
  34716. name: "Front (NSFW)",
  34717. image: {
  34718. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34719. extra: 2258/2141,
  34720. bottom: 188/2446
  34721. }
  34722. },
  34723. backNsfw: {
  34724. height: math.unit(6 + 8/12, "feet"),
  34725. weight: math.unit(225, "lb"),
  34726. name: "Back (NSFW)",
  34727. image: {
  34728. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34729. extra: 2237/2137,
  34730. bottom: 63/2300
  34731. }
  34732. },
  34733. dick: {
  34734. height: math.unit(30, "inches"),
  34735. name: "Dick",
  34736. image: {
  34737. source: "./media/characters/rhys-londe/dick.svg"
  34738. }
  34739. },
  34740. maw: {
  34741. height: math.unit(1.6, "feet"),
  34742. name: "Maw",
  34743. image: {
  34744. source: "./media/characters/rhys-londe/maw.svg"
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(6 + 8/12, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(3 + 10/12, "feet"),
  34761. weight: math.unit(90, "lb"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/taivas-ensim/front.svg",
  34765. extra: 1327/1216,
  34766. bottom: 96/1423
  34767. }
  34768. },
  34769. back: {
  34770. height: math.unit(3 + 10/12, "feet"),
  34771. weight: math.unit(90, "lb"),
  34772. name: "Back",
  34773. image: {
  34774. source: "./media/characters/taivas-ensim/back.svg",
  34775. extra: 1355/1247,
  34776. bottom: 11/1366
  34777. }
  34778. },
  34779. frontNsfw: {
  34780. height: math.unit(3 + 10/12, "feet"),
  34781. weight: math.unit(90, "lb"),
  34782. name: "Front (NSFW)",
  34783. image: {
  34784. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34785. extra: 1327/1216,
  34786. bottom: 96/1423
  34787. }
  34788. },
  34789. backNsfw: {
  34790. height: math.unit(3 + 10/12, "feet"),
  34791. weight: math.unit(90, "lb"),
  34792. name: "Back (NSFW)",
  34793. image: {
  34794. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34795. extra: 1355/1247,
  34796. bottom: 11/1366
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(3 + 10/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(9 + 6/12, "feet"),
  34813. weight: math.unit(940, "lb"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/byliss/front.svg",
  34817. extra: 1327/1290,
  34818. bottom: 82/1409
  34819. }
  34820. },
  34821. back: {
  34822. height: math.unit(9 + 6/12, "feet"),
  34823. weight: math.unit(940, "lb"),
  34824. name: "Back",
  34825. image: {
  34826. source: "./media/characters/byliss/back.svg",
  34827. extra: 1376/1349,
  34828. bottom: 9/1385
  34829. }
  34830. },
  34831. frontNsfw: {
  34832. height: math.unit(9 + 6/12, "feet"),
  34833. weight: math.unit(940, "lb"),
  34834. name: "Front (NSFW)",
  34835. image: {
  34836. source: "./media/characters/byliss/front-nsfw.svg",
  34837. extra: 1327/1290,
  34838. bottom: 82/1409
  34839. }
  34840. },
  34841. backNsfw: {
  34842. height: math.unit(9 + 6/12, "feet"),
  34843. weight: math.unit(940, "lb"),
  34844. name: "Back (NSFW)",
  34845. image: {
  34846. source: "./media/characters/byliss/back-nsfw.svg",
  34847. extra: 1376/1349,
  34848. bottom: 9/1385
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(9 + 6/12, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(5 + 2/12, "feet"),
  34865. weight: math.unit(200, "lb"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/noraly/front.svg",
  34869. extra: 4985/4773,
  34870. bottom: 150/5135
  34871. }
  34872. },
  34873. full: {
  34874. height: math.unit(5 + 2/12, "feet"),
  34875. weight: math.unit(164, "lb"),
  34876. name: "Full",
  34877. image: {
  34878. source: "./media/characters/noraly/full.svg",
  34879. extra: 1114/1059,
  34880. bottom: 35/1149
  34881. }
  34882. },
  34883. fuller: {
  34884. height: math.unit(5 + 2/12, "feet"),
  34885. weight: math.unit(230, "lb"),
  34886. name: "Fuller",
  34887. image: {
  34888. source: "./media/characters/noraly/fuller.svg",
  34889. extra: 1114/1059,
  34890. bottom: 35/1149
  34891. }
  34892. },
  34893. fullest: {
  34894. height: math.unit(5 + 2/12, "feet"),
  34895. weight: math.unit(300, "lb"),
  34896. name: "Fullest",
  34897. image: {
  34898. source: "./media/characters/noraly/fullest.svg",
  34899. extra: 1114/1059,
  34900. bottom: 35/1149
  34901. }
  34902. },
  34903. },
  34904. [
  34905. {
  34906. name: "Normal",
  34907. height: math.unit(5 + 2/12, "feet"),
  34908. default: true
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34914. {
  34915. front: {
  34916. height: math.unit(5 + 2/12, "feet"),
  34917. weight: math.unit(210, "lb"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/pera/front.svg",
  34921. extra: 1560/1531,
  34922. bottom: 165/1725
  34923. }
  34924. },
  34925. back: {
  34926. height: math.unit(5 + 2/12, "feet"),
  34927. weight: math.unit(210, "lb"),
  34928. name: "Back",
  34929. image: {
  34930. source: "./media/characters/pera/back.svg",
  34931. extra: 1523/1493,
  34932. bottom: 152/1675
  34933. }
  34934. },
  34935. dick: {
  34936. height: math.unit(2.4, "feet"),
  34937. name: "Dick",
  34938. image: {
  34939. source: "./media/characters/pera/dick.svg"
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(5 + 2/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(12, "feet"),
  34956. weight: math.unit(3200, "lb"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/julian/front.svg",
  34960. extra: 2962/2701,
  34961. bottom: 184/3146
  34962. }
  34963. },
  34964. maw: {
  34965. height: math.unit(5.35, "feet"),
  34966. name: "Maw",
  34967. image: {
  34968. source: "./media/characters/julian/maw.svg"
  34969. }
  34970. },
  34971. paw: {
  34972. height: math.unit(3.07, "feet"),
  34973. name: "Paw",
  34974. image: {
  34975. source: "./media/characters/julian/paw.svg"
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Default",
  34982. height: math.unit(12, "feet"),
  34983. default: true
  34984. },
  34985. {
  34986. name: "Big",
  34987. height: math.unit(50, "feet")
  34988. },
  34989. {
  34990. name: "Really Big",
  34991. height: math.unit(1, "mile")
  34992. },
  34993. {
  34994. name: "Extremely Big",
  34995. height: math.unit(100, "miles")
  34996. },
  34997. {
  34998. name: "Planet Hugger",
  34999. height: math.unit(200, "megameters")
  35000. },
  35001. {
  35002. name: "Unreasonably Big",
  35003. height: math.unit(1e300, "meters")
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35009. {
  35010. solgooleo: {
  35011. height: math.unit(4, "meters"),
  35012. weight: math.unit(6000*1.5, "kg"),
  35013. volume: math.unit(6000, "liters"),
  35014. name: "Solgooleo",
  35015. image: {
  35016. source: "./media/characters/pi/solgooleo.svg",
  35017. extra: 388/331,
  35018. bottom: 29/417
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(4, "meters"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(8, "feet"),
  35035. weight: math.unit(4, "tons"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/shaun/front.svg",
  35039. extra: 503/495,
  35040. bottom: 20/523
  35041. }
  35042. },
  35043. back: {
  35044. height: math.unit(8, "feet"),
  35045. weight: math.unit(4, "tons"),
  35046. name: "Back",
  35047. image: {
  35048. source: "./media/characters/shaun/back.svg",
  35049. extra: 487/480,
  35050. bottom: 20/507
  35051. }
  35052. },
  35053. },
  35054. [
  35055. {
  35056. name: "Lorg",
  35057. height: math.unit(8, "feet"),
  35058. default: true
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35064. {
  35065. frontAnthro: {
  35066. height: math.unit(7, "feet"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/sini/front-anthro.svg",
  35070. extra: 726/678,
  35071. bottom: 35/761
  35072. },
  35073. form: "anthro",
  35074. default: true
  35075. },
  35076. backAnthro: {
  35077. height: math.unit(7, "feet"),
  35078. name: "Back",
  35079. image: {
  35080. source: "./media/characters/sini/back-anthro.svg",
  35081. extra: 743/701,
  35082. bottom: 12/755
  35083. },
  35084. form: "anthro",
  35085. },
  35086. frontAnthroNsfw: {
  35087. height: math.unit(7, "feet"),
  35088. name: "Front (NSFW)",
  35089. image: {
  35090. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35091. extra: 726/678,
  35092. bottom: 35/761
  35093. },
  35094. form: "anthro"
  35095. },
  35096. backAnthroNsfw: {
  35097. height: math.unit(7, "feet"),
  35098. name: "Back (NSFW)",
  35099. image: {
  35100. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35101. extra: 743/701,
  35102. bottom: 12/755
  35103. },
  35104. form: "anthro",
  35105. },
  35106. mawAnthro: {
  35107. height: math.unit(2.14, "feet"),
  35108. name: "Maw",
  35109. image: {
  35110. source: "./media/characters/sini/maw-anthro.svg"
  35111. },
  35112. form: "anthro"
  35113. },
  35114. dick: {
  35115. height: math.unit(1.45, "feet"),
  35116. name: "Dick",
  35117. image: {
  35118. source: "./media/characters/sini/dick-anthro.svg"
  35119. },
  35120. form: "anthro"
  35121. },
  35122. feral: {
  35123. height: math.unit(16, "feet"),
  35124. name: "Feral",
  35125. image: {
  35126. source: "./media/characters/sini/feral.svg",
  35127. extra: 814/605,
  35128. bottom: 11/825
  35129. },
  35130. form: "feral",
  35131. default: true
  35132. },
  35133. feralNsfw: {
  35134. height: math.unit(16, "feet"),
  35135. name: "Feral (NSFW)",
  35136. image: {
  35137. source: "./media/characters/sini/feral-nsfw.svg",
  35138. extra: 814/605,
  35139. bottom: 11/825
  35140. },
  35141. form: "feral"
  35142. },
  35143. mawFeral: {
  35144. height: math.unit(5.66, "feet"),
  35145. name: "Maw",
  35146. image: {
  35147. source: "./media/characters/sini/maw-feral.svg"
  35148. },
  35149. form: "feral",
  35150. },
  35151. pawFeral: {
  35152. height: math.unit(5.17, "feet"),
  35153. name: "Paw",
  35154. image: {
  35155. source: "./media/characters/sini/paw-feral.svg"
  35156. },
  35157. form: "feral",
  35158. },
  35159. rumpFeral: {
  35160. height: math.unit(13.11, "feet"),
  35161. name: "Rump",
  35162. image: {
  35163. source: "./media/characters/sini/rump-feral.svg"
  35164. },
  35165. form: "feral",
  35166. },
  35167. dickFeral: {
  35168. height: math.unit(1, "feet"),
  35169. name: "Dick",
  35170. image: {
  35171. source: "./media/characters/sini/dick-feral.svg"
  35172. },
  35173. form: "feral",
  35174. },
  35175. eyeFeral: {
  35176. height: math.unit(1.23, "feet"),
  35177. name: "Eye",
  35178. image: {
  35179. source: "./media/characters/sini/eye-feral.svg"
  35180. },
  35181. form: "feral",
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(7, "feet"),
  35188. default: true,
  35189. form: "anthro"
  35190. },
  35191. {
  35192. name: "Normal",
  35193. height: math.unit(16, "feet"),
  35194. default: true,
  35195. form: "feral"
  35196. },
  35197. ],
  35198. {
  35199. "anthro": {
  35200. name: "Anthro",
  35201. default: true
  35202. },
  35203. "feral": {
  35204. name: "Feral",
  35205. }
  35206. }
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35210. {
  35211. side: {
  35212. height: math.unit(47.2, "meters"),
  35213. weight: math.unit(10000, "tons"),
  35214. name: "Side",
  35215. image: {
  35216. source: "./media/characters/raylldo/side.svg",
  35217. extra: 2363/642,
  35218. bottom: 221/2584
  35219. }
  35220. },
  35221. top: {
  35222. height: math.unit(240, "meters"),
  35223. weight: math.unit(10000, "tons"),
  35224. name: "Top",
  35225. image: {
  35226. source: "./media/characters/raylldo/top.svg"
  35227. }
  35228. },
  35229. bottom: {
  35230. height: math.unit(240, "meters"),
  35231. weight: math.unit(10000, "tons"),
  35232. name: "Bottom",
  35233. image: {
  35234. source: "./media/characters/raylldo/bottom.svg"
  35235. }
  35236. },
  35237. head: {
  35238. height: math.unit(38.6, "meters"),
  35239. name: "Head",
  35240. image: {
  35241. source: "./media/characters/raylldo/head.svg",
  35242. extra: 1335/1112,
  35243. bottom: 0/1335
  35244. }
  35245. },
  35246. maw: {
  35247. height: math.unit(16.37, "meters"),
  35248. name: "Maw",
  35249. image: {
  35250. source: "./media/characters/raylldo/maw.svg",
  35251. extra: 883/660,
  35252. bottom: 0/883
  35253. },
  35254. extraAttributes: {
  35255. preyCapacity: {
  35256. name: "Capacity",
  35257. power: 3,
  35258. type: "volume",
  35259. base: math.unit(1000, "people")
  35260. },
  35261. tongueSize: {
  35262. name: "Tongue Size",
  35263. power: 2,
  35264. type: "area",
  35265. base: math.unit(21, "m^2")
  35266. }
  35267. }
  35268. },
  35269. forepaw: {
  35270. height: math.unit(18, "meters"),
  35271. name: "Forepaw",
  35272. image: {
  35273. source: "./media/characters/raylldo/forepaw.svg"
  35274. }
  35275. },
  35276. hindpaw: {
  35277. height: math.unit(23, "meters"),
  35278. name: "Hindpaw",
  35279. image: {
  35280. source: "./media/characters/raylldo/hindpaw.svg"
  35281. }
  35282. },
  35283. genitals: {
  35284. height: math.unit(42, "meters"),
  35285. name: "Genitals",
  35286. image: {
  35287. source: "./media/characters/raylldo/genitals.svg"
  35288. }
  35289. },
  35290. },
  35291. [
  35292. {
  35293. name: "Normal",
  35294. height: math.unit(47.2, "meters"),
  35295. default: true
  35296. },
  35297. ]
  35298. ))
  35299. characterMakers.push(() => makeCharacter(
  35300. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35301. {
  35302. anthroFront: {
  35303. height: math.unit(9, "feet"),
  35304. weight: math.unit(600, "lb"),
  35305. name: "Anthro (Front)",
  35306. image: {
  35307. source: "./media/characters/glint/anthro-front.svg",
  35308. extra: 1097/1018,
  35309. bottom: 28/1125
  35310. }
  35311. },
  35312. anthroBack: {
  35313. height: math.unit(9, "feet"),
  35314. weight: math.unit(600, "lb"),
  35315. name: "Anthro (Back)",
  35316. image: {
  35317. source: "./media/characters/glint/anthro-back.svg",
  35318. extra: 1154/997,
  35319. bottom: 36/1190
  35320. }
  35321. },
  35322. feral: {
  35323. height: math.unit(11, "feet"),
  35324. weight: math.unit(50000, "lb"),
  35325. name: "Feral",
  35326. image: {
  35327. source: "./media/characters/glint/feral.svg",
  35328. extra: 3035/1585,
  35329. bottom: 1169/4204
  35330. }
  35331. },
  35332. dickAnthro: {
  35333. height: math.unit(0.7, "meters"),
  35334. name: "Dick (Anthro)",
  35335. image: {
  35336. source: "./media/characters/glint/dick-anthro.svg"
  35337. }
  35338. },
  35339. dickFeral: {
  35340. height: math.unit(2.65, "meters"),
  35341. name: "Dick (Feral)",
  35342. image: {
  35343. source: "./media/characters/glint/dick-feral.svg"
  35344. }
  35345. },
  35346. slitHidden: {
  35347. height: math.unit(5.85, "meters"),
  35348. name: "Slit (Hidden)",
  35349. image: {
  35350. source: "./media/characters/glint/slit-hidden.svg"
  35351. }
  35352. },
  35353. slitErect: {
  35354. height: math.unit(5.85, "meters"),
  35355. name: "Slit (Erect)",
  35356. image: {
  35357. source: "./media/characters/glint/slit-erect.svg"
  35358. }
  35359. },
  35360. mawAnthro: {
  35361. height: math.unit(0.63, "meters"),
  35362. name: "Maw (Anthro)",
  35363. image: {
  35364. source: "./media/characters/glint/maw.svg"
  35365. }
  35366. },
  35367. mawFeral: {
  35368. height: math.unit(2.89, "meters"),
  35369. name: "Maw (Feral)",
  35370. image: {
  35371. source: "./media/characters/glint/maw.svg"
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(9, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35385. {
  35386. side: {
  35387. height: math.unit(15, "feet"),
  35388. weight: math.unit(5000, "kg"),
  35389. name: "Side",
  35390. image: {
  35391. source: "./media/characters/kairne/side.svg",
  35392. extra: 979/811,
  35393. bottom: 13/992
  35394. }
  35395. },
  35396. front: {
  35397. height: math.unit(15, "feet"),
  35398. weight: math.unit(5000, "kg"),
  35399. name: "Front",
  35400. image: {
  35401. source: "./media/characters/kairne/front.svg",
  35402. extra: 908/814,
  35403. bottom: 26/934
  35404. }
  35405. },
  35406. sideNsfw: {
  35407. height: math.unit(15, "feet"),
  35408. weight: math.unit(5000, "kg"),
  35409. name: "Side (NSFW)",
  35410. image: {
  35411. source: "./media/characters/kairne/side-nsfw.svg",
  35412. extra: 979/811,
  35413. bottom: 13/992
  35414. }
  35415. },
  35416. frontNsfw: {
  35417. height: math.unit(15, "feet"),
  35418. weight: math.unit(5000, "kg"),
  35419. name: "Front (NSFW)",
  35420. image: {
  35421. source: "./media/characters/kairne/front-nsfw.svg",
  35422. extra: 908/814,
  35423. bottom: 26/934
  35424. }
  35425. },
  35426. dickCaged: {
  35427. height: math.unit(0.65, "meters"),
  35428. name: "Dick-caged",
  35429. image: {
  35430. source: "./media/characters/kairne/dick-caged.svg"
  35431. }
  35432. },
  35433. dick: {
  35434. height: math.unit(0.79, "meters"),
  35435. name: "Dick",
  35436. image: {
  35437. source: "./media/characters/kairne/dick.svg"
  35438. }
  35439. },
  35440. genitals: {
  35441. height: math.unit(1.29, "meters"),
  35442. name: "Genitals",
  35443. image: {
  35444. source: "./media/characters/kairne/genitals.svg"
  35445. }
  35446. },
  35447. maw: {
  35448. height: math.unit(1.73, "meters"),
  35449. name: "Maw",
  35450. image: {
  35451. source: "./media/characters/kairne/maw.svg"
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(15, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(5 + 8/12, "feet"),
  35468. weight: math.unit(139, "lb"),
  35469. name: "Front",
  35470. image: {
  35471. source: "./media/characters/biscuit-jackal/front.svg",
  35472. extra: 2106/1961,
  35473. bottom: 58/2164
  35474. }
  35475. },
  35476. back: {
  35477. height: math.unit(5 + 8/12, "feet"),
  35478. weight: math.unit(139, "lb"),
  35479. name: "Back",
  35480. image: {
  35481. source: "./media/characters/biscuit-jackal/back.svg",
  35482. extra: 2132/1976,
  35483. bottom: 57/2189
  35484. }
  35485. },
  35486. werejackal: {
  35487. height: math.unit(6 + 3/12, "feet"),
  35488. weight: math.unit(188, "lb"),
  35489. name: "Werejackal",
  35490. image: {
  35491. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35492. extra: 2373/2178,
  35493. bottom: 53/2426
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(5 + 8/12, "feet"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(140, "cm"),
  35510. weight: math.unit(45, "kg"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/tayra-white/front.svg",
  35514. extra: 2229/2192,
  35515. bottom: 75/2304
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(140, "cm"),
  35523. default: true
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35529. {
  35530. front: {
  35531. height: math.unit(4 + 5/12, "feet"),
  35532. name: "Front",
  35533. image: {
  35534. source: "./media/characters/scoop/front.svg",
  35535. extra: 1257/1136,
  35536. bottom: 69/1326
  35537. }
  35538. },
  35539. back: {
  35540. height: math.unit(4 + 5/12, "feet"),
  35541. name: "Back",
  35542. image: {
  35543. source: "./media/characters/scoop/back.svg",
  35544. extra: 1321/1152,
  35545. bottom: 32/1353
  35546. }
  35547. },
  35548. maw: {
  35549. height: math.unit(0.68, "feet"),
  35550. name: "Maw",
  35551. image: {
  35552. source: "./media/characters/scoop/maw.svg"
  35553. }
  35554. },
  35555. },
  35556. [
  35557. {
  35558. name: "Really Small",
  35559. height: math.unit(1, "mm")
  35560. },
  35561. {
  35562. name: "Micro",
  35563. height: math.unit(1, "inch")
  35564. },
  35565. {
  35566. name: "Normal",
  35567. height: math.unit(4 + 5/12, "feet"),
  35568. default: true
  35569. },
  35570. {
  35571. name: "Macro",
  35572. height: math.unit(200, "feet")
  35573. },
  35574. {
  35575. name: "Megamacro",
  35576. height: math.unit(3240, "feet")
  35577. },
  35578. {
  35579. name: "Teramacro",
  35580. height: math.unit(2500, "miles")
  35581. },
  35582. ]
  35583. ))
  35584. characterMakers.push(() => makeCharacter(
  35585. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35586. {
  35587. front: {
  35588. height: math.unit(15 + 7/12, "feet"),
  35589. weight: math.unit(1150, "tons"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/saphinara/front.svg",
  35593. extra: 1837/1643,
  35594. bottom: 84/1921
  35595. },
  35596. form: "normal",
  35597. default: true
  35598. },
  35599. side: {
  35600. height: math.unit(15 + 7/12, "feet"),
  35601. weight: math.unit(1150, "tons"),
  35602. name: "Side",
  35603. image: {
  35604. source: "./media/characters/saphinara/side.svg",
  35605. extra: 605/547,
  35606. bottom: 6/611
  35607. },
  35608. form: "normal"
  35609. },
  35610. back: {
  35611. height: math.unit(15 + 7/12, "feet"),
  35612. weight: math.unit(1150, "tons"),
  35613. name: "Back",
  35614. image: {
  35615. source: "./media/characters/saphinara/back.svg",
  35616. extra: 591/531,
  35617. bottom: 13/604
  35618. },
  35619. form: "normal"
  35620. },
  35621. frontTail: {
  35622. height: math.unit(15 + 7/12, "feet"),
  35623. weight: math.unit(1150, "tons"),
  35624. name: "Front (Full Tail)",
  35625. image: {
  35626. source: "./media/characters/saphinara/front-tail.svg",
  35627. extra: 2256/1630,
  35628. bottom: 261/2517
  35629. },
  35630. form: "normal"
  35631. },
  35632. insides: {
  35633. height: math.unit(11.92, "feet"),
  35634. name: "Insides",
  35635. image: {
  35636. source: "./media/characters/saphinara/insides.svg"
  35637. },
  35638. form: "normal"
  35639. },
  35640. head: {
  35641. height: math.unit(4.17, "feet"),
  35642. name: "Head",
  35643. image: {
  35644. source: "./media/characters/saphinara/head.svg"
  35645. },
  35646. form: "normal"
  35647. },
  35648. tongue: {
  35649. height: math.unit(4.60, "feet"),
  35650. name: "Tongue",
  35651. image: {
  35652. source: "./media/characters/saphinara/tongue.svg"
  35653. },
  35654. form: "normal"
  35655. },
  35656. headEnraged: {
  35657. height: math.unit(5.55, "feet"),
  35658. name: "Head (Enraged)",
  35659. image: {
  35660. source: "./media/characters/saphinara/head-enraged.svg"
  35661. },
  35662. form: "normal"
  35663. },
  35664. wings: {
  35665. height: math.unit(11.95, "feet"),
  35666. name: "Wings",
  35667. image: {
  35668. source: "./media/characters/saphinara/wings.svg"
  35669. },
  35670. form: "normal"
  35671. },
  35672. feathers: {
  35673. height: math.unit(8.92, "feet"),
  35674. name: "Feathers",
  35675. image: {
  35676. source: "./media/characters/saphinara/feathers.svg"
  35677. },
  35678. form: "normal"
  35679. },
  35680. shackles: {
  35681. height: math.unit(2, "feet"),
  35682. name: "Shackles",
  35683. image: {
  35684. source: "./media/characters/saphinara/shackles.svg"
  35685. },
  35686. form: "normal"
  35687. },
  35688. eyes: {
  35689. height: math.unit(1.331, "feet"),
  35690. name: "Eyes",
  35691. image: {
  35692. source: "./media/characters/saphinara/eyes.svg"
  35693. },
  35694. form: "normal"
  35695. },
  35696. eyesEnraged: {
  35697. height: math.unit(1.331, "feet"),
  35698. name: "Eyes (Enraged)",
  35699. image: {
  35700. source: "./media/characters/saphinara/eyes-enraged.svg"
  35701. },
  35702. form: "normal"
  35703. },
  35704. trueFormSide: {
  35705. height: math.unit(200, "feet"),
  35706. weight: math.unit(1e7, "tons"),
  35707. name: "Side",
  35708. image: {
  35709. source: "./media/characters/saphinara/true-form-side.svg",
  35710. extra: 1399/770,
  35711. bottom: 97/1496
  35712. },
  35713. form: "true-form",
  35714. default: true
  35715. },
  35716. trueFormMaw: {
  35717. height: math.unit(71.5, "feet"),
  35718. name: "Maw",
  35719. image: {
  35720. source: "./media/characters/saphinara/true-form-maw.svg",
  35721. extra: 2302/1453,
  35722. bottom: 0/2302
  35723. },
  35724. form: "true-form"
  35725. },
  35726. meowberusSide: {
  35727. height: math.unit(75, "feet"),
  35728. weight: math.unit(180000, "kg"),
  35729. preyCapacity: math.unit(50000, "people"),
  35730. name: "Side",
  35731. image: {
  35732. source: "./media/characters/saphinara/meowberus-side.svg",
  35733. extra: 1400/711,
  35734. bottom: 126/1526
  35735. },
  35736. form: "meowberus",
  35737. extraAttributes: {
  35738. "pawArea": {
  35739. name: "Paw Size",
  35740. power: 2,
  35741. type: "area",
  35742. base: math.unit(35, "m^2")
  35743. }
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(15 + 7/12, "feet"),
  35751. default: true,
  35752. form: "normal"
  35753. },
  35754. {
  35755. name: "Angry",
  35756. height: math.unit(30 + 6/12, "feet"),
  35757. form: "normal"
  35758. },
  35759. {
  35760. name: "Enraged",
  35761. height: math.unit(102 + 1/12, "feet"),
  35762. form: "normal"
  35763. },
  35764. {
  35765. name: "True",
  35766. height: math.unit(200, "feet"),
  35767. default: true,
  35768. form: "true-form"
  35769. },
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(75, "feet"),
  35773. default: true,
  35774. form: "meowberus"
  35775. },
  35776. ],
  35777. {
  35778. "normal": {
  35779. name: "Normal",
  35780. default: true
  35781. },
  35782. "true-form": {
  35783. name: "True Form"
  35784. },
  35785. "meowberus": {
  35786. name: "Meowberus",
  35787. },
  35788. }
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35792. {
  35793. front: {
  35794. height: math.unit(6 + 8/12, "feet"),
  35795. weight: math.unit(300, "lb"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/jrain/front.svg",
  35799. extra: 3039/2865,
  35800. bottom: 399/3438
  35801. }
  35802. },
  35803. back: {
  35804. height: math.unit(6 + 8/12, "feet"),
  35805. weight: math.unit(300, "lb"),
  35806. name: "Back",
  35807. image: {
  35808. source: "./media/characters/jrain/back.svg",
  35809. extra: 3089/2938,
  35810. bottom: 172/3261
  35811. }
  35812. },
  35813. head: {
  35814. height: math.unit(2.14, "feet"),
  35815. name: "Head",
  35816. image: {
  35817. source: "./media/characters/jrain/head.svg"
  35818. }
  35819. },
  35820. maw: {
  35821. height: math.unit(1.77, "feet"),
  35822. name: "Maw",
  35823. image: {
  35824. source: "./media/characters/jrain/maw.svg"
  35825. }
  35826. },
  35827. leftHand: {
  35828. height: math.unit(1.1, "feet"),
  35829. name: "Left Hand",
  35830. image: {
  35831. source: "./media/characters/jrain/left-hand.svg"
  35832. }
  35833. },
  35834. rightHand: {
  35835. height: math.unit(1.1, "feet"),
  35836. name: "Right Hand",
  35837. image: {
  35838. source: "./media/characters/jrain/right-hand.svg"
  35839. }
  35840. },
  35841. eye: {
  35842. height: math.unit(0.35, "feet"),
  35843. name: "Eye",
  35844. image: {
  35845. source: "./media/characters/jrain/eye.svg"
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(6 + 8/12, "feet"),
  35853. default: true
  35854. },
  35855. {
  35856. name: "Casually Large",
  35857. height: math.unit(25, "feet")
  35858. },
  35859. {
  35860. name: "Giant",
  35861. height: math.unit(100, "feet")
  35862. },
  35863. {
  35864. name: "Kaiju",
  35865. height: math.unit(300, "feet")
  35866. },
  35867. ]
  35868. ))
  35869. characterMakers.push(() => makeCharacter(
  35870. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35871. {
  35872. dragon: {
  35873. height: math.unit(5, "meters"),
  35874. name: "Dragon",
  35875. image: {
  35876. source: "./media/characters/sabrina/dragon.svg",
  35877. extra: 3670 / 2365,
  35878. bottom: 333 / 4003
  35879. }
  35880. },
  35881. gryphon: {
  35882. height: math.unit(3, "meters"),
  35883. name: "Gryphon",
  35884. image: {
  35885. source: "./media/characters/sabrina/gryphon.svg",
  35886. extra: 1576 / 945,
  35887. bottom: 71 / 1647
  35888. }
  35889. },
  35890. snake: {
  35891. height: math.unit(12, "meters"),
  35892. name: "Snake",
  35893. image: {
  35894. source: "./media/characters/sabrina/snake.svg",
  35895. extra: 1758 / 1320,
  35896. bottom: 186 / 1944
  35897. }
  35898. },
  35899. collar: {
  35900. height: math.unit(1.86, "meters"),
  35901. name: "Collar",
  35902. image: {
  35903. source: "./media/characters/sabrina/collar.svg"
  35904. }
  35905. },
  35906. eye: {
  35907. height: math.unit(0.53, "meters"),
  35908. name: "Eye",
  35909. image: {
  35910. source: "./media/characters/sabrina/eye.svg"
  35911. }
  35912. },
  35913. foot: {
  35914. height: math.unit(1.86, "meters"),
  35915. name: "Foot",
  35916. image: {
  35917. source: "./media/characters/sabrina/foot.svg"
  35918. }
  35919. },
  35920. hand: {
  35921. height: math.unit(1.32, "meters"),
  35922. name: "Hand",
  35923. image: {
  35924. source: "./media/characters/sabrina/hand.svg"
  35925. }
  35926. },
  35927. head: {
  35928. height: math.unit(2.44, "meters"),
  35929. name: "Head",
  35930. image: {
  35931. source: "./media/characters/sabrina/head.svg"
  35932. }
  35933. },
  35934. headAngry: {
  35935. height: math.unit(2.44, "meters"),
  35936. name: "Head (Angry))",
  35937. image: {
  35938. source: "./media/characters/sabrina/head-angry.svg"
  35939. }
  35940. },
  35941. maw: {
  35942. height: math.unit(1.65, "meters"),
  35943. name: "Maw",
  35944. image: {
  35945. source: "./media/characters/sabrina/maw.svg"
  35946. }
  35947. },
  35948. spikes: {
  35949. height: math.unit(1.69, "meters"),
  35950. name: "Spikes",
  35951. image: {
  35952. source: "./media/characters/sabrina/spikes.svg"
  35953. }
  35954. },
  35955. stomach: {
  35956. height: math.unit(1.15, "meters"),
  35957. name: "Stomach",
  35958. image: {
  35959. source: "./media/characters/sabrina/stomach.svg"
  35960. }
  35961. },
  35962. tongue: {
  35963. height: math.unit(1.27, "meters"),
  35964. name: "Tongue",
  35965. image: {
  35966. source: "./media/characters/sabrina/tongue.svg"
  35967. }
  35968. },
  35969. wingDorsal: {
  35970. height: math.unit(4.85, "meters"),
  35971. name: "Wing (Dorsal)",
  35972. image: {
  35973. source: "./media/characters/sabrina/wing-dorsal.svg"
  35974. }
  35975. },
  35976. wingVentral: {
  35977. height: math.unit(4.85, "meters"),
  35978. name: "Wing (Ventral)",
  35979. image: {
  35980. source: "./media/characters/sabrina/wing-ventral.svg"
  35981. }
  35982. },
  35983. },
  35984. [
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(5, "meters"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35994. {
  35995. frontMaid: {
  35996. height: math.unit(5 + 5/12, "feet"),
  35997. weight: math.unit(130, "lb"),
  35998. name: "Front (Maid)",
  35999. image: {
  36000. source: "./media/characters/midnight-tales/front-maid.svg",
  36001. extra: 489/454,
  36002. bottom: 61/550
  36003. }
  36004. },
  36005. frontFormal: {
  36006. height: math.unit(5 + 5/12, "feet"),
  36007. weight: math.unit(130, "lb"),
  36008. name: "Front (Formal)",
  36009. image: {
  36010. source: "./media/characters/midnight-tales/front-formal.svg",
  36011. extra: 489/454,
  36012. bottom: 61/550
  36013. }
  36014. },
  36015. back: {
  36016. height: math.unit(5 + 5/12, "feet"),
  36017. weight: math.unit(130, "lb"),
  36018. name: "Back",
  36019. image: {
  36020. source: "./media/characters/midnight-tales/back.svg",
  36021. extra: 498/456,
  36022. bottom: 33/531
  36023. }
  36024. },
  36025. frontBeast: {
  36026. height: math.unit(40, "feet"),
  36027. weight: math.unit(64000, "lb"),
  36028. name: "Front (Beast)",
  36029. image: {
  36030. source: "./media/characters/midnight-tales/front-beast.svg",
  36031. extra: 927/860,
  36032. bottom: 53/980
  36033. }
  36034. },
  36035. backBeast: {
  36036. height: math.unit(40, "feet"),
  36037. weight: math.unit(64000, "lb"),
  36038. name: "Back (Beast)",
  36039. image: {
  36040. source: "./media/characters/midnight-tales/back-beast.svg",
  36041. extra: 929/855,
  36042. bottom: 16/945
  36043. }
  36044. },
  36045. footBeast: {
  36046. height: math.unit(6.7, "feet"),
  36047. name: "Foot (Beast)",
  36048. image: {
  36049. source: "./media/characters/midnight-tales/foot-beast.svg"
  36050. }
  36051. },
  36052. headBeast: {
  36053. height: math.unit(8, "feet"),
  36054. name: "Head (Beast)",
  36055. image: {
  36056. source: "./media/characters/midnight-tales/head-beast.svg"
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(5 + 5 / 12, "feet"),
  36064. default: true
  36065. },
  36066. {
  36067. name: "Macro",
  36068. height: math.unit(25, "feet")
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36074. {
  36075. front: {
  36076. height: math.unit(5 + 10/12, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/argon/front.svg",
  36080. extra: 2009/1935,
  36081. bottom: 118/2127
  36082. }
  36083. },
  36084. back: {
  36085. height: math.unit(5 + 10/12, "feet"),
  36086. name: "Back",
  36087. image: {
  36088. source: "./media/characters/argon/back.svg",
  36089. extra: 2047/1992,
  36090. bottom: 20/2067
  36091. }
  36092. },
  36093. frontDressed: {
  36094. height: math.unit(5 + 10/12, "feet"),
  36095. name: "Front (Dressed)",
  36096. image: {
  36097. source: "./media/characters/argon/front-dressed.svg",
  36098. extra: 2009/1935,
  36099. bottom: 118/2127
  36100. }
  36101. },
  36102. },
  36103. [
  36104. {
  36105. name: "Normal",
  36106. height: math.unit(5 + 10/12, "feet"),
  36107. default: true
  36108. },
  36109. ]
  36110. ))
  36111. characterMakers.push(() => makeCharacter(
  36112. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36113. {
  36114. front: {
  36115. height: math.unit(8 + 6/12, "feet"),
  36116. weight: math.unit(1150, "lb"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/kichi/front.svg",
  36120. extra: 1267/1164,
  36121. bottom: 61/1328
  36122. }
  36123. },
  36124. back: {
  36125. height: math.unit(8 + 6/12, "feet"),
  36126. weight: math.unit(1150, "lb"),
  36127. name: "Back",
  36128. image: {
  36129. source: "./media/characters/kichi/back.svg",
  36130. extra: 1273/1166,
  36131. bottom: 33/1306
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(8 + 6/12, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(6, "feet"),
  36148. weight: math.unit(210, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/manetel-greyscale/front.svg",
  36152. extra: 350/312,
  36153. bottom: 8/358
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Micro",
  36160. height: math.unit(2, "inches")
  36161. },
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(6, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Minimacro",
  36169. height: math.unit(17, "feet")
  36170. },
  36171. {
  36172. name: "Macro",
  36173. height: math.unit(117, "feet")
  36174. },
  36175. ]
  36176. ))
  36177. characterMakers.push(() => makeCharacter(
  36178. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36179. {
  36180. side: {
  36181. height: math.unit(5 + 1/12, "feet"),
  36182. weight: math.unit(418, "lb"),
  36183. name: "Side",
  36184. image: {
  36185. source: "./media/characters/softpurr/side.svg",
  36186. extra: 1993/1945,
  36187. bottom: 134/2127
  36188. }
  36189. },
  36190. front: {
  36191. height: math.unit(5 + 1/12, "feet"),
  36192. weight: math.unit(418, "lb"),
  36193. name: "Front",
  36194. image: {
  36195. source: "./media/characters/softpurr/front.svg",
  36196. extra: 1950/1856,
  36197. bottom: 174/2124
  36198. }
  36199. },
  36200. paw: {
  36201. height: math.unit(1, "feet"),
  36202. name: "Paw",
  36203. image: {
  36204. source: "./media/characters/softpurr/paw.svg"
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(5 + 1/12, "feet"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(260, "meters"),
  36221. name: "Front",
  36222. image: {
  36223. source: "./media/characters/anahita/front.svg",
  36224. extra: 665/635,
  36225. bottom: 89/754
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Macro",
  36232. height: math.unit(260, "meters"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(4 + 10/12, "feet"),
  36242. weight: math.unit(160, "lb"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/chip-mouse/front.svg",
  36246. extra: 3528/3408,
  36247. bottom: 0/3528
  36248. }
  36249. },
  36250. frontNsfw: {
  36251. height: math.unit(4 + 10/12, "feet"),
  36252. weight: math.unit(160, "lb"),
  36253. name: "Front (NSFW)",
  36254. image: {
  36255. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36256. extra: 3528/3408,
  36257. bottom: 0/3528
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(4 + 10/12, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36271. {
  36272. side: {
  36273. height: math.unit(10, "feet"),
  36274. weight: math.unit(14000, "lb"),
  36275. name: "Side",
  36276. image: {
  36277. source: "./media/characters/kremm/side.svg",
  36278. extra: 1390/1053,
  36279. bottom: 90/1480
  36280. }
  36281. },
  36282. gut: {
  36283. height: math.unit(5.8, "feet"),
  36284. name: "Gut",
  36285. image: {
  36286. source: "./media/characters/kremm/gut.svg"
  36287. }
  36288. },
  36289. ass: {
  36290. height: math.unit(6.1, "feet"),
  36291. name: "Ass",
  36292. image: {
  36293. source: "./media/characters/kremm/ass.svg"
  36294. }
  36295. },
  36296. jaws: {
  36297. height: math.unit(2.2, "feet"),
  36298. name: "Jaws",
  36299. image: {
  36300. source: "./media/characters/kremm/jaws.svg"
  36301. }
  36302. },
  36303. dick: {
  36304. height: math.unit(4.26, "feet"),
  36305. name: "Dick",
  36306. image: {
  36307. source: "./media/characters/kremm/dick.svg"
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(10, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(30, "stories"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/kai/front.svg",
  36327. extra: 1892/1718,
  36328. bottom: 162/2054
  36329. }
  36330. },
  36331. },
  36332. [
  36333. {
  36334. name: "Macro",
  36335. height: math.unit(30, "stories"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(6 + 4/12, "feet"),
  36345. weight: math.unit(145, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/sykes/front.svg",
  36349. extra: 1321 / 1187,
  36350. bottom: 66 / 1387
  36351. }
  36352. },
  36353. back: {
  36354. height: math.unit(6 + 4/12, "feet"),
  36355. weight: math.unit(145, "lb"),
  36356. name: "Back",
  36357. image: {
  36358. source: "./media/characters/sykes/back.svg",
  36359. extra: 1326/1181,
  36360. bottom: 31/1357
  36361. }
  36362. },
  36363. traditionalOutfit: {
  36364. height: math.unit(6 + 4/12, "feet"),
  36365. weight: math.unit(145, "lb"),
  36366. name: "Traditional Outfit",
  36367. image: {
  36368. source: "./media/characters/sykes/traditional-outfit.svg",
  36369. extra: 1321 / 1187,
  36370. bottom: 66 / 1387
  36371. }
  36372. },
  36373. adventureOutfit: {
  36374. height: math.unit(6 + 4/12, "feet"),
  36375. weight: math.unit(145, "lb"),
  36376. name: "Adventure Outfit",
  36377. image: {
  36378. source: "./media/characters/sykes/adventure-outfit.svg",
  36379. extra: 1321 / 1187,
  36380. bottom: 66 / 1387
  36381. }
  36382. },
  36383. handLeft: {
  36384. height: math.unit(0.9, "feet"),
  36385. name: "Hand (Left)",
  36386. image: {
  36387. source: "./media/characters/sykes/hand-left.svg"
  36388. }
  36389. },
  36390. handRight: {
  36391. height: math.unit(0.839, "feet"),
  36392. name: "Hand (Right)",
  36393. image: {
  36394. source: "./media/characters/sykes/hand-right.svg"
  36395. }
  36396. },
  36397. leftFoot: {
  36398. height: math.unit(1.2, "feet"),
  36399. name: "Foot (Left)",
  36400. image: {
  36401. source: "./media/characters/sykes/foot-left.svg"
  36402. }
  36403. },
  36404. rightFoot: {
  36405. height: math.unit(1.2, "feet"),
  36406. name: "Foot (Right)",
  36407. image: {
  36408. source: "./media/characters/sykes/foot-right.svg"
  36409. }
  36410. },
  36411. maw: {
  36412. height: math.unit(1.93, "feet"),
  36413. name: "Maw",
  36414. image: {
  36415. source: "./media/characters/sykes/maw.svg"
  36416. }
  36417. },
  36418. teeth: {
  36419. height: math.unit(0.51, "feet"),
  36420. name: "Teeth",
  36421. image: {
  36422. source: "./media/characters/sykes/teeth.svg"
  36423. }
  36424. },
  36425. tongue: {
  36426. height: math.unit(2.13, "feet"),
  36427. name: "Tongue",
  36428. image: {
  36429. source: "./media/characters/sykes/tongue.svg"
  36430. }
  36431. },
  36432. uvula: {
  36433. height: math.unit(0.16, "feet"),
  36434. name: "Uvula",
  36435. image: {
  36436. source: "./media/characters/sykes/uvula.svg"
  36437. }
  36438. },
  36439. collar: {
  36440. height: math.unit(0.287, "feet"),
  36441. name: "Collar",
  36442. image: {
  36443. source: "./media/characters/sykes/collar.svg"
  36444. }
  36445. },
  36446. tail: {
  36447. height: math.unit(3.8, "feet"),
  36448. name: "Tail",
  36449. image: {
  36450. source: "./media/characters/sykes/tail.svg"
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Shrunken",
  36457. height: math.unit(5, "inches")
  36458. },
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(6 + 4 / 12, "feet"),
  36462. default: true
  36463. },
  36464. {
  36465. name: "Big",
  36466. height: math.unit(15, "feet")
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36472. {
  36473. front: {
  36474. height: math.unit(5 + 8/12, "feet"),
  36475. weight: math.unit(190, "lb"),
  36476. name: "Front",
  36477. image: {
  36478. source: "./media/characters/oven-otter/front.svg",
  36479. extra: 1809/1740,
  36480. bottom: 181/1990
  36481. }
  36482. },
  36483. back: {
  36484. height: math.unit(5 + 8/12, "feet"),
  36485. weight: math.unit(190, "lb"),
  36486. name: "Back",
  36487. image: {
  36488. source: "./media/characters/oven-otter/back.svg",
  36489. extra: 1709/1635,
  36490. bottom: 118/1827
  36491. }
  36492. },
  36493. hand: {
  36494. height: math.unit(1.07, "feet"),
  36495. name: "Hand",
  36496. image: {
  36497. source: "./media/characters/oven-otter/hand.svg"
  36498. }
  36499. },
  36500. beans: {
  36501. height: math.unit(1.74, "feet"),
  36502. name: "Beans",
  36503. image: {
  36504. source: "./media/characters/oven-otter/beans.svg"
  36505. }
  36506. },
  36507. },
  36508. [
  36509. {
  36510. name: "Micro",
  36511. height: math.unit(0.5, "inches")
  36512. },
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(5 + 8/12, "feet"),
  36516. default: true
  36517. },
  36518. {
  36519. name: "Macro",
  36520. height: math.unit(250, "feet")
  36521. },
  36522. {
  36523. name: "Really High",
  36524. height: math.unit(420, "feet")
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(5, "meters"),
  36533. weight: math.unit(292000000000000, "kg"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/devourer/front.svg",
  36537. extra: 1800/1733,
  36538. bottom: 211/2011
  36539. }
  36540. },
  36541. maw: {
  36542. height: math.unit(1.1, "meter"),
  36543. name: "Maw",
  36544. image: {
  36545. source: "./media/characters/devourer/maw.svg"
  36546. }
  36547. },
  36548. },
  36549. [
  36550. {
  36551. name: "Small",
  36552. height: math.unit(3, "meters")
  36553. },
  36554. {
  36555. name: "Large",
  36556. height: math.unit(5, "meters"),
  36557. default: true
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36563. {
  36564. front: {
  36565. height: math.unit(6, "feet"),
  36566. weight: math.unit(400, "lb"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/ellarby/front.svg",
  36570. extra: 1909/1763,
  36571. bottom: 80/1989
  36572. }
  36573. },
  36574. back: {
  36575. height: math.unit(6, "feet"),
  36576. weight: math.unit(400, "lb"),
  36577. name: "Back",
  36578. image: {
  36579. source: "./media/characters/ellarby/back.svg",
  36580. extra: 1914/1784,
  36581. bottom: 172/2086
  36582. }
  36583. },
  36584. },
  36585. [
  36586. {
  36587. name: "Mischief",
  36588. height: math.unit(18, "inches")
  36589. },
  36590. {
  36591. name: "Trouble",
  36592. height: math.unit(12, "feet")
  36593. },
  36594. {
  36595. name: "Havoc",
  36596. height: math.unit(200, "feet"),
  36597. default: true
  36598. },
  36599. {
  36600. name: "Pandemonium",
  36601. height: math.unit(1, "mile")
  36602. },
  36603. {
  36604. name: "Catastrophe",
  36605. height: math.unit(100, "miles")
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36611. {
  36612. front: {
  36613. height: math.unit(4.7, "meters"),
  36614. weight: math.unit(6500, "kg"),
  36615. name: "Front",
  36616. image: {
  36617. source: "./media/characters/vex/front.svg",
  36618. extra: 1288/1140,
  36619. bottom: 100/1388
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Normal",
  36626. height: math.unit(4.7, "meters"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36633. {
  36634. normal: {
  36635. height: math.unit(6, "feet"),
  36636. weight: math.unit(350, "lb"),
  36637. name: "Normal",
  36638. image: {
  36639. source: "./media/characters/teshy/normal.svg",
  36640. extra: 1795/1735,
  36641. bottom: 16/1811
  36642. }
  36643. },
  36644. monsterFront: {
  36645. height: math.unit(12, "feet"),
  36646. weight: math.unit(4700, "lb"),
  36647. name: "Monster (Front)",
  36648. image: {
  36649. source: "./media/characters/teshy/monster-front.svg",
  36650. extra: 2042/2034,
  36651. bottom: 128/2170
  36652. }
  36653. },
  36654. monsterSide: {
  36655. height: math.unit(12, "feet"),
  36656. weight: math.unit(4700, "lb"),
  36657. name: "Monster (Side)",
  36658. image: {
  36659. source: "./media/characters/teshy/monster-side.svg",
  36660. extra: 2067/2056,
  36661. bottom: 70/2137
  36662. }
  36663. },
  36664. monsterBack: {
  36665. height: math.unit(12, "feet"),
  36666. weight: math.unit(4700, "lb"),
  36667. name: "Monster (Back)",
  36668. image: {
  36669. source: "./media/characters/teshy/monster-back.svg",
  36670. extra: 1921/1914,
  36671. bottom: 171/2092
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Normal",
  36678. height: math.unit(6, "feet"),
  36679. default: true
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(6, "feet"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/ramey/front.svg",
  36691. extra: 790/787,
  36692. bottom: 27/817
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(6, "feet"),
  36700. default: true
  36701. },
  36702. ]
  36703. ))
  36704. characterMakers.push(() => makeCharacter(
  36705. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36706. {
  36707. front: {
  36708. height: math.unit(5 + 5/12, "feet"),
  36709. weight: math.unit(120, "lb"),
  36710. name: "Front",
  36711. image: {
  36712. source: "./media/characters/phirae/front.svg",
  36713. extra: 2491/2436,
  36714. bottom: 38/2529
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Normal",
  36721. height: math.unit(5 + 5/12, "feet"),
  36722. default: true
  36723. },
  36724. ]
  36725. ))
  36726. characterMakers.push(() => makeCharacter(
  36727. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36728. {
  36729. front: {
  36730. height: math.unit(5 + 3/12, "feet"),
  36731. name: "Front",
  36732. image: {
  36733. source: "./media/characters/stagglas/front.svg",
  36734. extra: 962/882,
  36735. bottom: 53/1015
  36736. }
  36737. },
  36738. feral: {
  36739. height: math.unit(335, "cm"),
  36740. name: "Feral",
  36741. image: {
  36742. source: "./media/characters/stagglas/feral.svg",
  36743. extra: 1732/1090,
  36744. bottom: 48/1780
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(5 + 3/12, "feet"),
  36752. default: true
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(5 + 4/12, "feet"),
  36761. weight: math.unit(145, "lb"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/starra/front.svg",
  36765. extra: 1790/1691,
  36766. bottom: 91/1881
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(5 + 4/12, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(3.5, "meters"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36786. extra: 1248/972,
  36787. bottom: 38/1286
  36788. }
  36789. },
  36790. },
  36791. [
  36792. {
  36793. name: "Normal",
  36794. height: math.unit(3.5, "meters"),
  36795. default: true
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36801. {
  36802. side: {
  36803. height: math.unit(8 + 2/12, "feet"),
  36804. weight: math.unit(1240, "lb"),
  36805. name: "Side",
  36806. image: {
  36807. source: "./media/characters/mika-valentine/side.svg",
  36808. extra: 2670/2501,
  36809. bottom: 250/2920
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(8 + 2/12, "feet"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36823. {
  36824. front: {
  36825. height: math.unit(7 + 2/12, "feet"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/xoltol/front.svg",
  36829. extra: 2212/2124,
  36830. bottom: 84/2296
  36831. }
  36832. },
  36833. side: {
  36834. height: math.unit(7 + 2/12, "feet"),
  36835. name: "Side",
  36836. image: {
  36837. source: "./media/characters/xoltol/side.svg",
  36838. extra: 2273/2197,
  36839. bottom: 26/2299
  36840. }
  36841. },
  36842. hand: {
  36843. height: math.unit(2.5, "feet"),
  36844. name: "Hand",
  36845. image: {
  36846. source: "./media/characters/xoltol/hand.svg"
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Small-ish",
  36853. height: math.unit(5 + 11/12, "feet")
  36854. },
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(7 + 2/12, "feet")
  36858. },
  36859. {
  36860. name: "\"Macro\"",
  36861. height: math.unit(14 + 9/12, "feet"),
  36862. default: true
  36863. },
  36864. {
  36865. name: "Alternate Height",
  36866. height: math.unit(20, "feet")
  36867. },
  36868. {
  36869. name: "Actually Macro",
  36870. height: math.unit(100, "feet")
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(5 + 2/12, "feet"),
  36879. weight: math.unit(75, "kg"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/kotetsu-redwood/front.svg",
  36883. extra: 1053/942,
  36884. bottom: 60/1113
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(5 + 2/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(2.4, "meters"),
  36901. weight: math.unit(125, "kg"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/lilith/front.svg",
  36905. extra: 1590/1513,
  36906. bottom: 203/1793
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Humanoid",
  36913. height: math.unit(2.4, "meters")
  36914. },
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(6, "meters"),
  36918. default: true
  36919. },
  36920. {
  36921. name: "Largest",
  36922. height: math.unit(55, "meters")
  36923. },
  36924. ]
  36925. ))
  36926. characterMakers.push(() => makeCharacter(
  36927. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36928. {
  36929. front: {
  36930. height: math.unit(8 + 4/12, "feet"),
  36931. weight: math.unit(535, "lb"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/beh'kah-bolger/front.svg",
  36935. extra: 1660/1603,
  36936. bottom: 37/1697
  36937. }
  36938. },
  36939. },
  36940. [
  36941. {
  36942. name: "Normal",
  36943. height: math.unit(8 + 4/12, "feet"),
  36944. default: true
  36945. },
  36946. {
  36947. name: "Kaiju",
  36948. height: math.unit(250, "feet")
  36949. },
  36950. {
  36951. name: "Still Growing",
  36952. height: math.unit(10, "miles")
  36953. },
  36954. {
  36955. name: "Continental",
  36956. height: math.unit(5000, "miles")
  36957. },
  36958. {
  36959. name: "Final Form",
  36960. height: math.unit(2500000, "miles")
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(7 + 2/12, "feet"),
  36969. weight: math.unit(230, "kg"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/tatyana-milewska/front.svg",
  36973. extra: 1199/1150,
  36974. bottom: 86/1285
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(7 + 2/12, "feet"),
  36982. default: true
  36983. },
  36984. {
  36985. name: "Big",
  36986. height: math.unit(12, "feet")
  36987. },
  36988. {
  36989. name: "Minimacro",
  36990. height: math.unit(20, "feet")
  36991. },
  36992. {
  36993. name: "Macro",
  36994. height: math.unit(120, "feet")
  36995. },
  36996. ]
  36997. ))
  36998. characterMakers.push(() => makeCharacter(
  36999. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37000. {
  37001. front: {
  37002. height: math.unit(7 + 8/12, "feet"),
  37003. weight: math.unit(152, "kg"),
  37004. name: "Front",
  37005. image: {
  37006. source: "./media/characters/helen-arri/front.svg",
  37007. extra: 440/423,
  37008. bottom: 14/454
  37009. }
  37010. },
  37011. back: {
  37012. height: math.unit(7 + 8/12, "feet"),
  37013. weight: math.unit(152, "kg"),
  37014. name: "Back",
  37015. image: {
  37016. source: "./media/characters/helen-arri/back.svg",
  37017. extra: 443/426,
  37018. bottom: 8/451
  37019. }
  37020. },
  37021. },
  37022. [
  37023. {
  37024. name: "Normal",
  37025. height: math.unit(7 + 8/12, "feet"),
  37026. default: true
  37027. },
  37028. {
  37029. name: "Big",
  37030. height: math.unit(14, "feet")
  37031. },
  37032. {
  37033. name: "Minimacro",
  37034. height: math.unit(24, "feet")
  37035. },
  37036. {
  37037. name: "Macro",
  37038. height: math.unit(140, "feet")
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(6, "meters"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/ehanu-rehu/front.svg",
  37050. extra: 1800/1800,
  37051. bottom: 59/1859
  37052. }
  37053. },
  37054. },
  37055. [
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(6, "meters"),
  37059. default: true
  37060. },
  37061. ]
  37062. ))
  37063. characterMakers.push(() => makeCharacter(
  37064. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37065. {
  37066. front: {
  37067. height: math.unit(7 + 3/12, "feet"),
  37068. name: "Front",
  37069. image: {
  37070. source: "./media/characters/renholder/front.svg",
  37071. extra: 3096/2960,
  37072. bottom: 250/3346
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Normal Bat",
  37079. height: math.unit(7 + 3/12, "feet"),
  37080. default: true
  37081. },
  37082. {
  37083. name: "Slightly Tall Bat",
  37084. height: math.unit(100, "feet")
  37085. },
  37086. {
  37087. name: "Big Bat",
  37088. height: math.unit(1000, "feet")
  37089. },
  37090. {
  37091. name: "City-Sized Bat",
  37092. height: math.unit(200000, "feet")
  37093. },
  37094. {
  37095. name: "Bigger Bat",
  37096. height: math.unit(10000, "miles")
  37097. },
  37098. {
  37099. name: "Solar Sized Bat",
  37100. height: math.unit(100, "AU")
  37101. },
  37102. {
  37103. name: "Galactic Bat",
  37104. height: math.unit(200000, "lightyears")
  37105. },
  37106. {
  37107. name: "Universally Known Bat",
  37108. height: math.unit(1, "universe")
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(6 + 11/12, "feet"),
  37117. weight: math.unit(250, "lb"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/cookiecat/front.svg",
  37121. extra: 893/827,
  37122. bottom: 14/907
  37123. }
  37124. },
  37125. },
  37126. [
  37127. {
  37128. name: "Micro",
  37129. height: math.unit(3, "inches")
  37130. },
  37131. {
  37132. name: "Normal",
  37133. height: math.unit(6 + 11/12, "feet"),
  37134. default: true
  37135. },
  37136. {
  37137. name: "Macro",
  37138. height: math.unit(100, "feet")
  37139. },
  37140. {
  37141. name: "Macro+",
  37142. height: math.unit(404, "feet")
  37143. },
  37144. {
  37145. name: "Megamacro",
  37146. height: math.unit(165, "miles")
  37147. },
  37148. {
  37149. name: "Planetary",
  37150. height: math.unit(4600, "miles")
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(10 + 3/12, "feet"),
  37159. weight: math.unit(1500, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/tux-kusanagi/front.svg",
  37163. extra: 944/840,
  37164. bottom: 39/983
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(10 + 3/12, "feet"),
  37169. weight: math.unit(1500, "lb"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/tux-kusanagi/back.svg",
  37173. extra: 941/842,
  37174. bottom: 28/969
  37175. }
  37176. },
  37177. rump: {
  37178. height: math.unit(5.25, "feet"),
  37179. name: "Rump",
  37180. image: {
  37181. source: "./media/characters/tux-kusanagi/rump.svg"
  37182. }
  37183. },
  37184. beak: {
  37185. height: math.unit(1.54, "feet"),
  37186. name: "Beak",
  37187. image: {
  37188. source: "./media/characters/tux-kusanagi/beak.svg"
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(10 + 3/12, "feet"),
  37196. default: true
  37197. },
  37198. ]
  37199. ))
  37200. characterMakers.push(() => makeCharacter(
  37201. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37202. {
  37203. front: {
  37204. height: math.unit(58, "feet"),
  37205. weight: math.unit(200, "tons"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/uzarmazari/front.svg",
  37209. extra: 1575/1455,
  37210. bottom: 152/1727
  37211. }
  37212. },
  37213. back: {
  37214. height: math.unit(58, "feet"),
  37215. weight: math.unit(200, "tons"),
  37216. name: "Back",
  37217. image: {
  37218. source: "./media/characters/uzarmazari/back.svg",
  37219. extra: 1585/1510,
  37220. bottom: 157/1742
  37221. }
  37222. },
  37223. head: {
  37224. height: math.unit(26, "feet"),
  37225. name: "Head",
  37226. image: {
  37227. source: "./media/characters/uzarmazari/head.svg"
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(58, "feet"),
  37235. default: true
  37236. },
  37237. ]
  37238. ))
  37239. characterMakers.push(() => makeCharacter(
  37240. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37241. {
  37242. side: {
  37243. height: math.unit(15, "feet"),
  37244. name: "Side",
  37245. image: {
  37246. source: "./media/characters/akitu/side.svg",
  37247. extra: 1421/1321,
  37248. bottom: 157/1578
  37249. }
  37250. },
  37251. front: {
  37252. height: math.unit(15, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/akitu/front.svg",
  37256. extra: 1435/1326,
  37257. bottom: 232/1667
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(15, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(10 + 8/12, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/azalie-croixland/front.svg",
  37277. extra: 1972/1856,
  37278. bottom: 31/2003
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Original Height",
  37285. height: math.unit(5 + 4/12, "feet")
  37286. },
  37287. {
  37288. name: "Normal Height",
  37289. height: math.unit(10 + 8/12, "feet"),
  37290. default: true
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37296. {
  37297. side: {
  37298. height: math.unit(7 + 1/12, "feet"),
  37299. weight: math.unit(245, "lb"),
  37300. name: "Side",
  37301. image: {
  37302. source: "./media/characters/kavus-kazian/side.svg",
  37303. extra: 349/342,
  37304. bottom: 15/364
  37305. }
  37306. },
  37307. },
  37308. [
  37309. {
  37310. name: "Normal",
  37311. height: math.unit(7 + 1/12, "feet"),
  37312. default: true
  37313. },
  37314. ]
  37315. ))
  37316. characterMakers.push(() => makeCharacter(
  37317. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37318. {
  37319. normalFront: {
  37320. height: math.unit(5 + 11/12, "feet"),
  37321. name: "Front",
  37322. image: {
  37323. source: "./media/characters/moonlight-rose/normal-front.svg",
  37324. extra: 1980/1825,
  37325. bottom: 18/1998
  37326. },
  37327. form: "normal",
  37328. default: true
  37329. },
  37330. normalBack: {
  37331. height: math.unit(5 + 11/12, "feet"),
  37332. name: "Back",
  37333. image: {
  37334. source: "./media/characters/moonlight-rose/normal-back.svg",
  37335. extra: 2010/1839,
  37336. bottom: 10/2020
  37337. },
  37338. form: "normal"
  37339. },
  37340. demonFront: {
  37341. height: math.unit(1.5, "earths"),
  37342. name: "Front",
  37343. image: {
  37344. source: "./media/characters/moonlight-rose/demon.svg",
  37345. extra: 1400/1294,
  37346. bottom: 45/1445
  37347. },
  37348. form: "demon",
  37349. default: true
  37350. },
  37351. terraFront: {
  37352. height: math.unit(1.5, "earths"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/moonlight-rose/terra.svg"
  37356. },
  37357. form: "terra",
  37358. default: true
  37359. },
  37360. jupiterFront: {
  37361. height: math.unit(69911*2, "km"),
  37362. name: "Front",
  37363. image: {
  37364. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37365. extra: 1367/1286,
  37366. bottom: 55/1422
  37367. },
  37368. form: "jupiter",
  37369. default: true
  37370. },
  37371. neptuneFront: {
  37372. height: math.unit(24622*2, "feet"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37376. extra: 1851/1712,
  37377. bottom: 0/1851
  37378. },
  37379. form: "neptune",
  37380. default: true
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "\"Natural\" Height",
  37386. height: math.unit(5 + 11/12, "feet"),
  37387. form: "normal"
  37388. },
  37389. {
  37390. name: "Smallest comfortable size",
  37391. height: math.unit(40, "meters"),
  37392. form: "normal"
  37393. },
  37394. {
  37395. name: "Common size",
  37396. height: math.unit(50, "km"),
  37397. form: "normal",
  37398. default: true
  37399. },
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(1.5, "earths"),
  37403. form: "demon",
  37404. default: true
  37405. },
  37406. {
  37407. name: "Universal",
  37408. height: math.unit(15, "universes"),
  37409. form: "demon"
  37410. },
  37411. {
  37412. name: "Earth",
  37413. height: math.unit(1.5, "earths"),
  37414. form: "terra",
  37415. default: true
  37416. },
  37417. {
  37418. name: "Super Earth",
  37419. height: math.unit(67.5, "earths"),
  37420. form: "terra"
  37421. },
  37422. {
  37423. name: "Doesn't fit in a solar system...",
  37424. height: math.unit(1, "galaxy"),
  37425. form: "terra"
  37426. },
  37427. {
  37428. name: "Saturn",
  37429. height: math.unit(58232*2, "km"),
  37430. form: "jupiter"
  37431. },
  37432. {
  37433. name: "Jupiter",
  37434. height: math.unit(69911*2, "km"),
  37435. form: "jupiter",
  37436. default: true
  37437. },
  37438. {
  37439. name: "HD 100546 b",
  37440. height: math.unit(482938, "km"),
  37441. form: "jupiter"
  37442. },
  37443. {
  37444. name: "Enceladus",
  37445. height: math.unit(513*2, "km"),
  37446. form: "neptune"
  37447. },
  37448. {
  37449. name: "Europe",
  37450. height: math.unit(1560*2, "km"),
  37451. form: "neptune"
  37452. },
  37453. {
  37454. name: "Neptune",
  37455. height: math.unit(24622*2, "km"),
  37456. form: "neptune",
  37457. default: true
  37458. },
  37459. {
  37460. name: "CoRoT-9b",
  37461. height: math.unit(75067*2, "km"),
  37462. form: "neptune"
  37463. },
  37464. ],
  37465. {
  37466. "normal": {
  37467. name: "Normal",
  37468. default: true
  37469. },
  37470. "demon": {
  37471. name: "Demon"
  37472. },
  37473. "terra": {
  37474. name: "Terra"
  37475. },
  37476. "jupiter": {
  37477. name: "Jupiter"
  37478. },
  37479. "neptune": {
  37480. name: "Neptune"
  37481. }
  37482. }
  37483. ))
  37484. characterMakers.push(() => makeCharacter(
  37485. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37486. {
  37487. front: {
  37488. height: math.unit(16, "feet"),
  37489. weight: math.unit(610, "kg"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/huckle/front.svg",
  37493. extra: 1731/1625,
  37494. bottom: 33/1764
  37495. }
  37496. },
  37497. back: {
  37498. height: math.unit(16, "feet"),
  37499. weight: math.unit(610, "kg"),
  37500. name: "Back",
  37501. image: {
  37502. source: "./media/characters/huckle/back.svg",
  37503. extra: 1738/1651,
  37504. bottom: 37/1775
  37505. }
  37506. },
  37507. laughing: {
  37508. height: math.unit(3.75, "feet"),
  37509. name: "Laughing",
  37510. image: {
  37511. source: "./media/characters/huckle/laughing.svg"
  37512. }
  37513. },
  37514. angry: {
  37515. height: math.unit(4.15, "feet"),
  37516. name: "Angry",
  37517. image: {
  37518. source: "./media/characters/huckle/angry.svg"
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(16, "feet"),
  37526. default: true
  37527. },
  37528. {
  37529. name: "Mini Macro",
  37530. height: math.unit(463, "feet")
  37531. },
  37532. {
  37533. name: "Macro",
  37534. height: math.unit(1680, "meters")
  37535. },
  37536. {
  37537. name: "Mega Macro",
  37538. height: math.unit(175, "km")
  37539. },
  37540. {
  37541. name: "Terra Macro",
  37542. height: math.unit(32, "gigameters")
  37543. },
  37544. {
  37545. name: "Multiverse+",
  37546. height: math.unit(2.56e23, "yottameters")
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(6 + 9/12, "feet"),
  37555. weight: math.unit(280, "lb"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/candy/front.svg",
  37559. extra: 234/217,
  37560. bottom: 11/245
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Really Small",
  37567. height: math.unit(0.1, "nm")
  37568. },
  37569. {
  37570. name: "Micro",
  37571. height: math.unit(2, "inches")
  37572. },
  37573. {
  37574. name: "Normal",
  37575. height: math.unit(6 + 9/12, "feet"),
  37576. default: true
  37577. },
  37578. {
  37579. name: "Small Macro",
  37580. height: math.unit(69, "feet")
  37581. },
  37582. {
  37583. name: "Macro",
  37584. height: math.unit(160, "feet")
  37585. },
  37586. {
  37587. name: "Megamacro",
  37588. height: math.unit(22000, "miles")
  37589. },
  37590. {
  37591. name: "Gigamacro",
  37592. height: math.unit(50000, "miles")
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(4, "feet"),
  37601. weight: math.unit(90, "lb"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/joey-mcdonald/front.svg",
  37605. extra: 1059/852,
  37606. bottom: 33/1092
  37607. }
  37608. },
  37609. back: {
  37610. height: math.unit(4, "feet"),
  37611. weight: math.unit(90, "lb"),
  37612. name: "Back",
  37613. image: {
  37614. source: "./media/characters/joey-mcdonald/back.svg",
  37615. extra: 1077/879,
  37616. bottom: 5/1082
  37617. }
  37618. },
  37619. frontKobold: {
  37620. height: math.unit(4, "feet"),
  37621. weight: math.unit(100, "lb"),
  37622. name: "Front-kobold",
  37623. image: {
  37624. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37625. extra: 1480/1367,
  37626. bottom: 0/1480
  37627. }
  37628. },
  37629. backKobold: {
  37630. height: math.unit(4, "feet"),
  37631. weight: math.unit(100, "lb"),
  37632. name: "Back-kobold",
  37633. image: {
  37634. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37635. extra: 1449/1361,
  37636. bottom: 0/1449
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(4, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(12 + 6/12, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/kass-lockheed/front.svg",
  37656. extra: 354/343,
  37657. bottom: 9/363
  37658. }
  37659. },
  37660. back: {
  37661. height: math.unit(12 + 6/12, "feet"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/kass-lockheed/back.svg",
  37665. extra: 364/352,
  37666. bottom: 3/367
  37667. }
  37668. },
  37669. dick: {
  37670. height: math.unit(3.12, "feet"),
  37671. name: "Dick",
  37672. image: {
  37673. source: "./media/characters/kass-lockheed/dick.svg"
  37674. }
  37675. },
  37676. head: {
  37677. height: math.unit(2.6, "feet"),
  37678. name: "Head",
  37679. image: {
  37680. source: "./media/characters/kass-lockheed/head.svg"
  37681. }
  37682. },
  37683. bleh: {
  37684. height: math.unit(2.85, "feet"),
  37685. name: "Bleh",
  37686. image: {
  37687. source: "./media/characters/kass-lockheed/bleh.svg"
  37688. }
  37689. },
  37690. smug: {
  37691. height: math.unit(2.85, "feet"),
  37692. name: "Smug",
  37693. image: {
  37694. source: "./media/characters/kass-lockheed/smug.svg"
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(12 + 6/12, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(6 + 2/12, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/taylor/front.svg",
  37714. extra: 639/495,
  37715. bottom: 12/651
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(6 + 2/12, "feet"),
  37723. default: true
  37724. },
  37725. {
  37726. name: "Big",
  37727. height: math.unit(15, "feet")
  37728. },
  37729. {
  37730. name: "Lorg",
  37731. height: math.unit(80, "feet")
  37732. },
  37733. {
  37734. name: "Too Lorg",
  37735. height: math.unit(120, "feet")
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(15, "feet"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/kaizer/front.svg",
  37747. extra: 1612/1436,
  37748. bottom: 43/1655
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(15, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(2, "feet"),
  37765. weight: math.unit(30, "lb"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/sandy/front.svg",
  37769. extra: 1439/1307,
  37770. bottom: 194/1633
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Normal",
  37777. height: math.unit(2, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(3, "feet"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/mellvi/front.svg",
  37790. extra: 1831/1630,
  37791. bottom: 58/1889
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(3, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37805. {
  37806. front: {
  37807. height: math.unit(5 + 11/12, "feet"),
  37808. weight: math.unit(200, "lb"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/shirou/front.svg",
  37812. extra: 2491/2383,
  37813. bottom: 189/2680
  37814. }
  37815. },
  37816. back: {
  37817. height: math.unit(5 + 11/12, "feet"),
  37818. weight: math.unit(200, "lb"),
  37819. name: "Back",
  37820. image: {
  37821. source: "./media/characters/shirou/back.svg",
  37822. extra: 2554/2450,
  37823. bottom: 76/2630
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(5 + 11/12, "feet"),
  37831. default: true
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(6 + 3/12, "feet"),
  37840. weight: math.unit(177, "lb"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/noryu/front.svg",
  37844. extra: 973/885,
  37845. bottom: 10/983
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(6 + 3/12, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(5 + 6/12, "feet"),
  37862. weight: math.unit(170, "lb"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/mevolas-rubenido/front.svg",
  37866. extra: 2109/1901,
  37867. bottom: 96/2205
  37868. }
  37869. },
  37870. },
  37871. [
  37872. {
  37873. name: "Normal",
  37874. height: math.unit(5 + 6/12, "feet"),
  37875. default: true
  37876. },
  37877. ]
  37878. ))
  37879. characterMakers.push(() => makeCharacter(
  37880. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37881. {
  37882. front: {
  37883. height: math.unit(100, "feet"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/dee/front.svg",
  37887. extra: 2153/2036,
  37888. bottom: 59/2212
  37889. }
  37890. },
  37891. back: {
  37892. height: math.unit(100, "feet"),
  37893. name: "Back",
  37894. image: {
  37895. source: "./media/characters/dee/back.svg",
  37896. extra: 2183/2058,
  37897. bottom: 75/2258
  37898. }
  37899. },
  37900. foot: {
  37901. height: math.unit(19.43, "feet"),
  37902. name: "Foot",
  37903. image: {
  37904. source: "./media/characters/dee/foot.svg"
  37905. }
  37906. },
  37907. hoof: {
  37908. height: math.unit(20.6, "feet"),
  37909. name: "Hoof",
  37910. image: {
  37911. source: "./media/characters/dee/hoof.svg"
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Macro",
  37918. height: math.unit(100, "feet"),
  37919. default: true
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(5 + 6/12, "feet"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/teh/front.svg",
  37931. extra: 1002/847,
  37932. bottom: 62/1064
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(5 + 6/12, "feet"),
  37940. default: true
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37946. {
  37947. side: {
  37948. height: math.unit(6 + 1/12, "feet"),
  37949. weight: math.unit(204, "lb"),
  37950. name: "Side",
  37951. image: {
  37952. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37953. extra: 974/775,
  37954. bottom: 169/1143
  37955. }
  37956. },
  37957. sitting: {
  37958. height: math.unit(6 + 2/12, "feet"),
  37959. weight: math.unit(204, "lb"),
  37960. name: "Sitting",
  37961. image: {
  37962. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37963. extra: 1175/964,
  37964. bottom: 378/1553
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Normal",
  37971. height: math.unit(6 + 1/12, "feet"),
  37972. default: true
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(6, "inches"),
  37981. name: "Front",
  37982. image: {
  37983. source: "./media/characters/tululi/front.svg",
  37984. extra: 1997/1876,
  37985. bottom: 20/2017
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Normal",
  37992. height: math.unit(6, "inches"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(4 + 1/12, "feet"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/star/front.svg",
  38005. extra: 1493/1189,
  38006. bottom: 48/1541
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(4 + 1/12, "feet"),
  38014. default: true
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38020. {
  38021. front: {
  38022. height: math.unit(6 + 3/12, "feet"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/comet/front.svg",
  38026. extra: 1681/1462,
  38027. bottom: 26/1707
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Normal",
  38034. height: math.unit(6 + 3/12, "feet"),
  38035. default: true
  38036. },
  38037. ]
  38038. ))
  38039. characterMakers.push(() => makeCharacter(
  38040. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38041. {
  38042. front: {
  38043. height: math.unit(950, "feet"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/vortex/front.svg",
  38047. extra: 1497/1434,
  38048. bottom: 56/1553
  38049. }
  38050. },
  38051. maw: {
  38052. height: math.unit(285, "feet"),
  38053. name: "Maw",
  38054. image: {
  38055. source: "./media/characters/vortex/maw.svg"
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Macro",
  38062. height: math.unit(950, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(600, "feet"),
  38072. weight: math.unit(0.02, "grams"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/doodle/front.svg",
  38076. extra: 1578/1413,
  38077. bottom: 37/1615
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Macro",
  38084. height: math.unit(600, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(6 + 6/12, "feet"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/jai/front.svg",
  38097. extra: 1645/1534,
  38098. bottom: 115/1760
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(6 + 6/12, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(6 + 8/12, "feet"),
  38115. name: "Front",
  38116. image: {
  38117. source: "./media/characters/pixel/front.svg",
  38118. extra: 1900/1735,
  38119. bottom: 63/1963
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(6 + 8/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38133. {
  38134. back: {
  38135. height: math.unit(4 + 1/12, "feet"),
  38136. weight: math.unit(75, "lb"),
  38137. name: "Back",
  38138. image: {
  38139. source: "./media/characters/rhett/back.svg",
  38140. extra: 930/878,
  38141. bottom: 25/955
  38142. }
  38143. },
  38144. front: {
  38145. height: math.unit(4 + 1/12, "feet"),
  38146. weight: math.unit(75, "lb"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/rhett/front.svg",
  38150. extra: 1682/1586,
  38151. bottom: 92/1774
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Micro",
  38158. height: math.unit(8, "inches")
  38159. },
  38160. {
  38161. name: "Tiny",
  38162. height: math.unit(2, "feet")
  38163. },
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(4 + 1/12, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(3 + 3/12, "feet"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/penny/front.svg",
  38179. extra: 1406/1311,
  38180. bottom: 26/1432
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(3 + 3/12, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(4 + 11/12, "feet"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/monty/front.svg",
  38200. extra: 1479/1209,
  38201. bottom: 0/1479
  38202. }
  38203. },
  38204. },
  38205. [
  38206. {
  38207. name: "Normal",
  38208. height: math.unit(4 + 11/12, "feet"),
  38209. default: true
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38215. {
  38216. front: {
  38217. height: math.unit(8 + 4/12, "feet"),
  38218. name: "Front",
  38219. image: {
  38220. source: "./media/characters/sterling/front.svg",
  38221. extra: 1420/1236,
  38222. bottom: 27/1447
  38223. }
  38224. },
  38225. },
  38226. [
  38227. {
  38228. name: "Normal",
  38229. height: math.unit(8 + 4/12, "feet"),
  38230. default: true
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38236. {
  38237. front: {
  38238. height: math.unit(15, "feet"),
  38239. name: "Front",
  38240. image: {
  38241. source: "./media/characters/marble/front.svg",
  38242. extra: 973/937,
  38243. bottom: 32/1005
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(15, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38257. {
  38258. front: {
  38259. height: math.unit(3, "inches"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/powder/front.svg",
  38263. extra: 1504/1334,
  38264. bottom: 518/2022
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Normal",
  38271. height: math.unit(3, "inches"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(4 + 5/12, "feet"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/joey-raccoon/front.svg",
  38284. extra: 1273/1197,
  38285. bottom: 0/1273
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(4 + 5/12, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(8 + 4/12, "feet"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/vick/front.svg",
  38305. extra: 2187/2118,
  38306. bottom: 47/2234
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(8 + 4/12, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(5 + 5/12, "feet"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/mitsy/front.svg",
  38326. extra: 1842/1695,
  38327. bottom: 0/1842
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(5 + 5/12, "feet"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(6 + 3/12, "feet"),
  38344. name: "Front",
  38345. image: {
  38346. source: "./media/characters/silvy/front.svg",
  38347. extra: 1995/1836,
  38348. bottom: 225/2220
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(6 + 3/12, "feet"),
  38356. default: true
  38357. },
  38358. ]
  38359. ))
  38360. characterMakers.push(() => makeCharacter(
  38361. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38362. {
  38363. front: {
  38364. height: math.unit(3 + 8/12, "feet"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/rodney/front.svg",
  38368. extra: 1956/1747,
  38369. bottom: 31/1987
  38370. }
  38371. },
  38372. frontDressed: {
  38373. height: math.unit(2.9, "feet"),
  38374. name: "Front (Dressed)",
  38375. image: {
  38376. source: "./media/characters/rodney/front-dressed.svg",
  38377. extra: 1382/1241,
  38378. bottom: 385/1767
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(3 + 8/12, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(5 + 9/12, "feet"),
  38395. weight: math.unit(194, "lbs"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/zakail-sudekai/front.svg",
  38399. extra: 2696/2533,
  38400. bottom: 248/2944
  38401. }
  38402. },
  38403. maw: {
  38404. height: math.unit(1.35, "feet"),
  38405. name: "Maw",
  38406. image: {
  38407. source: "./media/characters/zakail-sudekai/maw.svg"
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(5 + 9/12, "feet"),
  38415. default: true
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38421. {
  38422. front: {
  38423. height: math.unit(8 + 4/12, "feet"),
  38424. weight: math.unit(1200, "lb"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/eleanor/front.svg",
  38428. extra: 1226/1192,
  38429. bottom: 52/1278
  38430. }
  38431. },
  38432. back: {
  38433. height: math.unit(8 + 4/12, "feet"),
  38434. weight: math.unit(1200, "lb"),
  38435. name: "Back",
  38436. image: {
  38437. source: "./media/characters/eleanor/back.svg",
  38438. extra: 1242/1184,
  38439. bottom: 60/1302
  38440. }
  38441. },
  38442. head: {
  38443. height: math.unit(2.62, "feet"),
  38444. name: "Head",
  38445. image: {
  38446. source: "./media/characters/eleanor/head.svg"
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(8 + 4/12, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(8 + 4/12, "feet"),
  38463. weight: math.unit(750, "lb"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/tanya/front.svg",
  38467. extra: 1749/1615,
  38468. bottom: 33/1782
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(8 + 4/12, "feet"),
  38476. default: true
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(5, "feet"),
  38485. weight: math.unit(225, "lb"),
  38486. name: "Front",
  38487. image: {
  38488. source: "./media/characters/cindy/front.svg",
  38489. extra: 1320/1250,
  38490. bottom: 42/1362
  38491. }
  38492. },
  38493. frontDressed: {
  38494. height: math.unit(5, "feet"),
  38495. weight: math.unit(225, "lb"),
  38496. name: "Front (Dressed)",
  38497. image: {
  38498. source: "./media/characters/cindy/front-dressed.svg",
  38499. extra: 1320/1250,
  38500. bottom: 42/1362
  38501. }
  38502. },
  38503. back: {
  38504. height: math.unit(5, "feet"),
  38505. weight: math.unit(225, "lb"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/cindy/back.svg",
  38509. extra: 1384/1346,
  38510. bottom: 14/1398
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Normal",
  38517. height: math.unit(5, "feet"),
  38518. default: true
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38524. {
  38525. front: {
  38526. height: math.unit(6 + 9/12, "feet"),
  38527. weight: math.unit(440, "lb"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/wilbur-owen/front.svg",
  38531. extra: 1575/1448,
  38532. bottom: 72/1647
  38533. }
  38534. },
  38535. back: {
  38536. height: math.unit(6 + 9/12, "feet"),
  38537. weight: math.unit(440, "lb"),
  38538. name: "Back",
  38539. image: {
  38540. source: "./media/characters/wilbur-owen/back.svg",
  38541. extra: 1578/1445,
  38542. bottom: 36/1614
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(6 + 9/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(6 + 5/12, "feet"),
  38559. weight: math.unit(650, "lb"),
  38560. name: "Front",
  38561. image: {
  38562. source: "./media/characters/keegan/front.svg",
  38563. extra: 2387/2198,
  38564. bottom: 33/2420
  38565. }
  38566. },
  38567. side: {
  38568. height: math.unit(6 + 5/12, "feet"),
  38569. weight: math.unit(650, "lb"),
  38570. name: "Side",
  38571. image: {
  38572. source: "./media/characters/keegan/side.svg",
  38573. extra: 2390/2202,
  38574. bottom: 47/2437
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(6 + 5/12, "feet"),
  38579. weight: math.unit(650, "lb"),
  38580. name: "Back",
  38581. image: {
  38582. source: "./media/characters/keegan/back.svg",
  38583. extra: 2418/2268,
  38584. bottom: 15/2433
  38585. }
  38586. },
  38587. frontSfw: {
  38588. height: math.unit(6 + 5/12, "feet"),
  38589. weight: math.unit(650, "lb"),
  38590. name: "Front (SFW)",
  38591. image: {
  38592. source: "./media/characters/keegan/front-sfw.svg",
  38593. extra: 2387/2198,
  38594. bottom: 33/2420
  38595. }
  38596. },
  38597. beans: {
  38598. height: math.unit(1.85, "feet"),
  38599. name: "Beans",
  38600. image: {
  38601. source: "./media/characters/keegan/beans.svg"
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Normal",
  38608. height: math.unit(6 + 5/12, "feet"),
  38609. default: true
  38610. },
  38611. ]
  38612. ))
  38613. characterMakers.push(() => makeCharacter(
  38614. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38615. {
  38616. front: {
  38617. height: math.unit(9, "feet"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/colton/front.svg",
  38621. extra: 1589/1326,
  38622. bottom: 139/1728
  38623. }
  38624. },
  38625. },
  38626. [
  38627. {
  38628. name: "Normal",
  38629. height: math.unit(9, "feet"),
  38630. default: true
  38631. },
  38632. ]
  38633. ))
  38634. characterMakers.push(() => makeCharacter(
  38635. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38636. {
  38637. front: {
  38638. height: math.unit(2 + 9/12, "feet"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/bora/front.svg",
  38642. extra: 1265/1250,
  38643. bottom: 24/1289
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(2 + 9/12, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(8, "feet"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/myu-myu/front.svg",
  38663. extra: 1949/1857,
  38664. bottom: 90/2039
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Normal",
  38671. height: math.unit(8, "feet"),
  38672. default: true
  38673. },
  38674. {
  38675. name: "Big",
  38676. height: math.unit(15, "feet")
  38677. },
  38678. {
  38679. name: "BIG",
  38680. height: math.unit(25, "feet")
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38686. {
  38687. side: {
  38688. height: math.unit(7 + 5/12, "feet"),
  38689. weight: math.unit(2800, "lb"),
  38690. name: "Side",
  38691. image: {
  38692. source: "./media/characters/haloren/side.svg",
  38693. extra: 1793/409,
  38694. bottom: 59/1852
  38695. }
  38696. },
  38697. frontPaw: {
  38698. height: math.unit(2.36, "feet"),
  38699. name: "Front paw",
  38700. image: {
  38701. source: "./media/characters/haloren/front-paw.svg"
  38702. }
  38703. },
  38704. hindPaw: {
  38705. height: math.unit(3.18, "feet"),
  38706. name: "Hind paw",
  38707. image: {
  38708. source: "./media/characters/haloren/hind-paw.svg"
  38709. }
  38710. },
  38711. maw: {
  38712. height: math.unit(5.05, "feet"),
  38713. name: "Maw",
  38714. image: {
  38715. source: "./media/characters/haloren/maw.svg"
  38716. }
  38717. },
  38718. dick: {
  38719. height: math.unit(2.90, "feet"),
  38720. name: "Dick",
  38721. image: {
  38722. source: "./media/characters/haloren/dick.svg"
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(7 + 5/12, "feet"),
  38730. default: true
  38731. },
  38732. {
  38733. name: "Enhanced",
  38734. height: math.unit(14 + 3/12, "feet")
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(171, "cm"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/kimmy/front.svg",
  38746. extra: 1491/1435,
  38747. bottom: 53/1544
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Small",
  38754. height: math.unit(9, "cm")
  38755. },
  38756. {
  38757. name: "Normal",
  38758. height: math.unit(171, "cm"),
  38759. default: true
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(8, "feet"),
  38768. weight: math.unit(300, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/galeboomer/front.svg",
  38772. extra: 4651/4415,
  38773. bottom: 162/4813
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(8, "feet"),
  38778. weight: math.unit(300, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/galeboomer/back.svg",
  38782. extra: 4544/4314,
  38783. bottom: 16/4560
  38784. }
  38785. },
  38786. frontAlt: {
  38787. height: math.unit(8, "feet"),
  38788. weight: math.unit(300, "lb"),
  38789. name: "Front (Alt)",
  38790. image: {
  38791. source: "./media/characters/galeboomer/front-alt.svg",
  38792. extra: 4458/4228,
  38793. bottom: 68/4526
  38794. }
  38795. },
  38796. maw: {
  38797. height: math.unit(1.2, "feet"),
  38798. name: "Maw",
  38799. image: {
  38800. source: "./media/characters/galeboomer/maw.svg"
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(8, "feet"),
  38808. default: true
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(5 + 9/12, "feet"),
  38817. weight: math.unit(120, "lb"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/chyr/front.svg",
  38821. extra: 1323/1254,
  38822. bottom: 63/1386
  38823. }
  38824. },
  38825. back: {
  38826. height: math.unit(5 + 9/12, "feet"),
  38827. weight: math.unit(120, "lb"),
  38828. name: "Back",
  38829. image: {
  38830. source: "./media/characters/chyr/back.svg",
  38831. extra: 1323/1252,
  38832. bottom: 48/1371
  38833. }
  38834. },
  38835. },
  38836. [
  38837. {
  38838. name: "Normal",
  38839. height: math.unit(5 + 9/12, "feet"),
  38840. default: true
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38846. {
  38847. front: {
  38848. height: math.unit(7, "feet"),
  38849. weight: math.unit(310, "lb"),
  38850. name: "Front",
  38851. image: {
  38852. source: "./media/characters/solarus/front.svg",
  38853. extra: 2415/2021,
  38854. bottom: 103/2518
  38855. }
  38856. },
  38857. back: {
  38858. height: math.unit(7, "feet"),
  38859. weight: math.unit(310, "lb"),
  38860. name: "Back",
  38861. image: {
  38862. source: "./media/characters/solarus/back.svg",
  38863. extra: 2463/2089,
  38864. bottom: 79/2542
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(7, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(16, "feet"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38884. extra: 1844/1780,
  38885. bottom: 58/1902
  38886. }
  38887. },
  38888. winterCoat: {
  38889. height: math.unit(16, "feet"),
  38890. name: "Winter Coat",
  38891. image: {
  38892. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38893. extra: 1807/1775,
  38894. bottom: 69/1876
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(16, "feet"),
  38902. default: true
  38903. },
  38904. {
  38905. name: "Chicago Size",
  38906. height: math.unit(560, "feet")
  38907. },
  38908. ]
  38909. ))
  38910. characterMakers.push(() => makeCharacter(
  38911. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38912. {
  38913. front: {
  38914. height: math.unit(11 + 6/12, "feet"),
  38915. weight: math.unit(1366, "lb"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/lexor/front.svg",
  38919. extra: 1560/1481,
  38920. bottom: 211/1771
  38921. }
  38922. },
  38923. back: {
  38924. height: math.unit(11 + 6/12, "feet"),
  38925. weight: math.unit(1366, "lb"),
  38926. name: "Back",
  38927. image: {
  38928. source: "./media/characters/lexor/back.svg",
  38929. extra: 1614/1533,
  38930. bottom: 76/1690
  38931. }
  38932. },
  38933. maw: {
  38934. height: math.unit(3, "feet"),
  38935. name: "Maw",
  38936. image: {
  38937. source: "./media/characters/lexor/maw.svg"
  38938. }
  38939. },
  38940. dick: {
  38941. height: math.unit(2.59, "feet"),
  38942. name: "Dick",
  38943. image: {
  38944. source: "./media/characters/lexor/dick.svg"
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(11 + 6/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(5 + 8/12, "feet"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/magnum/front.svg",
  38964. extra: 942/855,
  38965. bottom: 26/968
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(5 + 8/12, "feet"),
  38973. default: true
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38979. {
  38980. front: {
  38981. height: math.unit(18 + 4/12, "feet"),
  38982. weight: math.unit(1500, "kg"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/solas-sharpsman/front.svg",
  38986. extra: 1698/1589,
  38987. bottom: 0/1698
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(18 + 4/12, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(5 + 5/12, "feet"),
  39004. weight: math.unit(180, "lb"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/october/front.svg",
  39008. extra: 1800/1650,
  39009. bottom: 0/1800
  39010. }
  39011. },
  39012. frontNsfw: {
  39013. height: math.unit(5 + 5/12, "feet"),
  39014. weight: math.unit(180, "lb"),
  39015. name: "Front (NSFW)",
  39016. image: {
  39017. source: "./media/characters/october/front-nsfw.svg",
  39018. extra: 1392/1307,
  39019. bottom: 42/1434
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(5 + 5/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(8 + 6/12, "feet"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/essynkardi/front.svg",
  39039. extra: 1914/1846,
  39040. bottom: 22/1936
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(8 + 6/12, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(6 + 6/12, "feet"),
  39057. weight: math.unit(7, "lb"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/icky/front.svg",
  39061. extra: 813/782,
  39062. bottom: 66/879
  39063. }
  39064. },
  39065. back: {
  39066. height: math.unit(6 + 6/12, "feet"),
  39067. weight: math.unit(7, "lb"),
  39068. name: "Back",
  39069. image: {
  39070. source: "./media/characters/icky/back.svg",
  39071. extra: 754/735,
  39072. bottom: 56/810
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Normal",
  39079. height: math.unit(6 + 6/12, "feet"),
  39080. default: true
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(15, "feet"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/rojas/front.svg",
  39092. extra: 1462/1408,
  39093. bottom: 95/1557
  39094. }
  39095. },
  39096. back: {
  39097. height: math.unit(15, "feet"),
  39098. name: "Back",
  39099. image: {
  39100. source: "./media/characters/rojas/back.svg",
  39101. extra: 1023/954,
  39102. bottom: 28/1051
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Normal",
  39109. height: math.unit(15, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39116. {
  39117. frontHuman: {
  39118. height: math.unit(5 + 7/12, "feet"),
  39119. name: "Front (Human)",
  39120. image: {
  39121. source: "./media/characters/alek-dryagan/front-human.svg",
  39122. extra: 1687/1667,
  39123. bottom: 69/1756
  39124. }
  39125. },
  39126. backHuman: {
  39127. height: math.unit(5 + 7/12, "feet"),
  39128. name: "Back (Human)",
  39129. image: {
  39130. source: "./media/characters/alek-dryagan/back-human.svg",
  39131. extra: 1670/1649,
  39132. bottom: 65/1735
  39133. }
  39134. },
  39135. frontDemi: {
  39136. height: math.unit(65, "feet"),
  39137. name: "Front (Demi)",
  39138. image: {
  39139. source: "./media/characters/alek-dryagan/front-demi.svg",
  39140. extra: 1669/1642,
  39141. bottom: 49/1718
  39142. }
  39143. },
  39144. backDemi: {
  39145. height: math.unit(65, "feet"),
  39146. name: "Back (Demi)",
  39147. image: {
  39148. source: "./media/characters/alek-dryagan/back-demi.svg",
  39149. extra: 1658/1637,
  39150. bottom: 40/1698
  39151. }
  39152. },
  39153. mawHuman: {
  39154. height: math.unit(0.3, "feet"),
  39155. name: "Maw (Human)",
  39156. image: {
  39157. source: "./media/characters/alek-dryagan/maw-human.svg"
  39158. }
  39159. },
  39160. mawDemi: {
  39161. height: math.unit(3.8, "feet"),
  39162. name: "Maw (Demi)",
  39163. image: {
  39164. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(5 + 7/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39178. {
  39179. frontHuman: {
  39180. height: math.unit(5 + 2/12, "feet"),
  39181. name: "Front (Human)",
  39182. image: {
  39183. source: "./media/characters/gen/front-human.svg",
  39184. extra: 1627/1538,
  39185. bottom: 71/1698
  39186. }
  39187. },
  39188. backHuman: {
  39189. height: math.unit(5 + 2/12, "feet"),
  39190. name: "Back (Human)",
  39191. image: {
  39192. source: "./media/characters/gen/back-human.svg",
  39193. extra: 1638/1548,
  39194. bottom: 69/1707
  39195. }
  39196. },
  39197. frontDemi: {
  39198. height: math.unit(5 + 2/12, "feet"),
  39199. name: "Front (Demi)",
  39200. image: {
  39201. source: "./media/characters/gen/front-demi.svg",
  39202. extra: 1627/1538,
  39203. bottom: 71/1698
  39204. }
  39205. },
  39206. backDemi: {
  39207. height: math.unit(5 + 2/12, "feet"),
  39208. name: "Back (Demi)",
  39209. image: {
  39210. source: "./media/characters/gen/back-demi.svg",
  39211. extra: 1638/1548,
  39212. bottom: 69/1707
  39213. }
  39214. },
  39215. },
  39216. [
  39217. {
  39218. name: "Normal",
  39219. height: math.unit(5 + 2/12, "feet"),
  39220. default: true
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39226. {
  39227. frontImp: {
  39228. height: math.unit(1 + 11/12, "feet"),
  39229. name: "Front (Imp)",
  39230. image: {
  39231. source: "./media/characters/max-kobold/front-imp.svg",
  39232. extra: 1238/1134,
  39233. bottom: 81/1319
  39234. }
  39235. },
  39236. backImp: {
  39237. height: math.unit(1 + 11/12, "feet"),
  39238. name: "Back (Imp)",
  39239. image: {
  39240. source: "./media/characters/max-kobold/back-imp.svg",
  39241. extra: 1334/1175,
  39242. bottom: 34/1368
  39243. }
  39244. },
  39245. frontDemi: {
  39246. height: math.unit(5 + 9/12, "feet"),
  39247. name: "Front (Demi)",
  39248. image: {
  39249. source: "./media/characters/max-kobold/front-demi.svg",
  39250. extra: 1715/1685,
  39251. bottom: 54/1769
  39252. }
  39253. },
  39254. backDemi: {
  39255. height: math.unit(5 + 9/12, "feet"),
  39256. name: "Back (Demi)",
  39257. image: {
  39258. source: "./media/characters/max-kobold/back-demi.svg",
  39259. extra: 1752/1729,
  39260. bottom: 41/1793
  39261. }
  39262. },
  39263. handImp: {
  39264. height: math.unit(0.45, "feet"),
  39265. name: "Hand (Imp)",
  39266. image: {
  39267. source: "./media/characters/max-kobold/hand.svg"
  39268. }
  39269. },
  39270. pawImp: {
  39271. height: math.unit(0.46, "feet"),
  39272. name: "Paw (Imp)",
  39273. image: {
  39274. source: "./media/characters/max-kobold/paw.svg"
  39275. }
  39276. },
  39277. handDemi: {
  39278. height: math.unit(0.80, "feet"),
  39279. name: "Hand (Demi)",
  39280. image: {
  39281. source: "./media/characters/max-kobold/hand.svg"
  39282. }
  39283. },
  39284. pawDemi: {
  39285. height: math.unit(1.1, "feet"),
  39286. name: "Paw (Demi)",
  39287. image: {
  39288. source: "./media/characters/max-kobold/paw.svg"
  39289. }
  39290. },
  39291. headImp: {
  39292. height: math.unit(1.33, "feet"),
  39293. name: "Head (Imp)",
  39294. image: {
  39295. source: "./media/characters/max-kobold/head-imp.svg"
  39296. }
  39297. },
  39298. mawImp: {
  39299. height: math.unit(0.75, "feet"),
  39300. name: "Maw (Imp)",
  39301. image: {
  39302. source: "./media/characters/max-kobold/maw-imp.svg"
  39303. }
  39304. },
  39305. mawDemi: {
  39306. height: math.unit(0.42, "feet"),
  39307. name: "Maw (Demi)",
  39308. image: {
  39309. source: "./media/characters/max-kobold/maw-demi.svg"
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(1 + 11/12, "feet"),
  39317. default: true
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(7 + 5/12, "feet"),
  39326. name: "Front",
  39327. image: {
  39328. source: "./media/characters/carbon/front.svg",
  39329. extra: 1754/1689,
  39330. bottom: 65/1819
  39331. }
  39332. },
  39333. back: {
  39334. height: math.unit(7 + 5/12, "feet"),
  39335. name: "Back",
  39336. image: {
  39337. source: "./media/characters/carbon/back.svg",
  39338. extra: 1762/1695,
  39339. bottom: 24/1786
  39340. }
  39341. },
  39342. frontGigantamax: {
  39343. height: math.unit(150, "feet"),
  39344. name: "Front (Gigantamax)",
  39345. image: {
  39346. source: "./media/characters/carbon/front-gigantamax.svg",
  39347. extra: 1826/1669,
  39348. bottom: 59/1885
  39349. }
  39350. },
  39351. backGigantamax: {
  39352. height: math.unit(150, "feet"),
  39353. name: "Back (Gigantamax)",
  39354. image: {
  39355. source: "./media/characters/carbon/back-gigantamax.svg",
  39356. extra: 1796/1653,
  39357. bottom: 53/1849
  39358. }
  39359. },
  39360. maw: {
  39361. height: math.unit(0.48, "feet"),
  39362. name: "Maw",
  39363. image: {
  39364. source: "./media/characters/carbon/maw.svg"
  39365. }
  39366. },
  39367. mawGigantamax: {
  39368. height: math.unit(7.5, "feet"),
  39369. name: "Maw (Gigantamax)",
  39370. image: {
  39371. source: "./media/characters/carbon/maw-gigantamax.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(7 + 5/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(6, "feet"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/maverick/front.svg",
  39391. extra: 1672/1661,
  39392. bottom: 85/1757
  39393. }
  39394. },
  39395. back: {
  39396. height: math.unit(6, "feet"),
  39397. name: "Back",
  39398. image: {
  39399. source: "./media/characters/maverick/back.svg",
  39400. extra: 1642/1631,
  39401. bottom: 38/1680
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(6, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(15, "feet"),
  39418. weight: math.unit(615, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/grockle/front.svg",
  39422. extra: 1535/1427,
  39423. bottom: 56/1591
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(15, "feet"),
  39431. default: true
  39432. },
  39433. {
  39434. name: "Large",
  39435. height: math.unit(150, "feet")
  39436. },
  39437. {
  39438. name: "Macro",
  39439. height: math.unit(1876, "feet")
  39440. },
  39441. {
  39442. name: "Mega Macro",
  39443. height: math.unit(121940, "feet")
  39444. },
  39445. {
  39446. name: "Giga Macro",
  39447. height: math.unit(750, "km")
  39448. },
  39449. {
  39450. name: "Tera Macro",
  39451. height: math.unit(750000, "km")
  39452. },
  39453. {
  39454. name: "Galactic",
  39455. height: math.unit(1.4e5, "km")
  39456. },
  39457. {
  39458. name: "Godlike",
  39459. height: math.unit(9.8e280, "galaxies")
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(11, "meters"),
  39468. weight: math.unit(20, "tonnes"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/alistair/front.svg",
  39472. extra: 1265/1009,
  39473. bottom: 93/1358
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Normal",
  39480. height: math.unit(11, "meters"),
  39481. default: true
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39487. {
  39488. front: {
  39489. height: math.unit(5 + 8/12, "feet"),
  39490. name: "Front",
  39491. image: {
  39492. source: "./media/characters/haruka/front.svg",
  39493. extra: 2012/1952,
  39494. bottom: 0/2012
  39495. }
  39496. },
  39497. },
  39498. [
  39499. {
  39500. name: "Normal",
  39501. height: math.unit(5 + 8/12, "feet"),
  39502. default: true
  39503. },
  39504. ]
  39505. ))
  39506. characterMakers.push(() => makeCharacter(
  39507. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39508. {
  39509. back: {
  39510. height: math.unit(9, "feet"),
  39511. name: "Back",
  39512. image: {
  39513. source: "./media/characters/vivian-sylveon/back.svg",
  39514. extra: 1853/1714,
  39515. bottom: 0/1853
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(9, "feet"),
  39523. default: true
  39524. },
  39525. {
  39526. name: "Macro",
  39527. height: math.unit(500, "feet")
  39528. },
  39529. {
  39530. name: "Megamacro",
  39531. height: math.unit(600, "miles")
  39532. },
  39533. {
  39534. name: "Gigamacro",
  39535. height: math.unit(30000, "miles")
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39541. {
  39542. anthro: {
  39543. height: math.unit(5 + 10/12, "feet"),
  39544. weight: math.unit(100, "lb"),
  39545. name: "Anthro",
  39546. image: {
  39547. source: "./media/characters/daiki/anthro.svg",
  39548. extra: 1115/1027,
  39549. bottom: 69/1184
  39550. }
  39551. },
  39552. feral: {
  39553. height: math.unit(200, "feet"),
  39554. name: "Feral",
  39555. image: {
  39556. source: "./media/characters/daiki/feral.svg",
  39557. extra: 1256/313,
  39558. bottom: 39/1295
  39559. }
  39560. },
  39561. feralHead: {
  39562. height: math.unit(171, "feet"),
  39563. name: "Feral Head",
  39564. image: {
  39565. source: "./media/characters/daiki/feral-head.svg"
  39566. }
  39567. },
  39568. manaDragon: {
  39569. height: math.unit(170, "meters"),
  39570. name: "Mana-dragon",
  39571. image: {
  39572. source: "./media/characters/daiki/mana-dragon.svg",
  39573. extra: 763/420,
  39574. bottom: 97/860
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Normal",
  39581. height: math.unit(5 + 10/12, "feet"),
  39582. default: true
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39588. {
  39589. fullyEquippedFront: {
  39590. height: math.unit(3 + 1/12, "feet"),
  39591. weight: math.unit(24, "lb"),
  39592. name: "Fully Equipped (Front)",
  39593. image: {
  39594. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39595. extra: 687/605,
  39596. bottom: 18/705
  39597. }
  39598. },
  39599. fullyEquippedBack: {
  39600. height: math.unit(3 + 1/12, "feet"),
  39601. weight: math.unit(24, "lb"),
  39602. name: "Fully Equipped (Back)",
  39603. image: {
  39604. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39605. extra: 689/590,
  39606. bottom: 18/707
  39607. }
  39608. },
  39609. dailyWear: {
  39610. height: math.unit(3 + 1/12, "feet"),
  39611. weight: math.unit(24, "lb"),
  39612. name: "Daily Wear",
  39613. image: {
  39614. source: "./media/characters/tea-spot/daily-wear.svg",
  39615. extra: 701/620,
  39616. bottom: 21/722
  39617. }
  39618. },
  39619. maidWork: {
  39620. height: math.unit(3 + 1/12, "feet"),
  39621. weight: math.unit(24, "lb"),
  39622. name: "Maid Work",
  39623. image: {
  39624. source: "./media/characters/tea-spot/maid-work.svg",
  39625. extra: 693/609,
  39626. bottom: 15/708
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Normal",
  39633. height: math.unit(3 + 1/12, "feet"),
  39634. default: true
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(175, "cm"),
  39643. weight: math.unit(75, "kg"),
  39644. name: "Front",
  39645. image: {
  39646. source: "./media/characters/chee/front.svg",
  39647. extra: 1796/1740,
  39648. bottom: 40/1836
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Micro-Micro",
  39655. height: math.unit(1, "nm")
  39656. },
  39657. {
  39658. name: "Micro-erst",
  39659. height: math.unit(1, "micrometer")
  39660. },
  39661. {
  39662. name: "Micro-er",
  39663. height: math.unit(1, "cm")
  39664. },
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(175, "cm"),
  39668. default: true
  39669. },
  39670. {
  39671. name: "Macro",
  39672. height: math.unit(100, "m")
  39673. },
  39674. {
  39675. name: "Macro-er",
  39676. height: math.unit(1, "km")
  39677. },
  39678. {
  39679. name: "Macro-erst",
  39680. height: math.unit(10, "km")
  39681. },
  39682. {
  39683. name: "Macro-Macro",
  39684. height: math.unit(100, "km")
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39690. {
  39691. front: {
  39692. height: math.unit(11 + 9/12, "feet"),
  39693. weight: math.unit(935, "lb"),
  39694. name: "Front",
  39695. image: {
  39696. source: "./media/characters/kingsley/front.svg",
  39697. extra: 1803/1674,
  39698. bottom: 127/1930
  39699. }
  39700. },
  39701. frontNude: {
  39702. height: math.unit(11 + 9/12, "feet"),
  39703. weight: math.unit(935, "lb"),
  39704. name: "Front (Nude)",
  39705. image: {
  39706. source: "./media/characters/kingsley/front-nude.svg",
  39707. extra: 1803/1674,
  39708. bottom: 127/1930
  39709. }
  39710. },
  39711. },
  39712. [
  39713. {
  39714. name: "Normal",
  39715. height: math.unit(11 + 9/12, "feet"),
  39716. default: true
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39722. {
  39723. side: {
  39724. height: math.unit(9, "feet"),
  39725. name: "Side",
  39726. image: {
  39727. source: "./media/characters/rymel/side.svg",
  39728. extra: 792/469,
  39729. bottom: 121/913
  39730. }
  39731. },
  39732. maw: {
  39733. height: math.unit(2.4, "meters"),
  39734. name: "Maw",
  39735. image: {
  39736. source: "./media/characters/rymel/maw.svg"
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "House Drake",
  39743. height: math.unit(2, "feet")
  39744. },
  39745. {
  39746. name: "Reduced",
  39747. height: math.unit(4.5, "feet")
  39748. },
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(9, "feet"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(1.74, "meters"),
  39761. weight: math.unit(55, "kg"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/rubus/front.svg",
  39765. extra: 1894/1742,
  39766. bottom: 44/1938
  39767. }
  39768. },
  39769. },
  39770. [
  39771. {
  39772. name: "Normal",
  39773. height: math.unit(1.74, "meters"),
  39774. default: true
  39775. },
  39776. ]
  39777. ))
  39778. characterMakers.push(() => makeCharacter(
  39779. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39780. {
  39781. front: {
  39782. height: math.unit(5 + 2/12, "feet"),
  39783. weight: math.unit(112, "lb"),
  39784. name: "Front",
  39785. image: {
  39786. source: "./media/characters/cassie-kingston/front.svg",
  39787. extra: 1438/1390,
  39788. bottom: 47/1485
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(5 + 2/12, "feet"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Macro",
  39800. height: math.unit(128, "feet")
  39801. },
  39802. {
  39803. name: "Megamacro",
  39804. height: math.unit(2.56, "miles")
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(7, "feet"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/fox/front.svg",
  39816. extra: 1798/1703,
  39817. bottom: 55/1853
  39818. }
  39819. },
  39820. back: {
  39821. height: math.unit(7, "feet"),
  39822. name: "Back",
  39823. image: {
  39824. source: "./media/characters/fox/back.svg",
  39825. extra: 1748/1649,
  39826. bottom: 32/1780
  39827. }
  39828. },
  39829. head: {
  39830. height: math.unit(1.95, "feet"),
  39831. name: "Head",
  39832. image: {
  39833. source: "./media/characters/fox/head.svg"
  39834. }
  39835. },
  39836. dick: {
  39837. height: math.unit(1.33, "feet"),
  39838. name: "Dick",
  39839. image: {
  39840. source: "./media/characters/fox/dick.svg"
  39841. }
  39842. },
  39843. foot: {
  39844. height: math.unit(1, "feet"),
  39845. name: "Foot",
  39846. image: {
  39847. source: "./media/characters/fox/foot.svg"
  39848. }
  39849. },
  39850. paw: {
  39851. height: math.unit(0.92, "feet"),
  39852. name: "Paw",
  39853. image: {
  39854. source: "./media/characters/fox/paw.svg"
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Small",
  39861. height: math.unit(3, "inches")
  39862. },
  39863. {
  39864. name: "\"Realistic\"",
  39865. height: math.unit(7, "feet")
  39866. },
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(150, "feet"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "BIG",
  39874. height: math.unit(1200, "feet")
  39875. },
  39876. {
  39877. name: "👀",
  39878. height: math.unit(5, "miles")
  39879. },
  39880. {
  39881. name: "👀👀👀",
  39882. height: math.unit(64, "miles")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(625, "feet"),
  39891. name: "Front",
  39892. image: {
  39893. source: "./media/characters/asonja-rossa/front.svg",
  39894. extra: 1833/1686,
  39895. bottom: 24/1857
  39896. }
  39897. },
  39898. back: {
  39899. height: math.unit(625, "feet"),
  39900. name: "Back",
  39901. image: {
  39902. source: "./media/characters/asonja-rossa/back.svg",
  39903. extra: 1852/1753,
  39904. bottom: 26/1878
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Macro",
  39911. height: math.unit(625, "feet"),
  39912. default: true
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39918. {
  39919. side: {
  39920. height: math.unit(8, "feet"),
  39921. name: "Side",
  39922. image: {
  39923. source: "./media/characters/rezukii/side.svg",
  39924. extra: 979/542,
  39925. bottom: 87/1066
  39926. }
  39927. },
  39928. sitting: {
  39929. height: math.unit(14.6, "feet"),
  39930. name: "Sitting",
  39931. image: {
  39932. source: "./media/characters/rezukii/sitting.svg",
  39933. extra: 1023/813,
  39934. bottom: 45/1068
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Tiny",
  39941. height: math.unit(2, "feet")
  39942. },
  39943. {
  39944. name: "Smol",
  39945. height: math.unit(4, "feet")
  39946. },
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(8, "feet"),
  39950. default: true
  39951. },
  39952. {
  39953. name: "Big",
  39954. height: math.unit(12, "feet")
  39955. },
  39956. {
  39957. name: "Macro",
  39958. height: math.unit(30, "feet")
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(14, "feet"),
  39967. weight: math.unit(9.5, "tonnes"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/dawnheart/front.svg",
  39971. extra: 2792/2675,
  39972. bottom: 64/2856
  39973. }
  39974. },
  39975. },
  39976. [
  39977. {
  39978. name: "Normal",
  39979. height: math.unit(14, "feet"),
  39980. default: true
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39986. {
  39987. front: {
  39988. height: math.unit(1.7, "m"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/gladi/front.svg",
  39992. extra: 1460/1362,
  39993. bottom: 19/1479
  39994. }
  39995. },
  39996. back: {
  39997. height: math.unit(1.7, "m"),
  39998. name: "Back",
  39999. image: {
  40000. source: "./media/characters/gladi/back.svg",
  40001. extra: 1459/1357,
  40002. bottom: 12/1471
  40003. }
  40004. },
  40005. feral: {
  40006. height: math.unit(2.05, "m"),
  40007. name: "Feral",
  40008. image: {
  40009. source: "./media/characters/gladi/feral.svg",
  40010. extra: 821/557,
  40011. bottom: 91/912
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Shortest",
  40018. height: math.unit(70, "cm")
  40019. },
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(1.7, "m")
  40023. },
  40024. {
  40025. name: "Macro",
  40026. height: math.unit(10, "m"),
  40027. default: true
  40028. },
  40029. {
  40030. name: "Tallest",
  40031. height: math.unit(200, "m")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(5 + 7/12, "feet"),
  40040. weight: math.unit(2, "tons"),
  40041. name: "Front",
  40042. image: {
  40043. source: "./media/characters/erdno/front.svg",
  40044. extra: 1234/1129,
  40045. bottom: 35/1269
  40046. }
  40047. },
  40048. angled: {
  40049. height: math.unit(5 + 7/12, "feet"),
  40050. weight: math.unit(2, "tons"),
  40051. name: "Angled",
  40052. image: {
  40053. source: "./media/characters/erdno/angled.svg",
  40054. extra: 1185/1139,
  40055. bottom: 36/1221
  40056. }
  40057. },
  40058. side: {
  40059. height: math.unit(5 + 7/12, "feet"),
  40060. weight: math.unit(2, "tons"),
  40061. name: "Side",
  40062. image: {
  40063. source: "./media/characters/erdno/side.svg",
  40064. extra: 1191/1144,
  40065. bottom: 40/1231
  40066. }
  40067. },
  40068. back: {
  40069. height: math.unit(5 + 7/12, "feet"),
  40070. weight: math.unit(2, "tons"),
  40071. name: "Back",
  40072. image: {
  40073. source: "./media/characters/erdno/back.svg",
  40074. extra: 1202/1146,
  40075. bottom: 17/1219
  40076. }
  40077. },
  40078. frontNsfw: {
  40079. height: math.unit(5 + 7/12, "feet"),
  40080. weight: math.unit(2, "tons"),
  40081. name: "Front (NSFW)",
  40082. image: {
  40083. source: "./media/characters/erdno/front-nsfw.svg",
  40084. extra: 1234/1129,
  40085. bottom: 35/1269
  40086. }
  40087. },
  40088. angledNsfw: {
  40089. height: math.unit(5 + 7/12, "feet"),
  40090. weight: math.unit(2, "tons"),
  40091. name: "Angled (NSFW)",
  40092. image: {
  40093. source: "./media/characters/erdno/angled-nsfw.svg",
  40094. extra: 1185/1139,
  40095. bottom: 36/1221
  40096. }
  40097. },
  40098. sideNsfw: {
  40099. height: math.unit(5 + 7/12, "feet"),
  40100. weight: math.unit(2, "tons"),
  40101. name: "Side (NSFW)",
  40102. image: {
  40103. source: "./media/characters/erdno/side-nsfw.svg",
  40104. extra: 1191/1144,
  40105. bottom: 40/1231
  40106. }
  40107. },
  40108. backNsfw: {
  40109. height: math.unit(5 + 7/12, "feet"),
  40110. weight: math.unit(2, "tons"),
  40111. name: "Back (NSFW)",
  40112. image: {
  40113. source: "./media/characters/erdno/back-nsfw.svg",
  40114. extra: 1202/1146,
  40115. bottom: 17/1219
  40116. }
  40117. },
  40118. frontHyper: {
  40119. height: math.unit(5 + 7/12, "feet"),
  40120. weight: math.unit(2, "tons"),
  40121. name: "Front (Hyper)",
  40122. image: {
  40123. source: "./media/characters/erdno/front-hyper.svg",
  40124. extra: 1298/1136,
  40125. bottom: 35/1333
  40126. }
  40127. },
  40128. },
  40129. [
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(5 + 7/12, "feet"),
  40133. default: true
  40134. },
  40135. {
  40136. name: "Big",
  40137. height: math.unit(5.7, "meters")
  40138. },
  40139. {
  40140. name: "Macro",
  40141. height: math.unit(5.7, "kilometers")
  40142. },
  40143. {
  40144. name: "Megamacro",
  40145. height: math.unit(5.7, "earths")
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(5 + 10/12, "feet"),
  40154. weight: math.unit(150, "lb"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/jamie/front.svg",
  40158. extra: 1908/1768,
  40159. bottom: 19/1927
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Minimum",
  40166. height: math.unit(2, "cm")
  40167. },
  40168. {
  40169. name: "Micro",
  40170. height: math.unit(3, "inches")
  40171. },
  40172. {
  40173. name: "Normal",
  40174. height: math.unit(5 + 10/12, "feet"),
  40175. default: true
  40176. },
  40177. {
  40178. name: "Macro",
  40179. height: math.unit(150, "feet")
  40180. },
  40181. {
  40182. name: "Megamacro",
  40183. height: math.unit(10000, "m")
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(2, "meters"),
  40192. weight: math.unit(100, "kg"),
  40193. name: "Front",
  40194. image: {
  40195. source: "./media/characters/shiron/front.svg",
  40196. extra: 2103/1985,
  40197. bottom: 98/2201
  40198. }
  40199. },
  40200. back: {
  40201. height: math.unit(2, "meters"),
  40202. weight: math.unit(100, "kg"),
  40203. name: "Back",
  40204. image: {
  40205. source: "./media/characters/shiron/back.svg",
  40206. extra: 2110/2015,
  40207. bottom: 89/2199
  40208. }
  40209. },
  40210. hand: {
  40211. height: math.unit(0.96, "feet"),
  40212. name: "Hand",
  40213. image: {
  40214. source: "./media/characters/shiron/hand.svg"
  40215. }
  40216. },
  40217. foot: {
  40218. height: math.unit(1.464, "feet"),
  40219. name: "Foot",
  40220. image: {
  40221. source: "./media/characters/shiron/foot.svg"
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(2, "meters")
  40229. },
  40230. {
  40231. name: "Macro",
  40232. height: math.unit(500, "meters"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Megamacro",
  40237. height: math.unit(20, "km")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(6, "feet"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/sam/front.svg",
  40249. extra: 849/826,
  40250. bottom: 19/868
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Normal",
  40257. height: math.unit(6, "feet"),
  40258. default: true
  40259. },
  40260. ]
  40261. ))
  40262. characterMakers.push(() => makeCharacter(
  40263. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40264. {
  40265. front: {
  40266. height: math.unit(8 + 4/12, "feet"),
  40267. weight: math.unit(122, "kg"),
  40268. name: "Front",
  40269. image: {
  40270. source: "./media/characters/namori-kurogawa/front.svg",
  40271. extra: 1894/1576,
  40272. bottom: 34/1928
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Normal",
  40279. height: math.unit(8 + 4/12, "feet"),
  40280. default: true
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(9, "feet"),
  40289. weight: math.unit(621, "lb"),
  40290. name: "Front",
  40291. image: {
  40292. source: "./media/characters/unmru/front.svg",
  40293. extra: 1853/1747,
  40294. bottom: 73/1926
  40295. }
  40296. },
  40297. side: {
  40298. height: math.unit(9, "feet"),
  40299. weight: math.unit(621, "lb"),
  40300. name: "Side",
  40301. image: {
  40302. source: "./media/characters/unmru/side.svg",
  40303. extra: 1781/1671,
  40304. bottom: 127/1908
  40305. }
  40306. },
  40307. back: {
  40308. height: math.unit(9, "feet"),
  40309. weight: math.unit(621, "lb"),
  40310. name: "Back",
  40311. image: {
  40312. source: "./media/characters/unmru/back.svg",
  40313. extra: 1894/1765,
  40314. bottom: 75/1969
  40315. }
  40316. },
  40317. dick: {
  40318. height: math.unit(3, "feet"),
  40319. weight: math.unit(35, "lb"),
  40320. name: "Dick",
  40321. image: {
  40322. source: "./media/characters/unmru/dick.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(9, "feet")
  40330. },
  40331. {
  40332. name: "Natural",
  40333. height: math.unit(27, "feet"),
  40334. default: true
  40335. },
  40336. {
  40337. name: "Giant",
  40338. height: math.unit(90, "feet")
  40339. },
  40340. {
  40341. name: "Kaiju",
  40342. height: math.unit(270, "feet")
  40343. },
  40344. {
  40345. name: "Macro",
  40346. height: math.unit(900, "feet")
  40347. },
  40348. {
  40349. name: "Macro+",
  40350. height: math.unit(2700, "feet")
  40351. },
  40352. {
  40353. name: "Megamacro",
  40354. height: math.unit(9000, "feet")
  40355. },
  40356. {
  40357. name: "City-Crushing",
  40358. height: math.unit(27000, "feet")
  40359. },
  40360. {
  40361. name: "Mountain-Mashing",
  40362. height: math.unit(90000, "feet")
  40363. },
  40364. {
  40365. name: "Earth-Eclipsing",
  40366. height: math.unit(2.7e8, "feet")
  40367. },
  40368. {
  40369. name: "Sol-Swallowing",
  40370. height: math.unit(9e10, "feet")
  40371. },
  40372. {
  40373. name: "Majoris-Munching",
  40374. height: math.unit(2.7e13, "feet")
  40375. },
  40376. ]
  40377. ))
  40378. characterMakers.push(() => makeCharacter(
  40379. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40380. {
  40381. front: {
  40382. height: math.unit(1, "inch"),
  40383. name: "Front",
  40384. image: {
  40385. source: "./media/characters/squeaks-mouse/front.svg",
  40386. extra: 352/308,
  40387. bottom: 25/377
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Micro",
  40394. height: math.unit(1, "inch"),
  40395. default: true
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40401. {
  40402. side: {
  40403. height: math.unit(35, "feet"),
  40404. name: "Side",
  40405. image: {
  40406. source: "./media/characters/sayko/side.svg",
  40407. extra: 1697/1021,
  40408. bottom: 82/1779
  40409. }
  40410. },
  40411. head: {
  40412. height: math.unit(16, "feet"),
  40413. name: "Head",
  40414. image: {
  40415. source: "./media/characters/sayko/head.svg"
  40416. }
  40417. },
  40418. forepaw: {
  40419. height: math.unit(7.85, "feet"),
  40420. name: "Forepaw",
  40421. image: {
  40422. source: "./media/characters/sayko/forepaw.svg"
  40423. }
  40424. },
  40425. hindpaw: {
  40426. height: math.unit(8.8, "feet"),
  40427. name: "Hindpaw",
  40428. image: {
  40429. source: "./media/characters/sayko/hindpaw.svg"
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Normal",
  40436. height: math.unit(35, "feet"),
  40437. default: true
  40438. },
  40439. {
  40440. name: "Colossus",
  40441. height: math.unit(100, "meters")
  40442. },
  40443. {
  40444. name: "\"Small\" Deity",
  40445. height: math.unit(1, "km")
  40446. },
  40447. {
  40448. name: "\"Large\" Deity",
  40449. height: math.unit(15, "km")
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(6, "feet"),
  40458. weight: math.unit(250, "lb"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/mukiro/front.svg",
  40462. extra: 1368/1310,
  40463. bottom: 34/1402
  40464. }
  40465. },
  40466. },
  40467. [
  40468. {
  40469. name: "Normal",
  40470. height: math.unit(6, "feet"),
  40471. default: true
  40472. },
  40473. ]
  40474. ))
  40475. characterMakers.push(() => makeCharacter(
  40476. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40477. {
  40478. front: {
  40479. height: math.unit(12 + 4/12, "feet"),
  40480. name: "Front",
  40481. image: {
  40482. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40483. extra: 1346/1311,
  40484. bottom: 65/1411
  40485. }
  40486. },
  40487. },
  40488. [
  40489. {
  40490. name: "Base",
  40491. height: math.unit(12 + 4/12, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(150, "feet")
  40497. },
  40498. {
  40499. name: "Mega",
  40500. height: math.unit(2, "miles")
  40501. },
  40502. {
  40503. name: "Demi God",
  40504. height: math.unit(4, "AU")
  40505. },
  40506. {
  40507. name: "God Size",
  40508. height: math.unit(1, "universe")
  40509. },
  40510. ]
  40511. ))
  40512. characterMakers.push(() => makeCharacter(
  40513. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40514. {
  40515. front: {
  40516. height: math.unit(3 + 3/12, "feet"),
  40517. weight: math.unit(88, "lb"),
  40518. name: "Front",
  40519. image: {
  40520. source: "./media/characters/trey/front.svg",
  40521. extra: 1815/1509,
  40522. bottom: 60/1875
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(3 + 3/12, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40536. {
  40537. front: {
  40538. height: math.unit(4, "meters"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/adelonda/front.svg",
  40542. extra: 1077/982,
  40543. bottom: 39/1116
  40544. }
  40545. },
  40546. back: {
  40547. height: math.unit(4, "meters"),
  40548. name: "Back",
  40549. image: {
  40550. source: "./media/characters/adelonda/back.svg",
  40551. extra: 1105/1003,
  40552. bottom: 25/1130
  40553. }
  40554. },
  40555. feral: {
  40556. height: math.unit(40/1.5, "meters"),
  40557. name: "Feral",
  40558. image: {
  40559. source: "./media/characters/adelonda/feral.svg",
  40560. extra: 597/271,
  40561. bottom: 387/984
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Normal",
  40568. height: math.unit(4, "meters"),
  40569. default: true
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(8 + 4/12, "feet"),
  40578. weight: math.unit(670, "lb"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/acadiel/front.svg",
  40582. extra: 1901/1595,
  40583. bottom: 142/2043
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(8 + 4/12, "feet"),
  40591. default: true
  40592. },
  40593. {
  40594. name: "Macro",
  40595. height: math.unit(200, "feet")
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(6 + 2/12, "feet"),
  40604. weight: math.unit(185, "lb"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/kayne-ein/front.svg",
  40608. extra: 1780/1560,
  40609. bottom: 81/1861
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Normal",
  40616. height: math.unit(6 + 2/12, "feet"),
  40617. default: true
  40618. },
  40619. {
  40620. name: "Transformation Stage",
  40621. height: math.unit(15, "feet")
  40622. },
  40623. {
  40624. name: "Macro",
  40625. height: math.unit(150, "feet")
  40626. },
  40627. {
  40628. name: "Earth's Shadow",
  40629. height: math.unit(6200, "miles")
  40630. },
  40631. {
  40632. name: "Universal Demon",
  40633. height: math.unit(28e9, "parsecs")
  40634. },
  40635. {
  40636. name: "Multiverse God",
  40637. height: math.unit(3, "multiverses")
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(5 + 5/12, "feet"),
  40646. name: "Front",
  40647. image: {
  40648. source: "./media/characters/fawn/front.svg",
  40649. extra: 1873/1731,
  40650. bottom: 95/1968
  40651. }
  40652. },
  40653. back: {
  40654. height: math.unit(5 + 5/12, "feet"),
  40655. name: "Back",
  40656. image: {
  40657. source: "./media/characters/fawn/back.svg",
  40658. extra: 1813/1700,
  40659. bottom: 14/1827
  40660. }
  40661. },
  40662. hoof: {
  40663. height: math.unit(1.45, "feet"),
  40664. name: "Hoof",
  40665. image: {
  40666. source: "./media/characters/fawn/hoof.svg"
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Normal",
  40673. height: math.unit(5 + 5/12, "feet"),
  40674. default: true
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40680. {
  40681. front: {
  40682. height: math.unit(2 + 5/12, "feet"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/orion/front.svg",
  40686. extra: 1366/1304,
  40687. bottom: 43/1409
  40688. }
  40689. },
  40690. paw: {
  40691. height: math.unit(0.52, "feet"),
  40692. name: "Paw",
  40693. image: {
  40694. source: "./media/characters/orion/paw.svg"
  40695. }
  40696. },
  40697. },
  40698. [
  40699. {
  40700. name: "Normal",
  40701. height: math.unit(2 + 5/12, "feet"),
  40702. default: true
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(5 + 10/12, "feet"),
  40711. name: "Front",
  40712. image: {
  40713. source: "./media/characters/vera/front.svg",
  40714. extra: 1680/1575,
  40715. bottom: 49/1729
  40716. }
  40717. },
  40718. back: {
  40719. height: math.unit(5 + 10/12, "feet"),
  40720. name: "Back",
  40721. image: {
  40722. source: "./media/characters/vera/back.svg",
  40723. extra: 1700/1588,
  40724. bottom: 18/1718
  40725. }
  40726. },
  40727. arcanine: {
  40728. height: math.unit(6 + 8/12, "feet"),
  40729. name: "Arcanine",
  40730. image: {
  40731. source: "./media/characters/vera/arcanine.svg",
  40732. extra: 1590/1511,
  40733. bottom: 71/1661
  40734. }
  40735. },
  40736. maw: {
  40737. height: math.unit(0.82, "feet"),
  40738. name: "Maw",
  40739. image: {
  40740. source: "./media/characters/vera/maw.svg"
  40741. }
  40742. },
  40743. mawArcanine: {
  40744. height: math.unit(0.97, "feet"),
  40745. name: "Maw (Arcanine)",
  40746. image: {
  40747. source: "./media/characters/vera/maw-arcanine.svg"
  40748. }
  40749. },
  40750. paw: {
  40751. height: math.unit(0.75, "feet"),
  40752. name: "Paw",
  40753. image: {
  40754. source: "./media/characters/vera/paw.svg"
  40755. }
  40756. },
  40757. pawprint: {
  40758. height: math.unit(0.52, "feet"),
  40759. name: "Pawprint",
  40760. image: {
  40761. source: "./media/characters/vera/pawprint.svg"
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(5 + 10/12, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(75, "feet")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(4, "feet"),
  40782. weight: math.unit(40, "lb"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/orvan-rabbit/front.svg",
  40786. extra: 1896/1642,
  40787. bottom: 29/1925
  40788. }
  40789. },
  40790. },
  40791. [
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(4, "feet"),
  40795. default: true
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(6, "feet"),
  40804. weight: math.unit(168, "lb"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/lisa/front.svg",
  40808. extra: 2065/1867,
  40809. bottom: 46/2111
  40810. }
  40811. },
  40812. back: {
  40813. height: math.unit(6, "feet"),
  40814. weight: math.unit(168, "lb"),
  40815. name: "Back",
  40816. image: {
  40817. source: "./media/characters/lisa/back.svg",
  40818. extra: 1982/1838,
  40819. bottom: 29/2011
  40820. }
  40821. },
  40822. maw: {
  40823. height: math.unit(0.81, "feet"),
  40824. name: "Maw",
  40825. image: {
  40826. source: "./media/characters/lisa/maw.svg"
  40827. }
  40828. },
  40829. paw: {
  40830. height: math.unit(0.9, "feet"),
  40831. name: "Paw",
  40832. image: {
  40833. source: "./media/characters/lisa/paw.svg"
  40834. }
  40835. },
  40836. caribousune: {
  40837. height: math.unit(7 + 2/12, "feet"),
  40838. weight: math.unit(268, "lb"),
  40839. name: "Caribousune",
  40840. image: {
  40841. source: "./media/characters/lisa/caribousune.svg",
  40842. extra: 1843/1633,
  40843. bottom: 29/1872
  40844. }
  40845. },
  40846. frontCaribousune: {
  40847. height: math.unit(7 + 2/12, "feet"),
  40848. weight: math.unit(268, "lb"),
  40849. name: "Front (Caribousune)",
  40850. image: {
  40851. source: "./media/characters/lisa/front-caribousune.svg",
  40852. extra: 1818/1638,
  40853. bottom: 52/1870
  40854. }
  40855. },
  40856. sideCaribousune: {
  40857. height: math.unit(7 + 2/12, "feet"),
  40858. weight: math.unit(268, "lb"),
  40859. name: "Side (Caribousune)",
  40860. image: {
  40861. source: "./media/characters/lisa/side-caribousune.svg",
  40862. extra: 1851/1635,
  40863. bottom: 16/1867
  40864. }
  40865. },
  40866. backCaribousune: {
  40867. height: math.unit(7 + 2/12, "feet"),
  40868. weight: math.unit(268, "lb"),
  40869. name: "Back (Caribousune)",
  40870. image: {
  40871. source: "./media/characters/lisa/back-caribousune.svg",
  40872. extra: 1801/1604,
  40873. bottom: 44/1845
  40874. }
  40875. },
  40876. caribou: {
  40877. height: math.unit(7 + 2/12, "feet"),
  40878. weight: math.unit(268, "lb"),
  40879. name: "Caribou",
  40880. image: {
  40881. source: "./media/characters/lisa/caribou.svg",
  40882. extra: 1843/1633,
  40883. bottom: 29/1872
  40884. }
  40885. },
  40886. frontCaribou: {
  40887. height: math.unit(7 + 2/12, "feet"),
  40888. weight: math.unit(268, "lb"),
  40889. name: "Front (Caribou)",
  40890. image: {
  40891. source: "./media/characters/lisa/front-caribou.svg",
  40892. extra: 1818/1638,
  40893. bottom: 52/1870
  40894. }
  40895. },
  40896. sideCaribou: {
  40897. height: math.unit(7 + 2/12, "feet"),
  40898. weight: math.unit(268, "lb"),
  40899. name: "Side (Caribou)",
  40900. image: {
  40901. source: "./media/characters/lisa/side-caribou.svg",
  40902. extra: 1851/1635,
  40903. bottom: 16/1867
  40904. }
  40905. },
  40906. backCaribou: {
  40907. height: math.unit(7 + 2/12, "feet"),
  40908. weight: math.unit(268, "lb"),
  40909. name: "Back (Caribou)",
  40910. image: {
  40911. source: "./media/characters/lisa/back-caribou.svg",
  40912. extra: 1801/1604,
  40913. bottom: 44/1845
  40914. }
  40915. },
  40916. mawCaribou: {
  40917. height: math.unit(1.45, "feet"),
  40918. name: "Maw (Caribou)",
  40919. image: {
  40920. source: "./media/characters/lisa/maw-caribou.svg"
  40921. }
  40922. },
  40923. mawCaribousune: {
  40924. height: math.unit(1.45, "feet"),
  40925. name: "Maw (Caribousune)",
  40926. image: {
  40927. source: "./media/characters/lisa/maw-caribousune.svg"
  40928. }
  40929. },
  40930. pawCaribousune: {
  40931. height: math.unit(1.61, "feet"),
  40932. name: "Paw (Caribou)",
  40933. image: {
  40934. source: "./media/characters/lisa/paw-caribousune.svg"
  40935. }
  40936. },
  40937. },
  40938. [
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(6, "feet")
  40942. },
  40943. {
  40944. name: "God Size",
  40945. height: math.unit(72, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Towering",
  40950. height: math.unit(288, "feet")
  40951. },
  40952. {
  40953. name: "City Size",
  40954. height: math.unit(48384, "feet")
  40955. },
  40956. {
  40957. name: "Continental",
  40958. height: math.unit(4200, "miles")
  40959. },
  40960. {
  40961. name: "Planet Eater",
  40962. height: math.unit(42, "earths")
  40963. },
  40964. {
  40965. name: "Star Swallower",
  40966. height: math.unit(42, "solarradii")
  40967. },
  40968. {
  40969. name: "System Swallower",
  40970. height: math.unit(84000, "AU")
  40971. },
  40972. {
  40973. name: "Galaxy Gobbler",
  40974. height: math.unit(42, "galaxies")
  40975. },
  40976. {
  40977. name: "Universe Devourer",
  40978. height: math.unit(42, "universes")
  40979. },
  40980. {
  40981. name: "Multiverse Muncher",
  40982. height: math.unit(42, "multiverses")
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(36, "feet"),
  40991. name: "Front",
  40992. image: {
  40993. source: "./media/characters/shadow-rat/front.svg",
  40994. extra: 1845/1758,
  40995. bottom: 83/1928
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Macro",
  41002. height: math.unit(36, "feet"),
  41003. default: true
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41009. {
  41010. side: {
  41011. height: math.unit(8, "feet"),
  41012. weight: math.unit(2630, "lb"),
  41013. name: "Side",
  41014. image: {
  41015. source: "./media/characters/torallia/side.svg",
  41016. extra: 2164/2021,
  41017. bottom: 371/2535
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Mortal Interaction",
  41024. height: math.unit(8, "feet")
  41025. },
  41026. {
  41027. name: "Natural",
  41028. height: math.unit(24, "feet"),
  41029. default: true
  41030. },
  41031. {
  41032. name: "Giant",
  41033. height: math.unit(80, "feet")
  41034. },
  41035. {
  41036. name: "Kaiju",
  41037. height: math.unit(240, "feet")
  41038. },
  41039. {
  41040. name: "Macro",
  41041. height: math.unit(800, "feet")
  41042. },
  41043. {
  41044. name: "Macro+",
  41045. height: math.unit(2400, "feet")
  41046. },
  41047. {
  41048. name: "Macro++",
  41049. height: math.unit(8000, "feet")
  41050. },
  41051. {
  41052. name: "City-Crushing",
  41053. height: math.unit(24000, "feet")
  41054. },
  41055. {
  41056. name: "Mountain-Mashing",
  41057. height: math.unit(80000, "feet")
  41058. },
  41059. {
  41060. name: "District Demolisher",
  41061. height: math.unit(240000, "feet")
  41062. },
  41063. {
  41064. name: "Tri-County Terror",
  41065. height: math.unit(800000, "feet")
  41066. },
  41067. {
  41068. name: "State Smasher",
  41069. height: math.unit(2.4e6, "feet")
  41070. },
  41071. {
  41072. name: "Nation Nemesis",
  41073. height: math.unit(8e6, "feet")
  41074. },
  41075. {
  41076. name: "Continent Cracker",
  41077. height: math.unit(2.4e7, "feet")
  41078. },
  41079. {
  41080. name: "Planet-Pillaging",
  41081. height: math.unit(8e7, "feet")
  41082. },
  41083. {
  41084. name: "Earth-Eclipsing",
  41085. height: math.unit(2.4e8, "feet")
  41086. },
  41087. {
  41088. name: "Jovian-Jostling",
  41089. height: math.unit(8e8, "feet")
  41090. },
  41091. {
  41092. name: "Gas Giant Gulper",
  41093. height: math.unit(2.4e9, "feet")
  41094. },
  41095. {
  41096. name: "Astral Annihilator",
  41097. height: math.unit(8e9, "feet")
  41098. },
  41099. {
  41100. name: "Celestial Conqueror",
  41101. height: math.unit(2.4e10, "feet")
  41102. },
  41103. {
  41104. name: "Sol-Swallowing",
  41105. height: math.unit(8e10, "feet")
  41106. },
  41107. {
  41108. name: "Hunter of the Heavens",
  41109. height: math.unit(2.4e13, "feet")
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(6 + 8/12, "feet"),
  41118. weight: math.unit(250, "kilograms"),
  41119. volume: math.unit(28, "liters"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/rebecca-pawlson/front.svg",
  41123. extra: 1737/1596,
  41124. bottom: 107/1844
  41125. }
  41126. },
  41127. back: {
  41128. height: math.unit(6 + 8/12, "feet"),
  41129. weight: math.unit(250, "kilograms"),
  41130. volume: math.unit(28, "liters"),
  41131. name: "Back",
  41132. image: {
  41133. source: "./media/characters/rebecca-pawlson/back.svg",
  41134. extra: 1702/1523,
  41135. bottom: 86/1788
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(6 + 8/12, "feet")
  41143. },
  41144. {
  41145. name: "Mini Macro",
  41146. height: math.unit(10, "feet"),
  41147. default: true
  41148. },
  41149. {
  41150. name: "Macro",
  41151. height: math.unit(100, "feet")
  41152. },
  41153. {
  41154. name: "Mega Macro",
  41155. height: math.unit(2500, "feet")
  41156. },
  41157. {
  41158. name: "Giga Macro",
  41159. height: math.unit(50, "miles")
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(7 + 6/12, "feet"),
  41168. weight: math.unit(600, "lb"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/moxie-nova/front.svg",
  41172. extra: 1734/1652,
  41173. bottom: 41/1775
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(7 + 6/12, "feet"),
  41181. default: true
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41187. {
  41188. goat: {
  41189. height: math.unit(4, "feet"),
  41190. weight: math.unit(180, "lb"),
  41191. name: "Goat",
  41192. image: {
  41193. source: "./media/characters/tiffany/goat.svg",
  41194. extra: 1845/1595,
  41195. bottom: 106/1951
  41196. }
  41197. },
  41198. front: {
  41199. height: math.unit(5, "feet"),
  41200. weight: math.unit(150, "lb"),
  41201. name: "Foxcoon",
  41202. image: {
  41203. source: "./media/characters/tiffany/foxcoon.svg",
  41204. extra: 1941/1845,
  41205. bottom: 58/1999
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(5, "feet"),
  41213. default: true
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(8, "feet"),
  41222. weight: math.unit(300, "lb"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/raxinath/front.svg",
  41226. extra: 1407/1309,
  41227. bottom: 39/1446
  41228. }
  41229. },
  41230. back: {
  41231. height: math.unit(8, "feet"),
  41232. weight: math.unit(300, "lb"),
  41233. name: "Back",
  41234. image: {
  41235. source: "./media/characters/raxinath/back.svg",
  41236. extra: 1405/1315,
  41237. bottom: 9/1414
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Speck",
  41244. height: math.unit(0.5, "nm")
  41245. },
  41246. {
  41247. name: "Micro",
  41248. height: math.unit(3, "inches")
  41249. },
  41250. {
  41251. name: "Kobold",
  41252. height: math.unit(3, "feet")
  41253. },
  41254. {
  41255. name: "Normal",
  41256. height: math.unit(8, "feet"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Giant",
  41261. height: math.unit(50, "feet")
  41262. },
  41263. {
  41264. name: "Macro",
  41265. height: math.unit(1000, "feet")
  41266. },
  41267. {
  41268. name: "Megamacro",
  41269. height: math.unit(1, "mile")
  41270. },
  41271. ]
  41272. ))
  41273. characterMakers.push(() => makeCharacter(
  41274. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41275. {
  41276. front: {
  41277. height: math.unit(10, "feet"),
  41278. weight: math.unit(1442, "lb"),
  41279. name: "Front",
  41280. image: {
  41281. source: "./media/characters/mal-dragon/front.svg",
  41282. extra: 1515/1444,
  41283. bottom: 113/1628
  41284. }
  41285. },
  41286. back: {
  41287. height: math.unit(10, "feet"),
  41288. weight: math.unit(1442, "lb"),
  41289. name: "Back",
  41290. image: {
  41291. source: "./media/characters/mal-dragon/back.svg",
  41292. extra: 1527/1434,
  41293. bottom: 25/1552
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Mortal Interaction",
  41300. height: math.unit(10, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Large",
  41305. height: math.unit(30, "feet")
  41306. },
  41307. {
  41308. name: "Kaiju",
  41309. height: math.unit(300, "feet")
  41310. },
  41311. {
  41312. name: "Megamacro",
  41313. height: math.unit(10000, "feet")
  41314. },
  41315. {
  41316. name: "Continent Cracker",
  41317. height: math.unit(30000000, "feet")
  41318. },
  41319. {
  41320. name: "Sol-Swallowing",
  41321. height: math.unit(1e11, "feet")
  41322. },
  41323. {
  41324. name: "Light Universal",
  41325. height: math.unit(5, "universes")
  41326. },
  41327. {
  41328. name: "Universe Atoms",
  41329. height: math.unit(1.829e9, "universes")
  41330. },
  41331. {
  41332. name: "Light Multiversal",
  41333. height: math.unit(5, "multiverses")
  41334. },
  41335. {
  41336. name: "Multiverse Atoms",
  41337. height: math.unit(1.829e9, "multiverses")
  41338. },
  41339. {
  41340. name: "Fabric of Time",
  41341. height: math.unit(1e262, "multiverses")
  41342. },
  41343. ]
  41344. ))
  41345. characterMakers.push(() => makeCharacter(
  41346. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41347. {
  41348. front: {
  41349. height: math.unit(9, "feet"),
  41350. weight: math.unit(1050, "lb"),
  41351. name: "Front",
  41352. image: {
  41353. source: "./media/characters/tabitha/front.svg",
  41354. extra: 2083/1994,
  41355. bottom: 68/2151
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Baseline",
  41362. height: math.unit(9, "feet"),
  41363. default: true
  41364. },
  41365. {
  41366. name: "Giant",
  41367. height: math.unit(90, "feet")
  41368. },
  41369. {
  41370. name: "Macro",
  41371. height: math.unit(900, "feet")
  41372. },
  41373. {
  41374. name: "Megamacro",
  41375. height: math.unit(9000, "feet")
  41376. },
  41377. {
  41378. name: "City-Crushing",
  41379. height: math.unit(27000, "feet")
  41380. },
  41381. {
  41382. name: "Mountain-Mashing",
  41383. height: math.unit(90000, "feet")
  41384. },
  41385. {
  41386. name: "Nation Nemesis",
  41387. height: math.unit(9e6, "feet")
  41388. },
  41389. {
  41390. name: "Continent Cracker",
  41391. height: math.unit(27e6, "feet")
  41392. },
  41393. {
  41394. name: "Earth-Eclipsing",
  41395. height: math.unit(2.7e8, "feet")
  41396. },
  41397. {
  41398. name: "Gas Giant Gulper",
  41399. height: math.unit(2.7e9, "feet")
  41400. },
  41401. {
  41402. name: "Sol-Swallowing",
  41403. height: math.unit(9e10, "feet")
  41404. },
  41405. {
  41406. name: "Galaxy Gulper",
  41407. height: math.unit(9, "galaxies")
  41408. },
  41409. {
  41410. name: "Cosmos Churner",
  41411. height: math.unit(9, "universes")
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(160, "cm"),
  41420. weight: math.unit(55, "kg"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/tow/front.svg",
  41424. extra: 1751/1722,
  41425. bottom: 74/1825
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Norm",
  41432. height: math.unit(160, "cm")
  41433. },
  41434. {
  41435. name: "Casual",
  41436. height: math.unit(3200, "m"),
  41437. default: true
  41438. },
  41439. {
  41440. name: "Show-Off",
  41441. height: math.unit(160, "km")
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41447. {
  41448. front: {
  41449. height: math.unit(7 + 11/12, "feet"),
  41450. weight: math.unit(342.8, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/vivian-orca-dragon/front.svg",
  41454. extra: 1890/1865,
  41455. bottom: 28/1918
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Micro",
  41462. height: math.unit(5, "inches")
  41463. },
  41464. {
  41465. name: "Normal",
  41466. height: math.unit(7 + 11/12, "feet"),
  41467. default: true
  41468. },
  41469. {
  41470. name: "Macro",
  41471. height: math.unit(395 + 7/12, "feet")
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41477. {
  41478. side: {
  41479. height: math.unit(10, "feet"),
  41480. weight: math.unit(1442, "lb"),
  41481. name: "Side",
  41482. image: {
  41483. source: "./media/characters/lotherakon/side.svg",
  41484. extra: 1604/1497,
  41485. bottom: 89/1693
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Mortal Interaction",
  41492. height: math.unit(10, "feet")
  41493. },
  41494. {
  41495. name: "Large",
  41496. height: math.unit(30, "feet"),
  41497. default: true
  41498. },
  41499. {
  41500. name: "Giant",
  41501. height: math.unit(100, "feet")
  41502. },
  41503. {
  41504. name: "Kaiju",
  41505. height: math.unit(300, "feet")
  41506. },
  41507. {
  41508. name: "Macro",
  41509. height: math.unit(1000, "feet")
  41510. },
  41511. {
  41512. name: "Macro+",
  41513. height: math.unit(3000, "feet")
  41514. },
  41515. {
  41516. name: "Megamacro",
  41517. height: math.unit(10000, "feet")
  41518. },
  41519. {
  41520. name: "City-Crushing",
  41521. height: math.unit(30000, "feet")
  41522. },
  41523. {
  41524. name: "Continent Cracker",
  41525. height: math.unit(30e6, "feet")
  41526. },
  41527. {
  41528. name: "Earth Eclipsing",
  41529. height: math.unit(3e8, "feet")
  41530. },
  41531. {
  41532. name: "Gas Giant Gulper",
  41533. height: math.unit(3e9, "feet")
  41534. },
  41535. {
  41536. name: "Sol-Swallowing",
  41537. height: math.unit(1e11, "feet")
  41538. },
  41539. {
  41540. name: "System Swallower",
  41541. height: math.unit(3e14, "feet")
  41542. },
  41543. {
  41544. name: "Galaxy Gulper",
  41545. height: math.unit(10, "galaxies")
  41546. },
  41547. {
  41548. name: "Light Universal",
  41549. height: math.unit(5, "universes")
  41550. },
  41551. {
  41552. name: "Universe Palm",
  41553. height: math.unit(20, "universes")
  41554. },
  41555. {
  41556. name: "Light Multiversal",
  41557. height: math.unit(5, "multiverses")
  41558. },
  41559. {
  41560. name: "Multiverse Palm",
  41561. height: math.unit(20, "multiverses")
  41562. },
  41563. {
  41564. name: "Inferno Incarnate",
  41565. height: math.unit(1e7, "multiverses")
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41571. {
  41572. front: {
  41573. height: math.unit(8, "feet"),
  41574. weight: math.unit(1200, "lb"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/malithee/front.svg",
  41578. extra: 1675/1640,
  41579. bottom: 162/1837
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Mortal Interaction",
  41586. height: math.unit(8, "feet"),
  41587. default: true
  41588. },
  41589. {
  41590. name: "Large",
  41591. height: math.unit(24, "feet")
  41592. },
  41593. {
  41594. name: "Kaiju",
  41595. height: math.unit(240, "feet")
  41596. },
  41597. {
  41598. name: "Megamacro",
  41599. height: math.unit(8000, "feet")
  41600. },
  41601. {
  41602. name: "Continent Cracker",
  41603. height: math.unit(24e6, "feet")
  41604. },
  41605. {
  41606. name: "Earth-Eclipsing",
  41607. height: math.unit(2.4e8, "feet")
  41608. },
  41609. {
  41610. name: "Sol-Swallowing",
  41611. height: math.unit(8e10, "feet")
  41612. },
  41613. {
  41614. name: "Galaxy Gulper",
  41615. height: math.unit(8, "galaxies")
  41616. },
  41617. {
  41618. name: "Light Universal",
  41619. height: math.unit(4, "universes")
  41620. },
  41621. {
  41622. name: "Universe Atoms",
  41623. height: math.unit(1.829e9, "universes")
  41624. },
  41625. {
  41626. name: "Light Multiversal",
  41627. height: math.unit(4, "multiverses")
  41628. },
  41629. {
  41630. name: "Multiverse Atoms",
  41631. height: math.unit(1.829e9, "multiverses")
  41632. },
  41633. {
  41634. name: "Nigh-Omnipresence",
  41635. height: math.unit(8e261, "multiverses")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(10, "feet"),
  41644. weight: math.unit(1500, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/miles-thestia/front.svg",
  41648. extra: 1812/1727,
  41649. bottom: 86/1898
  41650. }
  41651. },
  41652. back: {
  41653. height: math.unit(10, "feet"),
  41654. weight: math.unit(1500, "lb"),
  41655. name: "Back",
  41656. image: {
  41657. source: "./media/characters/miles-thestia/back.svg",
  41658. extra: 1799/1690,
  41659. bottom: 47/1846
  41660. }
  41661. },
  41662. frontNsfw: {
  41663. height: math.unit(10, "feet"),
  41664. weight: math.unit(1500, "lb"),
  41665. name: "Front (NSFW)",
  41666. image: {
  41667. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41668. extra: 1812/1727,
  41669. bottom: 86/1898
  41670. }
  41671. },
  41672. },
  41673. [
  41674. {
  41675. name: "Mini-Macro",
  41676. height: math.unit(10, "feet"),
  41677. default: true
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41683. {
  41684. front: {
  41685. height: math.unit(25, "feet"),
  41686. name: "Front",
  41687. image: {
  41688. source: "./media/characters/titan-s-wulf/front.svg",
  41689. extra: 1560/1484,
  41690. bottom: 76/1636
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Smallest",
  41697. height: math.unit(25, "feet"),
  41698. default: true
  41699. },
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(200, "feet")
  41703. },
  41704. {
  41705. name: "Macro",
  41706. height: math.unit(200000, "feet")
  41707. },
  41708. {
  41709. name: "Multiversal Original",
  41710. height: math.unit(10000, "multiverses")
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(8, "feet"),
  41719. weight: math.unit(553, "lb"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/tawendeh/front.svg",
  41723. extra: 2365/2268,
  41724. bottom: 83/2448
  41725. }
  41726. },
  41727. frontClothed: {
  41728. height: math.unit(8, "feet"),
  41729. weight: math.unit(553, "lb"),
  41730. name: "Front (Clothed)",
  41731. image: {
  41732. source: "./media/characters/tawendeh/front-clothed.svg",
  41733. extra: 2365/2268,
  41734. bottom: 83/2448
  41735. }
  41736. },
  41737. back: {
  41738. height: math.unit(8, "feet"),
  41739. weight: math.unit(553, "lb"),
  41740. name: "Back",
  41741. image: {
  41742. source: "./media/characters/tawendeh/back.svg",
  41743. extra: 2397/2294,
  41744. bottom: 42/2439
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Mortal Interaction",
  41751. height: math.unit(8, "feet"),
  41752. default: true
  41753. },
  41754. {
  41755. name: "Giant",
  41756. height: math.unit(80, "feet")
  41757. },
  41758. {
  41759. name: "Macro",
  41760. height: math.unit(800, "feet")
  41761. },
  41762. {
  41763. name: "Megamacro",
  41764. height: math.unit(8000, "feet")
  41765. },
  41766. {
  41767. name: "City-Crushing",
  41768. height: math.unit(24000, "feet")
  41769. },
  41770. {
  41771. name: "Mountain-Mashing",
  41772. height: math.unit(80000, "feet")
  41773. },
  41774. {
  41775. name: "Nation Nemesis",
  41776. height: math.unit(8e6, "feet")
  41777. },
  41778. {
  41779. name: "Continent Cracker",
  41780. height: math.unit(24e6, "feet")
  41781. },
  41782. {
  41783. name: "Earth-Eclipsing",
  41784. height: math.unit(2.4e8, "feet")
  41785. },
  41786. {
  41787. name: "Gas Giant Gulper",
  41788. height: math.unit(2.4e9, "feet")
  41789. },
  41790. {
  41791. name: "Sol-Swallowing",
  41792. height: math.unit(8e10, "feet")
  41793. },
  41794. {
  41795. name: "Galaxy Gulper",
  41796. height: math.unit(8, "galaxies")
  41797. },
  41798. {
  41799. name: "Cosmos Churner",
  41800. height: math.unit(8, "universes")
  41801. },
  41802. {
  41803. name: "Omnipotent Otter",
  41804. height: math.unit(80, "universes")
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(2.6, "meters"),
  41813. weight: math.unit(900, "kg"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/neesha/front.svg",
  41817. extra: 1803/1653,
  41818. bottom: 128/1931
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(2.6, "meters"),
  41826. default: true
  41827. },
  41828. {
  41829. name: "Macro",
  41830. height: math.unit(50, "meters")
  41831. },
  41832. ]
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41836. {
  41837. front: {
  41838. height: math.unit(5, "feet"),
  41839. weight: math.unit(185, "lb"),
  41840. name: "Front",
  41841. image: {
  41842. source: "./media/characters/kyera/front.svg",
  41843. extra: 1875/1790,
  41844. bottom: 96/1971
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(5, "feet"),
  41852. default: true
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(7 + 6/12, "feet"),
  41861. weight: math.unit(540, "lb"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/yuko/front.svg",
  41865. extra: 1282/1222,
  41866. bottom: 101/1383
  41867. }
  41868. },
  41869. frontClothed: {
  41870. height: math.unit(7 + 6/12, "feet"),
  41871. weight: math.unit(540, "lb"),
  41872. name: "Front (Clothed)",
  41873. image: {
  41874. source: "./media/characters/yuko/front-clothed.svg",
  41875. extra: 1282/1222,
  41876. bottom: 101/1383
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Normal",
  41883. height: math.unit(7 + 6/12, "feet"),
  41884. default: true
  41885. },
  41886. {
  41887. name: "Macro",
  41888. height: math.unit(26 + 9/12, "feet")
  41889. },
  41890. {
  41891. name: "Megamacro",
  41892. height: math.unit(300, "feet")
  41893. },
  41894. {
  41895. name: "Gigamacro",
  41896. height: math.unit(5000, "feet")
  41897. },
  41898. {
  41899. name: "Planetary",
  41900. height: math.unit(10000, "miles")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(8 + 2/12, "feet"),
  41909. weight: math.unit(600, "lb"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/deam-nitrel/front.svg",
  41913. extra: 1308/1234,
  41914. bottom: 125/1433
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Normal",
  41921. height: math.unit(8 + 2/12, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(6.1, "feet"),
  41931. weight: math.unit(180, "lb"),
  41932. name: "Front",
  41933. image: {
  41934. source: "./media/characters/skyress/front.svg",
  41935. extra: 1045/915,
  41936. bottom: 28/1073
  41937. }
  41938. },
  41939. maw: {
  41940. height: math.unit(1, "feet"),
  41941. name: "Maw",
  41942. image: {
  41943. source: "./media/characters/skyress/maw.svg"
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Normal",
  41950. height: math.unit(6.1, "feet"),
  41951. default: true
  41952. },
  41953. {
  41954. name: "Macro",
  41955. height: math.unit(200, "feet")
  41956. },
  41957. ]
  41958. ))
  41959. characterMakers.push(() => makeCharacter(
  41960. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41961. {
  41962. front: {
  41963. height: math.unit(4 + 2/12, "feet"),
  41964. weight: math.unit(40, "kg"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/amethyst-jones/front.svg",
  41968. extra: 1220/1150,
  41969. bottom: 101/1321
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(4 + 2/12, "feet"),
  41977. default: true
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(1.7, "m"),
  41986. weight: math.unit(135, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/jade/front.svg",
  41990. extra: 1818/1767,
  41991. bottom: 32/1850
  41992. }
  41993. },
  41994. back: {
  41995. height: math.unit(1.7, "m"),
  41996. weight: math.unit(135, "lb"),
  41997. name: "Back",
  41998. image: {
  41999. source: "./media/characters/jade/back.svg",
  42000. extra: 1869/1809,
  42001. bottom: 35/1904
  42002. }
  42003. },
  42004. hand: {
  42005. height: math.unit(0.24, "m"),
  42006. name: "Hand",
  42007. image: {
  42008. source: "./media/characters/jade/hand.svg"
  42009. }
  42010. },
  42011. foot: {
  42012. height: math.unit(0.263, "m"),
  42013. name: "Foot",
  42014. image: {
  42015. source: "./media/characters/jade/foot.svg"
  42016. }
  42017. },
  42018. dick: {
  42019. height: math.unit(0.47, "m"),
  42020. name: "Dick",
  42021. image: {
  42022. source: "./media/characters/jade/dick.svg"
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Micro",
  42029. height: math.unit(22, "cm")
  42030. },
  42031. {
  42032. name: "Normal",
  42033. height: math.unit(1.7, "m"),
  42034. default: true
  42035. },
  42036. {
  42037. name: "Macro",
  42038. height: math.unit(152, "m")
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42044. {
  42045. front: {
  42046. height: math.unit(100, "miles"),
  42047. weight: math.unit(20000, "tons"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/cookie/front.svg",
  42051. extra: 1125/1070,
  42052. bottom: 30/1155
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Big",
  42059. height: math.unit(50, "feet")
  42060. },
  42061. {
  42062. name: "Macro",
  42063. height: math.unit(100, "miles"),
  42064. default: true
  42065. },
  42066. {
  42067. name: "Megamacro",
  42068. height: math.unit(90000, "miles")
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42074. {
  42075. front: {
  42076. height: math.unit(6, "feet"),
  42077. weight: math.unit(145, "lb"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/farzian/front.svg",
  42081. extra: 1902/1693,
  42082. bottom: 108/2010
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Macro",
  42089. height: math.unit(500, "feet"),
  42090. default: true
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(3 + 6/12, "feet"),
  42099. weight: math.unit(50, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/kimberly-tilson/front.svg",
  42103. extra: 1400/1322,
  42104. bottom: 36/1436
  42105. }
  42106. },
  42107. back: {
  42108. height: math.unit(3 + 6/12, "feet"),
  42109. weight: math.unit(50, "lb"),
  42110. name: "Back",
  42111. image: {
  42112. source: "./media/characters/kimberly-tilson/back.svg",
  42113. extra: 1370/1307,
  42114. bottom: 20/1390
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(3 + 6/12, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(1148, "feet"),
  42131. weight: math.unit(34057, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/harthos/front.svg",
  42135. extra: 1391/1339,
  42136. bottom: 13/1404
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Macro",
  42143. height: math.unit(1148, "feet"),
  42144. default: true
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(15, "feet"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/hypatia/front.svg",
  42156. extra: 1653/1591,
  42157. bottom: 79/1732
  42158. }
  42159. },
  42160. },
  42161. [
  42162. {
  42163. name: "Normal",
  42164. height: math.unit(15, "feet")
  42165. },
  42166. {
  42167. name: "Small",
  42168. height: math.unit(300, "feet")
  42169. },
  42170. {
  42171. name: "Macro",
  42172. height: math.unit(2500, "feet"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Mega Macro",
  42177. height: math.unit(1500, "miles")
  42178. },
  42179. {
  42180. name: "Giga Macro",
  42181. height: math.unit(1.5e6, "miles")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(6, "feet"),
  42190. weight: math.unit(200, "lb"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/wulver/front.svg",
  42194. extra: 1724/1632,
  42195. bottom: 130/1854
  42196. }
  42197. },
  42198. frontNsfw: {
  42199. height: math.unit(6, "feet"),
  42200. weight: math.unit(200, "lb"),
  42201. name: "Front (NSFW)",
  42202. image: {
  42203. source: "./media/characters/wulver/front-nsfw.svg",
  42204. extra: 1724/1632,
  42205. bottom: 130/1854
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Human-Sized",
  42212. height: math.unit(6, "feet")
  42213. },
  42214. {
  42215. name: "Normal",
  42216. height: math.unit(4, "meters"),
  42217. default: true
  42218. },
  42219. {
  42220. name: "Large",
  42221. height: math.unit(6, "m")
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(7, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/maru/front.svg",
  42233. extra: 1595/1570,
  42234. bottom: 0/1595
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Normal",
  42241. height: math.unit(7, "feet"),
  42242. default: true
  42243. },
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(700, "feet")
  42247. },
  42248. {
  42249. name: "Mega Macro",
  42250. height: math.unit(25, "miles")
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(6, "feet"),
  42259. weight: math.unit(170, "lb"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/xenon/front.svg",
  42263. extra: 1376/1305,
  42264. bottom: 56/1432
  42265. }
  42266. },
  42267. back: {
  42268. height: math.unit(6, "feet"),
  42269. weight: math.unit(170, "lb"),
  42270. name: "Back",
  42271. image: {
  42272. source: "./media/characters/xenon/back.svg",
  42273. extra: 1328/1259,
  42274. bottom: 95/1423
  42275. }
  42276. },
  42277. maw: {
  42278. height: math.unit(0.52, "feet"),
  42279. name: "Maw",
  42280. image: {
  42281. source: "./media/characters/xenon/maw.svg"
  42282. }
  42283. },
  42284. handLeft: {
  42285. height: math.unit(0.82 * 169 / 153, "feet"),
  42286. name: "Hand (Left)",
  42287. image: {
  42288. source: "./media/characters/xenon/hand-left.svg"
  42289. }
  42290. },
  42291. handRight: {
  42292. height: math.unit(0.82, "feet"),
  42293. name: "Hand (Right)",
  42294. image: {
  42295. source: "./media/characters/xenon/hand-right.svg"
  42296. }
  42297. },
  42298. footLeft: {
  42299. height: math.unit(1.13, "feet"),
  42300. name: "Foot (Left)",
  42301. image: {
  42302. source: "./media/characters/xenon/foot-left.svg"
  42303. }
  42304. },
  42305. footRight: {
  42306. height: math.unit(1.13 * 194 / 196, "feet"),
  42307. name: "Foot (Right)",
  42308. image: {
  42309. source: "./media/characters/xenon/foot-right.svg"
  42310. }
  42311. },
  42312. },
  42313. [
  42314. {
  42315. name: "Micro",
  42316. height: math.unit(0.8, "inches")
  42317. },
  42318. {
  42319. name: "Normal",
  42320. height: math.unit(6, "feet")
  42321. },
  42322. {
  42323. name: "Macro",
  42324. height: math.unit(50, "feet"),
  42325. default: true
  42326. },
  42327. {
  42328. name: "Macro+",
  42329. height: math.unit(250, "feet")
  42330. },
  42331. {
  42332. name: "Megamacro",
  42333. height: math.unit(1500, "feet")
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42339. {
  42340. front: {
  42341. height: math.unit(7 + 5/12, "feet"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/zane/front.svg",
  42345. extra: 1260/1203,
  42346. bottom: 94/1354
  42347. }
  42348. },
  42349. back: {
  42350. height: math.unit(5.05, "feet"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/zane/back.svg",
  42354. extra: 893/829,
  42355. bottom: 30/923
  42356. }
  42357. },
  42358. werewolf: {
  42359. height: math.unit(11, "feet"),
  42360. name: "Werewolf",
  42361. image: {
  42362. source: "./media/characters/zane/werewolf.svg",
  42363. extra: 1383/1323,
  42364. bottom: 89/1472
  42365. }
  42366. },
  42367. foot: {
  42368. height: math.unit(1.46, "feet"),
  42369. name: "Foot",
  42370. image: {
  42371. source: "./media/characters/zane/foot.svg"
  42372. }
  42373. },
  42374. footFront: {
  42375. height: math.unit(0.784, "feet"),
  42376. name: "Foot (Front)",
  42377. image: {
  42378. source: "./media/characters/zane/foot-front.svg"
  42379. }
  42380. },
  42381. dick: {
  42382. height: math.unit(1.95, "feet"),
  42383. name: "Dick",
  42384. image: {
  42385. source: "./media/characters/zane/dick.svg"
  42386. }
  42387. },
  42388. dickWerewolf: {
  42389. height: math.unit(3.77, "feet"),
  42390. name: "Dick (Werewolf)",
  42391. image: {
  42392. source: "./media/characters/zane/dick.svg"
  42393. }
  42394. },
  42395. },
  42396. [
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(7 + 5/12, "feet"),
  42400. default: true
  42401. },
  42402. ]
  42403. ))
  42404. characterMakers.push(() => makeCharacter(
  42405. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42406. {
  42407. front: {
  42408. height: math.unit(6 + 2/12, "feet"),
  42409. weight: math.unit(284, "lb"),
  42410. name: "Front",
  42411. image: {
  42412. source: "./media/characters/benni-desparque/front.svg",
  42413. extra: 1353/1126,
  42414. bottom: 69/1422
  42415. }
  42416. },
  42417. },
  42418. [
  42419. {
  42420. name: "Civilian",
  42421. height: math.unit(6 + 2/12, "feet")
  42422. },
  42423. {
  42424. name: "Normal",
  42425. height: math.unit(98, "feet"),
  42426. default: true
  42427. },
  42428. {
  42429. name: "Kaiju Fighter",
  42430. height: math.unit(268, "feet")
  42431. },
  42432. ]
  42433. ))
  42434. characterMakers.push(() => makeCharacter(
  42435. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42436. {
  42437. front: {
  42438. height: math.unit(5, "feet"),
  42439. weight: math.unit(105, "lb"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/maxine/front.svg",
  42443. extra: 1386/1250,
  42444. bottom: 71/1457
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(5, "feet"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(11 + 7/12, "feet"),
  42461. weight: math.unit(9576, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/scaly/front.svg",
  42465. extra: 888/867,
  42466. bottom: 36/924
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(11 + 7/12, "feet"),
  42474. default: true
  42475. },
  42476. ]
  42477. ))
  42478. characterMakers.push(() => makeCharacter(
  42479. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42480. {
  42481. front: {
  42482. height: math.unit(6 + 3/12, "feet"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/saelria/front.svg",
  42486. extra: 1243/1138,
  42487. bottom: 46/1289
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Micro",
  42494. height: math.unit(6, "inches"),
  42495. },
  42496. {
  42497. name: "Normal",
  42498. height: math.unit(6 + 3/12, "feet"),
  42499. default: true
  42500. },
  42501. {
  42502. name: "Macro",
  42503. height: math.unit(25, "feet")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(80, "meters"),
  42512. weight: math.unit(7000, "tonnes"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/tef/front.svg",
  42516. extra: 2036/1991,
  42517. bottom: 54/2090
  42518. }
  42519. },
  42520. back: {
  42521. height: math.unit(80, "meters"),
  42522. weight: math.unit(7000, "tonnes"),
  42523. name: "Back",
  42524. image: {
  42525. source: "./media/characters/tef/back.svg",
  42526. extra: 2036/1991,
  42527. bottom: 54/2090
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Macro",
  42534. height: math.unit(80, "meters"),
  42535. default: true
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42541. {
  42542. front: {
  42543. height: math.unit(13, "feet"),
  42544. weight: math.unit(6, "tons"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/rover/front.svg",
  42548. extra: 1233/1156,
  42549. bottom: 50/1283
  42550. }
  42551. },
  42552. back: {
  42553. height: math.unit(13, "feet"),
  42554. weight: math.unit(6, "tons"),
  42555. name: "Back",
  42556. image: {
  42557. source: "./media/characters/rover/back.svg",
  42558. extra: 1327/1258,
  42559. bottom: 39/1366
  42560. }
  42561. },
  42562. },
  42563. [
  42564. {
  42565. name: "Normal",
  42566. height: math.unit(13, "feet"),
  42567. default: true
  42568. },
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(1300, "feet")
  42572. },
  42573. {
  42574. name: "Megamacro",
  42575. height: math.unit(1300, "miles")
  42576. },
  42577. {
  42578. name: "Gigamacro",
  42579. height: math.unit(1300000, "miles")
  42580. },
  42581. ]
  42582. ))
  42583. characterMakers.push(() => makeCharacter(
  42584. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42585. {
  42586. front: {
  42587. height: math.unit(6, "feet"),
  42588. weight: math.unit(150, "lb"),
  42589. name: "Front",
  42590. image: {
  42591. source: "./media/characters/ariz/front.svg",
  42592. extra: 1401/1346,
  42593. bottom: 5/1406
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(10, "feet"),
  42601. default: true
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(6, "feet"),
  42610. weight: math.unit(140, "lb"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/sigrun/front.svg",
  42614. extra: 1418/1359,
  42615. bottom: 27/1445
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Macro",
  42622. height: math.unit(35, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6, "feet"),
  42632. weight: math.unit(150, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/numin/front.svg",
  42636. extra: 1433/1388,
  42637. bottom: 12/1445
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Macro",
  42644. height: math.unit(21.5, "km"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(6, "feet"),
  42654. weight: math.unit(463, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/melwa/front.svg",
  42658. extra: 1307/1248,
  42659. bottom: 93/1400
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Macro",
  42666. height: math.unit(50, "meters"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(325, "feet"),
  42676. name: "Front",
  42677. image: {
  42678. source: "./media/characters/zorkaiju/front.svg",
  42679. extra: 1955/1814,
  42680. bottom: 40/1995
  42681. }
  42682. },
  42683. frontExtended: {
  42684. height: math.unit(325, "feet"),
  42685. name: "Front (Extended)",
  42686. image: {
  42687. source: "./media/characters/zorkaiju/front-extended.svg",
  42688. extra: 1955/1814,
  42689. bottom: 40/1995
  42690. }
  42691. },
  42692. side: {
  42693. height: math.unit(325, "feet"),
  42694. name: "Side",
  42695. image: {
  42696. source: "./media/characters/zorkaiju/side.svg",
  42697. extra: 1495/1396,
  42698. bottom: 17/1512
  42699. }
  42700. },
  42701. sideExtended: {
  42702. height: math.unit(325, "feet"),
  42703. name: "Side (Extended)",
  42704. image: {
  42705. source: "./media/characters/zorkaiju/side-extended.svg",
  42706. extra: 1495/1396,
  42707. bottom: 17/1512
  42708. }
  42709. },
  42710. back: {
  42711. height: math.unit(325, "feet"),
  42712. name: "Back",
  42713. image: {
  42714. source: "./media/characters/zorkaiju/back.svg",
  42715. extra: 1959/1821,
  42716. bottom: 31/1990
  42717. }
  42718. },
  42719. backExtended: {
  42720. height: math.unit(325, "feet"),
  42721. name: "Back (Extended)",
  42722. image: {
  42723. source: "./media/characters/zorkaiju/back-extended.svg",
  42724. extra: 1959/1821,
  42725. bottom: 31/1990
  42726. }
  42727. },
  42728. hand: {
  42729. height: math.unit(58.4, "feet"),
  42730. name: "Hand",
  42731. image: {
  42732. source: "./media/characters/zorkaiju/hand.svg"
  42733. }
  42734. },
  42735. handExtended: {
  42736. height: math.unit(61.4, "feet"),
  42737. name: "Hand (Extended)",
  42738. image: {
  42739. source: "./media/characters/zorkaiju/hand-extended.svg"
  42740. }
  42741. },
  42742. foot: {
  42743. height: math.unit(95, "feet"),
  42744. name: "Foot",
  42745. image: {
  42746. source: "./media/characters/zorkaiju/foot.svg"
  42747. }
  42748. },
  42749. leftArm: {
  42750. height: math.unit(59, "feet"),
  42751. name: "Left Arm",
  42752. image: {
  42753. source: "./media/characters/zorkaiju/left-arm.svg"
  42754. }
  42755. },
  42756. rightArm: {
  42757. height: math.unit(59, "feet"),
  42758. name: "Right Arm",
  42759. image: {
  42760. source: "./media/characters/zorkaiju/right-arm.svg"
  42761. }
  42762. },
  42763. leftArmExtended: {
  42764. height: math.unit(59 * 1.033546, "feet"),
  42765. name: "Left Arm (Extended)",
  42766. image: {
  42767. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42768. }
  42769. },
  42770. rightArmExtended: {
  42771. height: math.unit(59 * 1.0496, "feet"),
  42772. name: "Right Arm (Extended)",
  42773. image: {
  42774. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42775. }
  42776. },
  42777. tail: {
  42778. height: math.unit(104, "feet"),
  42779. name: "Tail",
  42780. image: {
  42781. source: "./media/characters/zorkaiju/tail.svg"
  42782. }
  42783. },
  42784. tailExtended: {
  42785. height: math.unit(104, "feet"),
  42786. name: "Tail (Extended)",
  42787. image: {
  42788. source: "./media/characters/zorkaiju/tail-extended.svg"
  42789. }
  42790. },
  42791. tailBottom: {
  42792. height: math.unit(104, "feet"),
  42793. name: "Tail Bottom",
  42794. image: {
  42795. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42796. }
  42797. },
  42798. crystal: {
  42799. height: math.unit(27.54, "feet"),
  42800. name: "Crystal",
  42801. image: {
  42802. source: "./media/characters/zorkaiju/crystal.svg"
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Kaiju",
  42809. height: math.unit(325, "feet"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42816. {
  42817. front: {
  42818. height: math.unit(6 + 1/12, "feet"),
  42819. weight: math.unit(115, "lb"),
  42820. name: "Front",
  42821. image: {
  42822. source: "./media/characters/bailey-belfry/front.svg",
  42823. extra: 1240/1121,
  42824. bottom: 101/1341
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(6 + 1/12, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(4, "meters"),
  42841. weight: math.unit(250, "kg"),
  42842. name: "Side",
  42843. image: {
  42844. source: "./media/characters/blacky/side.svg",
  42845. extra: 1027/919,
  42846. bottom: 43/1070
  42847. }
  42848. },
  42849. maw: {
  42850. height: math.unit(1, "meters"),
  42851. name: "Maw",
  42852. image: {
  42853. source: "./media/characters/blacky/maw.svg"
  42854. }
  42855. },
  42856. paw: {
  42857. height: math.unit(1, "meters"),
  42858. name: "Paw",
  42859. image: {
  42860. source: "./media/characters/blacky/paw.svg"
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Normal",
  42867. height: math.unit(4, "meters"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(170, "cm"),
  42877. weight: math.unit(66, "kg"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/thux-ei/front.svg",
  42881. extra: 1109/1011,
  42882. bottom: 8/1117
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Normal",
  42889. height: math.unit(170, "cm"),
  42890. default: true
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42896. {
  42897. front: {
  42898. height: math.unit(5, "feet"),
  42899. weight: math.unit(120, "lb"),
  42900. name: "Front",
  42901. image: {
  42902. source: "./media/characters/roxanne-voltaire/front.svg",
  42903. extra: 1901/1779,
  42904. bottom: 53/1954
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(5, "feet"),
  42912. default: true
  42913. },
  42914. {
  42915. name: "Giant",
  42916. height: math.unit(50, "feet")
  42917. },
  42918. {
  42919. name: "Titan",
  42920. height: math.unit(500, "feet")
  42921. },
  42922. {
  42923. name: "Macro",
  42924. height: math.unit(5000, "feet")
  42925. },
  42926. {
  42927. name: "Megamacro",
  42928. height: math.unit(50000, "feet")
  42929. },
  42930. {
  42931. name: "Gigamacro",
  42932. height: math.unit(500000, "feet")
  42933. },
  42934. {
  42935. name: "Teramacro",
  42936. height: math.unit(5e6, "feet")
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42942. {
  42943. front: {
  42944. height: math.unit(6 + 2/12, "feet"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/squeaks/front.svg",
  42948. extra: 1823/1768,
  42949. bottom: 138/1961
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "Micro",
  42956. height: math.unit(0.5, "inches")
  42957. },
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(6 + 2/12, "feet"),
  42961. default: true
  42962. },
  42963. {
  42964. name: "Macro",
  42965. height: math.unit(600, "feet")
  42966. },
  42967. ]
  42968. ))
  42969. characterMakers.push(() => makeCharacter(
  42970. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42971. {
  42972. front: {
  42973. height: math.unit(1.72, "meters"),
  42974. name: "Front",
  42975. image: {
  42976. source: "./media/characters/archinger/front.svg",
  42977. extra: 1861/1675,
  42978. bottom: 125/1986
  42979. }
  42980. },
  42981. back: {
  42982. height: math.unit(1.72, "meters"),
  42983. name: "Back",
  42984. image: {
  42985. source: "./media/characters/archinger/back.svg",
  42986. extra: 1844/1701,
  42987. bottom: 104/1948
  42988. }
  42989. },
  42990. cock: {
  42991. height: math.unit(0.59, "feet"),
  42992. name: "Cock",
  42993. image: {
  42994. source: "./media/characters/archinger/cock.svg"
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(1.72, "meters"),
  43002. default: true
  43003. },
  43004. {
  43005. name: "Macro",
  43006. height: math.unit(84, "meters")
  43007. },
  43008. {
  43009. name: "Macro+",
  43010. height: math.unit(112, "meters")
  43011. },
  43012. {
  43013. name: "Macro++",
  43014. height: math.unit(960, "meters")
  43015. },
  43016. {
  43017. name: "Macro+++",
  43018. height: math.unit(4, "km")
  43019. },
  43020. {
  43021. name: "Macro++++",
  43022. height: math.unit(48, "km")
  43023. },
  43024. {
  43025. name: "Macro+++++",
  43026. height: math.unit(4500, "km")
  43027. },
  43028. ]
  43029. ))
  43030. characterMakers.push(() => makeCharacter(
  43031. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43032. {
  43033. front: {
  43034. height: math.unit(5 + 5/12, "feet"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/alsnapz/front.svg",
  43038. extra: 1157/1065,
  43039. bottom: 42/1199
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Normal",
  43046. height: math.unit(5 + 5/12, "feet"),
  43047. default: true
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43053. {
  43054. side: {
  43055. height: math.unit(3.2, "earths"),
  43056. name: "Side",
  43057. image: {
  43058. source: "./media/characters/mag/side.svg",
  43059. extra: 1331/1008,
  43060. bottom: 52/1383
  43061. }
  43062. },
  43063. wing: {
  43064. height: math.unit(1.94, "earths"),
  43065. name: "Wing",
  43066. image: {
  43067. source: "./media/characters/mag/wing.svg"
  43068. }
  43069. },
  43070. dick: {
  43071. height: math.unit(1.8, "earths"),
  43072. name: "Dick",
  43073. image: {
  43074. source: "./media/characters/mag/dick.svg"
  43075. }
  43076. },
  43077. ass: {
  43078. height: math.unit(1.33, "earths"),
  43079. name: "Ass",
  43080. image: {
  43081. source: "./media/characters/mag/ass.svg"
  43082. }
  43083. },
  43084. head: {
  43085. height: math.unit(1.1, "earths"),
  43086. name: "Head",
  43087. image: {
  43088. source: "./media/characters/mag/head.svg"
  43089. }
  43090. },
  43091. maw: {
  43092. height: math.unit(1.62, "earths"),
  43093. name: "Maw",
  43094. image: {
  43095. source: "./media/characters/mag/maw.svg"
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Small",
  43102. height: math.unit(162, "feet")
  43103. },
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(3.2, "earths"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(512, "feet"),
  43116. weight: math.unit(63509, "tonnes"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/vorrel-harroc/front.svg",
  43120. extra: 1075/1063,
  43121. bottom: 62/1137
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(10, "feet")
  43129. },
  43130. {
  43131. name: "Macro",
  43132. height: math.unit(512, "feet"),
  43133. default: true
  43134. },
  43135. {
  43136. name: "Megamacro",
  43137. height: math.unit(256, "miles")
  43138. },
  43139. {
  43140. name: "Gigamacro",
  43141. height: math.unit(4096, "miles")
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43147. {
  43148. side: {
  43149. height: math.unit(50, "feet"),
  43150. name: "Side",
  43151. image: {
  43152. source: "./media/characters/froimar/side.svg",
  43153. extra: 855/638,
  43154. bottom: 99/954
  43155. }
  43156. },
  43157. },
  43158. [
  43159. {
  43160. name: "Macro",
  43161. height: math.unit(50, "feet"),
  43162. default: true
  43163. },
  43164. ]
  43165. ))
  43166. characterMakers.push(() => makeCharacter(
  43167. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43168. {
  43169. front: {
  43170. height: math.unit(210, "miles"),
  43171. name: "Front",
  43172. image: {
  43173. source: "./media/characters/timothy/front.svg",
  43174. extra: 1007/943,
  43175. bottom: 62/1069
  43176. }
  43177. },
  43178. frontSkirt: {
  43179. height: math.unit(210, "miles"),
  43180. name: "Front (Skirt)",
  43181. image: {
  43182. source: "./media/characters/timothy/front-skirt.svg",
  43183. extra: 1007/943,
  43184. bottom: 62/1069
  43185. }
  43186. },
  43187. frontCoat: {
  43188. height: math.unit(210, "miles"),
  43189. name: "Front (Coat)",
  43190. image: {
  43191. source: "./media/characters/timothy/front-coat.svg",
  43192. extra: 1007/943,
  43193. bottom: 62/1069
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Macro",
  43200. height: math.unit(210, "miles"),
  43201. default: true
  43202. },
  43203. {
  43204. name: "Megamacro",
  43205. height: math.unit(210000, "miles")
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(188, "feet"),
  43214. name: "Front",
  43215. image: {
  43216. source: "./media/characters/pyotr/front.svg",
  43217. extra: 1912/1826,
  43218. bottom: 18/1930
  43219. }
  43220. },
  43221. },
  43222. [
  43223. {
  43224. name: "Macro",
  43225. height: math.unit(188, "feet"),
  43226. default: true
  43227. },
  43228. {
  43229. name: "Megamacro",
  43230. height: math.unit(8, "miles")
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43236. {
  43237. side: {
  43238. height: math.unit(10, "feet"),
  43239. weight: math.unit(4500, "lb"),
  43240. name: "Side",
  43241. image: {
  43242. source: "./media/characters/ackart/side.svg",
  43243. extra: 1776/1668,
  43244. bottom: 116/1892
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Normal",
  43251. height: math.unit(10, "feet"),
  43252. default: true
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43258. {
  43259. side: {
  43260. height: math.unit(21, "feet"),
  43261. name: "Side",
  43262. image: {
  43263. source: "./media/characters/nolow/side.svg",
  43264. extra: 1484/1434,
  43265. bottom: 85/1569
  43266. }
  43267. },
  43268. sideErect: {
  43269. height: math.unit(21, "feet"),
  43270. name: "Side-erect",
  43271. image: {
  43272. source: "./media/characters/nolow/side-erect.svg",
  43273. extra: 1484/1434,
  43274. bottom: 85/1569
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Regular",
  43281. height: math.unit(12, "feet")
  43282. },
  43283. {
  43284. name: "Big Chee",
  43285. height: math.unit(21, "feet"),
  43286. default: true
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43292. {
  43293. front: {
  43294. height: math.unit(7, "feet"),
  43295. weight: math.unit(250, "lb"),
  43296. name: "Front",
  43297. image: {
  43298. source: "./media/characters/nines/front.svg",
  43299. extra: 1741/1607,
  43300. bottom: 41/1782
  43301. }
  43302. },
  43303. side: {
  43304. height: math.unit(7, "feet"),
  43305. weight: math.unit(250, "lb"),
  43306. name: "Side",
  43307. image: {
  43308. source: "./media/characters/nines/side.svg",
  43309. extra: 1854/1735,
  43310. bottom: 93/1947
  43311. }
  43312. },
  43313. back: {
  43314. height: math.unit(7, "feet"),
  43315. weight: math.unit(250, "lb"),
  43316. name: "Back",
  43317. image: {
  43318. source: "./media/characters/nines/back.svg",
  43319. extra: 1748/1615,
  43320. bottom: 20/1768
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Megamacro",
  43327. height: math.unit(99, "km"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(5 + 10/12, "feet"),
  43337. weight: math.unit(210, "lb"),
  43338. name: "Front",
  43339. image: {
  43340. source: "./media/characters/zenith/front.svg",
  43341. extra: 1531/1452,
  43342. bottom: 198/1729
  43343. }
  43344. },
  43345. back: {
  43346. height: math.unit(5 + 10/12, "feet"),
  43347. weight: math.unit(210, "lb"),
  43348. name: "Back",
  43349. image: {
  43350. source: "./media/characters/zenith/back.svg",
  43351. extra: 1571/1487,
  43352. bottom: 75/1646
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Normal",
  43359. height: math.unit(5 + 10/12, "feet"),
  43360. default: true
  43361. }
  43362. ]
  43363. ))
  43364. characterMakers.push(() => makeCharacter(
  43365. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43366. {
  43367. front: {
  43368. height: math.unit(4, "feet"),
  43369. weight: math.unit(60, "lb"),
  43370. name: "Front",
  43371. image: {
  43372. source: "./media/characters/jasper/front.svg",
  43373. extra: 1450/1379,
  43374. bottom: 19/1469
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(4, "feet"),
  43382. default: true
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(6 + 5/12, "feet"),
  43391. weight: math.unit(290, "lb"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/tiberius-thyben/front.svg",
  43395. extra: 757/739,
  43396. bottom: 39/796
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "Micro",
  43403. height: math.unit(1.5, "inches")
  43404. },
  43405. {
  43406. name: "Normal",
  43407. height: math.unit(6 + 5/12, "feet"),
  43408. default: true
  43409. },
  43410. {
  43411. name: "Macro",
  43412. height: math.unit(300, "feet")
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(5 + 6/12, "feet"),
  43421. weight: math.unit(60, "kg"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/sabre/front.svg",
  43425. extra: 738/671,
  43426. bottom: 27/765
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Teeny",
  43433. height: math.unit(2, "inches")
  43434. },
  43435. {
  43436. name: "Smol",
  43437. height: math.unit(8, "inches")
  43438. },
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(5 + 6/12, "feet"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Mini-Macro",
  43446. height: math.unit(15, "feet")
  43447. },
  43448. {
  43449. name: "Macro",
  43450. height: math.unit(50, "feet")
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(6 + 4/12, "feet"),
  43459. weight: math.unit(170, "lb"),
  43460. name: "Front",
  43461. image: {
  43462. source: "./media/characters/charlie/front.svg",
  43463. extra: 1348/1228,
  43464. bottom: 15/1363
  43465. }
  43466. },
  43467. },
  43468. [
  43469. {
  43470. name: "Macro",
  43471. height: math.unit(1700, "meters"),
  43472. default: true
  43473. },
  43474. {
  43475. name: "MegaMacro",
  43476. height: math.unit(20400, "meters")
  43477. },
  43478. ]
  43479. ))
  43480. characterMakers.push(() => makeCharacter(
  43481. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43482. {
  43483. front: {
  43484. height: math.unit(6 + 3/12, "feet"),
  43485. weight: math.unit(185, "lb"),
  43486. name: "Front",
  43487. image: {
  43488. source: "./media/characters/susan-grant/front.svg",
  43489. extra: 1351/1327,
  43490. bottom: 26/1377
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Normal",
  43497. height: math.unit(6 + 3/12, "feet"),
  43498. default: true
  43499. },
  43500. {
  43501. name: "Macro",
  43502. height: math.unit(225, "feet")
  43503. },
  43504. {
  43505. name: "Macro+",
  43506. height: math.unit(900, "feet")
  43507. },
  43508. {
  43509. name: "MegaMacro",
  43510. height: math.unit(14400, "feet")
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43516. {
  43517. front: {
  43518. height: math.unit(5 + 4/12, "feet"),
  43519. weight: math.unit(110, "lb"),
  43520. name: "Front",
  43521. image: {
  43522. source: "./media/characters/axel-isanov/front.svg",
  43523. extra: 1096/1065,
  43524. bottom: 13/1109
  43525. }
  43526. },
  43527. },
  43528. [
  43529. {
  43530. name: "Normal",
  43531. height: math.unit(5 + 4/12, "feet"),
  43532. default: true
  43533. },
  43534. ]
  43535. ))
  43536. characterMakers.push(() => makeCharacter(
  43537. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43538. {
  43539. front: {
  43540. height: math.unit(9, "feet"),
  43541. weight: math.unit(467, "lb"),
  43542. name: "Front",
  43543. image: {
  43544. source: "./media/characters/necahual/front.svg",
  43545. extra: 920/873,
  43546. bottom: 26/946
  43547. }
  43548. },
  43549. back: {
  43550. height: math.unit(9, "feet"),
  43551. weight: math.unit(467, "lb"),
  43552. name: "Back",
  43553. image: {
  43554. source: "./media/characters/necahual/back.svg",
  43555. extra: 930/884,
  43556. bottom: 16/946
  43557. }
  43558. },
  43559. frontUnderwear: {
  43560. height: math.unit(9, "feet"),
  43561. weight: math.unit(467, "lb"),
  43562. name: "Front (Underwear)",
  43563. image: {
  43564. source: "./media/characters/necahual/front-underwear.svg",
  43565. extra: 920/873,
  43566. bottom: 26/946
  43567. }
  43568. },
  43569. frontDressed: {
  43570. height: math.unit(9, "feet"),
  43571. weight: math.unit(467, "lb"),
  43572. name: "Front (Dressed)",
  43573. image: {
  43574. source: "./media/characters/necahual/front-dressed.svg",
  43575. extra: 920/873,
  43576. bottom: 26/946
  43577. }
  43578. },
  43579. },
  43580. [
  43581. {
  43582. name: "Comprsesed",
  43583. height: math.unit(9, "feet")
  43584. },
  43585. {
  43586. name: "Natural",
  43587. height: math.unit(15, "feet"),
  43588. default: true
  43589. },
  43590. {
  43591. name: "Boosted",
  43592. height: math.unit(50, "feet")
  43593. },
  43594. {
  43595. name: "Boosted+",
  43596. height: math.unit(150, "feet")
  43597. },
  43598. {
  43599. name: "Max",
  43600. height: math.unit(500, "feet")
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(22 + 1/12, "feet"),
  43609. weight: math.unit(3200, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/theo-acacia/front.svg",
  43613. extra: 1796/1741,
  43614. bottom: 83/1879
  43615. }
  43616. },
  43617. frontUnderwear: {
  43618. height: math.unit(22 + 1/12, "feet"),
  43619. weight: math.unit(3200, "lb"),
  43620. name: "Front (Underwear)",
  43621. image: {
  43622. source: "./media/characters/theo-acacia/front-underwear.svg",
  43623. extra: 1796/1741,
  43624. bottom: 83/1879
  43625. }
  43626. },
  43627. frontNude: {
  43628. height: math.unit(22 + 1/12, "feet"),
  43629. weight: math.unit(3200, "lb"),
  43630. name: "Front (Nude)",
  43631. image: {
  43632. source: "./media/characters/theo-acacia/front-nude.svg",
  43633. extra: 1796/1741,
  43634. bottom: 83/1879
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Normal",
  43641. height: math.unit(22 + 1/12, "feet"),
  43642. default: true
  43643. },
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43648. {
  43649. front: {
  43650. height: math.unit(20, "feet"),
  43651. name: "Front",
  43652. image: {
  43653. source: "./media/characters/astra/front.svg",
  43654. extra: 1850/1714,
  43655. bottom: 106/1956
  43656. }
  43657. },
  43658. frontUndressed: {
  43659. height: math.unit(20, "feet"),
  43660. name: "Front (Undressed)",
  43661. image: {
  43662. source: "./media/characters/astra/front-undressed.svg",
  43663. extra: 1926/1749,
  43664. bottom: 0/1926
  43665. }
  43666. },
  43667. hand: {
  43668. height: math.unit(1.53, "feet"),
  43669. name: "Hand",
  43670. image: {
  43671. source: "./media/characters/astra/hand.svg"
  43672. }
  43673. },
  43674. paw: {
  43675. height: math.unit(1.53, "feet"),
  43676. name: "Paw",
  43677. image: {
  43678. source: "./media/characters/astra/paw.svg"
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Smallest",
  43685. height: math.unit(20, "feet")
  43686. },
  43687. {
  43688. name: "Normal",
  43689. height: math.unit(1e9, "miles"),
  43690. default: true
  43691. },
  43692. {
  43693. name: "Larger",
  43694. height: math.unit(5, "multiverses")
  43695. },
  43696. {
  43697. name: "Largest",
  43698. height: math.unit(1e9, "multiverses")
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(8, "feet"),
  43707. name: "Front",
  43708. image: {
  43709. source: "./media/characters/breanna/front.svg",
  43710. extra: 1912/1632,
  43711. bottom: 33/1945
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Smallest",
  43718. height: math.unit(8, "feet")
  43719. },
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(1, "mile"),
  43723. default: true
  43724. },
  43725. {
  43726. name: "Maximum",
  43727. height: math.unit(1500000000000, "lightyears")
  43728. },
  43729. ]
  43730. ))
  43731. characterMakers.push(() => makeCharacter(
  43732. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43733. {
  43734. front: {
  43735. height: math.unit(5 + 11/12, "feet"),
  43736. weight: math.unit(155, "lb"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/cai/front.svg",
  43740. extra: 1823/1702,
  43741. bottom: 32/1855
  43742. }
  43743. },
  43744. back: {
  43745. height: math.unit(5 + 11/12, "feet"),
  43746. weight: math.unit(155, "lb"),
  43747. name: "Back",
  43748. image: {
  43749. source: "./media/characters/cai/back.svg",
  43750. extra: 1809/1708,
  43751. bottom: 31/1840
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(5 + 11/12, "feet"),
  43759. default: true
  43760. },
  43761. {
  43762. name: "Big",
  43763. height: math.unit(15, "feet")
  43764. },
  43765. {
  43766. name: "Macro",
  43767. height: math.unit(200, "feet")
  43768. },
  43769. ]
  43770. ))
  43771. characterMakers.push(() => makeCharacter(
  43772. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43773. {
  43774. front: {
  43775. height: math.unit(5 + 6/12, "feet"),
  43776. weight: math.unit(160, "lb"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43780. extra: 1227/1174,
  43781. bottom: 37/1264
  43782. }
  43783. },
  43784. },
  43785. [
  43786. {
  43787. name: "Macro",
  43788. height: math.unit(444, "meters"),
  43789. default: true
  43790. },
  43791. ]
  43792. ))
  43793. characterMakers.push(() => makeCharacter(
  43794. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43795. {
  43796. front: {
  43797. height: math.unit(18 + 7/12, "feet"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/rex/front.svg",
  43801. extra: 1941/1807,
  43802. bottom: 66/2007
  43803. }
  43804. },
  43805. back: {
  43806. height: math.unit(18 + 7/12, "feet"),
  43807. name: "Back",
  43808. image: {
  43809. source: "./media/characters/rex/back.svg",
  43810. extra: 1937/1822,
  43811. bottom: 42/1979
  43812. }
  43813. },
  43814. boot: {
  43815. height: math.unit(3.45, "feet"),
  43816. name: "Boot",
  43817. image: {
  43818. source: "./media/characters/rex/boot.svg"
  43819. }
  43820. },
  43821. paw: {
  43822. height: math.unit(4.17, "feet"),
  43823. name: "Paw",
  43824. image: {
  43825. source: "./media/characters/rex/paw.svg"
  43826. }
  43827. },
  43828. head: {
  43829. height: math.unit(6.728, "feet"),
  43830. name: "Head",
  43831. image: {
  43832. source: "./media/characters/rex/head.svg"
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Nano",
  43839. height: math.unit(18 + 7/12, "feet")
  43840. },
  43841. {
  43842. name: "Micro",
  43843. height: math.unit(1.5, "megameters")
  43844. },
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(440, "megameters"),
  43848. default: true
  43849. },
  43850. {
  43851. name: "Macro",
  43852. height: math.unit(2.5, "gigameters")
  43853. },
  43854. {
  43855. name: "Gigamacro",
  43856. height: math.unit(2, "galaxies")
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43862. {
  43863. side: {
  43864. height: math.unit(32, "feet"),
  43865. weight: math.unit(250000, "lb"),
  43866. name: "Side",
  43867. image: {
  43868. source: "./media/characters/silverwing/side.svg",
  43869. extra: 1100/1019,
  43870. bottom: 204/1304
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Normal",
  43877. height: math.unit(32, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(6 + 6/12, "feet"),
  43887. weight: math.unit(350, "lb"),
  43888. name: "Front",
  43889. image: {
  43890. source: "./media/characters/tristan-hawthorne/front.svg",
  43891. extra: 1159/1124,
  43892. bottom: 37/1196
  43893. },
  43894. form: "labrador",
  43895. default: true
  43896. },
  43897. skunkFront: {
  43898. height: math.unit(4 + 6/12, "feet"),
  43899. weight: math.unit(120, "lb"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43903. extra: 1609/1551,
  43904. bottom: 169/1778
  43905. },
  43906. form: "skunk",
  43907. default: true
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(6 + 6/12, "feet"),
  43914. form: "labrador",
  43915. default: true
  43916. },
  43917. {
  43918. name: "Normal",
  43919. height: math.unit(4 + 6/12, "feet"),
  43920. form: "skunk",
  43921. default: true
  43922. },
  43923. ],
  43924. {
  43925. "labrador": {
  43926. name: "Labrador",
  43927. default: true
  43928. },
  43929. "skunk": {
  43930. name: "Skunk"
  43931. }
  43932. }
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43936. {
  43937. front: {
  43938. height: math.unit(5 + 11/12, "feet"),
  43939. weight: math.unit(190, "lb"),
  43940. name: "Front",
  43941. image: {
  43942. source: "./media/characters/mizu/front.svg",
  43943. extra: 1988/1788,
  43944. bottom: 14/2002
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(5 + 11/12, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(1.7, "feet"),
  43961. weight: math.unit(50, "lb"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/dechroma/front.svg",
  43965. extra: 1095/859,
  43966. bottom: 64/1159
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "Normal",
  43973. height: math.unit(1.7, "feet"),
  43974. default: true
  43975. },
  43976. ]
  43977. ))
  43978. characterMakers.push(() => makeCharacter(
  43979. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43980. {
  43981. side: {
  43982. height: math.unit(30, "feet"),
  43983. name: "Side",
  43984. image: {
  43985. source: "./media/characters/veluren-thanazel/side.svg",
  43986. extra: 1611/633,
  43987. bottom: 118/1729
  43988. }
  43989. },
  43990. front: {
  43991. height: math.unit(30, "feet"),
  43992. name: "Front",
  43993. image: {
  43994. source: "./media/characters/veluren-thanazel/front.svg",
  43995. extra: 1486/636,
  43996. bottom: 238/1724
  43997. }
  43998. },
  43999. head: {
  44000. height: math.unit(21.4, "feet"),
  44001. name: "Head",
  44002. image: {
  44003. source: "./media/characters/veluren-thanazel/head.svg"
  44004. }
  44005. },
  44006. genitals: {
  44007. height: math.unit(19.4, "feet"),
  44008. name: "Genitals",
  44009. image: {
  44010. source: "./media/characters/veluren-thanazel/genitals.svg"
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Social",
  44017. height: math.unit(6, "feet")
  44018. },
  44019. {
  44020. name: "Play",
  44021. height: math.unit(12, "feet")
  44022. },
  44023. {
  44024. name: "True",
  44025. height: math.unit(30, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44032. {
  44033. front: {
  44034. height: math.unit(7 + 6/12, "feet"),
  44035. weight: math.unit(500, "kg"),
  44036. name: "Front",
  44037. image: {
  44038. source: "./media/characters/arcturas/front.svg",
  44039. extra: 1700/1500,
  44040. bottom: 145/1845
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(7 + 6/12, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44054. {
  44055. side: {
  44056. height: math.unit(6, "feet"),
  44057. weight: math.unit(2, "tons"),
  44058. name: "Side",
  44059. image: {
  44060. source: "./media/characters/vitaen/side.svg",
  44061. extra: 1157/617,
  44062. bottom: 122/1279
  44063. }
  44064. },
  44065. },
  44066. [
  44067. {
  44068. name: "Normal",
  44069. height: math.unit(6, "feet"),
  44070. default: true
  44071. },
  44072. ]
  44073. ))
  44074. characterMakers.push(() => makeCharacter(
  44075. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44076. {
  44077. front: {
  44078. height: math.unit(19, "feet"),
  44079. name: "Front",
  44080. image: {
  44081. source: "./media/characters/fia-dreamweaver/front.svg",
  44082. extra: 1630/1504,
  44083. bottom: 25/1655
  44084. }
  44085. },
  44086. },
  44087. [
  44088. {
  44089. name: "Normal",
  44090. height: math.unit(19, "feet"),
  44091. default: true
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44097. {
  44098. front: {
  44099. height: math.unit(5 + 4/12, "feet"),
  44100. name: "Front",
  44101. image: {
  44102. source: "./media/characters/artan/front.svg",
  44103. extra: 1618/1535,
  44104. bottom: 46/1664
  44105. }
  44106. },
  44107. back: {
  44108. height: math.unit(5 + 4/12, "feet"),
  44109. name: "Back",
  44110. image: {
  44111. source: "./media/characters/artan/back.svg",
  44112. extra: 1618/1543,
  44113. bottom: 31/1649
  44114. }
  44115. },
  44116. },
  44117. [
  44118. {
  44119. name: "Normal",
  44120. height: math.unit(5 + 4/12, "feet"),
  44121. default: true
  44122. },
  44123. ]
  44124. ))
  44125. characterMakers.push(() => makeCharacter(
  44126. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44127. {
  44128. side: {
  44129. height: math.unit(182, "cm"),
  44130. weight: math.unit(1000, "lb"),
  44131. name: "Side",
  44132. image: {
  44133. source: "./media/characters/silver-dragon/side.svg",
  44134. extra: 710/287,
  44135. bottom: 88/798
  44136. }
  44137. },
  44138. },
  44139. [
  44140. {
  44141. name: "Normal",
  44142. height: math.unit(182, "cm"),
  44143. default: true
  44144. },
  44145. ]
  44146. ))
  44147. characterMakers.push(() => makeCharacter(
  44148. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44149. {
  44150. side: {
  44151. height: math.unit(6 + 6/12, "feet"),
  44152. weight: math.unit(1.5, "tons"),
  44153. name: "Side",
  44154. image: {
  44155. source: "./media/characters/zephyr/side.svg",
  44156. extra: 1433/586,
  44157. bottom: 109/1542
  44158. }
  44159. },
  44160. },
  44161. [
  44162. {
  44163. name: "Normal",
  44164. height: math.unit(6 + 6/12, "feet"),
  44165. default: true
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44171. {
  44172. side: {
  44173. height: math.unit(1, "feet"),
  44174. name: "Side",
  44175. image: {
  44176. source: "./media/characters/vixye/side.svg",
  44177. extra: 632/541,
  44178. bottom: 0/632
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(1, "feet"),
  44186. default: true
  44187. },
  44188. {
  44189. name: "True",
  44190. height: math.unit(1e15, "multiverses")
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(8 + 2/12, "feet"),
  44199. weight: math.unit(650, "lb"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44203. extra: 1174/1137,
  44204. bottom: 82/1256
  44205. }
  44206. },
  44207. back: {
  44208. height: math.unit(8 + 2/12, "feet"),
  44209. weight: math.unit(650, "lb"),
  44210. name: "Back",
  44211. image: {
  44212. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44213. extra: 1204/1157,
  44214. bottom: 46/1250
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Wildform",
  44221. height: math.unit(8 + 2/12, "feet"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44228. {
  44229. front: {
  44230. height: math.unit(18, "feet"),
  44231. name: "Front",
  44232. image: {
  44233. source: "./media/characters/cyphin/front.svg",
  44234. extra: 970/886,
  44235. bottom: 42/1012
  44236. }
  44237. },
  44238. back: {
  44239. height: math.unit(18, "feet"),
  44240. name: "Back",
  44241. image: {
  44242. source: "./media/characters/cyphin/back.svg",
  44243. extra: 1009/894,
  44244. bottom: 24/1033
  44245. }
  44246. },
  44247. head: {
  44248. height: math.unit(5.05, "feet"),
  44249. name: "Head",
  44250. image: {
  44251. source: "./media/characters/cyphin/head.svg"
  44252. }
  44253. },
  44254. tailbud: {
  44255. height: math.unit(5, "feet"),
  44256. name: "Tailbud",
  44257. image: {
  44258. source: "./media/characters/cyphin/tailbud.svg"
  44259. }
  44260. },
  44261. },
  44262. [
  44263. ]
  44264. ))
  44265. characterMakers.push(() => makeCharacter(
  44266. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44267. {
  44268. side: {
  44269. height: math.unit(10, "feet"),
  44270. weight: math.unit(6, "tons"),
  44271. name: "Side",
  44272. image: {
  44273. source: "./media/characters/raijin/side.svg",
  44274. extra: 1529/613,
  44275. bottom: 337/1866
  44276. }
  44277. },
  44278. },
  44279. [
  44280. {
  44281. name: "Normal",
  44282. height: math.unit(10, "feet"),
  44283. default: true
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44289. {
  44290. side: {
  44291. height: math.unit(9, "feet"),
  44292. name: "Side",
  44293. image: {
  44294. source: "./media/characters/nilghais/side.svg",
  44295. extra: 1047/744,
  44296. bottom: 91/1138
  44297. }
  44298. },
  44299. head: {
  44300. height: math.unit(3.14, "feet"),
  44301. name: "Head",
  44302. image: {
  44303. source: "./media/characters/nilghais/head.svg"
  44304. }
  44305. },
  44306. mouth: {
  44307. height: math.unit(4.6, "feet"),
  44308. name: "Mouth",
  44309. image: {
  44310. source: "./media/characters/nilghais/mouth.svg"
  44311. }
  44312. },
  44313. wings: {
  44314. height: math.unit(24, "feet"),
  44315. name: "Wings",
  44316. image: {
  44317. source: "./media/characters/nilghais/wings.svg"
  44318. }
  44319. },
  44320. ass: {
  44321. height: math.unit(6.12, "feet"),
  44322. name: "Ass",
  44323. image: {
  44324. source: "./media/characters/nilghais/ass.svg"
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(9, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44338. {
  44339. regular: {
  44340. height: math.unit(16 + 2/12, "feet"),
  44341. weight: math.unit(2300, "lb"),
  44342. name: "Regular",
  44343. image: {
  44344. source: "./media/characters/zolgar/regular.svg",
  44345. extra: 1246/1004,
  44346. bottom: 124/1370
  44347. }
  44348. },
  44349. boxers: {
  44350. height: math.unit(16 + 2/12, "feet"),
  44351. weight: math.unit(2300, "lb"),
  44352. name: "Boxers",
  44353. image: {
  44354. source: "./media/characters/zolgar/boxers.svg",
  44355. extra: 1246/1004,
  44356. bottom: 124/1370
  44357. }
  44358. },
  44359. armored: {
  44360. height: math.unit(16 + 2/12, "feet"),
  44361. weight: math.unit(2300, "lb"),
  44362. name: "Armored",
  44363. image: {
  44364. source: "./media/characters/zolgar/armored.svg",
  44365. extra: 1246/1004,
  44366. bottom: 124/1370
  44367. }
  44368. },
  44369. goth: {
  44370. height: math.unit(16 + 2/12, "feet"),
  44371. weight: math.unit(2300, "lb"),
  44372. name: "Goth",
  44373. image: {
  44374. source: "./media/characters/zolgar/goth.svg",
  44375. extra: 1246/1004,
  44376. bottom: 124/1370
  44377. }
  44378. },
  44379. },
  44380. [
  44381. {
  44382. name: "Shrunken Down",
  44383. height: math.unit(9 + 2/12, "feet")
  44384. },
  44385. {
  44386. name: "Normal",
  44387. height: math.unit(16 + 2/12, "feet"),
  44388. default: true
  44389. },
  44390. ]
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44394. {
  44395. front: {
  44396. height: math.unit(6, "feet"),
  44397. weight: math.unit(168, "lb"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/luca/front.svg",
  44401. extra: 841/667,
  44402. bottom: 102/943
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(6, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44416. {
  44417. side: {
  44418. height: math.unit(7 + 3/12, "feet"),
  44419. weight: math.unit(312, "lb"),
  44420. name: "Side",
  44421. image: {
  44422. source: "./media/characters/zezo/side.svg",
  44423. extra: 1192/1067,
  44424. bottom: 63/1255
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(7 + 3/12, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44438. {
  44439. front: {
  44440. height: math.unit(5 + 5/12, "feet"),
  44441. weight: math.unit(170, "lb"),
  44442. name: "Front",
  44443. image: {
  44444. source: "./media/characters/mayso/front.svg",
  44445. extra: 1215/1108,
  44446. bottom: 16/1231
  44447. }
  44448. },
  44449. },
  44450. [
  44451. {
  44452. name: "Normal",
  44453. height: math.unit(5 + 5/12, "feet"),
  44454. default: true
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(4 + 3/12, "feet"),
  44463. weight: math.unit(80, "lb"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/hess/front.svg",
  44467. extra: 1200/1123,
  44468. bottom: 16/1216
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(4 + 3/12, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44482. {
  44483. front: {
  44484. height: math.unit(1.9, "meters"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/ashgar/front.svg",
  44488. extra: 1177/1146,
  44489. bottom: 99/1276
  44490. }
  44491. },
  44492. back: {
  44493. height: math.unit(1.9, "meters"),
  44494. name: "Back",
  44495. image: {
  44496. source: "./media/characters/ashgar/back.svg",
  44497. extra: 1201/1183,
  44498. bottom: 53/1254
  44499. }
  44500. },
  44501. feral: {
  44502. height: math.unit(1.4, "meters"),
  44503. name: "Feral",
  44504. image: {
  44505. source: "./media/characters/ashgar/feral.svg",
  44506. extra: 370/345,
  44507. bottom: 45/415
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(1.9, "meters"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44521. {
  44522. regular: {
  44523. height: math.unit(6, "feet"),
  44524. weight: math.unit(220, "lb"),
  44525. name: "Regular",
  44526. image: {
  44527. source: "./media/characters/phillip/regular.svg",
  44528. extra: 1373/1277,
  44529. bottom: 75/1448
  44530. }
  44531. },
  44532. dressed: {
  44533. height: math.unit(6, "feet"),
  44534. weight: math.unit(220, "lb"),
  44535. name: "Dressed",
  44536. image: {
  44537. source: "./media/characters/phillip/dressed.svg",
  44538. extra: 1373/1277,
  44539. bottom: 75/1448
  44540. }
  44541. },
  44542. paw: {
  44543. height: math.unit(1.44, "feet"),
  44544. name: "Paw",
  44545. image: {
  44546. source: "./media/characters/phillip/paw.svg"
  44547. }
  44548. },
  44549. },
  44550. [
  44551. {
  44552. name: "Normal",
  44553. height: math.unit(6, "feet"),
  44554. default: true
  44555. },
  44556. ]
  44557. ))
  44558. characterMakers.push(() => makeCharacter(
  44559. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44560. {
  44561. side: {
  44562. height: math.unit(42, "feet"),
  44563. name: "Side",
  44564. image: {
  44565. source: "./media/characters/uvula/side.svg",
  44566. extra: 683/586,
  44567. bottom: 60/743
  44568. }
  44569. },
  44570. front: {
  44571. height: math.unit(42, "feet"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/uvula/front.svg",
  44575. extra: 705/613,
  44576. bottom: 54/759
  44577. }
  44578. },
  44579. maw: {
  44580. height: math.unit(23.5, "feet"),
  44581. name: "Maw",
  44582. image: {
  44583. source: "./media/characters/uvula/maw.svg"
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Original Size",
  44590. height: math.unit(14, "inches")
  44591. },
  44592. {
  44593. name: "Human Size",
  44594. height: math.unit(6, "feet")
  44595. },
  44596. {
  44597. name: "Big",
  44598. height: math.unit(42, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Bigger",
  44603. height: math.unit(100, "feet")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(5 + 11/12, "feet"),
  44612. name: "Front",
  44613. image: {
  44614. source: "./media/characters/lannah/front.svg",
  44615. extra: 1208/1113,
  44616. bottom: 97/1305
  44617. }
  44618. },
  44619. },
  44620. [
  44621. {
  44622. name: "Normal",
  44623. height: math.unit(5 + 11/12, "feet"),
  44624. default: true
  44625. },
  44626. ]
  44627. ))
  44628. characterMakers.push(() => makeCharacter(
  44629. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44630. {
  44631. front: {
  44632. height: math.unit(6 + 3/12, "feet"),
  44633. weight: math.unit(3.5, "tons"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/emberflame/front.svg",
  44637. extra: 1198/672,
  44638. bottom: 82/1280
  44639. }
  44640. },
  44641. side: {
  44642. height: math.unit(6 + 3/12, "feet"),
  44643. weight: math.unit(3.5, "tons"),
  44644. name: "Side",
  44645. image: {
  44646. source: "./media/characters/emberflame/side.svg",
  44647. extra: 938/527,
  44648. bottom: 56/994
  44649. }
  44650. },
  44651. },
  44652. [
  44653. {
  44654. name: "Normal",
  44655. height: math.unit(6 + 3/12, "feet"),
  44656. default: true
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44662. {
  44663. side: {
  44664. height: math.unit(17.5, "feet"),
  44665. weight: math.unit(35, "tons"),
  44666. name: "Side",
  44667. image: {
  44668. source: "./media/characters/sophie-ambrose/side.svg",
  44669. extra: 1573/1242,
  44670. bottom: 71/1644
  44671. }
  44672. },
  44673. maw: {
  44674. height: math.unit(7.4, "feet"),
  44675. name: "Maw",
  44676. image: {
  44677. source: "./media/characters/sophie-ambrose/maw.svg"
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(17.5, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(280, "feet"),
  44694. weight: math.unit(550, "tons"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/king-mugi/front.svg",
  44698. extra: 1102/947,
  44699. bottom: 104/1206
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "King Mugi",
  44706. height: math.unit(280, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(64, "meters"),
  44716. name: "Front",
  44717. image: {
  44718. source: "./media/characters/nova-fox/front.svg",
  44719. extra: 1310/1246,
  44720. bottom: 65/1375
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Macro",
  44727. height: math.unit(64, "meters"),
  44728. default: true
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44734. {
  44735. front: {
  44736. height: math.unit(6 + 3/12, "feet"),
  44737. weight: math.unit(170, "lb"),
  44738. name: "Front",
  44739. image: {
  44740. source: "./media/characters/sam-bat/front.svg",
  44741. extra: 1601/1411,
  44742. bottom: 125/1726
  44743. }
  44744. },
  44745. back: {
  44746. height: math.unit(6 + 3/12, "feet"),
  44747. weight: math.unit(170, "lb"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/sam-bat/back.svg",
  44751. extra: 1577/1405,
  44752. bottom: 58/1635
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(6 + 3/12, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44766. {
  44767. front: {
  44768. height: math.unit(59, "feet"),
  44769. weight: math.unit(40000, "lb"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/inari/front.svg",
  44773. extra: 1884/1350,
  44774. bottom: 95/1979
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Gigantamax",
  44781. height: math.unit(59, "feet"),
  44782. default: true
  44783. },
  44784. ]
  44785. ))
  44786. characterMakers.push(() => makeCharacter(
  44787. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44788. {
  44789. front: {
  44790. height: math.unit(5 + 8/12, "feet"),
  44791. name: "Front",
  44792. image: {
  44793. source: "./media/characters/elizabeth/front.svg",
  44794. extra: 1395/1298,
  44795. bottom: 54/1449
  44796. }
  44797. },
  44798. mouth: {
  44799. height: math.unit(1.97, "feet"),
  44800. name: "Mouth",
  44801. image: {
  44802. source: "./media/characters/elizabeth/mouth.svg"
  44803. }
  44804. },
  44805. foot: {
  44806. height: math.unit(1.17, "feet"),
  44807. name: "Foot",
  44808. image: {
  44809. source: "./media/characters/elizabeth/foot.svg"
  44810. }
  44811. },
  44812. },
  44813. [
  44814. {
  44815. name: "Normal",
  44816. height: math.unit(5 + 8/12, "feet"),
  44817. default: true
  44818. },
  44819. {
  44820. name: "Minimacro",
  44821. height: math.unit(18, "feet")
  44822. },
  44823. {
  44824. name: "Macro",
  44825. height: math.unit(180, "feet")
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44831. {
  44832. front: {
  44833. height: math.unit(5 + 2/12, "feet"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/october-gossamer/front.svg",
  44837. extra: 505/454,
  44838. bottom: 7/512
  44839. }
  44840. },
  44841. back: {
  44842. height: math.unit(5 + 2/12, "feet"),
  44843. name: "Back",
  44844. image: {
  44845. source: "./media/characters/october-gossamer/back.svg",
  44846. extra: 501/454,
  44847. bottom: 11/512
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(5 + 2/12, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(5, "feet"),
  44864. name: "Front",
  44865. image: {
  44866. source: "./media/characters/epiglottis/front.svg",
  44867. extra: 923/849,
  44868. bottom: 17/940
  44869. }
  44870. },
  44871. },
  44872. [
  44873. {
  44874. name: "Original Size",
  44875. height: math.unit(10, "inches")
  44876. },
  44877. {
  44878. name: "Human Size",
  44879. height: math.unit(5, "feet"),
  44880. default: true
  44881. },
  44882. {
  44883. name: "Big",
  44884. height: math.unit(25, "feet")
  44885. },
  44886. {
  44887. name: "Bigger",
  44888. height: math.unit(50, "feet")
  44889. },
  44890. {
  44891. name: "oh lawd",
  44892. height: math.unit(75, "feet")
  44893. },
  44894. ]
  44895. ))
  44896. characterMakers.push(() => makeCharacter(
  44897. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44898. {
  44899. front: {
  44900. height: math.unit(2 + 4/12, "feet"),
  44901. weight: math.unit(60, "lb"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/lerm/front.svg",
  44905. extra: 796/790,
  44906. bottom: 79/875
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Normal",
  44913. height: math.unit(2 + 4/12, "feet"),
  44914. default: true
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44920. {
  44921. front: {
  44922. height: math.unit(5.5, "feet"),
  44923. weight: math.unit(130, "lb"),
  44924. name: "Front",
  44925. image: {
  44926. source: "./media/characters/xena-nebadon/front.svg",
  44927. extra: 1828/1730,
  44928. bottom: 79/1907
  44929. }
  44930. },
  44931. },
  44932. [
  44933. {
  44934. name: "Tiny Puppy",
  44935. height: math.unit(3, "inches")
  44936. },
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(5.5, "feet"),
  44940. default: true
  44941. },
  44942. {
  44943. name: "Lotta Lady",
  44944. height: math.unit(12, "feet")
  44945. },
  44946. {
  44947. name: "Pretty Big",
  44948. height: math.unit(100, "feet")
  44949. },
  44950. {
  44951. name: "Big",
  44952. height: math.unit(500, "feet")
  44953. },
  44954. {
  44955. name: "Skyscraper Toys",
  44956. height: math.unit(2500, "feet")
  44957. },
  44958. {
  44959. name: "Plane Catcher",
  44960. height: math.unit(8, "miles")
  44961. },
  44962. {
  44963. name: "Planet Toys",
  44964. height: math.unit(15, "earths")
  44965. },
  44966. {
  44967. name: "Stardust",
  44968. height: math.unit(0.25, "galaxies")
  44969. },
  44970. {
  44971. name: "Snacks",
  44972. height: math.unit(70, "universes")
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44978. {
  44979. front: {
  44980. height: math.unit(1.6, "meters"),
  44981. weight: math.unit(60, "kg"),
  44982. name: "Front",
  44983. image: {
  44984. source: "./media/characters/bounty/front.svg",
  44985. extra: 1426/1308,
  44986. bottom: 15/1441
  44987. }
  44988. },
  44989. back: {
  44990. height: math.unit(1.6, "meters"),
  44991. weight: math.unit(60, "kg"),
  44992. name: "Back",
  44993. image: {
  44994. source: "./media/characters/bounty/back.svg",
  44995. extra: 1417/1307,
  44996. bottom: 8/1425
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Normal",
  45003. height: math.unit(1.6, "meters"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Macro",
  45008. height: math.unit(300, "meters")
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45014. {
  45015. front: {
  45016. height: math.unit(2 + 8/12, "feet"),
  45017. weight: math.unit(15, "lb"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/mochi/front.svg",
  45021. extra: 1022/852,
  45022. bottom: 435/1457
  45023. }
  45024. },
  45025. back: {
  45026. height: math.unit(2 + 8/12, "feet"),
  45027. weight: math.unit(15, "lb"),
  45028. name: "Back",
  45029. image: {
  45030. source: "./media/characters/mochi/back.svg",
  45031. extra: 1335/1119,
  45032. bottom: 39/1374
  45033. }
  45034. },
  45035. bird: {
  45036. height: math.unit(2 + 8/12, "feet"),
  45037. weight: math.unit(15, "lb"),
  45038. name: "Bird",
  45039. image: {
  45040. source: "./media/characters/mochi/bird.svg",
  45041. extra: 1251/1113,
  45042. bottom: 178/1429
  45043. }
  45044. },
  45045. kaiju: {
  45046. height: math.unit(154, "feet"),
  45047. weight: math.unit(1e7, "lb"),
  45048. name: "Kaiju",
  45049. image: {
  45050. source: "./media/characters/mochi/kaiju.svg",
  45051. extra: 460/324,
  45052. bottom: 40/500
  45053. }
  45054. },
  45055. head: {
  45056. height: math.unit(1.21, "feet"),
  45057. name: "Head",
  45058. image: {
  45059. source: "./media/characters/mochi/head.svg"
  45060. }
  45061. },
  45062. alternateTail: {
  45063. height: math.unit(2 + 8/12, "feet"),
  45064. weight: math.unit(45, "lb"),
  45065. name: "Alternate Tail",
  45066. image: {
  45067. source: "./media/characters/mochi/alternate-tail.svg",
  45068. extra: 139/76,
  45069. bottom: 45/184
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Micro",
  45076. height: math.unit(2, "inches")
  45077. },
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(2 + 8/12, "feet"),
  45081. default: true
  45082. },
  45083. {
  45084. name: "Macro",
  45085. height: math.unit(106, "feet")
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(5.67, "feet"),
  45094. weight: math.unit(135, "lb"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/sarel/front.svg",
  45098. extra: 865/788,
  45099. bottom: 97/962
  45100. }
  45101. },
  45102. back: {
  45103. height: math.unit(5.67, "feet"),
  45104. weight: math.unit(135, "lb"),
  45105. name: "Back",
  45106. image: {
  45107. source: "./media/characters/sarel/back.svg",
  45108. extra: 857/777,
  45109. bottom: 32/889
  45110. }
  45111. },
  45112. chozoan: {
  45113. height: math.unit(5.67, "feet"),
  45114. weight: math.unit(135, "lb"),
  45115. name: "Chozoan",
  45116. image: {
  45117. source: "./media/characters/sarel/chozoan.svg",
  45118. extra: 865/788,
  45119. bottom: 97/962
  45120. }
  45121. },
  45122. current: {
  45123. height: math.unit(5.67, "feet"),
  45124. weight: math.unit(135, "lb"),
  45125. name: "Current",
  45126. image: {
  45127. source: "./media/characters/sarel/current.svg",
  45128. extra: 865/788,
  45129. bottom: 97/962
  45130. }
  45131. },
  45132. head: {
  45133. height: math.unit(1.77, "feet"),
  45134. name: "Head",
  45135. image: {
  45136. source: "./media/characters/sarel/head.svg"
  45137. }
  45138. },
  45139. claws: {
  45140. height: math.unit(1.8, "feet"),
  45141. name: "Claws",
  45142. image: {
  45143. source: "./media/characters/sarel/claws.svg"
  45144. }
  45145. },
  45146. clawsAlt: {
  45147. height: math.unit(1.8, "feet"),
  45148. name: "Claws-alt",
  45149. image: {
  45150. source: "./media/characters/sarel/claws-alt.svg"
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(5.67, "feet"),
  45158. default: true
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45164. {
  45165. front: {
  45166. height: math.unit(5500, "feet"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/alyonia/front.svg",
  45170. extra: 1200/1135,
  45171. bottom: 29/1229
  45172. }
  45173. },
  45174. back: {
  45175. height: math.unit(5500, "feet"),
  45176. name: "Back",
  45177. image: {
  45178. source: "./media/characters/alyonia/back.svg",
  45179. extra: 1205/1138,
  45180. bottom: 10/1215
  45181. }
  45182. },
  45183. },
  45184. [
  45185. {
  45186. name: "Small",
  45187. height: math.unit(10, "feet")
  45188. },
  45189. {
  45190. name: "Macro",
  45191. height: math.unit(500, "feet")
  45192. },
  45193. {
  45194. name: "Mega Macro",
  45195. height: math.unit(5500, "feet"),
  45196. default: true
  45197. },
  45198. {
  45199. name: "Mega Macro+",
  45200. height: math.unit(500000, "feet")
  45201. },
  45202. {
  45203. name: "Giga Macro",
  45204. height: math.unit(3000, "miles")
  45205. },
  45206. {
  45207. name: "Tera Macro",
  45208. height: math.unit(2.8e6, "miles")
  45209. },
  45210. {
  45211. name: "Galactic",
  45212. height: math.unit(120000, "lightyears")
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45218. {
  45219. werewolf: {
  45220. height: math.unit(8, "feet"),
  45221. weight: math.unit(425, "lb"),
  45222. name: "Werewolf",
  45223. image: {
  45224. source: "./media/characters/autumn/werewolf.svg",
  45225. extra: 2154/2031,
  45226. bottom: 160/2314
  45227. }
  45228. },
  45229. human: {
  45230. height: math.unit(5 + 8/12, "feet"),
  45231. weight: math.unit(150, "lb"),
  45232. name: "Human",
  45233. image: {
  45234. source: "./media/characters/autumn/human.svg",
  45235. extra: 1200/1149,
  45236. bottom: 30/1230
  45237. }
  45238. },
  45239. },
  45240. [
  45241. {
  45242. name: "Normal",
  45243. height: math.unit(8, "feet"),
  45244. default: true
  45245. },
  45246. ]
  45247. ))
  45248. characterMakers.push(() => makeCharacter(
  45249. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45250. {
  45251. front: {
  45252. height: math.unit(8 + 5/12, "feet"),
  45253. weight: math.unit(825, "lb"),
  45254. name: "Front",
  45255. image: {
  45256. source: "./media/characters/cobalt-charizard/front.svg",
  45257. extra: 1268/1155,
  45258. bottom: 122/1390
  45259. }
  45260. },
  45261. side: {
  45262. height: math.unit(8 + 5/12, "feet"),
  45263. weight: math.unit(825, "lb"),
  45264. name: "Side",
  45265. image: {
  45266. source: "./media/characters/cobalt-charizard/side.svg",
  45267. extra: 1348/1257,
  45268. bottom: 58/1406
  45269. }
  45270. },
  45271. gMax: {
  45272. height: math.unit(134 + 11/12, "feet"),
  45273. name: "G-Max",
  45274. image: {
  45275. source: "./media/characters/cobalt-charizard/g-max.svg",
  45276. extra: 1835/1541,
  45277. bottom: 151/1986
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Normal",
  45284. height: math.unit(8 + 5/12, "feet"),
  45285. default: true
  45286. },
  45287. ]
  45288. ))
  45289. characterMakers.push(() => makeCharacter(
  45290. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45291. {
  45292. front: {
  45293. height: math.unit(6 + 3/12, "feet"),
  45294. weight: math.unit(210, "lb"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/stella/front.svg",
  45298. extra: 3549/3335,
  45299. bottom: 51/3600
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(6 + 3/12, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5, "feet"),
  45316. weight: math.unit(90, "lb"),
  45317. name: "Front",
  45318. image: {
  45319. source: "./media/characters/riley-bishop/front.svg",
  45320. extra: 1450/1428,
  45321. bottom: 152/1602
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(5, "feet"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45335. {
  45336. side: {
  45337. height: math.unit(8 + 2/12, "feet"),
  45338. weight: math.unit(500, "kg"),
  45339. name: "Side",
  45340. image: {
  45341. source: "./media/characters/theo-arcanine/side.svg",
  45342. extra: 1342/1074,
  45343. bottom: 111/1453
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Normal",
  45350. height: math.unit(8 + 2/12, "feet"),
  45351. default: true
  45352. },
  45353. ]
  45354. ))
  45355. characterMakers.push(() => makeCharacter(
  45356. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45357. {
  45358. front: {
  45359. height: math.unit(4, "feet"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/kali/front.svg",
  45363. extra: 1921/1357,
  45364. bottom: 70/1991
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Normal",
  45371. height: math.unit(4, "feet"),
  45372. default: true
  45373. },
  45374. {
  45375. name: "Macro",
  45376. height: math.unit(32, "meters")
  45377. },
  45378. {
  45379. name: "Macro+",
  45380. height: math.unit(150, "meters")
  45381. },
  45382. {
  45383. name: "Megamacro",
  45384. height: math.unit(7500, "meters")
  45385. },
  45386. {
  45387. name: "Megamacro+",
  45388. height: math.unit(80, "kilometers")
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45394. {
  45395. side: {
  45396. height: math.unit(5 + 11/12, "feet"),
  45397. weight: math.unit(236, "lb"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/gapp/side.svg",
  45401. extra: 775/340,
  45402. bottom: 58/833
  45403. }
  45404. },
  45405. mouth: {
  45406. height: math.unit(2.98, "feet"),
  45407. name: "Mouth",
  45408. image: {
  45409. source: "./media/characters/gapp/mouth.svg"
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(5 + 1/12, "feet"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(6, "feet"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/persephone/front.svg",
  45429. extra: 1895/1717,
  45430. bottom: 96/1991
  45431. }
  45432. },
  45433. back: {
  45434. height: math.unit(6, "feet"),
  45435. name: "Back",
  45436. image: {
  45437. source: "./media/characters/persephone/back.svg",
  45438. extra: 1868/1679,
  45439. bottom: 26/1894
  45440. }
  45441. },
  45442. casual: {
  45443. height: math.unit(6, "feet"),
  45444. name: "Casual",
  45445. image: {
  45446. source: "./media/characters/persephone/casual.svg",
  45447. extra: 1713/1541,
  45448. bottom: 76/1789
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Human Size",
  45455. height: math.unit(6, "feet")
  45456. },
  45457. {
  45458. name: "Big Steppy",
  45459. height: math.unit(600, "meters"),
  45460. default: true
  45461. },
  45462. {
  45463. name: "Galaxy Brain",
  45464. height: math.unit(1, "zettameter")
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(1.85, "meters"),
  45473. name: "Front",
  45474. image: {
  45475. source: "./media/characters/riley-foxthing/front.svg",
  45476. extra: 1495/1354,
  45477. bottom: 122/1617
  45478. }
  45479. },
  45480. frontAlt: {
  45481. height: math.unit(1.85, "meters"),
  45482. name: "Front (Alt)",
  45483. image: {
  45484. source: "./media/characters/riley-foxthing/front-alt.svg",
  45485. extra: 1572/1389,
  45486. bottom: 116/1688
  45487. }
  45488. },
  45489. },
  45490. [
  45491. {
  45492. name: "Normal Sized",
  45493. height: math.unit(1.85, "meters"),
  45494. default: true
  45495. },
  45496. {
  45497. name: "Quite Sizable",
  45498. height: math.unit(5, "meters")
  45499. },
  45500. {
  45501. name: "Rather Large",
  45502. height: math.unit(20, "meters")
  45503. },
  45504. {
  45505. name: "Macro",
  45506. height: math.unit(450, "meters")
  45507. },
  45508. {
  45509. name: "Giga",
  45510. height: math.unit(5, "km")
  45511. },
  45512. ]
  45513. ))
  45514. characterMakers.push(() => makeCharacter(
  45515. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45516. {
  45517. front: {
  45518. height: math.unit(6, "feet"),
  45519. weight: math.unit(200, "lb"),
  45520. name: "Front",
  45521. image: {
  45522. source: "./media/characters/blizzard/front.svg",
  45523. extra: 1136/990,
  45524. bottom: 136/1272
  45525. }
  45526. },
  45527. back: {
  45528. height: math.unit(6, "feet"),
  45529. weight: math.unit(200, "lb"),
  45530. name: "Back",
  45531. image: {
  45532. source: "./media/characters/blizzard/back.svg",
  45533. extra: 1175/1034,
  45534. bottom: 97/1272
  45535. }
  45536. },
  45537. sitting: {
  45538. height: math.unit(3.725, "feet"),
  45539. weight: math.unit(200, "lb"),
  45540. name: "Sitting",
  45541. image: {
  45542. source: "./media/characters/blizzard/sitting.svg",
  45543. extra: 581/485,
  45544. bottom: 90/671
  45545. }
  45546. },
  45547. frontWizard: {
  45548. height: math.unit(7.9, "feet"),
  45549. weight: math.unit(200, "lb"),
  45550. name: "Front (Wizard)",
  45551. image: {
  45552. source: "./media/characters/blizzard/front-wizard.svg"
  45553. }
  45554. },
  45555. backWizard: {
  45556. height: math.unit(7.9, "feet"),
  45557. weight: math.unit(200, "lb"),
  45558. name: "Back (Wizard)",
  45559. image: {
  45560. source: "./media/characters/blizzard/back-wizard.svg"
  45561. }
  45562. },
  45563. frontNsfw: {
  45564. height: math.unit(6, "feet"),
  45565. weight: math.unit(200, "lb"),
  45566. name: "Front (NSFW)",
  45567. image: {
  45568. source: "./media/characters/blizzard/front-nsfw.svg",
  45569. extra: 1136/990,
  45570. bottom: 136/1272
  45571. }
  45572. },
  45573. backNsfw: {
  45574. height: math.unit(6, "feet"),
  45575. weight: math.unit(200, "lb"),
  45576. name: "Back (NSFW)",
  45577. image: {
  45578. source: "./media/characters/blizzard/back-nsfw.svg",
  45579. extra: 1175/1034,
  45580. bottom: 97/1272
  45581. }
  45582. },
  45583. sittingNsfw: {
  45584. height: math.unit(3.725, "feet"),
  45585. weight: math.unit(200, "lb"),
  45586. name: "Sitting (NSFW)",
  45587. image: {
  45588. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45589. extra: 581/485,
  45590. bottom: 90/671
  45591. }
  45592. },
  45593. wizardFrontNsfw: {
  45594. height: math.unit(7.9, "feet"),
  45595. weight: math.unit(200, "lb"),
  45596. name: "Wizard (Front, NSFW)",
  45597. image: {
  45598. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(6, "feet"),
  45606. default: true
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(5 + 2/12, "feet"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/lumi/front.svg",
  45618. extra: 1328/1268,
  45619. bottom: 103/1431
  45620. }
  45621. },
  45622. back: {
  45623. height: math.unit(5 + 2/12, "feet"),
  45624. name: "Back",
  45625. image: {
  45626. source: "./media/characters/lumi/back.svg",
  45627. extra: 1381/1327,
  45628. bottom: 43/1424
  45629. }
  45630. },
  45631. },
  45632. [
  45633. {
  45634. name: "Normal",
  45635. height: math.unit(5 + 2/12, "feet"),
  45636. default: true
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45642. {
  45643. front: {
  45644. height: math.unit(5 + 9/12, "feet"),
  45645. name: "Front",
  45646. image: {
  45647. source: "./media/characters/aliya-cotton/front.svg",
  45648. extra: 577/564,
  45649. bottom: 29/606
  45650. }
  45651. },
  45652. },
  45653. [
  45654. {
  45655. name: "Normal",
  45656. height: math.unit(5 + 9/12, "feet"),
  45657. default: true
  45658. },
  45659. ]
  45660. ))
  45661. characterMakers.push(() => makeCharacter(
  45662. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45663. {
  45664. front: {
  45665. height: math.unit(2.7, "meters"),
  45666. weight: math.unit(25000, "lb"),
  45667. name: "Front",
  45668. image: {
  45669. source: "./media/characters/noah-luxray/front.svg",
  45670. extra: 1644/825,
  45671. bottom: 339/1983
  45672. }
  45673. },
  45674. side: {
  45675. height: math.unit(2.97, "meters"),
  45676. weight: math.unit(25000, "lb"),
  45677. name: "Side",
  45678. image: {
  45679. source: "./media/characters/noah-luxray/side.svg",
  45680. extra: 1319/650,
  45681. bottom: 163/1482
  45682. }
  45683. },
  45684. dick: {
  45685. height: math.unit(7.4, "feet"),
  45686. weight: math.unit(2500, "lb"),
  45687. name: "Dick",
  45688. image: {
  45689. source: "./media/characters/noah-luxray/dick.svg"
  45690. }
  45691. },
  45692. dickAlt: {
  45693. height: math.unit(10.83, "feet"),
  45694. weight: math.unit(2500, "lb"),
  45695. name: "Dick-alt",
  45696. image: {
  45697. source: "./media/characters/noah-luxray/dick-alt.svg"
  45698. }
  45699. },
  45700. },
  45701. [
  45702. {
  45703. name: "BIG",
  45704. height: math.unit(2.7, "meters"),
  45705. default: true
  45706. },
  45707. ]
  45708. ))
  45709. characterMakers.push(() => makeCharacter(
  45710. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45711. {
  45712. standing: {
  45713. height: math.unit(183, "cm"),
  45714. weight: math.unit(68, "kg"),
  45715. name: "Standing",
  45716. image: {
  45717. source: "./media/characters/arion/standing.svg",
  45718. extra: 1869/1807,
  45719. bottom: 93/1962
  45720. }
  45721. },
  45722. reclining: {
  45723. height: math.unit(70.5, "cm"),
  45724. weight: math.unit(68, "lb"),
  45725. name: "Reclining",
  45726. image: {
  45727. source: "./media/characters/arion/reclining.svg",
  45728. extra: 937/870,
  45729. bottom: 63/1000
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Colossus Size, Low",
  45736. height: math.unit(33, "meters"),
  45737. default: true
  45738. },
  45739. {
  45740. name: "Colossus Size, Mid",
  45741. height: math.unit(52, "meters")
  45742. },
  45743. {
  45744. name: "Colossus Size, High",
  45745. height: math.unit(60, "meters")
  45746. },
  45747. {
  45748. name: "Titan Size, Low",
  45749. height: math.unit(91, "meters"),
  45750. },
  45751. {
  45752. name: "Titan Size, Mid",
  45753. height: math.unit(122, "meters")
  45754. },
  45755. {
  45756. name: "Titan Size, High",
  45757. height: math.unit(162, "meters")
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(53, "meters"),
  45766. name: "Front",
  45767. image: {
  45768. source: "./media/characters/stellar-marbey/front.svg",
  45769. extra: 1913/1805,
  45770. bottom: 92/2005
  45771. }
  45772. },
  45773. back: {
  45774. height: math.unit(53, "meters"),
  45775. name: "Back",
  45776. image: {
  45777. source: "./media/characters/stellar-marbey/back.svg",
  45778. extra: 1960/1851,
  45779. bottom: 28/1988
  45780. }
  45781. },
  45782. mouth: {
  45783. height: math.unit(3.5, "meters"),
  45784. name: "Mouth",
  45785. image: {
  45786. source: "./media/characters/stellar-marbey/mouth.svg"
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Macro",
  45793. height: math.unit(53, "meters"),
  45794. default: true
  45795. },
  45796. ]
  45797. ))
  45798. characterMakers.push(() => makeCharacter(
  45799. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45800. {
  45801. front: {
  45802. height: math.unit(8 + 1/12, "feet"),
  45803. weight: math.unit(233, "lb"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/matsu/front.svg",
  45807. extra: 832/772,
  45808. bottom: 40/872
  45809. }
  45810. },
  45811. back: {
  45812. height: math.unit(8 + 1/12, "feet"),
  45813. weight: math.unit(233, "lb"),
  45814. name: "Back",
  45815. image: {
  45816. source: "./media/characters/matsu/back.svg",
  45817. extra: 839/780,
  45818. bottom: 47/886
  45819. }
  45820. },
  45821. },
  45822. [
  45823. {
  45824. name: "Normal",
  45825. height: math.unit(8 + 1/12, "feet"),
  45826. default: true
  45827. },
  45828. ]
  45829. ))
  45830. characterMakers.push(() => makeCharacter(
  45831. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45832. {
  45833. front: {
  45834. height: math.unit(4, "feet"),
  45835. weight: math.unit(148, "lb"),
  45836. name: "Front",
  45837. image: {
  45838. source: "./media/characters/thiz/front.svg",
  45839. extra: 1913/1748,
  45840. bottom: 62/1975
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(4, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(7 + 6/12, "feet"),
  45857. weight: math.unit(267, "lb"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/marcel/front.svg",
  45861. extra: 1221/1096,
  45862. bottom: 76/1297
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(7 + 6/12, "feet"),
  45870. default: true
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45876. {
  45877. side: {
  45878. height: math.unit(42, "meters"),
  45879. name: "Side",
  45880. image: {
  45881. source: "./media/characters/flake/side.svg",
  45882. extra: 1525/1306,
  45883. bottom: 209/1734
  45884. }
  45885. },
  45886. },
  45887. [
  45888. {
  45889. name: "Normal",
  45890. height: math.unit(42, "meters"),
  45891. default: true
  45892. },
  45893. ]
  45894. ))
  45895. characterMakers.push(() => makeCharacter(
  45896. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45897. {
  45898. dressed: {
  45899. height: math.unit(6 + 4/12, "feet"),
  45900. weight: math.unit(520, "lb"),
  45901. name: "Dressed",
  45902. image: {
  45903. source: "./media/characters/someonne/dressed.svg",
  45904. extra: 1020/1010,
  45905. bottom: 178/1198
  45906. }
  45907. },
  45908. undressed: {
  45909. height: math.unit(6 + 4/12, "feet"),
  45910. weight: math.unit(520, "lb"),
  45911. name: "Undressed",
  45912. image: {
  45913. source: "./media/characters/someonne/undressed.svg",
  45914. extra: 1019/1014,
  45915. bottom: 169/1188
  45916. }
  45917. },
  45918. },
  45919. [
  45920. {
  45921. name: "Normal",
  45922. height: math.unit(6 + 4/12, "feet"),
  45923. default: true
  45924. },
  45925. ]
  45926. ))
  45927. characterMakers.push(() => makeCharacter(
  45928. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45929. {
  45930. front: {
  45931. height: math.unit(3, "feet"),
  45932. weight: math.unit(30, "lb"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/till/front.svg",
  45936. extra: 892/823,
  45937. bottom: 55/947
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(3, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(9 + 8/12, "feet"),
  45954. weight: math.unit(800, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/sydney-heki/front.svg",
  45958. extra: 1360/1300,
  45959. bottom: 22/1382
  45960. }
  45961. },
  45962. back: {
  45963. height: math.unit(9 + 8/12, "feet"),
  45964. weight: math.unit(800, "lb"),
  45965. name: "Back",
  45966. image: {
  45967. source: "./media/characters/sydney-heki/back.svg",
  45968. extra: 1356/1293,
  45969. bottom: 12/1368
  45970. }
  45971. },
  45972. frontDressed: {
  45973. height: math.unit(9 + 8/12, "feet"),
  45974. weight: math.unit(800, "lb"),
  45975. name: "Front-dressed",
  45976. image: {
  45977. source: "./media/characters/sydney-heki/front-dressed.svg",
  45978. extra: 1360/1300,
  45979. bottom: 22/1382
  45980. }
  45981. },
  45982. },
  45983. [
  45984. {
  45985. name: "Normal",
  45986. height: math.unit(9 + 8/12, "feet"),
  45987. default: true
  45988. },
  45989. {
  45990. name: "Macro",
  45991. height: math.unit(500, "feet")
  45992. },
  45993. {
  45994. name: "Megamacro",
  45995. height: math.unit(3.6, "miles")
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(200, "cm"),
  46004. weight: math.unit(250, "lb"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/fowler-karlsson/front.svg",
  46008. extra: 897/845,
  46009. bottom: 123/1020
  46010. }
  46011. },
  46012. back: {
  46013. height: math.unit(200, "cm"),
  46014. weight: math.unit(250, "lb"),
  46015. name: "Back",
  46016. image: {
  46017. source: "./media/characters/fowler-karlsson/back.svg",
  46018. extra: 999/944,
  46019. bottom: 26/1025
  46020. }
  46021. },
  46022. dick: {
  46023. height: math.unit(1.92, "feet"),
  46024. weight: math.unit(150, "lb"),
  46025. name: "Dick",
  46026. image: {
  46027. source: "./media/characters/fowler-karlsson/dick.svg"
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(200, "cm"),
  46035. default: true
  46036. },
  46037. {
  46038. name: "Smaller Macro",
  46039. height: math.unit(90, "m")
  46040. },
  46041. {
  46042. name: "Macro",
  46043. height: math.unit(150, "m")
  46044. },
  46045. {
  46046. name: "Bigger Macro",
  46047. height: math.unit(300, "m")
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46053. {
  46054. side: {
  46055. height: math.unit(8 + 2/12, "feet"),
  46056. weight: math.unit(1, "tonne"),
  46057. name: "Side",
  46058. image: {
  46059. source: "./media/characters/rylide/side.svg",
  46060. extra: 1318/1034,
  46061. bottom: 106/1424
  46062. }
  46063. },
  46064. sitting: {
  46065. height: math.unit(303, "cm"),
  46066. weight: math.unit(1, "tonne"),
  46067. name: "Sitting",
  46068. image: {
  46069. source: "./media/characters/rylide/sitting.svg",
  46070. extra: 1303/1103,
  46071. bottom: 36/1339
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Normal",
  46078. height: math.unit(8 + 2/12, "feet"),
  46079. default: true
  46080. },
  46081. ]
  46082. ))
  46083. characterMakers.push(() => makeCharacter(
  46084. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46085. {
  46086. front: {
  46087. height: math.unit(5 + 10/12, "feet"),
  46088. weight: math.unit(160, "lb"),
  46089. name: "Front",
  46090. image: {
  46091. source: "./media/characters/pudask/front.svg",
  46092. extra: 1616/1590,
  46093. bottom: 161/1777
  46094. }
  46095. },
  46096. },
  46097. [
  46098. {
  46099. name: "Ferret Height",
  46100. height: math.unit(2 + 5/12, "feet")
  46101. },
  46102. {
  46103. name: "Canon Height",
  46104. height: math.unit(5 + 10/12, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46111. {
  46112. front: {
  46113. height: math.unit(3 + 6/12, "feet"),
  46114. weight: math.unit(60, "lb"),
  46115. name: "Front",
  46116. image: {
  46117. source: "./media/characters/ramita/front.svg",
  46118. extra: 1402/1232,
  46119. bottom: 62/1464
  46120. }
  46121. },
  46122. dressed: {
  46123. height: math.unit(3 + 6/12, "feet"),
  46124. weight: math.unit(60, "lb"),
  46125. name: "Dressed",
  46126. image: {
  46127. source: "./media/characters/ramita/dressed.svg",
  46128. extra: 1534/1249,
  46129. bottom: 50/1584
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(3 + 6/12, "feet"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(8, "feet"),
  46146. name: "Front",
  46147. image: {
  46148. source: "./media/characters/ark/front.svg",
  46149. extra: 772/693,
  46150. bottom: 45/817
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(8, "feet"),
  46158. default: true
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(6, "feet"),
  46167. weight: math.unit(250, "lb"),
  46168. volume: math.unit(5/8, "gallons"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/ludwig-horn/front.svg",
  46172. extra: 1782/1635,
  46173. bottom: 96/1878
  46174. }
  46175. },
  46176. back: {
  46177. height: math.unit(6, "feet"),
  46178. weight: math.unit(250, "lb"),
  46179. volume: math.unit(5/8, "gallons"),
  46180. name: "Back",
  46181. image: {
  46182. source: "./media/characters/ludwig-horn/back.svg",
  46183. extra: 1874/1729,
  46184. bottom: 27/1901
  46185. }
  46186. },
  46187. dick: {
  46188. height: math.unit(1.05, "feet"),
  46189. weight: math.unit(15, "lb"),
  46190. volume: math.unit(5/8, "gallons"),
  46191. name: "Dick",
  46192. image: {
  46193. source: "./media/characters/ludwig-horn/dick.svg"
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Small",
  46200. height: math.unit(6, "feet")
  46201. },
  46202. {
  46203. name: "Typical",
  46204. height: math.unit(12, "feet"),
  46205. default: true
  46206. },
  46207. {
  46208. name: "Building",
  46209. height: math.unit(80, "feet")
  46210. },
  46211. {
  46212. name: "Town",
  46213. height: math.unit(800, "feet")
  46214. },
  46215. {
  46216. name: "Kingdom",
  46217. height: math.unit(80000, "feet")
  46218. },
  46219. {
  46220. name: "Planet",
  46221. height: math.unit(8000000, "feet")
  46222. },
  46223. {
  46224. name: "Universe",
  46225. height: math.unit(8000000000, "feet")
  46226. },
  46227. {
  46228. name: "Transcended",
  46229. height: math.unit(8e27, "feet")
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46235. {
  46236. front: {
  46237. height: math.unit(5, "feet"),
  46238. weight: math.unit(50, "kg"),
  46239. name: "Front",
  46240. image: {
  46241. source: "./media/characters/biot-avery/front.svg",
  46242. extra: 1295/1232,
  46243. bottom: 86/1381
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Normal",
  46250. height: math.unit(5, "feet"),
  46251. default: true
  46252. },
  46253. ]
  46254. ))
  46255. characterMakers.push(() => makeCharacter(
  46256. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46257. {
  46258. front: {
  46259. height: math.unit(6, "feet"),
  46260. name: "Front",
  46261. image: {
  46262. source: "./media/characters/kitsune-kiro/front.svg",
  46263. extra: 1270/1158,
  46264. bottom: 42/1312
  46265. }
  46266. },
  46267. frontAlt: {
  46268. height: math.unit(6, "feet"),
  46269. name: "Front-alt",
  46270. image: {
  46271. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46272. extra: 1130/1081,
  46273. bottom: 36/1166
  46274. }
  46275. },
  46276. },
  46277. [
  46278. {
  46279. name: "Smol",
  46280. height: math.unit(3, "feet")
  46281. },
  46282. {
  46283. name: "Normal",
  46284. height: math.unit(6, "feet"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(6, "feet"),
  46294. weight: math.unit(125, "lb"),
  46295. name: "Front",
  46296. image: {
  46297. source: "./media/characters/jack-thatcher/front.svg",
  46298. extra: 1474/1370,
  46299. bottom: 26/1500
  46300. }
  46301. },
  46302. back: {
  46303. height: math.unit(6, "feet"),
  46304. weight: math.unit(125, "lb"),
  46305. name: "Back",
  46306. image: {
  46307. source: "./media/characters/jack-thatcher/back.svg",
  46308. extra: 1489/1384,
  46309. bottom: 18/1507
  46310. }
  46311. },
  46312. },
  46313. [
  46314. {
  46315. name: "Normal",
  46316. height: math.unit(6, "feet"),
  46317. default: true
  46318. },
  46319. {
  46320. name: "Macro",
  46321. height: math.unit(75, "feet")
  46322. },
  46323. {
  46324. name: "Macro-er",
  46325. height: math.unit(250, "feet")
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46331. {
  46332. front: {
  46333. height: math.unit(7, "feet"),
  46334. weight: math.unit(110, "kg"),
  46335. name: "Front",
  46336. image: {
  46337. source: "./media/characters/max-hyper/front.svg",
  46338. extra: 1969/1881,
  46339. bottom: 49/2018
  46340. }
  46341. },
  46342. },
  46343. [
  46344. {
  46345. name: "Normal",
  46346. height: math.unit(7, "feet"),
  46347. default: true
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46353. {
  46354. front: {
  46355. height: math.unit(5 + 5/12, "feet"),
  46356. weight: math.unit(160, "lb"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/spook/front.svg",
  46360. extra: 794/791,
  46361. bottom: 54/848
  46362. }
  46363. },
  46364. back: {
  46365. height: math.unit(5 + 5/12, "feet"),
  46366. weight: math.unit(160, "lb"),
  46367. name: "Back",
  46368. image: {
  46369. source: "./media/characters/spook/back.svg",
  46370. extra: 812/798,
  46371. bottom: 32/844
  46372. }
  46373. },
  46374. },
  46375. [
  46376. {
  46377. name: "Normal",
  46378. height: math.unit(5 + 5/12, "feet"),
  46379. default: true
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46385. {
  46386. front: {
  46387. height: math.unit(18, "feet"),
  46388. name: "Front",
  46389. image: {
  46390. source: "./media/characters/xeaduulix/front.svg",
  46391. extra: 1380/1166,
  46392. bottom: 110/1490
  46393. }
  46394. },
  46395. back: {
  46396. height: math.unit(18, "feet"),
  46397. name: "Back",
  46398. image: {
  46399. source: "./media/characters/xeaduulix/back.svg",
  46400. extra: 1592/1170,
  46401. bottom: 128/1720
  46402. }
  46403. },
  46404. frontNsfw: {
  46405. height: math.unit(18, "feet"),
  46406. name: "Front (NSFW)",
  46407. image: {
  46408. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46409. extra: 1380/1166,
  46410. bottom: 110/1490
  46411. }
  46412. },
  46413. backNsfw: {
  46414. height: math.unit(18, "feet"),
  46415. name: "Back (NSFW)",
  46416. image: {
  46417. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46418. extra: 1592/1170,
  46419. bottom: 128/1720
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(18, "feet"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46433. {
  46434. spreadWings: {
  46435. height: math.unit(20, "feet"),
  46436. name: "Spread Wings",
  46437. image: {
  46438. source: "./media/characters/fledge/spread-wings.svg",
  46439. extra: 693/635,
  46440. bottom: 26/719
  46441. }
  46442. },
  46443. front: {
  46444. height: math.unit(20, "feet"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/fledge/front.svg",
  46448. extra: 684/637,
  46449. bottom: 18/702
  46450. }
  46451. },
  46452. frontAlt: {
  46453. height: math.unit(20, "feet"),
  46454. name: "Front (Alt)",
  46455. image: {
  46456. source: "./media/characters/fledge/front-alt.svg",
  46457. extra: 708/664,
  46458. bottom: 13/721
  46459. }
  46460. },
  46461. back: {
  46462. height: math.unit(20, "feet"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/fledge/back.svg",
  46466. extra: 718/634,
  46467. bottom: 22/740
  46468. }
  46469. },
  46470. head: {
  46471. height: math.unit(5.55, "feet"),
  46472. name: "Head",
  46473. image: {
  46474. source: "./media/characters/fledge/head.svg"
  46475. }
  46476. },
  46477. headAlt: {
  46478. height: math.unit(5.1, "feet"),
  46479. name: "Head (Alt)",
  46480. image: {
  46481. source: "./media/characters/fledge/head-alt.svg"
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Small",
  46488. height: math.unit(6 + 2/12, "feet")
  46489. },
  46490. {
  46491. name: "Big",
  46492. height: math.unit(20, "feet"),
  46493. default: true
  46494. },
  46495. {
  46496. name: "Giant",
  46497. height: math.unit(100, "feet")
  46498. },
  46499. {
  46500. name: "Macro",
  46501. height: math.unit(200, "feet")
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(1, "meter"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/atlas-morenai/front.svg",
  46513. extra: 1275/1043,
  46514. bottom: 19/1294
  46515. }
  46516. },
  46517. back: {
  46518. height: math.unit(1, "meter"),
  46519. name: "Back",
  46520. image: {
  46521. source: "./media/characters/atlas-morenai/back.svg",
  46522. extra: 1141/1001,
  46523. bottom: 25/1166
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(1, "meter"),
  46531. default: true
  46532. },
  46533. {
  46534. name: "Magic-Infused",
  46535. height: math.unit(5, "meters")
  46536. },
  46537. ]
  46538. ))
  46539. characterMakers.push(() => makeCharacter(
  46540. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46541. {
  46542. front: {
  46543. height: math.unit(5, "meters"),
  46544. name: "Front",
  46545. image: {
  46546. source: "./media/characters/cintia/front.svg",
  46547. extra: 1312/1228,
  46548. bottom: 38/1350
  46549. }
  46550. },
  46551. back: {
  46552. height: math.unit(5, "meters"),
  46553. name: "Back",
  46554. image: {
  46555. source: "./media/characters/cintia/back.svg",
  46556. extra: 1260/1166,
  46557. bottom: 98/1358
  46558. }
  46559. },
  46560. frontDick: {
  46561. height: math.unit(5, "meters"),
  46562. name: "Front (Dick)",
  46563. image: {
  46564. source: "./media/characters/cintia/front-dick.svg",
  46565. extra: 1312/1228,
  46566. bottom: 38/1350
  46567. }
  46568. },
  46569. backDick: {
  46570. height: math.unit(5, "meters"),
  46571. name: "Back (Dick)",
  46572. image: {
  46573. source: "./media/characters/cintia/back-dick.svg",
  46574. extra: 1260/1166,
  46575. bottom: 98/1358
  46576. }
  46577. },
  46578. bust: {
  46579. height: math.unit(1.97, "meters"),
  46580. name: "Bust",
  46581. image: {
  46582. source: "./media/characters/cintia/bust.svg",
  46583. extra: 617/565,
  46584. bottom: 0/617
  46585. }
  46586. },
  46587. },
  46588. [
  46589. {
  46590. name: "Normal",
  46591. height: math.unit(5, "meters"),
  46592. default: true
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46598. {
  46599. side: {
  46600. height: math.unit(100, "feet"),
  46601. name: "Side",
  46602. image: {
  46603. source: "./media/characters/denora/side.svg",
  46604. extra: 875/803,
  46605. bottom: 9/884
  46606. }
  46607. },
  46608. },
  46609. [
  46610. {
  46611. name: "Standard",
  46612. height: math.unit(100, "feet"),
  46613. default: true
  46614. },
  46615. {
  46616. name: "Grand",
  46617. height: math.unit(1000, "feet")
  46618. },
  46619. {
  46620. name: "Conquering",
  46621. height: math.unit(10000, "feet")
  46622. },
  46623. ]
  46624. ))
  46625. characterMakers.push(() => makeCharacter(
  46626. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46627. {
  46628. dressed: {
  46629. height: math.unit(8 + 5/12, "feet"),
  46630. weight: math.unit(700, "lb"),
  46631. name: "Dressed",
  46632. image: {
  46633. source: "./media/characters/kiva/dressed.svg",
  46634. extra: 1102/1055,
  46635. bottom: 60/1162
  46636. }
  46637. },
  46638. nude: {
  46639. height: math.unit(8 + 5/12, "feet"),
  46640. weight: math.unit(700, "lb"),
  46641. name: "Nude",
  46642. image: {
  46643. source: "./media/characters/kiva/nude.svg",
  46644. extra: 1102/1055,
  46645. bottom: 60/1162
  46646. }
  46647. },
  46648. },
  46649. [
  46650. {
  46651. name: "Base Height",
  46652. height: math.unit(8 + 5/12, "feet"),
  46653. default: true
  46654. },
  46655. {
  46656. name: "Macro",
  46657. height: math.unit(100, "feet")
  46658. },
  46659. {
  46660. name: "Max",
  46661. height: math.unit(3280, "feet")
  46662. },
  46663. ]
  46664. ))
  46665. characterMakers.push(() => makeCharacter(
  46666. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46667. {
  46668. front: {
  46669. height: math.unit(6 + 8/12, "feet"),
  46670. weight: math.unit(250, "lb"),
  46671. name: "Front",
  46672. image: {
  46673. source: "./media/characters/ztragon/front.svg",
  46674. extra: 1825/1684,
  46675. bottom: 98/1923
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(6 + 8/12, "feet"),
  46683. default: true
  46684. },
  46685. {
  46686. name: "Macro",
  46687. height: math.unit(80, "feet")
  46688. },
  46689. ]
  46690. ))
  46691. characterMakers.push(() => makeCharacter(
  46692. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46693. {
  46694. front: {
  46695. height: math.unit(10.4, "feet"),
  46696. weight: math.unit(2, "tons"),
  46697. name: "Front",
  46698. image: {
  46699. source: "./media/characters/yesenia/front.svg",
  46700. extra: 1479/1474,
  46701. bottom: 233/1712
  46702. }
  46703. },
  46704. },
  46705. [
  46706. {
  46707. name: "Normal",
  46708. height: math.unit(10.4, "feet"),
  46709. default: true
  46710. },
  46711. ]
  46712. ))
  46713. characterMakers.push(() => makeCharacter(
  46714. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46715. {
  46716. normal: {
  46717. height: math.unit(6 + 1/12, "feet"),
  46718. weight: math.unit(180, "lb"),
  46719. name: "Normal",
  46720. image: {
  46721. source: "./media/characters/leanne-lycheborne/normal.svg",
  46722. extra: 1748/1660,
  46723. bottom: 98/1846
  46724. }
  46725. },
  46726. were: {
  46727. height: math.unit(12, "feet"),
  46728. weight: math.unit(1600, "lb"),
  46729. name: "Were",
  46730. image: {
  46731. source: "./media/characters/leanne-lycheborne/were.svg",
  46732. extra: 1485/1432,
  46733. bottom: 66/1551
  46734. }
  46735. },
  46736. },
  46737. [
  46738. {
  46739. name: "Normal",
  46740. height: math.unit(6 + 1/12, "feet"),
  46741. default: true
  46742. },
  46743. ]
  46744. ))
  46745. characterMakers.push(() => makeCharacter(
  46746. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46747. {
  46748. side: {
  46749. height: math.unit(13, "feet"),
  46750. name: "Side",
  46751. image: {
  46752. source: "./media/characters/kira-tyler/side.svg",
  46753. extra: 693/393,
  46754. bottom: 58/751
  46755. }
  46756. },
  46757. },
  46758. [
  46759. {
  46760. name: "Normal",
  46761. height: math.unit(13, "feet"),
  46762. default: true
  46763. },
  46764. ]
  46765. ))
  46766. characterMakers.push(() => makeCharacter(
  46767. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46768. {
  46769. front: {
  46770. height: math.unit(10.3, "feet"),
  46771. weight: math.unit(150, "lb"),
  46772. name: "Front",
  46773. image: {
  46774. source: "./media/characters/blaze/front.svg",
  46775. extra: 1378/1286,
  46776. bottom: 172/1550
  46777. }
  46778. },
  46779. },
  46780. [
  46781. {
  46782. name: "Normal",
  46783. height: math.unit(10.3, "feet"),
  46784. default: true
  46785. },
  46786. ]
  46787. ))
  46788. characterMakers.push(() => makeCharacter(
  46789. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46790. {
  46791. side: {
  46792. height: math.unit(2, "meters"),
  46793. weight: math.unit(400, "kg"),
  46794. name: "Side",
  46795. image: {
  46796. source: "./media/characters/anu/side.svg",
  46797. extra: 506/394,
  46798. bottom: 18/524
  46799. }
  46800. },
  46801. },
  46802. [
  46803. {
  46804. name: "Humanoid",
  46805. height: math.unit(2, "meters")
  46806. },
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(5, "meters"),
  46810. default: true
  46811. },
  46812. ]
  46813. ))
  46814. characterMakers.push(() => makeCharacter(
  46815. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46816. {
  46817. front: {
  46818. height: math.unit(5 + 5/12, "feet"),
  46819. weight: math.unit(170, "lb"),
  46820. name: "Front",
  46821. image: {
  46822. source: "./media/characters/synx-the-lynx/front.svg",
  46823. extra: 1893/1745,
  46824. bottom: 17/1910
  46825. }
  46826. },
  46827. side: {
  46828. height: math.unit(5 + 5/12, "feet"),
  46829. weight: math.unit(170, "lb"),
  46830. name: "Side",
  46831. image: {
  46832. source: "./media/characters/synx-the-lynx/side.svg",
  46833. extra: 1884/1740,
  46834. bottom: 39/1923
  46835. }
  46836. },
  46837. back: {
  46838. height: math.unit(5 + 5/12, "feet"),
  46839. weight: math.unit(170, "lb"),
  46840. name: "Back",
  46841. image: {
  46842. source: "./media/characters/synx-the-lynx/back.svg",
  46843. extra: 1903/1755,
  46844. bottom: 14/1917
  46845. }
  46846. },
  46847. },
  46848. [
  46849. {
  46850. name: "Normal",
  46851. height: math.unit(5 + 5/12, "feet"),
  46852. default: true
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46858. {
  46859. back: {
  46860. height: math.unit(15, "feet"),
  46861. name: "Back",
  46862. image: {
  46863. source: "./media/characters/nadezda-fex/back.svg",
  46864. extra: 1695/1481,
  46865. bottom: 25/1720
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(15, "feet"),
  46873. default: true
  46874. },
  46875. {
  46876. name: "Macro",
  46877. height: math.unit(2.5, "miles")
  46878. },
  46879. {
  46880. name: "Goddess",
  46881. height: math.unit(2, "multiverses")
  46882. },
  46883. ]
  46884. ))
  46885. characterMakers.push(() => makeCharacter(
  46886. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46887. {
  46888. front: {
  46889. height: math.unit(216, "cm"),
  46890. name: "Front",
  46891. image: {
  46892. source: "./media/characters/lev/front.svg",
  46893. extra: 1728/1670,
  46894. bottom: 82/1810
  46895. }
  46896. },
  46897. back: {
  46898. height: math.unit(216, "cm"),
  46899. name: "Back",
  46900. image: {
  46901. source: "./media/characters/lev/back.svg",
  46902. extra: 1738/1675,
  46903. bottom: 24/1762
  46904. }
  46905. },
  46906. dressed: {
  46907. height: math.unit(216, "cm"),
  46908. name: "Dressed",
  46909. image: {
  46910. source: "./media/characters/lev/dressed.svg",
  46911. extra: 1397/1351,
  46912. bottom: 73/1470
  46913. }
  46914. },
  46915. head: {
  46916. height: math.unit(0.51, "meter"),
  46917. name: "Head",
  46918. image: {
  46919. source: "./media/characters/lev/head.svg"
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(216, "cm"),
  46927. default: true
  46928. },
  46929. {
  46930. name: "Relatively Macro",
  46931. height: math.unit(80, "meters")
  46932. },
  46933. {
  46934. name: "Megamacro",
  46935. height: math.unit(21600, "meters")
  46936. },
  46937. {
  46938. name: "Megamacro+",
  46939. height: math.unit(64800, "meters")
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46945. {
  46946. front: {
  46947. height: math.unit(2, "meters"),
  46948. weight: math.unit(80, "kg"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/moka/front.svg",
  46952. extra: 1337/1255,
  46953. bottom: 58/1395
  46954. }
  46955. },
  46956. },
  46957. [
  46958. {
  46959. name: "Micro",
  46960. height: math.unit(15, "cm")
  46961. },
  46962. {
  46963. name: "Normal",
  46964. height: math.unit(2, "meters"),
  46965. default: true
  46966. },
  46967. {
  46968. name: "Macro",
  46969. height: math.unit(20, "meters"),
  46970. },
  46971. ]
  46972. ))
  46973. characterMakers.push(() => makeCharacter(
  46974. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46975. {
  46976. front: {
  46977. height: math.unit(9, "feet"),
  46978. weight: math.unit(240, "lb"),
  46979. name: "Front",
  46980. image: {
  46981. source: "./media/characters/kuzco/front.svg",
  46982. extra: 1593/1487,
  46983. bottom: 32/1625
  46984. }
  46985. },
  46986. side: {
  46987. height: math.unit(9, "feet"),
  46988. weight: math.unit(240, "lb"),
  46989. name: "Side",
  46990. image: {
  46991. source: "./media/characters/kuzco/side.svg",
  46992. extra: 1575/1485,
  46993. bottom: 30/1605
  46994. }
  46995. },
  46996. back: {
  46997. height: math.unit(9, "feet"),
  46998. weight: math.unit(240, "lb"),
  46999. name: "Back",
  47000. image: {
  47001. source: "./media/characters/kuzco/back.svg",
  47002. extra: 1603/1514,
  47003. bottom: 14/1617
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Normal",
  47010. height: math.unit(9, "feet"),
  47011. default: true
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47017. {
  47018. side: {
  47019. height: math.unit(2, "meters"),
  47020. weight: math.unit(300, "kg"),
  47021. name: "Side",
  47022. image: {
  47023. source: "./media/characters/ceruleus/side.svg",
  47024. extra: 1068/974,
  47025. bottom: 126/1194
  47026. }
  47027. },
  47028. maw: {
  47029. height: math.unit(0.8125, "meter"),
  47030. name: "Maw",
  47031. image: {
  47032. source: "./media/characters/ceruleus/maw.svg"
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(16, "meters"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47046. {
  47047. front: {
  47048. height: math.unit(9, "feet"),
  47049. weight: math.unit(500, "kg"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/acouya/front.svg",
  47053. extra: 1660/1473,
  47054. bottom: 28/1688
  47055. }
  47056. },
  47057. },
  47058. [
  47059. {
  47060. name: "Normal",
  47061. height: math.unit(9, "feet"),
  47062. default: true
  47063. },
  47064. ]
  47065. ))
  47066. characterMakers.push(() => makeCharacter(
  47067. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47068. {
  47069. front: {
  47070. height: math.unit(5 + 6/12, "feet"),
  47071. weight: math.unit(195, "lb"),
  47072. name: "Front",
  47073. image: {
  47074. source: "./media/characters/vant/front.svg",
  47075. extra: 1396/1320,
  47076. bottom: 20/1416
  47077. }
  47078. },
  47079. back: {
  47080. height: math.unit(5 + 6/12, "feet"),
  47081. weight: math.unit(195, "lb"),
  47082. name: "Back",
  47083. image: {
  47084. source: "./media/characters/vant/back.svg",
  47085. extra: 1396/1320,
  47086. bottom: 20/1416
  47087. }
  47088. },
  47089. maw: {
  47090. height: math.unit(0.75, "feet"),
  47091. name: "Maw",
  47092. image: {
  47093. source: "./media/characters/vant/maw.svg"
  47094. }
  47095. },
  47096. paw: {
  47097. height: math.unit(1.07, "feet"),
  47098. name: "Paw",
  47099. image: {
  47100. source: "./media/characters/vant/paw.svg"
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Micro",
  47107. height: math.unit(0.25, "inches")
  47108. },
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(5 + 6/12, "feet"),
  47112. default: true
  47113. },
  47114. {
  47115. name: "Macro",
  47116. height: math.unit(75, "feet")
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47122. {
  47123. front: {
  47124. height: math.unit(30, "meters"),
  47125. weight: math.unit(363, "tons"),
  47126. name: "Front",
  47127. image: {
  47128. source: "./media/characters/ahra/front.svg",
  47129. extra: 1914/1814,
  47130. bottom: 46/1960
  47131. }
  47132. },
  47133. },
  47134. [
  47135. {
  47136. name: "Macro",
  47137. height: math.unit(30, "meters"),
  47138. default: true
  47139. },
  47140. ]
  47141. ))
  47142. characterMakers.push(() => makeCharacter(
  47143. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47144. {
  47145. undressed: {
  47146. height: math.unit(2, "m"),
  47147. weight: math.unit(250, "kg"),
  47148. name: "Undressed",
  47149. image: {
  47150. source: "./media/characters/coriander/undressed.svg",
  47151. extra: 1757/1606,
  47152. bottom: 107/1864
  47153. }
  47154. },
  47155. dressed: {
  47156. height: math.unit(2, "m"),
  47157. weight: math.unit(250, "kg"),
  47158. name: "Dressed",
  47159. image: {
  47160. source: "./media/characters/coriander/dressed.svg",
  47161. extra: 1757/1606,
  47162. bottom: 107/1864
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(4, "meters"),
  47170. default: true
  47171. },
  47172. {
  47173. name: "XL",
  47174. height: math.unit(6, "meters")
  47175. },
  47176. {
  47177. name: "XXL",
  47178. height: math.unit(8, "meters")
  47179. },
  47180. ]
  47181. ))
  47182. characterMakers.push(() => makeCharacter(
  47183. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47184. {
  47185. front: {
  47186. height: math.unit(6, "feet"),
  47187. name: "Front",
  47188. image: {
  47189. source: "./media/characters/syrinx/front.svg",
  47190. extra: 1557/1259,
  47191. bottom: 171/1728
  47192. }
  47193. },
  47194. },
  47195. [
  47196. {
  47197. name: "Normal",
  47198. height: math.unit(6 + 3/12, "feet"),
  47199. default: true
  47200. },
  47201. ]
  47202. ))
  47203. characterMakers.push(() => makeCharacter(
  47204. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47205. {
  47206. front: {
  47207. height: math.unit(11 + 6/12, "feet"),
  47208. weight: math.unit(1.5, "tons"),
  47209. name: "Front",
  47210. image: {
  47211. source: "./media/characters/bor/front.svg",
  47212. extra: 1189/1109,
  47213. bottom: 170/1359
  47214. }
  47215. },
  47216. },
  47217. [
  47218. {
  47219. name: "Normal",
  47220. height: math.unit(11 + 6/12, "feet"),
  47221. default: true
  47222. },
  47223. {
  47224. name: "Macro",
  47225. height: math.unit(32 + 9/12, "feet")
  47226. },
  47227. ]
  47228. ))
  47229. characterMakers.push(() => makeCharacter(
  47230. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47231. {
  47232. anthro: {
  47233. height: math.unit(9, "feet"),
  47234. weight: math.unit(2076, "lb"),
  47235. name: "Anthro",
  47236. image: {
  47237. source: "./media/characters/abacus/anthro.svg",
  47238. extra: 1540/1494,
  47239. bottom: 233/1773
  47240. }
  47241. },
  47242. pigeon: {
  47243. height: math.unit(1, "feet"),
  47244. name: "Pigeon",
  47245. image: {
  47246. source: "./media/characters/abacus/pigeon.svg",
  47247. extra: 528/525,
  47248. bottom: 46/574
  47249. }
  47250. },
  47251. },
  47252. [
  47253. {
  47254. name: "Normal",
  47255. height: math.unit(9, "feet"),
  47256. default: true
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47262. {
  47263. side: {
  47264. height: math.unit(6, "feet"),
  47265. name: "Side",
  47266. image: {
  47267. source: "./media/characters/delkhan/side.svg",
  47268. extra: 1884/1786,
  47269. bottom: 308/2192
  47270. }
  47271. },
  47272. head: {
  47273. height: math.unit(3.38, "feet"),
  47274. name: "Head",
  47275. image: {
  47276. source: "./media/characters/delkhan/head.svg"
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Normal",
  47283. height: math.unit(72, "feet"),
  47284. default: true
  47285. },
  47286. {
  47287. name: "Giant",
  47288. height: math.unit(172, "feet")
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47294. {
  47295. standing: {
  47296. height: math.unit(6, "feet"),
  47297. name: "Standing",
  47298. image: {
  47299. source: "./media/characters/euchidat/standing.svg",
  47300. extra: 1612/1553,
  47301. bottom: 116/1728
  47302. }
  47303. },
  47304. leaning: {
  47305. height: math.unit(6, "feet"),
  47306. name: "Leaning",
  47307. image: {
  47308. source: "./media/characters/euchidat/leaning.svg",
  47309. extra: 1719/1674,
  47310. bottom: 27/1746
  47311. }
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(175, "feet"),
  47318. default: true
  47319. },
  47320. {
  47321. name: "Megamacro",
  47322. height: math.unit(190, "miles")
  47323. },
  47324. {
  47325. name: "Gigamacro",
  47326. height: math.unit(190000, "miles")
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47332. {
  47333. front: {
  47334. height: math.unit(6, "feet"),
  47335. weight: math.unit(150, "lb"),
  47336. name: "Front",
  47337. image: {
  47338. source: "./media/characters/rebecca-stack/front.svg",
  47339. extra: 1256/1201,
  47340. bottom: 18/1274
  47341. }
  47342. },
  47343. },
  47344. [
  47345. {
  47346. name: "Normal",
  47347. height: math.unit(5 + 8/12, "feet"),
  47348. default: true
  47349. },
  47350. {
  47351. name: "Demolitionist",
  47352. height: math.unit(200, "feet")
  47353. },
  47354. {
  47355. name: "Out of Control",
  47356. height: math.unit(2, "miles")
  47357. },
  47358. {
  47359. name: "Giga",
  47360. height: math.unit(7200, "miles")
  47361. },
  47362. ]
  47363. ))
  47364. characterMakers.push(() => makeCharacter(
  47365. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47366. {
  47367. front: {
  47368. height: math.unit(6, "feet"),
  47369. weight: math.unit(150, "lb"),
  47370. name: "Front",
  47371. image: {
  47372. source: "./media/characters/jenny-cartwright/front.svg",
  47373. extra: 1384/1376,
  47374. bottom: 58/1442
  47375. }
  47376. },
  47377. },
  47378. [
  47379. {
  47380. name: "Normal",
  47381. height: math.unit(6 + 7/12, "feet"),
  47382. default: true
  47383. },
  47384. {
  47385. name: "Librarian",
  47386. height: math.unit(55, "feet")
  47387. },
  47388. {
  47389. name: "Sightseer",
  47390. height: math.unit(50, "miles")
  47391. },
  47392. {
  47393. name: "Giga",
  47394. height: math.unit(30000, "miles")
  47395. },
  47396. ]
  47397. ))
  47398. characterMakers.push(() => makeCharacter(
  47399. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47400. {
  47401. nude: {
  47402. height: math.unit(8, "feet"),
  47403. weight: math.unit(225, "lb"),
  47404. name: "Nude",
  47405. image: {
  47406. source: "./media/characters/marvy/nude.svg",
  47407. extra: 1900/1683,
  47408. bottom: 89/1989
  47409. }
  47410. },
  47411. dressed: {
  47412. height: math.unit(8, "feet"),
  47413. weight: math.unit(225, "lb"),
  47414. name: "Dressed",
  47415. image: {
  47416. source: "./media/characters/marvy/dressed.svg",
  47417. extra: 1900/1683,
  47418. bottom: 89/1989
  47419. }
  47420. },
  47421. head: {
  47422. height: math.unit(2.85, "feet"),
  47423. name: "Head",
  47424. image: {
  47425. source: "./media/characters/marvy/head.svg"
  47426. }
  47427. },
  47428. },
  47429. [
  47430. {
  47431. name: "Normal",
  47432. height: math.unit(8, "feet"),
  47433. default: true
  47434. },
  47435. ]
  47436. ))
  47437. characterMakers.push(() => makeCharacter(
  47438. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47439. {
  47440. front: {
  47441. height: math.unit(8, "feet"),
  47442. weight: math.unit(250, "lb"),
  47443. name: "Front",
  47444. image: {
  47445. source: "./media/characters/leah/front.svg",
  47446. extra: 1257/1149,
  47447. bottom: 109/1366
  47448. }
  47449. },
  47450. },
  47451. [
  47452. {
  47453. name: "Normal",
  47454. height: math.unit(8, "feet"),
  47455. default: true
  47456. },
  47457. {
  47458. name: "Minimacro",
  47459. height: math.unit(40, "feet")
  47460. },
  47461. {
  47462. name: "Macro",
  47463. height: math.unit(124, "feet")
  47464. },
  47465. {
  47466. name: "Megamacro",
  47467. height: math.unit(850, "feet")
  47468. },
  47469. ]
  47470. ))
  47471. characterMakers.push(() => makeCharacter(
  47472. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47473. {
  47474. side: {
  47475. height: math.unit(13 + 6/12, "feet"),
  47476. weight: math.unit(3200, "lb"),
  47477. name: "Side",
  47478. image: {
  47479. source: "./media/characters/alvir/side.svg",
  47480. extra: 896/589,
  47481. bottom: 26/922
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(13 + 6/12, "feet"),
  47489. default: true
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47495. {
  47496. front: {
  47497. height: math.unit(5 + 4/12, "feet"),
  47498. weight: math.unit(236, "lb"),
  47499. name: "Front",
  47500. image: {
  47501. source: "./media/characters/zaina-khalil/front.svg",
  47502. extra: 1533/1485,
  47503. bottom: 94/1627
  47504. }
  47505. },
  47506. side: {
  47507. height: math.unit(5 + 4/12, "feet"),
  47508. weight: math.unit(236, "lb"),
  47509. name: "Side",
  47510. image: {
  47511. source: "./media/characters/zaina-khalil/side.svg",
  47512. extra: 1537/1498,
  47513. bottom: 66/1603
  47514. }
  47515. },
  47516. back: {
  47517. height: math.unit(5 + 4/12, "feet"),
  47518. weight: math.unit(236, "lb"),
  47519. name: "Back",
  47520. image: {
  47521. source: "./media/characters/zaina-khalil/back.svg",
  47522. extra: 1546/1494,
  47523. bottom: 89/1635
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(5 + 4/12, "feet"),
  47531. default: true
  47532. },
  47533. ]
  47534. ))
  47535. characterMakers.push(() => makeCharacter(
  47536. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47537. {
  47538. side: {
  47539. height: math.unit(12, "feet"),
  47540. weight: math.unit(4000, "lb"),
  47541. name: "Side",
  47542. image: {
  47543. source: "./media/characters/terry/side.svg",
  47544. extra: 1518/1439,
  47545. bottom: 149/1667
  47546. }
  47547. },
  47548. },
  47549. [
  47550. {
  47551. name: "Normal",
  47552. height: math.unit(12, "feet"),
  47553. default: true
  47554. },
  47555. ]
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47559. {
  47560. front: {
  47561. height: math.unit(12, "feet"),
  47562. weight: math.unit(1500, "lb"),
  47563. name: "Front",
  47564. image: {
  47565. source: "./media/characters/kahea/front.svg",
  47566. extra: 1722/1617,
  47567. bottom: 179/1901
  47568. }
  47569. },
  47570. },
  47571. [
  47572. {
  47573. name: "Normal",
  47574. height: math.unit(12, "feet"),
  47575. default: true
  47576. },
  47577. ]
  47578. ))
  47579. characterMakers.push(() => makeCharacter(
  47580. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47581. {
  47582. demonFront: {
  47583. height: math.unit(36, "feet"),
  47584. name: "Front",
  47585. image: {
  47586. source: "./media/characters/alex-xuria/demon-front.svg",
  47587. extra: 1705/1673,
  47588. bottom: 198/1903
  47589. },
  47590. form: "demon",
  47591. default: true
  47592. },
  47593. demonBack: {
  47594. height: math.unit(36, "feet"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/alex-xuria/demon-back.svg",
  47598. extra: 1725/1693,
  47599. bottom: 70/1795
  47600. },
  47601. form: "demon"
  47602. },
  47603. demonHead: {
  47604. height: math.unit(2.14, "meters"),
  47605. name: "Head",
  47606. image: {
  47607. source: "./media/characters/alex-xuria/demon-head.svg"
  47608. },
  47609. form: "demon"
  47610. },
  47611. demonHand: {
  47612. height: math.unit(1.61, "meters"),
  47613. name: "Hand",
  47614. image: {
  47615. source: "./media/characters/alex-xuria/demon-hand.svg"
  47616. },
  47617. form: "demon"
  47618. },
  47619. demonPaw: {
  47620. height: math.unit(1.35, "meters"),
  47621. name: "Paw",
  47622. image: {
  47623. source: "./media/characters/alex-xuria/demon-paw.svg"
  47624. },
  47625. form: "demon"
  47626. },
  47627. demonFoot: {
  47628. height: math.unit(2.2, "meters"),
  47629. name: "Foot",
  47630. image: {
  47631. source: "./media/characters/alex-xuria/demon-foot.svg"
  47632. },
  47633. form: "demon"
  47634. },
  47635. demonCock: {
  47636. height: math.unit(1.74, "meters"),
  47637. name: "Cock",
  47638. image: {
  47639. source: "./media/characters/alex-xuria/demon-cock.svg"
  47640. },
  47641. form: "demon"
  47642. },
  47643. demonTailClosed: {
  47644. height: math.unit(1.47, "meters"),
  47645. name: "Tail (Closed)",
  47646. image: {
  47647. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47648. },
  47649. form: "demon"
  47650. },
  47651. demonTailOpen: {
  47652. height: math.unit(2.85, "meters"),
  47653. name: "Tail (Open)",
  47654. image: {
  47655. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47656. },
  47657. form: "demon"
  47658. },
  47659. incubusFront: {
  47660. height: math.unit(12, "feet"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/alex-xuria/incubus-front.svg",
  47664. extra: 1754/1677,
  47665. bottom: 125/1879
  47666. },
  47667. form: "incubus",
  47668. default: true
  47669. },
  47670. incubusBack: {
  47671. height: math.unit(12, "feet"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/alex-xuria/incubus-back.svg",
  47675. extra: 1702/1647,
  47676. bottom: 30/1732
  47677. },
  47678. form: "incubus"
  47679. },
  47680. incubusHead: {
  47681. height: math.unit(3.45, "feet"),
  47682. name: "Head",
  47683. image: {
  47684. source: "./media/characters/alex-xuria/incubus-head.svg"
  47685. },
  47686. form: "incubus"
  47687. },
  47688. rabbitFront: {
  47689. height: math.unit(6, "feet"),
  47690. name: "Front",
  47691. image: {
  47692. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47693. extra: 1369/1349,
  47694. bottom: 45/1414
  47695. },
  47696. form: "rabbit",
  47697. default: true
  47698. },
  47699. rabbitSide: {
  47700. height: math.unit(6, "feet"),
  47701. name: "Side",
  47702. image: {
  47703. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47704. extra: 1370/1356,
  47705. bottom: 37/1407
  47706. },
  47707. form: "rabbit"
  47708. },
  47709. rabbitBack: {
  47710. height: math.unit(6, "feet"),
  47711. name: "Back",
  47712. image: {
  47713. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47714. extra: 1375/1358,
  47715. bottom: 43/1418
  47716. },
  47717. form: "rabbit"
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Normal",
  47723. height: math.unit(6, "feet"),
  47724. default: true,
  47725. form: "rabbit"
  47726. },
  47727. {
  47728. name: "Incubus",
  47729. height: math.unit(12, "feet"),
  47730. default: true,
  47731. form: "incubus"
  47732. },
  47733. {
  47734. name: "Demon",
  47735. height: math.unit(36, "feet"),
  47736. default: true,
  47737. form: "demon"
  47738. }
  47739. ],
  47740. {
  47741. "demon": {
  47742. name: "Demon",
  47743. default: true
  47744. },
  47745. "incubus": {
  47746. name: "Incubus",
  47747. },
  47748. "rabbit": {
  47749. name: "Rabbit"
  47750. }
  47751. }
  47752. ))
  47753. characterMakers.push(() => makeCharacter(
  47754. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47755. {
  47756. front: {
  47757. height: math.unit(7 + 5/12, "feet"),
  47758. weight: math.unit(510, "lb"),
  47759. name: "Front",
  47760. image: {
  47761. source: "./media/characters/syrup/front.svg",
  47762. extra: 932/916,
  47763. bottom: 26/958
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Normal",
  47770. height: math.unit(7 + 5/12, "feet"),
  47771. default: true
  47772. },
  47773. {
  47774. name: "Big",
  47775. height: math.unit(50, "feet")
  47776. },
  47777. {
  47778. name: "Macro",
  47779. height: math.unit(300, "feet")
  47780. },
  47781. {
  47782. name: "Megamacro",
  47783. height: math.unit(1, "mile")
  47784. },
  47785. ]
  47786. ))
  47787. characterMakers.push(() => makeCharacter(
  47788. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47789. {
  47790. front: {
  47791. height: math.unit(6 + 9/12, "feet"),
  47792. name: "Front",
  47793. image: {
  47794. source: "./media/characters/zeimne/front.svg",
  47795. extra: 1969/1806,
  47796. bottom: 53/2022
  47797. }
  47798. },
  47799. },
  47800. [
  47801. {
  47802. name: "Normal",
  47803. height: math.unit(6 + 9/12, "feet"),
  47804. default: true
  47805. },
  47806. {
  47807. name: "Giant",
  47808. height: math.unit(550, "feet")
  47809. },
  47810. {
  47811. name: "Mega",
  47812. height: math.unit(3, "miles")
  47813. },
  47814. {
  47815. name: "Giga",
  47816. height: math.unit(250, "miles")
  47817. },
  47818. {
  47819. name: "Tera",
  47820. height: math.unit(1, "AU")
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(5 + 2/12, "feet"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/grar/front.svg",
  47832. extra: 1331/1119,
  47833. bottom: 60/1391
  47834. }
  47835. },
  47836. back: {
  47837. height: math.unit(5 + 2/12, "feet"),
  47838. name: "Back",
  47839. image: {
  47840. source: "./media/characters/grar/back.svg",
  47841. extra: 1385/1169,
  47842. bottom: 23/1408
  47843. }
  47844. },
  47845. },
  47846. [
  47847. {
  47848. name: "Normal",
  47849. height: math.unit(5 + 2/12, "feet"),
  47850. default: true
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47856. {
  47857. front: {
  47858. height: math.unit(13 + 7/12, "feet"),
  47859. weight: math.unit(2200, "lb"),
  47860. name: "Front",
  47861. image: {
  47862. source: "./media/characters/endraya/front.svg",
  47863. extra: 1289/1215,
  47864. bottom: 50/1339
  47865. }
  47866. },
  47867. nude: {
  47868. height: math.unit(13 + 7/12, "feet"),
  47869. weight: math.unit(2200, "lb"),
  47870. name: "Nude",
  47871. image: {
  47872. source: "./media/characters/endraya/nude.svg",
  47873. extra: 1247/1171,
  47874. bottom: 40/1287
  47875. }
  47876. },
  47877. head: {
  47878. height: math.unit(2.6, "feet"),
  47879. name: "Head",
  47880. image: {
  47881. source: "./media/characters/endraya/head.svg"
  47882. }
  47883. },
  47884. slit: {
  47885. height: math.unit(3.4, "feet"),
  47886. name: "Slit",
  47887. image: {
  47888. source: "./media/characters/endraya/slit.svg"
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(13 + 7/12, "feet"),
  47896. default: true
  47897. },
  47898. {
  47899. name: "Macro",
  47900. height: math.unit(200, "feet")
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47906. {
  47907. front: {
  47908. height: math.unit(1.81, "meters"),
  47909. weight: math.unit(69, "kg"),
  47910. name: "Front",
  47911. image: {
  47912. source: "./media/characters/rodryana/front.svg",
  47913. extra: 2002/1921,
  47914. bottom: 53/2055
  47915. }
  47916. },
  47917. back: {
  47918. height: math.unit(1.81, "meters"),
  47919. weight: math.unit(69, "kg"),
  47920. name: "Back",
  47921. image: {
  47922. source: "./media/characters/rodryana/back.svg",
  47923. extra: 1993/1926,
  47924. bottom: 48/2041
  47925. }
  47926. },
  47927. maw: {
  47928. height: math.unit(0.19769417475, "meters"),
  47929. name: "Maw",
  47930. image: {
  47931. source: "./media/characters/rodryana/maw.svg"
  47932. }
  47933. },
  47934. slit: {
  47935. height: math.unit(0.31631067961, "meters"),
  47936. name: "Slit",
  47937. image: {
  47938. source: "./media/characters/rodryana/slit.svg"
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Normal",
  47945. height: math.unit(1.81, "meters")
  47946. },
  47947. {
  47948. name: "Mini Macro",
  47949. height: math.unit(181, "meters")
  47950. },
  47951. {
  47952. name: "Macro",
  47953. height: math.unit(452, "meters"),
  47954. default: true
  47955. },
  47956. {
  47957. name: "Mega Macro",
  47958. height: math.unit(1.375, "km")
  47959. },
  47960. {
  47961. name: "Giga Macro",
  47962. height: math.unit(13.575, "km")
  47963. },
  47964. ]
  47965. ))
  47966. characterMakers.push(() => makeCharacter(
  47967. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47968. {
  47969. front: {
  47970. height: math.unit(6, "feet"),
  47971. weight: math.unit(1000, "lb"),
  47972. name: "Front",
  47973. image: {
  47974. source: "./media/characters/asaya/front.svg",
  47975. extra: 1460/1200,
  47976. bottom: 71/1531
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Normal",
  47983. height: math.unit(8, "km"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47990. {
  47991. front: {
  47992. height: math.unit(3.5, "meters"),
  47993. name: "Front",
  47994. image: {
  47995. source: "./media/characters/sarzu-and-israz/front.svg",
  47996. extra: 1570/1558,
  47997. bottom: 150/1720
  47998. },
  47999. },
  48000. back: {
  48001. height: math.unit(3.5, "meters"),
  48002. name: "Back",
  48003. image: {
  48004. source: "./media/characters/sarzu-and-israz/back.svg",
  48005. extra: 1523/1509,
  48006. bottom: 132/1655
  48007. },
  48008. },
  48009. frontFemale: {
  48010. height: math.unit(3.5, "meters"),
  48011. name: "Front (Female)",
  48012. image: {
  48013. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48014. extra: 1570/1558,
  48015. bottom: 150/1720
  48016. },
  48017. },
  48018. frontHerm: {
  48019. height: math.unit(3.5, "meters"),
  48020. name: "Front (Herm)",
  48021. image: {
  48022. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48023. extra: 1570/1558,
  48024. bottom: 150/1720
  48025. },
  48026. },
  48027. },
  48028. [
  48029. {
  48030. name: "Normal",
  48031. height: math.unit(3.5, "meters"),
  48032. default: true,
  48033. },
  48034. {
  48035. name: "Macro",
  48036. height: math.unit(65.5, "meters"),
  48037. },
  48038. ],
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(6, "feet"),
  48045. weight: math.unit(250, "lb"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/zenimma/front.svg",
  48049. extra: 1346/1320,
  48050. bottom: 58/1404
  48051. }
  48052. },
  48053. back: {
  48054. height: math.unit(6, "feet"),
  48055. weight: math.unit(250, "lb"),
  48056. name: "Back",
  48057. image: {
  48058. source: "./media/characters/zenimma/back.svg",
  48059. extra: 1324/1308,
  48060. bottom: 44/1368
  48061. }
  48062. },
  48063. dick: {
  48064. height: math.unit(1.44, "feet"),
  48065. name: "Dick",
  48066. image: {
  48067. source: "./media/characters/zenimma/dick.svg"
  48068. }
  48069. },
  48070. },
  48071. [
  48072. {
  48073. name: "Canon Height",
  48074. height: math.unit(66, "miles"),
  48075. default: true
  48076. },
  48077. ]
  48078. ))
  48079. characterMakers.push(() => makeCharacter(
  48080. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48081. {
  48082. nude: {
  48083. height: math.unit(6, "feet"),
  48084. weight: math.unit(150, "lb"),
  48085. name: "Nude",
  48086. image: {
  48087. source: "./media/characters/shavon/nude.svg",
  48088. extra: 1242/1096,
  48089. bottom: 98/1340
  48090. }
  48091. },
  48092. dressed: {
  48093. height: math.unit(6, "feet"),
  48094. weight: math.unit(150, "lb"),
  48095. name: "Dressed",
  48096. image: {
  48097. source: "./media/characters/shavon/dressed.svg",
  48098. extra: 1242/1096,
  48099. bottom: 98/1340
  48100. }
  48101. },
  48102. },
  48103. [
  48104. {
  48105. name: "Macro",
  48106. height: math.unit(255, "feet"),
  48107. default: true
  48108. },
  48109. ]
  48110. ))
  48111. characterMakers.push(() => makeCharacter(
  48112. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48113. {
  48114. front: {
  48115. height: math.unit(6, "feet"),
  48116. name: "Front",
  48117. image: {
  48118. source: "./media/characters/steph/front.svg",
  48119. extra: 1430/1330,
  48120. bottom: 54/1484
  48121. }
  48122. },
  48123. },
  48124. [
  48125. {
  48126. name: "Normal",
  48127. height: math.unit(6, "feet"),
  48128. default: true
  48129. },
  48130. ]
  48131. ))
  48132. characterMakers.push(() => makeCharacter(
  48133. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48134. {
  48135. front: {
  48136. height: math.unit(9, "feet"),
  48137. weight: math.unit(400, "lb"),
  48138. name: "Front",
  48139. image: {
  48140. source: "./media/characters/kil'aman/front.svg",
  48141. extra: 1210/1159,
  48142. bottom: 109/1319
  48143. }
  48144. },
  48145. head: {
  48146. height: math.unit(2.14, "feet"),
  48147. name: "Head",
  48148. image: {
  48149. source: "./media/characters/kil'aman/head.svg"
  48150. }
  48151. },
  48152. maw: {
  48153. height: math.unit(1.21, "feet"),
  48154. name: "Maw",
  48155. image: {
  48156. source: "./media/characters/kil'aman/maw.svg"
  48157. }
  48158. },
  48159. foot: {
  48160. height: math.unit(1.7, "feet"),
  48161. name: "Foot",
  48162. image: {
  48163. source: "./media/characters/kil'aman/foot.svg"
  48164. }
  48165. },
  48166. dick: {
  48167. height: math.unit(2.1, "feet"),
  48168. name: "Dick",
  48169. image: {
  48170. source: "./media/characters/kil'aman/dick.svg"
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(9, "feet")
  48178. },
  48179. {
  48180. name: "Canon Height",
  48181. height: math.unit(10, "miles"),
  48182. default: true
  48183. },
  48184. {
  48185. name: "Maximum",
  48186. height: math.unit(6e9, "miles")
  48187. },
  48188. ]
  48189. ))
  48190. characterMakers.push(() => makeCharacter(
  48191. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48192. {
  48193. front: {
  48194. height: math.unit(90, "feet"),
  48195. weight: math.unit(675000, "lb"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/qadan/front.svg",
  48199. extra: 1012/1004,
  48200. bottom: 78/1090
  48201. }
  48202. },
  48203. back: {
  48204. height: math.unit(90, "feet"),
  48205. weight: math.unit(675000, "lb"),
  48206. name: "Back",
  48207. image: {
  48208. source: "./media/characters/qadan/back.svg",
  48209. extra: 1042/1031,
  48210. bottom: 55/1097
  48211. }
  48212. },
  48213. armored: {
  48214. height: math.unit(90, "feet"),
  48215. weight: math.unit(675000, "lb"),
  48216. name: "Armored",
  48217. image: {
  48218. source: "./media/characters/qadan/armored.svg",
  48219. extra: 1047/1037,
  48220. bottom: 48/1095
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(90, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(6, "feet"),
  48237. weight: math.unit(225, "lb"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/brooke/front.svg",
  48241. extra: 1050/1010,
  48242. bottom: 66/1116
  48243. }
  48244. },
  48245. back: {
  48246. height: math.unit(6, "feet"),
  48247. weight: math.unit(225, "lb"),
  48248. name: "Back",
  48249. image: {
  48250. source: "./media/characters/brooke/back.svg",
  48251. extra: 1053/1013,
  48252. bottom: 41/1094
  48253. }
  48254. },
  48255. dressed: {
  48256. height: math.unit(6, "feet"),
  48257. weight: math.unit(225, "lb"),
  48258. name: "Dressed",
  48259. image: {
  48260. source: "./media/characters/brooke/dressed.svg",
  48261. extra: 1050/1010,
  48262. bottom: 66/1116
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Canon Height",
  48269. height: math.unit(500, "miles"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48276. {
  48277. front: {
  48278. height: math.unit(6 + 2/12, "feet"),
  48279. weight: math.unit(210, "lb"),
  48280. name: "Front",
  48281. image: {
  48282. source: "./media/characters/wubs/front.svg",
  48283. extra: 1345/1325,
  48284. bottom: 70/1415
  48285. }
  48286. },
  48287. back: {
  48288. height: math.unit(6 + 2/12, "feet"),
  48289. weight: math.unit(210, "lb"),
  48290. name: "Back",
  48291. image: {
  48292. source: "./media/characters/wubs/back.svg",
  48293. extra: 1296/1275,
  48294. bottom: 58/1354
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(6 + 2/12, "feet"),
  48302. default: true
  48303. },
  48304. {
  48305. name: "Macro",
  48306. height: math.unit(1000, "feet")
  48307. },
  48308. {
  48309. name: "Megamacro",
  48310. height: math.unit(1, "mile")
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48316. {
  48317. front: {
  48318. height: math.unit(4, "feet"),
  48319. weight: math.unit(120, "lb"),
  48320. name: "Front",
  48321. image: {
  48322. source: "./media/characters/blue/front.svg",
  48323. extra: 1636/1525,
  48324. bottom: 43/1679
  48325. }
  48326. },
  48327. back: {
  48328. height: math.unit(4, "feet"),
  48329. weight: math.unit(120, "lb"),
  48330. name: "Back",
  48331. image: {
  48332. source: "./media/characters/blue/back.svg",
  48333. extra: 1660/1560,
  48334. bottom: 57/1717
  48335. }
  48336. },
  48337. paws: {
  48338. height: math.unit(0.826, "feet"),
  48339. name: "Paws",
  48340. image: {
  48341. source: "./media/characters/blue/paws.svg"
  48342. }
  48343. },
  48344. },
  48345. [
  48346. {
  48347. name: "Micro",
  48348. height: math.unit(3, "inches")
  48349. },
  48350. {
  48351. name: "Normal",
  48352. height: math.unit(4, "feet"),
  48353. default: true
  48354. },
  48355. {
  48356. name: "Femenine Form",
  48357. height: math.unit(14, "feet")
  48358. },
  48359. {
  48360. name: "Werebat Form",
  48361. height: math.unit(18, "feet")
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48367. {
  48368. female: {
  48369. height: math.unit(7 + 4/12, "feet"),
  48370. weight: math.unit(243, "lb"),
  48371. name: "Female",
  48372. image: {
  48373. source: "./media/characters/kaya/female.svg",
  48374. extra: 975/898,
  48375. bottom: 34/1009
  48376. }
  48377. },
  48378. herm: {
  48379. height: math.unit(7 + 4/12, "feet"),
  48380. weight: math.unit(243, "lb"),
  48381. name: "Herm",
  48382. image: {
  48383. source: "./media/characters/kaya/herm.svg",
  48384. extra: 975/898,
  48385. bottom: 34/1009
  48386. }
  48387. },
  48388. },
  48389. [
  48390. {
  48391. name: "Normal",
  48392. height: math.unit(7 + 4/12, "feet"),
  48393. default: true
  48394. },
  48395. ]
  48396. ))
  48397. characterMakers.push(() => makeCharacter(
  48398. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48399. {
  48400. female: {
  48401. height: math.unit(9 + 4/12, "feet"),
  48402. weight: math.unit(398, "lb"),
  48403. name: "Female",
  48404. image: {
  48405. source: "./media/characters/kassandra/female.svg",
  48406. extra: 908/839,
  48407. bottom: 61/969
  48408. }
  48409. },
  48410. intersex: {
  48411. height: math.unit(9 + 4/12, "feet"),
  48412. weight: math.unit(398, "lb"),
  48413. name: "Intersex",
  48414. image: {
  48415. source: "./media/characters/kassandra/intersex.svg",
  48416. extra: 908/839,
  48417. bottom: 61/969
  48418. }
  48419. },
  48420. },
  48421. [
  48422. {
  48423. name: "Normal",
  48424. height: math.unit(9 + 4/12, "feet"),
  48425. default: true
  48426. },
  48427. ]
  48428. ))
  48429. characterMakers.push(() => makeCharacter(
  48430. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48431. {
  48432. front: {
  48433. height: math.unit(3, "meters"),
  48434. name: "Front",
  48435. image: {
  48436. source: "./media/characters/amy/front.svg",
  48437. extra: 1380/1343,
  48438. bottom: 70/1450
  48439. }
  48440. },
  48441. back: {
  48442. height: math.unit(3, "meters"),
  48443. name: "Back",
  48444. image: {
  48445. source: "./media/characters/amy/back.svg",
  48446. extra: 1380/1347,
  48447. bottom: 66/1446
  48448. }
  48449. },
  48450. },
  48451. [
  48452. {
  48453. name: "Normal",
  48454. height: math.unit(3, "meters"),
  48455. default: true
  48456. },
  48457. ]
  48458. ))
  48459. characterMakers.push(() => makeCharacter(
  48460. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48461. {
  48462. side: {
  48463. height: math.unit(47, "cm"),
  48464. weight: math.unit(10.8, "kg"),
  48465. name: "Side",
  48466. image: {
  48467. source: "./media/characters/alphaschakal/side.svg",
  48468. extra: 1058/568,
  48469. bottom: 62/1120
  48470. }
  48471. },
  48472. back: {
  48473. height: math.unit(78, "cm"),
  48474. weight: math.unit(10.8, "kg"),
  48475. name: "Back",
  48476. image: {
  48477. source: "./media/characters/alphaschakal/back.svg",
  48478. extra: 1102/942,
  48479. bottom: 185/1287
  48480. }
  48481. },
  48482. head: {
  48483. height: math.unit(28, "cm"),
  48484. name: "Head",
  48485. image: {
  48486. source: "./media/characters/alphaschakal/head.svg",
  48487. extra: 696/508,
  48488. bottom: 0/696
  48489. }
  48490. },
  48491. paw: {
  48492. height: math.unit(16, "cm"),
  48493. name: "Paw",
  48494. image: {
  48495. source: "./media/characters/alphaschakal/paw.svg"
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(47, "cm"),
  48503. default: true
  48504. },
  48505. {
  48506. name: "Macro",
  48507. height: math.unit(340, "cm")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48513. {
  48514. front: {
  48515. height: math.unit(36, "earths"),
  48516. name: "Front",
  48517. image: {
  48518. source: "./media/characters/ecobyss/front.svg",
  48519. extra: 1282/1215,
  48520. bottom: 11/1293
  48521. }
  48522. },
  48523. back: {
  48524. height: math.unit(36, "earths"),
  48525. name: "Back",
  48526. image: {
  48527. source: "./media/characters/ecobyss/back.svg",
  48528. extra: 1291/1222,
  48529. bottom: 8/1299
  48530. }
  48531. },
  48532. },
  48533. [
  48534. {
  48535. name: "Normal",
  48536. height: math.unit(36, "earths"),
  48537. default: true
  48538. },
  48539. ]
  48540. ))
  48541. characterMakers.push(() => makeCharacter(
  48542. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48543. {
  48544. front: {
  48545. height: math.unit(12, "feet"),
  48546. name: "Front",
  48547. image: {
  48548. source: "./media/characters/vasuk/front.svg",
  48549. extra: 1326/1207,
  48550. bottom: 64/1390
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(12, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48564. {
  48565. side: {
  48566. height: math.unit(100, "feet"),
  48567. name: "Side",
  48568. image: {
  48569. source: "./media/characters/linneaus/side.svg",
  48570. extra: 987/807,
  48571. bottom: 47/1034
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Macro",
  48578. height: math.unit(100, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48585. {
  48586. front: {
  48587. height: math.unit(8, "feet"),
  48588. weight: math.unit(1200, "lb"),
  48589. name: "Front",
  48590. image: {
  48591. source: "./media/characters/nyterious-daligdig/front.svg",
  48592. extra: 1284/1094,
  48593. bottom: 84/1368
  48594. }
  48595. },
  48596. back: {
  48597. height: math.unit(8, "feet"),
  48598. weight: math.unit(1200, "lb"),
  48599. name: "Back",
  48600. image: {
  48601. source: "./media/characters/nyterious-daligdig/back.svg",
  48602. extra: 1301/1121,
  48603. bottom: 129/1430
  48604. }
  48605. },
  48606. mouth: {
  48607. height: math.unit(1.464, "feet"),
  48608. name: "Mouth",
  48609. image: {
  48610. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48611. }
  48612. },
  48613. },
  48614. [
  48615. {
  48616. name: "Small",
  48617. height: math.unit(8, "feet"),
  48618. default: true
  48619. },
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(15, "feet")
  48623. },
  48624. {
  48625. name: "Macro",
  48626. height: math.unit(90, "feet")
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(7 + 4/12, "feet"),
  48635. weight: math.unit(252, "lb"),
  48636. name: "Front",
  48637. image: {
  48638. source: "./media/characters/bandel/front.svg",
  48639. extra: 1946/1775,
  48640. bottom: 26/1972
  48641. }
  48642. },
  48643. back: {
  48644. height: math.unit(7 + 4/12, "feet"),
  48645. weight: math.unit(252, "lb"),
  48646. name: "Back",
  48647. image: {
  48648. source: "./media/characters/bandel/back.svg",
  48649. extra: 1940/1770,
  48650. bottom: 25/1965
  48651. }
  48652. },
  48653. maw: {
  48654. height: math.unit(2.15, "feet"),
  48655. name: "Maw",
  48656. image: {
  48657. source: "./media/characters/bandel/maw.svg"
  48658. }
  48659. },
  48660. stomach: {
  48661. height: math.unit(1.95, "feet"),
  48662. name: "Stomach",
  48663. image: {
  48664. source: "./media/characters/bandel/stomach.svg"
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Normal",
  48671. height: math.unit(7 + 4/12, "feet"),
  48672. default: true
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48678. {
  48679. front: {
  48680. height: math.unit(10 + 5/12, "feet"),
  48681. weight: math.unit(773.5, "kg"),
  48682. name: "Front",
  48683. image: {
  48684. source: "./media/characters/zed/front.svg",
  48685. extra: 987/941,
  48686. bottom: 52/1039
  48687. }
  48688. },
  48689. },
  48690. [
  48691. {
  48692. name: "Short",
  48693. height: math.unit(5 + 4/12, "feet")
  48694. },
  48695. {
  48696. name: "Average",
  48697. height: math.unit(10 + 5/12, "feet"),
  48698. default: true
  48699. },
  48700. {
  48701. name: "Mini-Macro",
  48702. height: math.unit(24 + 9/12, "feet")
  48703. },
  48704. {
  48705. name: "Macro",
  48706. height: math.unit(249, "feet")
  48707. },
  48708. {
  48709. name: "Mega-Macro",
  48710. height: math.unit(12490, "feet")
  48711. },
  48712. {
  48713. name: "Giga-Macro",
  48714. height: math.unit(24.9, "miles")
  48715. },
  48716. {
  48717. name: "Tera-Macro",
  48718. height: math.unit(24900, "miles")
  48719. },
  48720. {
  48721. name: "Cosmic Scale",
  48722. height: math.unit(38.9, "lightyears")
  48723. },
  48724. {
  48725. name: "Universal Scale",
  48726. height: math.unit(138e12, "lightyears")
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(1561, "inches"),
  48735. name: "Front",
  48736. image: {
  48737. source: "./media/characters/ivan/front.svg",
  48738. extra: 1126/1071,
  48739. bottom: 26/1152
  48740. }
  48741. },
  48742. back: {
  48743. height: math.unit(1561, "inches"),
  48744. name: "Back",
  48745. image: {
  48746. source: "./media/characters/ivan/back.svg",
  48747. extra: 1134/1079,
  48748. bottom: 30/1164
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(1561, "inches"),
  48756. default: true
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48762. {
  48763. front: {
  48764. height: math.unit(5 + 7/12, "feet"),
  48765. weight: math.unit(150, "lb"),
  48766. name: "Front",
  48767. image: {
  48768. source: "./media/characters/robin-arctic-hare/front.svg",
  48769. extra: 1148/974,
  48770. bottom: 20/1168
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(5 + 7/12, "feet"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48784. {
  48785. side: {
  48786. height: math.unit(5, "feet"),
  48787. name: "Side",
  48788. image: {
  48789. source: "./media/characters/birch/side.svg",
  48790. extra: 985/796,
  48791. bottom: 111/1096
  48792. }
  48793. },
  48794. },
  48795. [
  48796. {
  48797. name: "Normal",
  48798. height: math.unit(5, "feet"),
  48799. default: true
  48800. },
  48801. ]
  48802. ))
  48803. characterMakers.push(() => makeCharacter(
  48804. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48805. {
  48806. front: {
  48807. height: math.unit(4, "feet"),
  48808. name: "Front",
  48809. image: {
  48810. source: "./media/characters/rasp/front.svg",
  48811. extra: 561/478,
  48812. bottom: 74/635
  48813. }
  48814. },
  48815. },
  48816. [
  48817. {
  48818. name: "Normal",
  48819. height: math.unit(4, "feet"),
  48820. default: true
  48821. },
  48822. ]
  48823. ))
  48824. characterMakers.push(() => makeCharacter(
  48825. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48826. {
  48827. front: {
  48828. height: math.unit(4 + 6/12, "feet"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/agatha/front.svg",
  48832. extra: 947/933,
  48833. bottom: 42/989
  48834. }
  48835. },
  48836. back: {
  48837. height: math.unit(4 + 6/12, "feet"),
  48838. name: "Back",
  48839. image: {
  48840. source: "./media/characters/agatha/back.svg",
  48841. extra: 935/922,
  48842. bottom: 48/983
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Normal",
  48849. height: math.unit(4 + 6 /12, "feet"),
  48850. default: true
  48851. },
  48852. {
  48853. name: "Max Size",
  48854. height: math.unit(500, "feet")
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48860. {
  48861. side: {
  48862. height: math.unit(30, "feet"),
  48863. name: "Side",
  48864. image: {
  48865. source: "./media/characters/roggy/side.svg",
  48866. extra: 909/643,
  48867. bottom: 63/972
  48868. }
  48869. },
  48870. lounging: {
  48871. height: math.unit(20, "feet"),
  48872. name: "Lounging",
  48873. image: {
  48874. source: "./media/characters/roggy/lounging.svg",
  48875. extra: 643/479,
  48876. bottom: 145/788
  48877. }
  48878. },
  48879. handpaw: {
  48880. height: math.unit(13.1, "feet"),
  48881. name: "Handpaw",
  48882. image: {
  48883. source: "./media/characters/roggy/handpaw.svg"
  48884. }
  48885. },
  48886. footpaw: {
  48887. height: math.unit(15.8, "feet"),
  48888. name: "Footpaw",
  48889. image: {
  48890. source: "./media/characters/roggy/footpaw.svg"
  48891. }
  48892. },
  48893. },
  48894. [
  48895. {
  48896. name: "Menacing",
  48897. height: math.unit(30, "feet"),
  48898. default: true
  48899. },
  48900. ]
  48901. ))
  48902. characterMakers.push(() => makeCharacter(
  48903. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48904. {
  48905. front: {
  48906. height: math.unit(5 + 7/12, "feet"),
  48907. weight: math.unit(135, "lb"),
  48908. name: "Front",
  48909. image: {
  48910. source: "./media/characters/naomi/front.svg",
  48911. extra: 1209/1154,
  48912. bottom: 129/1338
  48913. }
  48914. },
  48915. back: {
  48916. height: math.unit(5 + 7/12, "feet"),
  48917. weight: math.unit(135, "lb"),
  48918. name: "Back",
  48919. image: {
  48920. source: "./media/characters/naomi/back.svg",
  48921. extra: 1252/1190,
  48922. bottom: 23/1275
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(5 + 7 /12, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48936. {
  48937. side: {
  48938. height: math.unit(35, "meters"),
  48939. name: "Side",
  48940. image: {
  48941. source: "./media/characters/kimpi/side.svg",
  48942. extra: 419/382,
  48943. bottom: 63/482
  48944. }
  48945. },
  48946. hand: {
  48947. height: math.unit(8.96, "meters"),
  48948. name: "Hand",
  48949. image: {
  48950. source: "./media/characters/kimpi/hand.svg"
  48951. }
  48952. },
  48953. },
  48954. [
  48955. {
  48956. name: "Normal",
  48957. height: math.unit(35, "meters"),
  48958. default: true
  48959. },
  48960. ]
  48961. ))
  48962. characterMakers.push(() => makeCharacter(
  48963. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48964. {
  48965. front: {
  48966. height: math.unit(4 + 4/12, "feet"),
  48967. name: "Front",
  48968. image: {
  48969. source: "./media/characters/pepper-purrloin/front.svg",
  48970. extra: 1141/1024,
  48971. bottom: 21/1162
  48972. }
  48973. },
  48974. },
  48975. [
  48976. {
  48977. name: "Normal",
  48978. height: math.unit(4 + 4/12, "feet"),
  48979. default: true
  48980. },
  48981. ]
  48982. ))
  48983. characterMakers.push(() => makeCharacter(
  48984. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48985. {
  48986. front: {
  48987. height: math.unit(6 + 2/12, "feet"),
  48988. name: "Front",
  48989. image: {
  48990. source: "./media/characters/raphael/front.svg",
  48991. extra: 1101/962,
  48992. bottom: 59/1160
  48993. }
  48994. },
  48995. },
  48996. [
  48997. {
  48998. name: "Normal",
  48999. height: math.unit(6 + 2/12, "feet"),
  49000. default: true
  49001. },
  49002. ]
  49003. ))
  49004. characterMakers.push(() => makeCharacter(
  49005. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49006. {
  49007. front: {
  49008. height: math.unit(6, "feet"),
  49009. weight: math.unit(150, "lb"),
  49010. name: "Front",
  49011. image: {
  49012. source: "./media/characters/victor-williams/front.svg",
  49013. extra: 1894/1825,
  49014. bottom: 67/1961
  49015. }
  49016. },
  49017. },
  49018. [
  49019. {
  49020. name: "Normal",
  49021. height: math.unit(6, "feet"),
  49022. default: true
  49023. },
  49024. ]
  49025. ))
  49026. characterMakers.push(() => makeCharacter(
  49027. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49028. {
  49029. front: {
  49030. height: math.unit(5 + 8/12, "feet"),
  49031. weight: math.unit(150, "lb"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/rachel/front.svg",
  49035. extra: 1902/1787,
  49036. bottom: 46/1948
  49037. }
  49038. },
  49039. },
  49040. [
  49041. {
  49042. name: "Base Height",
  49043. height: math.unit(5 + 8/12, "feet"),
  49044. default: true
  49045. },
  49046. {
  49047. name: "Macro",
  49048. height: math.unit(200, "feet")
  49049. },
  49050. {
  49051. name: "Mega Macro",
  49052. height: math.unit(1, "mile")
  49053. },
  49054. {
  49055. name: "Giga Macro",
  49056. height: math.unit(1500, "miles")
  49057. },
  49058. {
  49059. name: "Tera Macro",
  49060. height: math.unit(8000, "miles")
  49061. },
  49062. {
  49063. name: "Tera Macro+",
  49064. height: math.unit(2e5, "miles")
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49070. {
  49071. front: {
  49072. height: math.unit(6.5, "feet"),
  49073. name: "Front",
  49074. image: {
  49075. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49076. extra: 860/819,
  49077. bottom: 307/1167
  49078. }
  49079. },
  49080. back: {
  49081. height: math.unit(6.5, "feet"),
  49082. name: "Back",
  49083. image: {
  49084. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49085. extra: 880/837,
  49086. bottom: 395/1275
  49087. }
  49088. },
  49089. sleeping: {
  49090. height: math.unit(2.79, "feet"),
  49091. name: "Sleeping",
  49092. image: {
  49093. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49094. extra: 465/383,
  49095. bottom: 263/728
  49096. }
  49097. },
  49098. maw: {
  49099. height: math.unit(2.52, "feet"),
  49100. name: "Maw",
  49101. image: {
  49102. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Normal",
  49109. height: math.unit(6.5, "feet"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(5, "feet"),
  49119. name: "Front",
  49120. image: {
  49121. source: "./media/characters/nova-nerium/front.svg",
  49122. extra: 1548/1392,
  49123. bottom: 374/1922
  49124. }
  49125. },
  49126. back: {
  49127. height: math.unit(5, "feet"),
  49128. name: "Back",
  49129. image: {
  49130. source: "./media/characters/nova-nerium/back.svg",
  49131. extra: 1658/1468,
  49132. bottom: 257/1915
  49133. }
  49134. },
  49135. },
  49136. [
  49137. {
  49138. name: "Normal",
  49139. height: math.unit(5, "feet"),
  49140. default: true
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49146. {
  49147. front: {
  49148. height: math.unit(5 + 4/12, "feet"),
  49149. name: "Front",
  49150. image: {
  49151. source: "./media/characters/ashe-pyriph/front.svg",
  49152. extra: 1935/1747,
  49153. bottom: 60/1995
  49154. }
  49155. },
  49156. },
  49157. [
  49158. {
  49159. name: "Normal",
  49160. height: math.unit(5 + 4/12, "feet"),
  49161. default: true
  49162. },
  49163. ]
  49164. ))
  49165. characterMakers.push(() => makeCharacter(
  49166. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49167. {
  49168. front: {
  49169. height: math.unit(8.7, "feet"),
  49170. name: "Front",
  49171. image: {
  49172. source: "./media/characters/flicker-wisp/front.svg",
  49173. extra: 1835/1613,
  49174. bottom: 449/2284
  49175. }
  49176. },
  49177. side: {
  49178. height: math.unit(8.7, "feet"),
  49179. name: "Side",
  49180. image: {
  49181. source: "./media/characters/flicker-wisp/side.svg",
  49182. extra: 1841/1642,
  49183. bottom: 336/2177
  49184. },
  49185. default: true
  49186. },
  49187. maw: {
  49188. height: math.unit(3.35, "feet"),
  49189. name: "Maw",
  49190. image: {
  49191. source: "./media/characters/flicker-wisp/maw.svg",
  49192. extra: 2338/1506,
  49193. bottom: 0/2338
  49194. }
  49195. },
  49196. ovipositor: {
  49197. height: math.unit(4.95, "feet"),
  49198. name: "Ovipositor",
  49199. image: {
  49200. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49201. }
  49202. },
  49203. egg: {
  49204. height: math.unit(0.385, "feet"),
  49205. weight: math.unit(2, "lb"),
  49206. name: "Egg",
  49207. image: {
  49208. source: "./media/characters/flicker-wisp/egg.svg"
  49209. }
  49210. },
  49211. },
  49212. [
  49213. {
  49214. name: "Normal",
  49215. height: math.unit(8.7, "feet"),
  49216. default: true
  49217. },
  49218. ]
  49219. ))
  49220. characterMakers.push(() => makeCharacter(
  49221. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49222. {
  49223. side: {
  49224. height: math.unit(11, "feet"),
  49225. name: "Side",
  49226. image: {
  49227. source: "./media/characters/faefnul/side.svg",
  49228. extra: 1100/1007,
  49229. bottom: 0/1100
  49230. }
  49231. },
  49232. },
  49233. [
  49234. {
  49235. name: "Normal",
  49236. height: math.unit(11, "feet"),
  49237. default: true
  49238. },
  49239. ]
  49240. ))
  49241. characterMakers.push(() => makeCharacter(
  49242. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49243. {
  49244. front: {
  49245. height: math.unit(6 + 2/12, "feet"),
  49246. name: "Front",
  49247. image: {
  49248. source: "./media/characters/shady/front.svg",
  49249. extra: 502/461,
  49250. bottom: 9/511
  49251. }
  49252. },
  49253. kneeling: {
  49254. height: math.unit(4.6, "feet"),
  49255. name: "Kneeling",
  49256. image: {
  49257. source: "./media/characters/shady/kneeling.svg",
  49258. extra: 1328/1219,
  49259. bottom: 117/1445
  49260. }
  49261. },
  49262. maw: {
  49263. height: math.unit(2, "feet"),
  49264. name: "Maw",
  49265. image: {
  49266. source: "./media/characters/shady/maw.svg"
  49267. }
  49268. },
  49269. },
  49270. [
  49271. {
  49272. name: "Nano",
  49273. height: math.unit(1, "mm")
  49274. },
  49275. {
  49276. name: "Micro",
  49277. height: math.unit(12, "mm")
  49278. },
  49279. {
  49280. name: "Tiny",
  49281. height: math.unit(3, "inches")
  49282. },
  49283. {
  49284. name: "Normal",
  49285. height: math.unit(6 + 2/12, "feet"),
  49286. default: true
  49287. },
  49288. {
  49289. name: "Big",
  49290. height: math.unit(15, "feet")
  49291. },
  49292. {
  49293. name: "Macro",
  49294. height: math.unit(150, "feet")
  49295. },
  49296. {
  49297. name: "Titanic",
  49298. height: math.unit(500, "feet")
  49299. },
  49300. ]
  49301. ))
  49302. characterMakers.push(() => makeCharacter(
  49303. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49304. {
  49305. front: {
  49306. height: math.unit(12, "feet"),
  49307. name: "Front",
  49308. image: {
  49309. source: "./media/characters/fenrir/front.svg",
  49310. extra: 968/875,
  49311. bottom: 22/990
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Big",
  49318. height: math.unit(12, "feet"),
  49319. default: true
  49320. },
  49321. ]
  49322. ))
  49323. characterMakers.push(() => makeCharacter(
  49324. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49325. {
  49326. front: {
  49327. height: math.unit(5 + 4/12, "feet"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/makar/front.svg",
  49331. extra: 1181/1112,
  49332. bottom: 78/1259
  49333. }
  49334. },
  49335. },
  49336. [
  49337. {
  49338. name: "Normal",
  49339. height: math.unit(5 + 4/12, "feet"),
  49340. default: true
  49341. },
  49342. ]
  49343. ))
  49344. characterMakers.push(() => makeCharacter(
  49345. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49346. {
  49347. front: {
  49348. height: math.unit(5 + 7/12, "feet"),
  49349. name: "Front",
  49350. image: {
  49351. source: "./media/characters/callow/front.svg",
  49352. extra: 1482/1304,
  49353. bottom: 23/1505
  49354. }
  49355. },
  49356. back: {
  49357. height: math.unit(5 + 7/12, "feet"),
  49358. name: "Back",
  49359. image: {
  49360. source: "./media/characters/callow/back.svg",
  49361. extra: 1484/1296,
  49362. bottom: 25/1509
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Micro",
  49369. height: math.unit(3, "inches"),
  49370. default: true
  49371. },
  49372. {
  49373. name: "Normal",
  49374. height: math.unit(5 + 7/12, "feet")
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49380. {
  49381. front: {
  49382. height: math.unit(6 + 2/12, "feet"),
  49383. name: "Front",
  49384. image: {
  49385. source: "./media/characters/natel/front.svg",
  49386. extra: 1833/1692,
  49387. bottom: 166/1999
  49388. }
  49389. },
  49390. },
  49391. [
  49392. {
  49393. name: "Normal",
  49394. height: math.unit(6 + 2/12, "feet"),
  49395. default: true
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49401. {
  49402. front: {
  49403. height: math.unit(1.75, "meters"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/misu/front.svg",
  49407. extra: 1690/1558,
  49408. bottom: 234/1924
  49409. }
  49410. },
  49411. back: {
  49412. height: math.unit(1.75, "meters"),
  49413. name: "Back",
  49414. image: {
  49415. source: "./media/characters/misu/back.svg",
  49416. extra: 1762/1618,
  49417. bottom: 146/1908
  49418. }
  49419. },
  49420. frontNude: {
  49421. height: math.unit(1.75, "meters"),
  49422. name: "Front (Nude)",
  49423. image: {
  49424. source: "./media/characters/misu/front-nude.svg",
  49425. extra: 1690/1558,
  49426. bottom: 234/1924
  49427. }
  49428. },
  49429. backNude: {
  49430. height: math.unit(1.75, "meters"),
  49431. name: "Back (Nude)",
  49432. image: {
  49433. source: "./media/characters/misu/back-nude.svg",
  49434. extra: 1762/1618,
  49435. bottom: 146/1908
  49436. }
  49437. },
  49438. frontErect: {
  49439. height: math.unit(1.75, "meters"),
  49440. name: "Front (Erect)",
  49441. image: {
  49442. source: "./media/characters/misu/front-erect.svg",
  49443. extra: 1690/1558,
  49444. bottom: 234/1924
  49445. }
  49446. },
  49447. maw: {
  49448. height: math.unit(0.47, "meters"),
  49449. name: "Maw",
  49450. image: {
  49451. source: "./media/characters/misu/maw.svg"
  49452. }
  49453. },
  49454. head: {
  49455. height: math.unit(0.35, "meters"),
  49456. name: "Head",
  49457. image: {
  49458. source: "./media/characters/misu/head.svg"
  49459. }
  49460. },
  49461. rear: {
  49462. height: math.unit(0.47, "meters"),
  49463. name: "Rear",
  49464. image: {
  49465. source: "./media/characters/misu/rear.svg"
  49466. }
  49467. },
  49468. },
  49469. [
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(1.75, "meters")
  49473. },
  49474. {
  49475. name: "Not good for the people",
  49476. height: math.unit(42, "meters")
  49477. },
  49478. {
  49479. name: "Not good for the neighborhood",
  49480. height: math.unit(135, "meters")
  49481. },
  49482. {
  49483. name: "Bit bigger problem",
  49484. height: math.unit(380, "meters"),
  49485. default: true
  49486. },
  49487. {
  49488. name: "Not good for the city",
  49489. height: math.unit(1.5, "km")
  49490. },
  49491. {
  49492. name: "Not good for the county",
  49493. height: math.unit(5.5, "km")
  49494. },
  49495. {
  49496. name: "Not good for the state",
  49497. height: math.unit(25, "km")
  49498. },
  49499. {
  49500. name: "Not good for the country",
  49501. height: math.unit(125, "km")
  49502. },
  49503. {
  49504. name: "Not good for the continent",
  49505. height: math.unit(2100, "km")
  49506. },
  49507. {
  49508. name: "Not good for the planet",
  49509. height: math.unit(35000, "km")
  49510. },
  49511. {
  49512. name: "Just no",
  49513. height: math.unit(8.5e18, "km")
  49514. },
  49515. ]
  49516. ))
  49517. characterMakers.push(() => makeCharacter(
  49518. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49519. {
  49520. front: {
  49521. height: math.unit(6.5, "feet"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/poppy/front.svg",
  49525. extra: 1878/1812,
  49526. bottom: 43/1921
  49527. }
  49528. },
  49529. feet: {
  49530. height: math.unit(1.06, "feet"),
  49531. name: "Feet",
  49532. image: {
  49533. source: "./media/characters/poppy/feet.svg",
  49534. extra: 1083/1083,
  49535. bottom: 87/1170
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Human",
  49542. height: math.unit(6.5, "feet")
  49543. },
  49544. {
  49545. name: "Default",
  49546. height: math.unit(300, "feet"),
  49547. default: true
  49548. },
  49549. {
  49550. name: "Huge",
  49551. height: math.unit(850, "feet")
  49552. },
  49553. {
  49554. name: "Mega",
  49555. height: math.unit(8000, "feet")
  49556. },
  49557. {
  49558. name: "Giga",
  49559. height: math.unit(300, "miles")
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49565. {
  49566. bipedal: {
  49567. height: math.unit(7, "feet"),
  49568. name: "Bipedal",
  49569. image: {
  49570. source: "./media/characters/zener/bipedal.svg",
  49571. extra: 874/805,
  49572. bottom: 109/983
  49573. }
  49574. },
  49575. quadrupedal: {
  49576. height: math.unit(4.64, "feet"),
  49577. name: "Quadrupedal",
  49578. image: {
  49579. source: "./media/characters/zener/quadrupedal.svg",
  49580. extra: 638/507,
  49581. bottom: 190/828
  49582. }
  49583. },
  49584. cock: {
  49585. height: math.unit(18, "inches"),
  49586. name: "Cock",
  49587. image: {
  49588. source: "./media/characters/zener/cock.svg"
  49589. }
  49590. },
  49591. },
  49592. [
  49593. {
  49594. name: "Normal",
  49595. height: math.unit(7, "feet"),
  49596. default: true
  49597. },
  49598. ]
  49599. ))
  49600. characterMakers.push(() => makeCharacter(
  49601. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49602. {
  49603. nude: {
  49604. height: math.unit(5 + 6/12, "feet"),
  49605. name: "Nude",
  49606. image: {
  49607. source: "./media/characters/charlie-dog/nude.svg",
  49608. extra: 768/734,
  49609. bottom: 26/794
  49610. }
  49611. },
  49612. dressed: {
  49613. height: math.unit(5 + 6/12, "feet"),
  49614. name: "Dressed",
  49615. image: {
  49616. source: "./media/characters/charlie-dog/dressed.svg",
  49617. extra: 768/734,
  49618. bottom: 26/794
  49619. }
  49620. },
  49621. },
  49622. [
  49623. {
  49624. name: "Normal",
  49625. height: math.unit(5 + 6/12, "feet"),
  49626. default: true
  49627. },
  49628. ]
  49629. ))
  49630. characterMakers.push(() => makeCharacter(
  49631. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49632. {
  49633. front: {
  49634. height: math.unit(6 + 4/12, "feet"),
  49635. name: "Front",
  49636. image: {
  49637. source: "./media/characters/ir'istrasz/front.svg",
  49638. extra: 1014/977,
  49639. bottom: 65/1079
  49640. }
  49641. },
  49642. back: {
  49643. height: math.unit(6 + 4/12, "feet"),
  49644. name: "Back",
  49645. image: {
  49646. source: "./media/characters/ir'istrasz/back.svg",
  49647. extra: 1024/992,
  49648. bottom: 34/1058
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Normal",
  49655. height: math.unit(6 + 4/12, "feet"),
  49656. default: true
  49657. },
  49658. ]
  49659. ))
  49660. characterMakers.push(() => makeCharacter(
  49661. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49662. {
  49663. front: {
  49664. height: math.unit(5 + 8/12, "feet"),
  49665. name: "Front",
  49666. image: {
  49667. source: "./media/characters/dee-ditto/front.svg",
  49668. extra: 1874/1785,
  49669. bottom: 68/1942
  49670. }
  49671. },
  49672. back: {
  49673. height: math.unit(5 + 8/12, "feet"),
  49674. name: "Back",
  49675. image: {
  49676. source: "./media/characters/dee-ditto/back.svg",
  49677. extra: 1870/1783,
  49678. bottom: 77/1947
  49679. }
  49680. },
  49681. },
  49682. [
  49683. {
  49684. name: "Normal",
  49685. height: math.unit(5 + 8/12, "feet"),
  49686. default: true
  49687. },
  49688. ]
  49689. ))
  49690. characterMakers.push(() => makeCharacter(
  49691. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49692. {
  49693. front: {
  49694. height: math.unit(7 + 6/12, "feet"),
  49695. name: "Front",
  49696. image: {
  49697. source: "./media/characters/fey/front.svg",
  49698. extra: 995/979,
  49699. bottom: 30/1025
  49700. }
  49701. },
  49702. back: {
  49703. height: math.unit(7 + 6/12, "feet"),
  49704. name: "Back",
  49705. image: {
  49706. source: "./media/characters/fey/back.svg",
  49707. extra: 1079/1008,
  49708. bottom: 5/1084
  49709. }
  49710. },
  49711. dressed: {
  49712. height: math.unit(7 + 6/12, "feet"),
  49713. name: "Dressed",
  49714. image: {
  49715. source: "./media/characters/fey/dressed.svg",
  49716. extra: 995/979,
  49717. bottom: 30/1025
  49718. }
  49719. },
  49720. },
  49721. [
  49722. {
  49723. name: "Normal",
  49724. height: math.unit(7 + 6/12, "feet"),
  49725. default: true
  49726. },
  49727. ]
  49728. ))
  49729. characterMakers.push(() => makeCharacter(
  49730. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49731. {
  49732. standing: {
  49733. height: math.unit(17, "feet"),
  49734. name: "Standing",
  49735. image: {
  49736. source: "./media/characters/aster/standing.svg",
  49737. extra: 1798/1598,
  49738. bottom: 117/1915
  49739. }
  49740. },
  49741. },
  49742. [
  49743. {
  49744. name: "Normal",
  49745. height: math.unit(17, "feet"),
  49746. default: true
  49747. },
  49748. {
  49749. name: "Homewrecker",
  49750. height: math.unit(95, "feet")
  49751. },
  49752. {
  49753. name: "Planet Devourer",
  49754. height: math.unit(1008000, "miles")
  49755. },
  49756. ]
  49757. ))
  49758. characterMakers.push(() => makeCharacter(
  49759. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49760. {
  49761. front: {
  49762. height: math.unit(6 + 5/12, "feet"),
  49763. weight: math.unit(265, "lb"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/devon-childs/front.svg",
  49767. extra: 1795/1721,
  49768. bottom: 41/1836
  49769. }
  49770. },
  49771. side: {
  49772. height: math.unit(6 + 5/12, "feet"),
  49773. weight: math.unit(265, "lb"),
  49774. name: "Side",
  49775. image: {
  49776. source: "./media/characters/devon-childs/side.svg",
  49777. extra: 1812/1738,
  49778. bottom: 30/1842
  49779. }
  49780. },
  49781. back: {
  49782. height: math.unit(6 + 5/12, "feet"),
  49783. weight: math.unit(265, "lb"),
  49784. name: "Back",
  49785. image: {
  49786. source: "./media/characters/devon-childs/back.svg",
  49787. extra: 1808/1735,
  49788. bottom: 23/1831
  49789. }
  49790. },
  49791. hand: {
  49792. height: math.unit(1.464, "feet"),
  49793. name: "Hand",
  49794. image: {
  49795. source: "./media/characters/devon-childs/hand.svg"
  49796. }
  49797. },
  49798. foot: {
  49799. height: math.unit(1.6, "feet"),
  49800. name: "Foot",
  49801. image: {
  49802. source: "./media/characters/devon-childs/foot.svg"
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Micro",
  49809. height: math.unit(7, "cm")
  49810. },
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(6 + 5/12, "feet"),
  49814. default: true
  49815. },
  49816. {
  49817. name: "Macro",
  49818. height: math.unit(154, "feet")
  49819. },
  49820. ]
  49821. ))
  49822. characterMakers.push(() => makeCharacter(
  49823. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49824. {
  49825. front: {
  49826. height: math.unit(6, "feet"),
  49827. weight: math.unit(180, "lb"),
  49828. name: "Front",
  49829. image: {
  49830. source: "./media/characters/lydemox-vir/front.svg",
  49831. extra: 1632/1435,
  49832. bottom: 58/1690
  49833. }
  49834. },
  49835. frontSFW: {
  49836. height: math.unit(6, "feet"),
  49837. weight: math.unit(180, "lb"),
  49838. name: "Front (SFW)",
  49839. image: {
  49840. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49841. extra: 1632/1435,
  49842. bottom: 58/1690
  49843. }
  49844. },
  49845. back: {
  49846. height: math.unit(6, "feet"),
  49847. weight: math.unit(180, "lb"),
  49848. name: "Back",
  49849. image: {
  49850. source: "./media/characters/lydemox-vir/back.svg",
  49851. extra: 1593/1408,
  49852. bottom: 31/1624
  49853. }
  49854. },
  49855. paw: {
  49856. height: math.unit(1.85, "feet"),
  49857. name: "Paw",
  49858. image: {
  49859. source: "./media/characters/lydemox-vir/paw.svg"
  49860. }
  49861. },
  49862. dick: {
  49863. height: math.unit(1.8, "feet"),
  49864. name: "Dick",
  49865. image: {
  49866. source: "./media/characters/lydemox-vir/dick.svg"
  49867. }
  49868. },
  49869. },
  49870. [
  49871. {
  49872. name: "Macro",
  49873. height: math.unit(100, "feet"),
  49874. default: true
  49875. },
  49876. {
  49877. name: "Teramacro",
  49878. height: math.unit(1, "earth")
  49879. },
  49880. {
  49881. name: "Planetary",
  49882. height: math.unit(20, "earths")
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(15 + 8/12, "feet"),
  49891. weight: math.unit(1237, "kg"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/mia/front.svg",
  49895. extra: 1573/1446,
  49896. bottom: 58/1631
  49897. }
  49898. },
  49899. },
  49900. [
  49901. {
  49902. name: "Small",
  49903. height: math.unit(9 + 5/12, "feet")
  49904. },
  49905. {
  49906. name: "Normal",
  49907. height: math.unit(15 + 8/12, "feet"),
  49908. default: true
  49909. },
  49910. ]
  49911. ))
  49912. characterMakers.push(() => makeCharacter(
  49913. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49914. {
  49915. front: {
  49916. height: math.unit(10 + 6/12, "feet"),
  49917. weight: math.unit(1.3, "tons"),
  49918. name: "Front",
  49919. image: {
  49920. source: "./media/characters/mr-graves/front.svg",
  49921. extra: 1779/1695,
  49922. bottom: 198/1977
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(10 + 6 /12, "feet"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49936. {
  49937. dressedFront: {
  49938. height: math.unit(5 + 8/12, "feet"),
  49939. weight: math.unit(125, "lb"),
  49940. name: "Dressed (Front)",
  49941. image: {
  49942. source: "./media/characters/jess/dressed-front.svg",
  49943. extra: 1176/1152,
  49944. bottom: 42/1218
  49945. }
  49946. },
  49947. dressedSide: {
  49948. height: math.unit(5 + 8/12, "feet"),
  49949. weight: math.unit(125, "lb"),
  49950. name: "Dressed (Side)",
  49951. image: {
  49952. source: "./media/characters/jess/dressed-side.svg",
  49953. extra: 1204/1190,
  49954. bottom: 6/1210
  49955. }
  49956. },
  49957. nudeFront: {
  49958. height: math.unit(5 + 8/12, "feet"),
  49959. weight: math.unit(125, "lb"),
  49960. name: "Nude (Front)",
  49961. image: {
  49962. source: "./media/characters/jess/nude-front.svg",
  49963. extra: 1176/1152,
  49964. bottom: 42/1218
  49965. }
  49966. },
  49967. nudeSide: {
  49968. height: math.unit(5 + 8/12, "feet"),
  49969. weight: math.unit(125, "lb"),
  49970. name: "Nude (Side)",
  49971. image: {
  49972. source: "./media/characters/jess/nude-side.svg",
  49973. extra: 1204/1190,
  49974. bottom: 6/1210
  49975. }
  49976. },
  49977. organsFront: {
  49978. height: math.unit(2.83799342105, "feet"),
  49979. name: "Organs (Front)",
  49980. image: {
  49981. source: "./media/characters/jess/organs-front.svg"
  49982. }
  49983. },
  49984. organsSide: {
  49985. height: math.unit(2.64225290474, "feet"),
  49986. name: "Organs (Side)",
  49987. image: {
  49988. source: "./media/characters/jess/organs-side.svg"
  49989. }
  49990. },
  49991. digestiveTractFront: {
  49992. height: math.unit(2.8106580871, "feet"),
  49993. name: "Digestive Tract (Front)",
  49994. image: {
  49995. source: "./media/characters/jess/digestive-tract-front.svg"
  49996. }
  49997. },
  49998. digestiveTractSide: {
  49999. height: math.unit(2.54365045014, "feet"),
  50000. name: "Digestive Tract (Side)",
  50001. image: {
  50002. source: "./media/characters/jess/digestive-tract-side.svg"
  50003. }
  50004. },
  50005. respiratorySystemFront: {
  50006. height: math.unit(1.11196233456, "feet"),
  50007. name: "Respiratory System (Front)",
  50008. image: {
  50009. source: "./media/characters/jess/respiratory-system-front.svg"
  50010. }
  50011. },
  50012. respiratorySystemSide: {
  50013. height: math.unit(0.89327966297, "feet"),
  50014. name: "Respiratory System (Side)",
  50015. image: {
  50016. source: "./media/characters/jess/respiratory-system-side.svg"
  50017. }
  50018. },
  50019. urinaryTractFront: {
  50020. height: math.unit(1.16126356186, "feet"),
  50021. name: "Urinary Tract (Front)",
  50022. image: {
  50023. source: "./media/characters/jess/urinary-tract-front.svg"
  50024. }
  50025. },
  50026. urinaryTractSide: {
  50027. height: math.unit(1.20910039627, "feet"),
  50028. name: "Urinary Tract (Side)",
  50029. image: {
  50030. source: "./media/characters/jess/urinary-tract-side.svg"
  50031. }
  50032. },
  50033. reproductiveOrgansFront: {
  50034. height: math.unit(0.48422591566, "feet"),
  50035. name: "Reproductive Organs (Front)",
  50036. image: {
  50037. source: "./media/characters/jess/reproductive-organs-front.svg"
  50038. }
  50039. },
  50040. reproductiveOrgansSide: {
  50041. height: math.unit(0.61553314481, "feet"),
  50042. name: "Reproductive Organs (Side)",
  50043. image: {
  50044. source: "./media/characters/jess/reproductive-organs-side.svg"
  50045. }
  50046. },
  50047. breastsFront: {
  50048. height: math.unit(0.47690395121, "feet"),
  50049. name: "Breasts (Front)",
  50050. image: {
  50051. source: "./media/characters/jess/breasts-front.svg"
  50052. }
  50053. },
  50054. breastsSide: {
  50055. height: math.unit(0.30556998307, "feet"),
  50056. name: "Breasts (Side)",
  50057. image: {
  50058. source: "./media/characters/jess/breasts-side.svg"
  50059. }
  50060. },
  50061. heartFront: {
  50062. height: math.unit(0.53011022622, "feet"),
  50063. name: "Heart (Front)",
  50064. image: {
  50065. source: "./media/characters/jess/heart-front.svg"
  50066. }
  50067. },
  50068. heartSide: {
  50069. height: math.unit(0.51790695213, "feet"),
  50070. name: "Heart (Side)",
  50071. image: {
  50072. source: "./media/characters/jess/heart-side.svg"
  50073. }
  50074. },
  50075. earsAndNoseFront: {
  50076. height: math.unit(0.29385483995, "feet"),
  50077. name: "Ears and Nose (Front)",
  50078. image: {
  50079. source: "./media/characters/jess/ears-and-nose-front.svg"
  50080. }
  50081. },
  50082. earsAndNoseSide: {
  50083. height: math.unit(0.18109658741, "feet"),
  50084. name: "Ears and Nose (Side)",
  50085. image: {
  50086. source: "./media/characters/jess/ears-and-nose-side.svg"
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(5 + 8/12, "feet"),
  50094. default: true
  50095. },
  50096. ]
  50097. ))
  50098. characterMakers.push(() => makeCharacter(
  50099. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50100. {
  50101. front: {
  50102. height: math.unit(6, "feet"),
  50103. weight: math.unit(6.64467e-7, "grams"),
  50104. name: "Front",
  50105. image: {
  50106. source: "./media/characters/wimpering/front.svg",
  50107. extra: 597/587,
  50108. bottom: 34/631
  50109. }
  50110. },
  50111. },
  50112. [
  50113. {
  50114. name: "Micro",
  50115. height: math.unit(0.4, "mm"),
  50116. default: true
  50117. },
  50118. ]
  50119. ))
  50120. characterMakers.push(() => makeCharacter(
  50121. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50122. {
  50123. front: {
  50124. height: math.unit(5 + 2/12, "feet"),
  50125. weight: math.unit(110, "lb"),
  50126. name: "Front",
  50127. image: {
  50128. source: "./media/characters/keltre/front.svg",
  50129. extra: 1099/1057,
  50130. bottom: 22/1121
  50131. }
  50132. },
  50133. back: {
  50134. height: math.unit(5 + 2/12, "feet"),
  50135. weight: math.unit(110, "lb"),
  50136. name: "Back",
  50137. image: {
  50138. source: "./media/characters/keltre/back.svg",
  50139. extra: 1095/1053,
  50140. bottom: 17/1112
  50141. }
  50142. },
  50143. dressed: {
  50144. height: math.unit(5 + 2/12, "feet"),
  50145. weight: math.unit(110, "lb"),
  50146. name: "Dressed",
  50147. image: {
  50148. source: "./media/characters/keltre/dressed.svg",
  50149. extra: 1099/1057,
  50150. bottom: 22/1121
  50151. }
  50152. },
  50153. winter: {
  50154. height: math.unit(5 + 2/12, "feet"),
  50155. weight: math.unit(110, "lb"),
  50156. name: "Winter",
  50157. image: {
  50158. source: "./media/characters/keltre/winter.svg",
  50159. extra: 1099/1057,
  50160. bottom: 22/1121
  50161. }
  50162. },
  50163. head: {
  50164. height: math.unit(1.61 * 0.86, "feet"),
  50165. name: "Head",
  50166. image: {
  50167. source: "./media/characters/keltre/head.svg",
  50168. extra: 534/421,
  50169. bottom: 0/534
  50170. }
  50171. },
  50172. hand: {
  50173. height: math.unit(1.3 * 0.86, "feet"),
  50174. name: "Hand",
  50175. image: {
  50176. source: "./media/characters/keltre/hand.svg"
  50177. }
  50178. },
  50179. foot: {
  50180. height: math.unit(1.8 * 0.86, "feet"),
  50181. name: "Foot",
  50182. image: {
  50183. source: "./media/characters/keltre/foot.svg"
  50184. }
  50185. },
  50186. },
  50187. [
  50188. {
  50189. name: "Fine",
  50190. height: math.unit(1, "inch")
  50191. },
  50192. {
  50193. name: "Dimnutive",
  50194. height: math.unit(4, "inches")
  50195. },
  50196. {
  50197. name: "Tiny",
  50198. height: math.unit(1, "foot")
  50199. },
  50200. {
  50201. name: "Small",
  50202. height: math.unit(3, "feet")
  50203. },
  50204. {
  50205. name: "Normal",
  50206. height: math.unit(5 + 2/12, "feet"),
  50207. default: true
  50208. },
  50209. ]
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50213. {
  50214. front: {
  50215. height: math.unit(6 + 2/12, "feet"),
  50216. name: "Front",
  50217. image: {
  50218. source: "./media/characters/nox/front.svg",
  50219. extra: 1917/1830,
  50220. bottom: 74/1991
  50221. }
  50222. },
  50223. back: {
  50224. height: math.unit(6 + 2/12, "feet"),
  50225. name: "Back",
  50226. image: {
  50227. source: "./media/characters/nox/back.svg",
  50228. extra: 1896/1815,
  50229. bottom: 21/1917
  50230. }
  50231. },
  50232. head: {
  50233. height: math.unit(1.1, "feet"),
  50234. name: "Head",
  50235. image: {
  50236. source: "./media/characters/nox/head.svg",
  50237. extra: 874/704,
  50238. bottom: 0/874
  50239. }
  50240. },
  50241. tattoo: {
  50242. height: math.unit(0.729, "feet"),
  50243. name: "Tattoo",
  50244. image: {
  50245. source: "./media/characters/nox/tattoo.svg"
  50246. }
  50247. },
  50248. },
  50249. [
  50250. {
  50251. name: "Normal",
  50252. height: math.unit(6 + 2/12, "feet")
  50253. },
  50254. {
  50255. name: "Gigamacro",
  50256. height: math.unit(2, "earths"),
  50257. default: true
  50258. },
  50259. {
  50260. name: "Cosmic",
  50261. height: math.unit(867, "yottameters")
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50267. {
  50268. front: {
  50269. height: math.unit(6, "feet"),
  50270. weight: math.unit(150, "lb"),
  50271. name: "Front",
  50272. image: {
  50273. source: "./media/characters/caspian/front.svg",
  50274. extra: 1443/1359,
  50275. bottom: 0/1443
  50276. }
  50277. },
  50278. back: {
  50279. height: math.unit(6, "feet"),
  50280. weight: math.unit(150, "lb"),
  50281. name: "Back",
  50282. image: {
  50283. source: "./media/characters/caspian/back.svg",
  50284. extra: 1379/1309,
  50285. bottom: 0/1379
  50286. }
  50287. },
  50288. head: {
  50289. height: math.unit(0.9, "feet"),
  50290. name: "Head",
  50291. image: {
  50292. source: "./media/characters/caspian/head.svg",
  50293. extra: 692/492,
  50294. bottom: 0/692
  50295. }
  50296. },
  50297. headAlt: {
  50298. height: math.unit(0.95, "feet"),
  50299. name: "Head (Alt)",
  50300. image: {
  50301. source: "./media/characters/caspian/head-alt.svg",
  50302. extra: 668/508,
  50303. bottom: 0/668
  50304. }
  50305. },
  50306. hand: {
  50307. height: math.unit(0.8, "feet"),
  50308. name: "Hand",
  50309. image: {
  50310. source: "./media/characters/caspian/hand.svg"
  50311. }
  50312. },
  50313. paw: {
  50314. height: math.unit(0.95, "feet"),
  50315. name: "Paw",
  50316. image: {
  50317. source: "./media/characters/caspian/paw.svg"
  50318. }
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(162, "feet"),
  50325. default: true
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50331. {
  50332. front: {
  50333. height: math.unit(6, "feet"),
  50334. name: "Front",
  50335. image: {
  50336. source: "./media/characters/myra-aisling/front.svg",
  50337. extra: 1268/1166,
  50338. bottom: 73/1341
  50339. }
  50340. },
  50341. back: {
  50342. height: math.unit(6, "feet"),
  50343. name: "Back",
  50344. image: {
  50345. source: "./media/characters/myra-aisling/back.svg",
  50346. extra: 1249/1149,
  50347. bottom: 79/1328
  50348. }
  50349. },
  50350. dressed: {
  50351. height: math.unit(6, "feet"),
  50352. name: "Dressed",
  50353. image: {
  50354. source: "./media/characters/myra-aisling/dressed.svg",
  50355. extra: 1290/1189,
  50356. bottom: 47/1337
  50357. }
  50358. },
  50359. hand: {
  50360. height: math.unit(1.1, "feet"),
  50361. name: "Hand",
  50362. image: {
  50363. source: "./media/characters/myra-aisling/hand.svg"
  50364. }
  50365. },
  50366. paw: {
  50367. height: math.unit(1.23, "feet"),
  50368. name: "Paw",
  50369. image: {
  50370. source: "./media/characters/myra-aisling/paw.svg"
  50371. }
  50372. },
  50373. },
  50374. [
  50375. {
  50376. name: "Normal",
  50377. height: math.unit(160, "feet"),
  50378. default: true
  50379. },
  50380. ]
  50381. ))
  50382. characterMakers.push(() => makeCharacter(
  50383. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50384. {
  50385. front: {
  50386. height: math.unit(6, "feet"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/tenley-sidero/front.svg",
  50390. extra: 1365/1276,
  50391. bottom: 47/1412
  50392. }
  50393. },
  50394. back: {
  50395. height: math.unit(6, "feet"),
  50396. name: "Back",
  50397. image: {
  50398. source: "./media/characters/tenley-sidero/back.svg",
  50399. extra: 1383/1283,
  50400. bottom: 35/1418
  50401. }
  50402. },
  50403. dressed: {
  50404. height: math.unit(6, "feet"),
  50405. name: "Dressed",
  50406. image: {
  50407. source: "./media/characters/tenley-sidero/dressed.svg",
  50408. extra: 1364/1275,
  50409. bottom: 42/1406
  50410. }
  50411. },
  50412. head: {
  50413. height: math.unit(1.47, "feet"),
  50414. name: "Head",
  50415. image: {
  50416. source: "./media/characters/tenley-sidero/head.svg",
  50417. extra: 610/490,
  50418. bottom: 0/610
  50419. }
  50420. },
  50421. },
  50422. [
  50423. {
  50424. name: "Normal",
  50425. height: math.unit(154, "feet"),
  50426. default: true
  50427. },
  50428. ]
  50429. ))
  50430. characterMakers.push(() => makeCharacter(
  50431. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50432. {
  50433. front: {
  50434. height: math.unit(5, "inches"),
  50435. name: "Front",
  50436. image: {
  50437. source: "./media/characters/mallory/front.svg",
  50438. extra: 1919/1678,
  50439. bottom: 29/1948
  50440. }
  50441. },
  50442. hand: {
  50443. height: math.unit(0.73, "inches"),
  50444. name: "Hand",
  50445. image: {
  50446. source: "./media/characters/mallory/hand.svg"
  50447. }
  50448. },
  50449. paw: {
  50450. height: math.unit(0.68, "inches"),
  50451. name: "Paw",
  50452. image: {
  50453. source: "./media/characters/mallory/paw.svg"
  50454. }
  50455. },
  50456. },
  50457. [
  50458. {
  50459. name: "Small",
  50460. height: math.unit(5, "inches"),
  50461. default: true
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50467. {
  50468. naked: {
  50469. height: math.unit(6, "feet"),
  50470. name: "Naked",
  50471. image: {
  50472. source: "./media/characters/mab/naked.svg",
  50473. extra: 1855/1757,
  50474. bottom: 208/2063
  50475. }
  50476. },
  50477. outside: {
  50478. height: math.unit(6, "feet"),
  50479. name: "Outside",
  50480. image: {
  50481. source: "./media/characters/mab/outside.svg",
  50482. extra: 1855/1757,
  50483. bottom: 208/2063
  50484. }
  50485. },
  50486. party: {
  50487. height: math.unit(6, "feet"),
  50488. name: "Party",
  50489. image: {
  50490. source: "./media/characters/mab/party.svg",
  50491. extra: 1855/1757,
  50492. bottom: 208/2063
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(165, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50506. {
  50507. feral: {
  50508. height: math.unit(12, "feet"),
  50509. weight: math.unit(20000, "lb"),
  50510. name: "Side",
  50511. image: {
  50512. source: "./media/characters/winter/feral.svg",
  50513. extra: 1286/943,
  50514. bottom: 112/1398
  50515. },
  50516. form: "feral",
  50517. default: true
  50518. },
  50519. feralNsfw: {
  50520. height: math.unit(12, "feet"),
  50521. weight: math.unit(20000, "lb"),
  50522. name: "Side (NSFW)",
  50523. image: {
  50524. source: "./media/characters/winter/feral-nsfw.svg",
  50525. extra: 1286/943,
  50526. bottom: 112/1398
  50527. },
  50528. form: "feral"
  50529. },
  50530. dick: {
  50531. height: math.unit(3.79, "feet"),
  50532. name: "Dick",
  50533. image: {
  50534. source: "./media/characters/winter/dick.svg"
  50535. },
  50536. form: "feral"
  50537. },
  50538. anthro: {
  50539. height: math.unit(12, "feet"),
  50540. weight: math.unit(10, "tons"),
  50541. name: "Anthro",
  50542. image: {
  50543. source: "./media/characters/winter/anthro.svg",
  50544. extra: 1701/1553,
  50545. bottom: 64/1765
  50546. },
  50547. form: "anthro",
  50548. default: true
  50549. },
  50550. },
  50551. [
  50552. {
  50553. name: "Big",
  50554. height: math.unit(12, "feet"),
  50555. default: true,
  50556. form: "feral"
  50557. },
  50558. {
  50559. name: "Big",
  50560. height: math.unit(12, "feet"),
  50561. default: true,
  50562. form: "anthro"
  50563. },
  50564. ],
  50565. {
  50566. "feral": {
  50567. name: "Feral",
  50568. default: true
  50569. },
  50570. "anthro": {
  50571. name: "Anthro"
  50572. }
  50573. }
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(4.1, "inches"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/alto/front.svg",
  50583. extra: 736/627,
  50584. bottom: 90/826
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Normal",
  50591. height: math.unit(4.1, "inches"),
  50592. default: true
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50598. {
  50599. sitting: {
  50600. height: math.unit(3, "feet"),
  50601. name: "Sitting",
  50602. image: {
  50603. source: "./media/characters/ratstrid-v/sitting.svg",
  50604. extra: 355/310,
  50605. bottom: 136/491
  50606. }
  50607. },
  50608. },
  50609. [
  50610. {
  50611. name: "Normal",
  50612. height: math.unit(3, "feet"),
  50613. default: true
  50614. },
  50615. ]
  50616. ))
  50617. characterMakers.push(() => makeCharacter(
  50618. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50619. {
  50620. back: {
  50621. height: math.unit(6, "feet"),
  50622. weight: math.unit(450, "lb"),
  50623. name: "Back",
  50624. image: {
  50625. source: "./media/characters/siz/back.svg",
  50626. extra: 1449/1274,
  50627. bottom: 13/1462
  50628. }
  50629. },
  50630. },
  50631. [
  50632. {
  50633. name: "Smallest",
  50634. height: math.unit(18 + 3/12, "feet")
  50635. },
  50636. {
  50637. name: "Modest",
  50638. height: math.unit(56 + 8/12, "feet"),
  50639. default: true
  50640. },
  50641. {
  50642. name: "Largest",
  50643. height: math.unit(3590, "feet")
  50644. },
  50645. ]
  50646. ))
  50647. characterMakers.push(() => makeCharacter(
  50648. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50649. {
  50650. front: {
  50651. height: math.unit(5 + 9/12, "feet"),
  50652. weight: math.unit(150, "lb"),
  50653. name: "Front",
  50654. image: {
  50655. source: "./media/characters/ven/front.svg",
  50656. extra: 1372/1320,
  50657. bottom: 73/1445
  50658. }
  50659. },
  50660. side: {
  50661. height: math.unit(5 + 9/12, "feet"),
  50662. weight: math.unit(1150, "lb"),
  50663. name: "Side",
  50664. image: {
  50665. source: "./media/characters/ven/side.svg",
  50666. extra: 1119/1070,
  50667. bottom: 42/1161
  50668. },
  50669. default: true
  50670. },
  50671. },
  50672. [
  50673. {
  50674. name: "Normal",
  50675. height: math.unit(5 + 9/12, "feet"),
  50676. default: true
  50677. },
  50678. ]
  50679. ))
  50680. characterMakers.push(() => makeCharacter(
  50681. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50682. {
  50683. front: {
  50684. height: math.unit(12, "feet"),
  50685. weight: math.unit(1000, "kg"),
  50686. name: "Front",
  50687. image: {
  50688. source: "./media/characters/maple/front.svg",
  50689. extra: 1193/1081,
  50690. bottom: 22/1215
  50691. }
  50692. },
  50693. },
  50694. [
  50695. {
  50696. name: "Compressed",
  50697. height: math.unit(7, "feet")
  50698. },
  50699. {
  50700. name: "Normal",
  50701. height: math.unit(12, "feet"),
  50702. default: true
  50703. },
  50704. ]
  50705. ))
  50706. characterMakers.push(() => makeCharacter(
  50707. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50708. {
  50709. front: {
  50710. height: math.unit(9, "feet"),
  50711. weight: math.unit(1500, "lb"),
  50712. name: "Front",
  50713. image: {
  50714. source: "./media/characters/nora/front.svg",
  50715. extra: 1348/1286,
  50716. bottom: 218/1566
  50717. }
  50718. },
  50719. erect: {
  50720. height: math.unit(9, "feet"),
  50721. weight: math.unit(11500, "lb"),
  50722. name: "Erect",
  50723. image: {
  50724. source: "./media/characters/nora/erect.svg",
  50725. extra: 1488/1433,
  50726. bottom: 133/1621
  50727. }
  50728. },
  50729. },
  50730. [
  50731. {
  50732. name: "Normal",
  50733. height: math.unit(9, "feet"),
  50734. default: true
  50735. },
  50736. ]
  50737. ))
  50738. characterMakers.push(() => makeCharacter(
  50739. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50740. {
  50741. front: {
  50742. height: math.unit(25, "feet"),
  50743. weight: math.unit(27500, "lb"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/north-caudin/front.svg",
  50747. extra: 1184/1082,
  50748. bottom: 23/1207
  50749. }
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Compressed",
  50755. height: math.unit(10, "feet")
  50756. },
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(25, "feet"),
  50760. default: true
  50761. },
  50762. ]
  50763. ))
  50764. characterMakers.push(() => makeCharacter(
  50765. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50766. {
  50767. front: {
  50768. height: math.unit(9, "feet"),
  50769. weight: math.unit(1250, "lb"),
  50770. name: "Front",
  50771. image: {
  50772. source: "./media/characters/merrian/front.svg",
  50773. extra: 2393/2304,
  50774. bottom: 40/2433
  50775. }
  50776. },
  50777. },
  50778. [
  50779. {
  50780. name: "Normal",
  50781. height: math.unit(9, "feet"),
  50782. default: true
  50783. },
  50784. ]
  50785. ))
  50786. characterMakers.push(() => makeCharacter(
  50787. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50788. {
  50789. front: {
  50790. height: math.unit(9, "feet"),
  50791. weight: math.unit(1000, "lb"),
  50792. name: "Front",
  50793. image: {
  50794. source: "./media/characters/hazel/front.svg",
  50795. extra: 2351/2298,
  50796. bottom: 38/2389
  50797. }
  50798. },
  50799. },
  50800. [
  50801. {
  50802. name: "Normal",
  50803. height: math.unit(9, "feet"),
  50804. default: true
  50805. },
  50806. ]
  50807. ))
  50808. characterMakers.push(() => makeCharacter(
  50809. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50810. {
  50811. front: {
  50812. height: math.unit(13, "feet"),
  50813. weight: math.unit(3200, "lb"),
  50814. name: "Front",
  50815. image: {
  50816. source: "./media/characters/emma/front.svg",
  50817. extra: 2263/2029,
  50818. bottom: 68/2331
  50819. }
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Normal",
  50825. height: math.unit(13, "feet"),
  50826. default: true
  50827. },
  50828. ]
  50829. ))
  50830. characterMakers.push(() => makeCharacter(
  50831. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50832. {
  50833. front: {
  50834. height: math.unit(11 + 9/12, "feet"),
  50835. weight: math.unit(2500, "lb"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/ilumina/front.svg",
  50839. extra: 2248/2209,
  50840. bottom: 164/2412
  50841. }
  50842. },
  50843. },
  50844. [
  50845. {
  50846. name: "Normal",
  50847. height: math.unit(11 + 9/12, "feet"),
  50848. default: true
  50849. },
  50850. ]
  50851. ))
  50852. characterMakers.push(() => makeCharacter(
  50853. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50854. {
  50855. front: {
  50856. height: math.unit(8 + 10/12, "feet"),
  50857. weight: math.unit(1350, "lb"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/moonshine/front.svg",
  50861. extra: 2395/2288,
  50862. bottom: 40/2435
  50863. }
  50864. },
  50865. },
  50866. [
  50867. {
  50868. name: "Normal",
  50869. height: math.unit(8 + 10/12, "feet"),
  50870. default: true
  50871. },
  50872. ]
  50873. ))
  50874. characterMakers.push(() => makeCharacter(
  50875. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50876. {
  50877. front: {
  50878. height: math.unit(14, "feet"),
  50879. weight: math.unit(3400, "lb"),
  50880. name: "Front",
  50881. image: {
  50882. source: "./media/characters/aletia/front.svg",
  50883. extra: 1185/1052,
  50884. bottom: 21/1206
  50885. }
  50886. },
  50887. },
  50888. [
  50889. {
  50890. name: "Compressed",
  50891. height: math.unit(8, "feet")
  50892. },
  50893. {
  50894. name: "Normal",
  50895. height: math.unit(14, "feet"),
  50896. default: true
  50897. },
  50898. ]
  50899. ))
  50900. characterMakers.push(() => makeCharacter(
  50901. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50902. {
  50903. front: {
  50904. height: math.unit(17, "feet"),
  50905. weight: math.unit(6500, "lb"),
  50906. name: "Front",
  50907. image: {
  50908. source: "./media/characters/deidra/front.svg",
  50909. extra: 1201/1081,
  50910. bottom: 16/1217
  50911. }
  50912. },
  50913. },
  50914. [
  50915. {
  50916. name: "Compressed",
  50917. height: math.unit(9 + 6/12, "feet")
  50918. },
  50919. {
  50920. name: "Normal",
  50921. height: math.unit(17, "feet"),
  50922. default: true
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(7 + 4/12, "feet"),
  50931. weight: math.unit(280, "lb"),
  50932. name: "Front",
  50933. image: {
  50934. source: "./media/characters/freki-yrmori/front.svg",
  50935. extra: 1286/1182,
  50936. bottom: 29/1315
  50937. }
  50938. },
  50939. maw: {
  50940. height: math.unit(0.9, "feet"),
  50941. name: "Maw",
  50942. image: {
  50943. source: "./media/characters/freki-yrmori/maw.svg"
  50944. }
  50945. },
  50946. },
  50947. [
  50948. {
  50949. name: "Normal",
  50950. height: math.unit(7 + 4/12, "feet"),
  50951. default: true
  50952. },
  50953. {
  50954. name: "Macro",
  50955. height: math.unit(38.5, "meters")
  50956. },
  50957. ]
  50958. ))
  50959. characterMakers.push(() => makeCharacter(
  50960. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50961. {
  50962. side: {
  50963. height: math.unit(47.2, "meters"),
  50964. weight: math.unit(10000, "tons"),
  50965. name: "Side",
  50966. image: {
  50967. source: "./media/characters/aetherios/side.svg",
  50968. extra: 2363/642,
  50969. bottom: 221/2584
  50970. }
  50971. },
  50972. top: {
  50973. height: math.unit(240, "meters"),
  50974. weight: math.unit(10000, "tons"),
  50975. name: "Top",
  50976. image: {
  50977. source: "./media/characters/aetherios/top.svg"
  50978. }
  50979. },
  50980. bottom: {
  50981. height: math.unit(240, "meters"),
  50982. weight: math.unit(10000, "tons"),
  50983. name: "Bottom",
  50984. image: {
  50985. source: "./media/characters/aetherios/bottom.svg"
  50986. }
  50987. },
  50988. head: {
  50989. height: math.unit(38.6, "meters"),
  50990. name: "Head",
  50991. image: {
  50992. source: "./media/characters/aetherios/head.svg",
  50993. extra: 1335/1112,
  50994. bottom: 0/1335
  50995. }
  50996. },
  50997. front: {
  50998. height: math.unit(29, "meters"),
  50999. name: "Front",
  51000. image: {
  51001. source: "./media/characters/aetherios/front.svg",
  51002. extra: 1266/953,
  51003. bottom: 158/1424
  51004. }
  51005. },
  51006. maw: {
  51007. height: math.unit(16.37, "meters"),
  51008. name: "Maw",
  51009. image: {
  51010. source: "./media/characters/aetherios/maw.svg",
  51011. extra: 748/637,
  51012. bottom: 0/748
  51013. },
  51014. extraAttributes: {
  51015. preyCapacity: {
  51016. name: "Capacity",
  51017. power: 3,
  51018. type: "volume",
  51019. base: math.unit(1000, "people")
  51020. },
  51021. tongueSize: {
  51022. name: "Tongue Size",
  51023. power: 2,
  51024. type: "area",
  51025. base: math.unit(21, "m^2")
  51026. }
  51027. }
  51028. },
  51029. forepaw: {
  51030. height: math.unit(18, "meters"),
  51031. name: "Forepaw",
  51032. image: {
  51033. source: "./media/characters/aetherios/forepaw.svg"
  51034. }
  51035. },
  51036. hindpaw: {
  51037. height: math.unit(23, "meters"),
  51038. name: "Hindpaw",
  51039. image: {
  51040. source: "./media/characters/aetherios/hindpaw.svg"
  51041. }
  51042. },
  51043. genitals: {
  51044. height: math.unit(42, "meters"),
  51045. name: "Genitals",
  51046. image: {
  51047. source: "./media/characters/aetherios/genitals.svg"
  51048. }
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Normal",
  51054. height: math.unit(47.2, "meters"),
  51055. default: true
  51056. },
  51057. {
  51058. name: "Macro",
  51059. height: math.unit(160, "meters")
  51060. },
  51061. {
  51062. name: "Mega",
  51063. height: math.unit(1.87, "km")
  51064. },
  51065. {
  51066. name: "Giga",
  51067. height: math.unit(40000, "km")
  51068. },
  51069. {
  51070. name: "Stellar",
  51071. height: math.unit(158000000, "km")
  51072. },
  51073. {
  51074. name: "Cosmic",
  51075. height: math.unit(9.46e12, "km")
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(5 + 4/12, "feet"),
  51084. weight: math.unit(80, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/mizu-gieeg/front.svg",
  51088. extra: 850/709,
  51089. bottom: 52/902
  51090. }
  51091. },
  51092. back: {
  51093. height: math.unit(5 + 4/12, "feet"),
  51094. weight: math.unit(80, "lb"),
  51095. name: "Back",
  51096. image: {
  51097. source: "./media/characters/mizu-gieeg/back.svg",
  51098. extra: 882/745,
  51099. bottom: 25/907
  51100. }
  51101. },
  51102. },
  51103. [
  51104. {
  51105. name: "Normal",
  51106. height: math.unit(5 + 4/12, "feet"),
  51107. default: true
  51108. },
  51109. ]
  51110. ))
  51111. characterMakers.push(() => makeCharacter(
  51112. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51113. {
  51114. front: {
  51115. height: math.unit(6, "feet"),
  51116. name: "Front",
  51117. image: {
  51118. source: "./media/characters/roselle-st-papier/front.svg",
  51119. extra: 1430/1280,
  51120. bottom: 37/1467
  51121. }
  51122. },
  51123. back: {
  51124. height: math.unit(6, "feet"),
  51125. name: "Back",
  51126. image: {
  51127. source: "./media/characters/roselle-st-papier/back.svg",
  51128. extra: 1491/1296,
  51129. bottom: 23/1514
  51130. }
  51131. },
  51132. ear: {
  51133. height: math.unit(1.26, "feet"),
  51134. name: "Ear",
  51135. image: {
  51136. source: "./media/characters/roselle-st-papier/ear.svg"
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(150, "feet"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(1, "inches"),
  51153. name: "Front",
  51154. image: {
  51155. source: "./media/characters/valargent/front.svg",
  51156. extra: 1825/1694,
  51157. bottom: 62/1887
  51158. }
  51159. },
  51160. back: {
  51161. height: math.unit(1, "inches"),
  51162. name: "Back",
  51163. image: {
  51164. source: "./media/characters/valargent/back.svg",
  51165. extra: 1775/1682,
  51166. bottom: 88/1863
  51167. }
  51168. },
  51169. },
  51170. [
  51171. {
  51172. name: "Micro",
  51173. height: math.unit(1, "inch"),
  51174. default: true
  51175. },
  51176. ]
  51177. ))
  51178. characterMakers.push(() => makeCharacter(
  51179. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51180. {
  51181. front: {
  51182. height: math.unit(3.4, "meters"),
  51183. name: "Front",
  51184. image: {
  51185. source: "./media/characters/zarina/front.svg",
  51186. extra: 1733/1425,
  51187. bottom: 93/1826
  51188. }
  51189. },
  51190. squatting: {
  51191. height: math.unit(2.14, "meters"),
  51192. name: "Squatting",
  51193. image: {
  51194. source: "./media/characters/zarina/squatting.svg",
  51195. extra: 1073/788,
  51196. bottom: 63/1136
  51197. }
  51198. },
  51199. back: {
  51200. height: math.unit(2.14, "meters"),
  51201. name: "Back",
  51202. image: {
  51203. source: "./media/characters/zarina/back.svg",
  51204. extra: 1128/885,
  51205. bottom: 0/1128
  51206. }
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(3.4, "meters"),
  51213. default: true
  51214. },
  51215. {
  51216. name: "Big",
  51217. height: math.unit(5, "meters")
  51218. },
  51219. {
  51220. name: "Macro",
  51221. height: math.unit(110, "meters")
  51222. },
  51223. ]
  51224. ))
  51225. characterMakers.push(() => makeCharacter(
  51226. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51227. {
  51228. front: {
  51229. height: math.unit(7, "feet"),
  51230. name: "Front",
  51231. image: {
  51232. source: "./media/characters/ventus-astro-fox/front.svg",
  51233. extra: 1792/1623,
  51234. bottom: 28/1820
  51235. }
  51236. },
  51237. back: {
  51238. height: math.unit(7, "feet"),
  51239. name: "Back",
  51240. image: {
  51241. source: "./media/characters/ventus-astro-fox/back.svg",
  51242. extra: 1789/1620,
  51243. bottom: 31/1820
  51244. }
  51245. },
  51246. outfit: {
  51247. height: math.unit(7, "feet"),
  51248. name: "Outfit",
  51249. image: {
  51250. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51251. extra: 1054/925,
  51252. bottom: 15/1069
  51253. }
  51254. },
  51255. head: {
  51256. height: math.unit(1.12, "feet"),
  51257. name: "Head",
  51258. image: {
  51259. source: "./media/characters/ventus-astro-fox/head.svg",
  51260. extra: 866/504,
  51261. bottom: 0/866
  51262. }
  51263. },
  51264. hand: {
  51265. height: math.unit(1, "feet"),
  51266. name: "Hand",
  51267. image: {
  51268. source: "./media/characters/ventus-astro-fox/hand.svg"
  51269. }
  51270. },
  51271. paw: {
  51272. height: math.unit(1.5, "feet"),
  51273. name: "Paw",
  51274. image: {
  51275. source: "./media/characters/ventus-astro-fox/paw.svg"
  51276. }
  51277. },
  51278. },
  51279. [
  51280. {
  51281. name: "Normal",
  51282. height: math.unit(7, "feet"),
  51283. default: true
  51284. },
  51285. {
  51286. name: "Macro",
  51287. height: math.unit(200, "feet")
  51288. },
  51289. {
  51290. name: "Cosmic",
  51291. height: math.unit(3, "universes")
  51292. },
  51293. ]
  51294. ))
  51295. characterMakers.push(() => makeCharacter(
  51296. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51297. {
  51298. front: {
  51299. height: math.unit(3, "meters"),
  51300. weight: math.unit(7000, "lb"),
  51301. name: "Front",
  51302. image: {
  51303. source: "./media/characters/core-t/front.svg",
  51304. extra: 5729/4941,
  51305. bottom: 1129/6858
  51306. }
  51307. },
  51308. },
  51309. [
  51310. {
  51311. name: "Big",
  51312. height: math.unit(3, "meters"),
  51313. default: true
  51314. },
  51315. ]
  51316. ))
  51317. characterMakers.push(() => makeCharacter(
  51318. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51319. {
  51320. normal: {
  51321. height: math.unit(6 + 6/12, "feet"),
  51322. weight: math.unit(275, "lb"),
  51323. name: "Front",
  51324. image: {
  51325. source: "./media/characters/cadbunny/normal.svg",
  51326. extra: 1129/947,
  51327. bottom: 93/1222
  51328. },
  51329. default: true,
  51330. form: "normal"
  51331. },
  51332. gigantamax: {
  51333. height: math.unit(26, "feet"),
  51334. weight: math.unit(16000, "lb"),
  51335. name: "Front",
  51336. image: {
  51337. source: "./media/characters/cadbunny/gigantamax.svg",
  51338. extra: 1133/944,
  51339. bottom: 90/1223
  51340. },
  51341. default: true,
  51342. form: "gigantamax"
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(6 + 6/12, "feet"),
  51349. default: true,
  51350. form: "normal"
  51351. },
  51352. {
  51353. name: "Small",
  51354. height: math.unit(26, "feet"),
  51355. default: true,
  51356. form: "gigantamax"
  51357. },
  51358. {
  51359. name: "Large",
  51360. height: math.unit(78, "feet"),
  51361. form: "gigantamax"
  51362. },
  51363. ],
  51364. {
  51365. "normal": {
  51366. name: "Normal",
  51367. default: true
  51368. },
  51369. "gigantamax": {
  51370. name: "Gigantamax"
  51371. }
  51372. }
  51373. ))
  51374. characterMakers.push(() => makeCharacter(
  51375. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51376. {
  51377. anthroFront: {
  51378. height: math.unit(8, "feet"),
  51379. weight: math.unit(300, "lb"),
  51380. name: "Front",
  51381. image: {
  51382. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51383. extra: 1272/1176,
  51384. bottom: 53/1325
  51385. },
  51386. form: "anthro",
  51387. default: true
  51388. },
  51389. feralSide: {
  51390. height: math.unit(4, "feet"),
  51391. weight: math.unit(250, "lb"),
  51392. name: "Side",
  51393. image: {
  51394. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51395. extra: 731/621,
  51396. bottom: 0/731
  51397. },
  51398. form: "feral",
  51399. default: true
  51400. },
  51401. },
  51402. [
  51403. {
  51404. name: "Regular",
  51405. height: math.unit(8, "feet"),
  51406. form: "anthro"
  51407. },
  51408. {
  51409. name: "Macro",
  51410. height: math.unit(250, "feet"),
  51411. form: "anthro",
  51412. default: true
  51413. },
  51414. {
  51415. name: "Regular",
  51416. height: math.unit(4, "feet"),
  51417. form: "feral"
  51418. },
  51419. {
  51420. name: "Macro",
  51421. height: math.unit(125, "feet"),
  51422. form: "feral",
  51423. default: true
  51424. },
  51425. ],
  51426. {
  51427. "anthro": {
  51428. name: "Anthro",
  51429. default: true
  51430. },
  51431. "feral": {
  51432. name: "Feral",
  51433. },
  51434. }
  51435. ))
  51436. characterMakers.push(() => makeCharacter(
  51437. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51438. {
  51439. front: {
  51440. height: math.unit(11 + 10/12, "feet"),
  51441. weight: math.unit(1587, "kg"),
  51442. name: "Front",
  51443. image: {
  51444. source: "./media/characters/maple-javira-dragon/front.svg",
  51445. extra: 1136/744,
  51446. bottom: 73/1209
  51447. }
  51448. },
  51449. side: {
  51450. height: math.unit(11 + 10/12, "feet"),
  51451. weight: math.unit(1587, "kg"),
  51452. name: "Side",
  51453. image: {
  51454. source: "./media/characters/maple-javira-dragon/side.svg",
  51455. extra: 712/505,
  51456. bottom: 17/729
  51457. }
  51458. },
  51459. head: {
  51460. height: math.unit(8.05, "feet"),
  51461. name: "Head",
  51462. image: {
  51463. source: "./media/characters/maple-javira-dragon/head.svg",
  51464. extra: 1420/1344,
  51465. bottom: 0/1420
  51466. }
  51467. },
  51468. },
  51469. [
  51470. {
  51471. name: "Normal",
  51472. height: math.unit(11 + 10/12, "feet"),
  51473. default: true
  51474. },
  51475. ]
  51476. ))
  51477. characterMakers.push(() => makeCharacter(
  51478. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51479. {
  51480. front: {
  51481. height: math.unit(117, "cm"),
  51482. weight: math.unit(50, "kg"),
  51483. name: "Front",
  51484. image: {
  51485. source: "./media/characters/sonia-wyverntail/front.svg",
  51486. extra: 708/592,
  51487. bottom: 25/733
  51488. }
  51489. },
  51490. },
  51491. [
  51492. {
  51493. name: "Normal",
  51494. height: math.unit(117, "cm"),
  51495. default: true
  51496. },
  51497. ]
  51498. ))
  51499. characterMakers.push(() => makeCharacter(
  51500. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51501. {
  51502. front: {
  51503. height: math.unit(6 + 5/12, "feet"),
  51504. name: "Front",
  51505. image: {
  51506. source: "./media/characters/micah/front.svg",
  51507. extra: 1758/1546,
  51508. bottom: 214/1972
  51509. }
  51510. },
  51511. },
  51512. [
  51513. {
  51514. name: "Normal",
  51515. height: math.unit(6 + 5/12, "feet"),
  51516. default: true
  51517. },
  51518. ]
  51519. ))
  51520. characterMakers.push(() => makeCharacter(
  51521. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51522. {
  51523. front: {
  51524. height: math.unit(1.75, "meters"),
  51525. weight: math.unit(100, "kg"),
  51526. name: "Front",
  51527. image: {
  51528. source: "./media/characters/zarya/front.svg",
  51529. extra: 741/735,
  51530. bottom: 44/785
  51531. },
  51532. extraAttributes: {
  51533. "tailLength": {
  51534. name: "Tail Length",
  51535. power: 1,
  51536. type: "length",
  51537. base: math.unit(180, "cm")
  51538. },
  51539. "pawLength": {
  51540. name: "Paw Length",
  51541. power: 1,
  51542. type: "length",
  51543. base: math.unit(31, "cm")
  51544. },
  51545. }
  51546. },
  51547. side: {
  51548. height: math.unit(1.75, "meters"),
  51549. weight: math.unit(100, "kg"),
  51550. name: "Side",
  51551. image: {
  51552. source: "./media/characters/zarya/side.svg",
  51553. extra: 776/770,
  51554. bottom: 17/793
  51555. },
  51556. extraAttributes: {
  51557. "tailLength": {
  51558. name: "Tail Length",
  51559. power: 1,
  51560. type: "length",
  51561. base: math.unit(180, "cm")
  51562. },
  51563. "pawLength": {
  51564. name: "Paw Length",
  51565. power: 1,
  51566. type: "length",
  51567. base: math.unit(31, "cm")
  51568. },
  51569. }
  51570. },
  51571. back: {
  51572. height: math.unit(1.75, "meters"),
  51573. weight: math.unit(100, "kg"),
  51574. name: "Back",
  51575. image: {
  51576. source: "./media/characters/zarya/back.svg",
  51577. extra: 741/735,
  51578. bottom: 44/785
  51579. },
  51580. extraAttributes: {
  51581. "tailLength": {
  51582. name: "Tail Length",
  51583. power: 1,
  51584. type: "length",
  51585. base: math.unit(180, "cm")
  51586. },
  51587. "pawLength": {
  51588. name: "Paw Length",
  51589. power: 1,
  51590. type: "length",
  51591. base: math.unit(31, "cm")
  51592. },
  51593. }
  51594. },
  51595. frontNoTail: {
  51596. height: math.unit(1.75, "meters"),
  51597. weight: math.unit(100, "kg"),
  51598. name: "Front (No Tail)",
  51599. image: {
  51600. source: "./media/characters/zarya/front-no-tail.svg",
  51601. extra: 741/735,
  51602. bottom: 44/785
  51603. },
  51604. extraAttributes: {
  51605. "tailLength": {
  51606. name: "Tail Length",
  51607. power: 1,
  51608. type: "length",
  51609. base: math.unit(180, "cm")
  51610. },
  51611. "pawLength": {
  51612. name: "Paw Length",
  51613. power: 1,
  51614. type: "length",
  51615. base: math.unit(31, "cm")
  51616. },
  51617. }
  51618. },
  51619. dressed: {
  51620. height: math.unit(1.75, "meters"),
  51621. weight: math.unit(100, "kg"),
  51622. name: "Dressed",
  51623. image: {
  51624. source: "./media/characters/zarya/dressed.svg",
  51625. extra: 683/672,
  51626. bottom: 79/762
  51627. },
  51628. extraAttributes: {
  51629. "tailLength": {
  51630. name: "Tail Length",
  51631. power: 1,
  51632. type: "length",
  51633. base: math.unit(180, "cm")
  51634. },
  51635. "pawLength": {
  51636. name: "Paw Length",
  51637. power: 1,
  51638. type: "length",
  51639. base: math.unit(31, "cm")
  51640. },
  51641. }
  51642. },
  51643. },
  51644. [
  51645. {
  51646. name: "Micro",
  51647. height: math.unit(5, "cm")
  51648. },
  51649. {
  51650. name: "Normal",
  51651. height: math.unit(1.75, "meters"),
  51652. default: true
  51653. },
  51654. {
  51655. name: "Macro",
  51656. height: math.unit(122, "meters")
  51657. },
  51658. ]
  51659. ))
  51660. characterMakers.push(() => makeCharacter(
  51661. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51662. {
  51663. front: {
  51664. height: math.unit(7.5, "feet"),
  51665. name: "Front",
  51666. image: {
  51667. source: "./media/characters/sven-hatisson/front.svg",
  51668. extra: 917/857,
  51669. bottom: 42/959
  51670. }
  51671. },
  51672. back: {
  51673. height: math.unit(7.5, "feet"),
  51674. name: "Back",
  51675. image: {
  51676. source: "./media/characters/sven-hatisson/back.svg",
  51677. extra: 903/856,
  51678. bottom: 15/918
  51679. }
  51680. },
  51681. },
  51682. [
  51683. {
  51684. name: "Base Height",
  51685. height: math.unit(7.5, "feet")
  51686. },
  51687. {
  51688. name: "Usual Height",
  51689. height: math.unit(13.5, "feet"),
  51690. default: true
  51691. },
  51692. {
  51693. name: "Smaller Macro",
  51694. height: math.unit(85, "feet")
  51695. },
  51696. {
  51697. name: "Moderate Macro",
  51698. height: math.unit(320, "feet")
  51699. },
  51700. {
  51701. name: "Large Macro",
  51702. height: math.unit(1000, "feet")
  51703. },
  51704. {
  51705. name: "Largest Size",
  51706. height: math.unit(2, "miles")
  51707. },
  51708. ]
  51709. ))
  51710. characterMakers.push(() => makeCharacter(
  51711. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51712. {
  51713. side: {
  51714. height: math.unit(1.8, "meters"),
  51715. weight: math.unit(275, "kg"),
  51716. name: "Side",
  51717. image: {
  51718. source: "./media/characters/terra/side.svg",
  51719. extra: 1273/1147,
  51720. bottom: 0/1273
  51721. }
  51722. },
  51723. },
  51724. [
  51725. {
  51726. name: "Normal",
  51727. height: math.unit(16.2, "meters"),
  51728. default: true
  51729. },
  51730. ]
  51731. ))
  51732. characterMakers.push(() => makeCharacter(
  51733. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51734. {
  51735. borzoiFront: {
  51736. height: math.unit(6 + 9/12, "feet"),
  51737. name: "Front",
  51738. image: {
  51739. source: "./media/characters/rae/borzoi-front.svg",
  51740. extra: 1161/1098,
  51741. bottom: 31/1192
  51742. },
  51743. form: "borzoi",
  51744. default: true
  51745. },
  51746. werewolfFront: {
  51747. height: math.unit(8 + 7/12, "feet"),
  51748. name: "Front",
  51749. image: {
  51750. source: "./media/characters/rae/werewolf-front.svg",
  51751. extra: 1411/1334,
  51752. bottom: 127/1538
  51753. },
  51754. form: "werewolf",
  51755. default: true
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Normal",
  51761. height: math.unit(6 + 9/12, "feet"),
  51762. default: true,
  51763. form: "borzoi"
  51764. },
  51765. {
  51766. name: "Normal",
  51767. height: math.unit(8 + 7/12, "feet"),
  51768. default: true,
  51769. form: "werewolf"
  51770. },
  51771. ],
  51772. {
  51773. "borzoi": {
  51774. name: "Borzoi",
  51775. default: true
  51776. },
  51777. "werewolf": {
  51778. name: "Werewolf",
  51779. },
  51780. }
  51781. ))
  51782. characterMakers.push(() => makeCharacter(
  51783. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51784. {
  51785. front: {
  51786. height: math.unit(8 + 7/12, "feet"),
  51787. weight: math.unit(482, "lb"),
  51788. name: "Front",
  51789. image: {
  51790. source: "./media/characters/kit/front.svg",
  51791. extra: 1247/1103,
  51792. bottom: 41/1288
  51793. }
  51794. },
  51795. back: {
  51796. height: math.unit(8 + 7/12, "feet"),
  51797. weight: math.unit(482, "lb"),
  51798. name: "Back",
  51799. image: {
  51800. source: "./media/characters/kit/back.svg",
  51801. extra: 1252/1123,
  51802. bottom: 21/1273
  51803. }
  51804. },
  51805. paw: {
  51806. height: math.unit(1.46, "feet"),
  51807. name: "Paw",
  51808. image: {
  51809. source: "./media/characters/kit/paw.svg"
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Normal",
  51816. height: math.unit(2.61, "meters"),
  51817. default: true
  51818. },
  51819. {
  51820. name: "\"Tall\"",
  51821. height: math.unit(8.21, "meters")
  51822. },
  51823. {
  51824. name: "Tall",
  51825. height: math.unit(19.6, "meters")
  51826. },
  51827. {
  51828. name: "Very Tall",
  51829. height: math.unit(57.91, "meters")
  51830. },
  51831. {
  51832. name: "Semi-Macro",
  51833. height: math.unit(138.64, "meters")
  51834. },
  51835. {
  51836. name: "Macro",
  51837. height: math.unit(831.99, "meters")
  51838. },
  51839. {
  51840. name: "EX-Macro",
  51841. height: math.unit(96451121, "meters")
  51842. },
  51843. {
  51844. name: "S1-Omnipotent",
  51845. height: math.unit(4.42074e+9, "meters")
  51846. },
  51847. {
  51848. name: "S2-Omnipotent",
  51849. height: math.unit(9.42074e+17, "meters")
  51850. },
  51851. {
  51852. name: "Omnipotent",
  51853. height: math.unit(4.23112e+24, "meters")
  51854. },
  51855. {
  51856. name: "Hypergod",
  51857. height: math.unit(5.05176e+27, "meters")
  51858. },
  51859. {
  51860. name: "Hypergod-EX",
  51861. height: math.unit(9.45532e+49, "meters")
  51862. },
  51863. {
  51864. name: "Hypergod-SP",
  51865. height: math.unit(9.45532e+195, "meters")
  51866. },
  51867. ]
  51868. ))
  51869. characterMakers.push(() => makeCharacter(
  51870. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51871. {
  51872. side: {
  51873. height: math.unit(0.6, "meters"),
  51874. weight: math.unit(24, "kg"),
  51875. name: "Side",
  51876. image: {
  51877. source: "./media/characters/celeste/side.svg",
  51878. extra: 810/517,
  51879. bottom: 53/863
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Velociraptor",
  51886. height: math.unit(0.6, "meters"),
  51887. default: true
  51888. },
  51889. {
  51890. name: "Utahraptor",
  51891. height: math.unit(1.8, "meters")
  51892. },
  51893. {
  51894. name: "Gallimimus",
  51895. height: math.unit(4.0, "meters")
  51896. },
  51897. {
  51898. name: "Large",
  51899. height: math.unit(20, "meters")
  51900. },
  51901. {
  51902. name: "Planetary",
  51903. height: math.unit(50, "megameters")
  51904. },
  51905. {
  51906. name: "Stellar",
  51907. height: math.unit(1.5, "gigameters")
  51908. },
  51909. {
  51910. name: "Galactic",
  51911. height: math.unit(100, "exameters")
  51912. },
  51913. ]
  51914. ))
  51915. characterMakers.push(() => makeCharacter(
  51916. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51917. {
  51918. front: {
  51919. height: math.unit(6, "feet"),
  51920. weight: math.unit(210, "lb"),
  51921. name: "Front",
  51922. image: {
  51923. source: "./media/characters/glacia/front.svg",
  51924. extra: 958/901,
  51925. bottom: 45/1003
  51926. }
  51927. },
  51928. },
  51929. [
  51930. {
  51931. name: "Macro",
  51932. height: math.unit(1000, "meters"),
  51933. default: true
  51934. },
  51935. ]
  51936. ))
  51937. characterMakers.push(() => makeCharacter(
  51938. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51939. {
  51940. front: {
  51941. height: math.unit(4, "meters"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/giri/front.svg",
  51945. extra: 966/894,
  51946. bottom: 21/987
  51947. }
  51948. },
  51949. },
  51950. [
  51951. {
  51952. name: "Normal",
  51953. height: math.unit(4, "meters"),
  51954. default: true
  51955. },
  51956. ]
  51957. ))
  51958. characterMakers.push(() => makeCharacter(
  51959. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51960. {
  51961. back: {
  51962. height: math.unit(4, "feet"),
  51963. weight: math.unit(37, "lb"),
  51964. name: "Back",
  51965. image: {
  51966. source: "./media/characters/tin/back.svg",
  51967. extra: 845/780,
  51968. bottom: 28/873
  51969. }
  51970. },
  51971. },
  51972. [
  51973. {
  51974. name: "Normal",
  51975. height: math.unit(4, "feet"),
  51976. default: true
  51977. },
  51978. ]
  51979. ))
  51980. characterMakers.push(() => makeCharacter(
  51981. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51982. {
  51983. front: {
  51984. height: math.unit(25, "feet"),
  51985. name: "Front",
  51986. image: {
  51987. source: "./media/characters/cadenza-vivace/front.svg",
  51988. extra: 1842/1578,
  51989. bottom: 30/1872
  51990. }
  51991. },
  51992. },
  51993. [
  51994. {
  51995. name: "Macro",
  51996. height: math.unit(25, "feet"),
  51997. default: true
  51998. },
  51999. ]
  52000. ))
  52001. characterMakers.push(() => makeCharacter(
  52002. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52003. {
  52004. front: {
  52005. height: math.unit(10, "feet"),
  52006. weight: math.unit(625, "kg"),
  52007. name: "Front",
  52008. image: {
  52009. source: "./media/characters/zain/front.svg",
  52010. extra: 1682/1498,
  52011. bottom: 223/1905
  52012. }
  52013. },
  52014. back: {
  52015. height: math.unit(10, "feet"),
  52016. weight: math.unit(625, "kg"),
  52017. name: "Back",
  52018. image: {
  52019. source: "./media/characters/zain/back.svg",
  52020. extra: 1814/1657,
  52021. bottom: 152/1966
  52022. }
  52023. },
  52024. head: {
  52025. height: math.unit(10, "feet"),
  52026. weight: math.unit(625, "kg"),
  52027. name: "Head",
  52028. image: {
  52029. source: "./media/characters/zain/head.svg",
  52030. extra: 1059/762,
  52031. bottom: 0/1059
  52032. }
  52033. },
  52034. },
  52035. [
  52036. {
  52037. name: "Normal",
  52038. height: math.unit(10, "feet"),
  52039. default: true
  52040. },
  52041. ]
  52042. ))
  52043. characterMakers.push(() => makeCharacter(
  52044. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52045. {
  52046. front: {
  52047. height: math.unit(6 + 5/12, "feet"),
  52048. weight: math.unit(750, "lb"),
  52049. name: "Front",
  52050. image: {
  52051. source: "./media/characters/ruchex/front.svg",
  52052. extra: 877/820,
  52053. bottom: 17/894
  52054. },
  52055. extraAttributes: {
  52056. "width": {
  52057. name: "Width",
  52058. power: 1,
  52059. type: "length",
  52060. base: math.unit(4.757, "feet")
  52061. },
  52062. }
  52063. },
  52064. },
  52065. [
  52066. {
  52067. name: "Normal",
  52068. height: math.unit(6 + 5/12, "feet"),
  52069. default: true
  52070. },
  52071. ]
  52072. ))
  52073. characterMakers.push(() => makeCharacter(
  52074. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52075. {
  52076. dressedFront: {
  52077. height: math.unit(191, "cm"),
  52078. weight: math.unit(80, "kg"),
  52079. name: "Front",
  52080. image: {
  52081. source: "./media/characters/buster/dressed-front.svg",
  52082. extra: 1022/973,
  52083. bottom: 69/1091
  52084. }
  52085. },
  52086. dressedBack: {
  52087. height: math.unit(191, "cm"),
  52088. weight: math.unit(80, "kg"),
  52089. name: "Back",
  52090. image: {
  52091. source: "./media/characters/buster/dressed-back.svg",
  52092. extra: 1018/970,
  52093. bottom: 55/1073
  52094. }
  52095. },
  52096. nudeFront: {
  52097. height: math.unit(191, "cm"),
  52098. weight: math.unit(80, "kg"),
  52099. name: "Front (Nude)",
  52100. image: {
  52101. source: "./media/characters/buster/nude-front.svg",
  52102. extra: 1022/973,
  52103. bottom: 69/1091
  52104. }
  52105. },
  52106. nudeBack: {
  52107. height: math.unit(191, "cm"),
  52108. weight: math.unit(80, "kg"),
  52109. name: "Back (Nude)",
  52110. image: {
  52111. source: "./media/characters/buster/nude-back.svg",
  52112. extra: 1018/970,
  52113. bottom: 55/1073
  52114. }
  52115. },
  52116. dick: {
  52117. height: math.unit(2.59, "feet"),
  52118. name: "Dick",
  52119. image: {
  52120. source: "./media/characters/buster/dick.svg"
  52121. }
  52122. },
  52123. ass: {
  52124. height: math.unit(1.2, "feet"),
  52125. name: "Ass",
  52126. image: {
  52127. source: "./media/characters/buster/ass.svg"
  52128. }
  52129. },
  52130. },
  52131. [
  52132. {
  52133. name: "Normal",
  52134. height: math.unit(191, "cm"),
  52135. default: true
  52136. },
  52137. ]
  52138. ))
  52139. characterMakers.push(() => makeCharacter(
  52140. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52141. {
  52142. side: {
  52143. height: math.unit(8.1, "feet"),
  52144. weight: math.unit(3500, "lb"),
  52145. name: "Side",
  52146. image: {
  52147. source: "./media/characters/sonya/side.svg",
  52148. extra: 1730/1317,
  52149. bottom: 86/1816
  52150. }
  52151. },
  52152. },
  52153. [
  52154. {
  52155. name: "Normal",
  52156. height: math.unit(8.1, "feet"),
  52157. default: true
  52158. },
  52159. ]
  52160. ))
  52161. characterMakers.push(() => makeCharacter(
  52162. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52163. {
  52164. front: {
  52165. height: math.unit(6, "feet"),
  52166. weight: math.unit(150, "lb"),
  52167. name: "Front",
  52168. image: {
  52169. source: "./media/characters/cadence-andrysiak/front.svg",
  52170. extra: 1164/1121,
  52171. bottom: 60/1224
  52172. }
  52173. },
  52174. back: {
  52175. height: math.unit(6, "feet"),
  52176. weight: math.unit(150, "lb"),
  52177. name: "Back",
  52178. image: {
  52179. source: "./media/characters/cadence-andrysiak/back.svg",
  52180. extra: 1200/1165,
  52181. bottom: 9/1209
  52182. }
  52183. },
  52184. dressed: {
  52185. height: math.unit(6, "feet"),
  52186. weight: math.unit(150, "lb"),
  52187. name: "Dressed",
  52188. image: {
  52189. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52190. extra: 1164/1121,
  52191. bottom: 60/1224
  52192. }
  52193. },
  52194. },
  52195. [
  52196. {
  52197. name: "Micro",
  52198. height: math.unit(1, "mm")
  52199. },
  52200. {
  52201. name: "Normal",
  52202. height: math.unit(6, "feet"),
  52203. default: true
  52204. },
  52205. ]
  52206. ))
  52207. characterMakers.push(() => makeCharacter(
  52208. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52209. {
  52210. front: {
  52211. height: math.unit(60, "inches"),
  52212. weight: math.unit(16, "lb"),
  52213. preyCapacity: math.unit(80, "liters"),
  52214. name: "Front",
  52215. image: {
  52216. source: "./media/characters/penny-lynx/front.svg",
  52217. extra: 1959/1769,
  52218. bottom: 49/2008
  52219. }
  52220. },
  52221. },
  52222. [
  52223. {
  52224. name: "Nokia",
  52225. height: math.unit(2, "inches")
  52226. },
  52227. {
  52228. name: "Desktop",
  52229. height: math.unit(24, "inches")
  52230. },
  52231. {
  52232. name: "TV",
  52233. height: math.unit(60, "inches")
  52234. },
  52235. {
  52236. name: "Jumbotron",
  52237. height: math.unit(12, "feet")
  52238. },
  52239. {
  52240. name: "Billboard",
  52241. height: math.unit(48, "feet"),
  52242. default: true
  52243. },
  52244. {
  52245. name: "IMAX",
  52246. height: math.unit(96, "feet")
  52247. },
  52248. {
  52249. name: "SINGULARITY",
  52250. height: math.unit(864938, "miles")
  52251. },
  52252. ]
  52253. ))
  52254. characterMakers.push(() => makeCharacter(
  52255. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52256. {
  52257. front: {
  52258. height: math.unit(5 + 4/12, "feet"),
  52259. weight: math.unit(230, "lb"),
  52260. name: "Front",
  52261. image: {
  52262. source: "./media/characters/sukebe/front.svg",
  52263. extra: 2130/2038,
  52264. bottom: 90/2220
  52265. }
  52266. },
  52267. back: {
  52268. height: math.unit(3.48, "feet"),
  52269. weight: math.unit(230, "lb"),
  52270. name: "Back",
  52271. image: {
  52272. source: "./media/characters/sukebe/back.svg",
  52273. extra: 1670/1604,
  52274. bottom: 0/1670
  52275. }
  52276. },
  52277. },
  52278. [
  52279. {
  52280. name: "Normal",
  52281. height: math.unit(5 + 4/12, "feet"),
  52282. default: true
  52283. },
  52284. ]
  52285. ))
  52286. characterMakers.push(() => makeCharacter(
  52287. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52288. {
  52289. front: {
  52290. height: math.unit(6, "feet"),
  52291. name: "Front",
  52292. image: {
  52293. source: "./media/characters/nylla/front.svg",
  52294. extra: 1868/1699,
  52295. bottom: 97/1965
  52296. }
  52297. },
  52298. back: {
  52299. height: math.unit(6, "feet"),
  52300. name: "Back",
  52301. image: {
  52302. source: "./media/characters/nylla/back.svg",
  52303. extra: 1889/1712,
  52304. bottom: 93/1982
  52305. }
  52306. },
  52307. frontNsfw: {
  52308. height: math.unit(6, "feet"),
  52309. name: "Front (NSFW)",
  52310. image: {
  52311. source: "./media/characters/nylla/front-nsfw.svg",
  52312. extra: 1868/1699,
  52313. bottom: 97/1965
  52314. },
  52315. extraAttributes: {
  52316. "dickLength": {
  52317. name: "Dick Length",
  52318. power: 1,
  52319. type: "length",
  52320. base: math.unit(1.4, "feet")
  52321. },
  52322. "cumVolume": {
  52323. name: "Cum Volume",
  52324. power: 3,
  52325. type: "volume",
  52326. base: math.unit(100, "mL")
  52327. },
  52328. }
  52329. },
  52330. backNsfw: {
  52331. height: math.unit(6, "feet"),
  52332. name: "Back (NSFW)",
  52333. image: {
  52334. source: "./media/characters/nylla/back-nsfw.svg",
  52335. extra: 1889/1712,
  52336. bottom: 93/1982
  52337. }
  52338. },
  52339. maw: {
  52340. height: math.unit(2.10, "feet"),
  52341. name: "Maw",
  52342. image: {
  52343. source: "./media/characters/nylla/maw.svg"
  52344. }
  52345. },
  52346. paws: {
  52347. height: math.unit(2.06, "feet"),
  52348. name: "Paws",
  52349. image: {
  52350. source: "./media/characters/nylla/paws.svg"
  52351. }
  52352. },
  52353. muzzle: {
  52354. height: math.unit(0.61, "feet"),
  52355. name: "Muzzle",
  52356. image: {
  52357. source: "./media/characters/nylla/muzzle.svg"
  52358. }
  52359. },
  52360. sheath: {
  52361. height: math.unit(1.305, "feet"),
  52362. name: "Sheath",
  52363. image: {
  52364. source: "./media/characters/nylla/sheath.svg"
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Micro",
  52371. height: math.unit(7.5, "inches")
  52372. },
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(7, "feet"),
  52376. default: true
  52377. },
  52378. {
  52379. name: "Macro",
  52380. height: math.unit(60, "feet")
  52381. },
  52382. {
  52383. name: "Mega",
  52384. height: math.unit(200, "feet")
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(10, "feet"),
  52393. weight: math.unit(2300, "lb"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/hunt3r/front.svg",
  52397. extra: 1909/1742,
  52398. bottom: 46/1955
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Normal",
  52405. height: math.unit(10, "feet"),
  52406. default: true
  52407. },
  52408. ]
  52409. ))
  52410. characterMakers.push(() => makeCharacter(
  52411. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52412. {
  52413. dressed: {
  52414. height: math.unit(11, "feet"),
  52415. weight: math.unit(18500, "lb"),
  52416. preyCapacity: math.unit(9, "people"),
  52417. name: "Dressed",
  52418. image: {
  52419. source: "./media/characters/cylphis/dressed.svg",
  52420. extra: 1028/1003,
  52421. bottom: 75/1103
  52422. },
  52423. },
  52424. undressed: {
  52425. height: math.unit(11, "feet"),
  52426. weight: math.unit(18500, "lb"),
  52427. preyCapacity: math.unit(9, "people"),
  52428. name: "Undressed",
  52429. image: {
  52430. source: "./media/characters/cylphis/undressed.svg",
  52431. extra: 1028/1003,
  52432. bottom: 75/1103
  52433. }
  52434. },
  52435. full: {
  52436. height: math.unit(11, "feet"),
  52437. weight: math.unit(18500 + 150*9, "lb"),
  52438. preyCapacity: math.unit(9, "people"),
  52439. name: "Full",
  52440. image: {
  52441. source: "./media/characters/cylphis/full.svg",
  52442. extra: 1028/1003,
  52443. bottom: 75/1103
  52444. }
  52445. },
  52446. },
  52447. [
  52448. {
  52449. name: "Small",
  52450. height: math.unit(8, "feet")
  52451. },
  52452. {
  52453. name: "Normal",
  52454. height: math.unit(11, "feet"),
  52455. default: true
  52456. },
  52457. ]
  52458. ))
  52459. characterMakers.push(() => makeCharacter(
  52460. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52461. {
  52462. front: {
  52463. height: math.unit(2 + 7/12, "feet"),
  52464. name: "Front",
  52465. image: {
  52466. source: "./media/characters/orishan/front.svg",
  52467. extra: 1058/1023,
  52468. bottom: 23/1081
  52469. }
  52470. },
  52471. back: {
  52472. height: math.unit(2 + 7/12, "feet"),
  52473. name: "Back",
  52474. image: {
  52475. source: "./media/characters/orishan/back.svg",
  52476. extra: 1058/1023,
  52477. bottom: 23/1081
  52478. }
  52479. },
  52480. },
  52481. [
  52482. {
  52483. name: "Micro",
  52484. height: math.unit(2, "cm")
  52485. },
  52486. {
  52487. name: "Normal",
  52488. height: math.unit(2 + 7/12, "feet"),
  52489. default: true
  52490. },
  52491. ]
  52492. ))
  52493. characterMakers.push(() => makeCharacter(
  52494. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52495. {
  52496. front: {
  52497. height: math.unit(3, "meters"),
  52498. weight: math.unit(508, "kg"),
  52499. name: "Front",
  52500. image: {
  52501. source: "./media/characters/seranis/front.svg",
  52502. extra: 1478/1454,
  52503. bottom: 41/1519
  52504. }
  52505. },
  52506. },
  52507. [
  52508. {
  52509. name: "Normal",
  52510. height: math.unit(3, "meters"),
  52511. default: true
  52512. },
  52513. {
  52514. name: "Macro",
  52515. height: math.unit(108, "meters")
  52516. },
  52517. {
  52518. name: "Megamacro",
  52519. height: math.unit(1250, "meters")
  52520. },
  52521. ]
  52522. ))
  52523. characterMakers.push(() => makeCharacter(
  52524. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52525. {
  52526. undressed: {
  52527. height: math.unit(5 + 3/12, "feet"),
  52528. name: "Undressed",
  52529. image: {
  52530. source: "./media/characters/ankou/undressed.svg",
  52531. extra: 1301/1213,
  52532. bottom: 87/1388
  52533. }
  52534. },
  52535. dressed: {
  52536. height: math.unit(5 + 3/12, "feet"),
  52537. name: "Dressed",
  52538. image: {
  52539. source: "./media/characters/ankou/dressed.svg",
  52540. extra: 1301/1213,
  52541. bottom: 87/1388
  52542. }
  52543. },
  52544. head: {
  52545. height: math.unit(1.61, "feet"),
  52546. name: "Head",
  52547. image: {
  52548. source: "./media/characters/ankou/head.svg"
  52549. }
  52550. },
  52551. },
  52552. [
  52553. {
  52554. name: "Normal",
  52555. height: math.unit(5 + 3/12, "feet"),
  52556. default: true
  52557. },
  52558. ]
  52559. ))
  52560. characterMakers.push(() => makeCharacter(
  52561. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52562. {
  52563. side: {
  52564. height: math.unit(6 + 3/12, "feet"),
  52565. weight: math.unit(200, "kg"),
  52566. name: "Side",
  52567. image: {
  52568. source: "./media/characters/juniper-skunktaur/side.svg",
  52569. extra: 1574/1229,
  52570. bottom: 38/1612
  52571. }
  52572. },
  52573. front: {
  52574. height: math.unit(6 + 3/12, "feet"),
  52575. weight: math.unit(200, "kg"),
  52576. name: "Front",
  52577. image: {
  52578. source: "./media/characters/juniper-skunktaur/front.svg",
  52579. extra: 1337/1278,
  52580. bottom: 22/1359
  52581. }
  52582. },
  52583. back: {
  52584. height: math.unit(6 + 3/12, "feet"),
  52585. weight: math.unit(200, "kg"),
  52586. name: "Back",
  52587. image: {
  52588. source: "./media/characters/juniper-skunktaur/back.svg",
  52589. extra: 1618/1273,
  52590. bottom: 13/1631
  52591. }
  52592. },
  52593. top: {
  52594. height: math.unit(2.62, "feet"),
  52595. weight: math.unit(200, "kg"),
  52596. name: "Top",
  52597. image: {
  52598. source: "./media/characters/juniper-skunktaur/top.svg"
  52599. }
  52600. },
  52601. },
  52602. [
  52603. {
  52604. name: "Normal",
  52605. height: math.unit(6 + 3/12, "feet"),
  52606. default: true
  52607. },
  52608. ]
  52609. ))
  52610. characterMakers.push(() => makeCharacter(
  52611. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52612. {
  52613. front: {
  52614. height: math.unit(20.5, "feet"),
  52615. name: "Front",
  52616. image: {
  52617. source: "./media/characters/rei/front.svg",
  52618. extra: 1349/1195,
  52619. bottom: 31/1380
  52620. }
  52621. },
  52622. back: {
  52623. height: math.unit(20.5, "feet"),
  52624. name: "Back",
  52625. image: {
  52626. source: "./media/characters/rei/back.svg",
  52627. extra: 1358/1204,
  52628. bottom: 22/1380
  52629. }
  52630. },
  52631. pawsDigi: {
  52632. height: math.unit(3.45, "feet"),
  52633. name: "Paws (Digi)",
  52634. image: {
  52635. source: "./media/characters/rei/paws-digi.svg"
  52636. }
  52637. },
  52638. pawsPlanti: {
  52639. height: math.unit(3.45, "feet"),
  52640. name: "Paws (Planti)",
  52641. image: {
  52642. source: "./media/characters/rei/paws-planti.svg"
  52643. }
  52644. },
  52645. },
  52646. [
  52647. {
  52648. name: "Normal",
  52649. height: math.unit(20.5, "feet"),
  52650. default: true
  52651. },
  52652. ]
  52653. ))
  52654. characterMakers.push(() => makeCharacter(
  52655. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52656. {
  52657. front: {
  52658. height: math.unit(5 + 11/12, "feet"),
  52659. name: "Front",
  52660. image: {
  52661. source: "./media/characters/carina/front.svg",
  52662. extra: 1720/1449,
  52663. bottom: 14/1734
  52664. }
  52665. },
  52666. back: {
  52667. height: math.unit(5 + 11/12, "feet"),
  52668. name: "Back",
  52669. image: {
  52670. source: "./media/characters/carina/back.svg",
  52671. extra: 1493/1445,
  52672. bottom: 17/1510
  52673. }
  52674. },
  52675. paw: {
  52676. height: math.unit(0.92, "feet"),
  52677. name: "Paw",
  52678. image: {
  52679. source: "./media/characters/carina/paw.svg"
  52680. }
  52681. },
  52682. },
  52683. [
  52684. {
  52685. name: "Normal",
  52686. height: math.unit(5 + 11/12, "feet"),
  52687. default: true
  52688. },
  52689. ]
  52690. ))
  52691. characterMakers.push(() => makeCharacter(
  52692. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52693. {
  52694. normal_front: {
  52695. height: math.unit(4.88, "meters"),
  52696. name: "Front",
  52697. image: {
  52698. source: "./media/characters/maya/normal-front.svg",
  52699. extra: 1222/1145,
  52700. bottom: 57/1279
  52701. },
  52702. form: "normal",
  52703. default: true
  52704. },
  52705. monstrous_front: {
  52706. height: math.unit(10, "meters"),
  52707. name: "Front",
  52708. image: {
  52709. source: "./media/characters/maya/monstrous-front.svg",
  52710. extra: 1523/1109,
  52711. bottom: 113/1636
  52712. },
  52713. form: "monstrous",
  52714. extraAttributes: {
  52715. "swallowSize": {
  52716. name: "Tailmaw Bite Size",
  52717. power: 3,
  52718. type: "volume",
  52719. base: math.unit(43000, "liters")
  52720. },
  52721. }
  52722. },
  52723. taur_front: {
  52724. height: math.unit(10, "meters"),
  52725. name: "Front",
  52726. image: {
  52727. source: "./media/characters/maya/taur-front.svg",
  52728. extra: 743/506,
  52729. bottom: 101/844
  52730. },
  52731. form: "taur",
  52732. },
  52733. },
  52734. [
  52735. {
  52736. name: "Normal",
  52737. height: math.unit(4.88, "meters"),
  52738. default: true,
  52739. form: "normal"
  52740. },
  52741. {
  52742. name: "Macro",
  52743. height: math.unit(38.1, "meters"),
  52744. form: "normal"
  52745. },
  52746. {
  52747. name: "Macro+",
  52748. height: math.unit(152.4, "meters"),
  52749. form: "normal"
  52750. },
  52751. {
  52752. name: "Macro++",
  52753. height: math.unit(16.09, "km"),
  52754. form: "normal"
  52755. },
  52756. {
  52757. name: "Mega-macro",
  52758. height: math.unit(700, "megameters"),
  52759. form: "normal"
  52760. },
  52761. {
  52762. name: "Satiated",
  52763. height: math.unit(10, "meters"),
  52764. default: true,
  52765. form: "monstrous"
  52766. },
  52767. {
  52768. name: "Hungry",
  52769. height: math.unit(75, "meters"),
  52770. form: "monstrous"
  52771. },
  52772. {
  52773. name: "Ravenous",
  52774. height: math.unit(500, "meters"),
  52775. form: "monstrous"
  52776. },
  52777. {
  52778. name: "\"Normal\"",
  52779. height: math.unit(10, "meters"),
  52780. form: "taur"
  52781. },
  52782. {
  52783. name: "Macro",
  52784. height: math.unit(50, "meters"),
  52785. form: "taur"
  52786. },
  52787. ],
  52788. {
  52789. "normal": {
  52790. name: "Normal",
  52791. default: true
  52792. },
  52793. "monstrous": {
  52794. name: "Monstrous",
  52795. },
  52796. "taur": {
  52797. name: "Taur",
  52798. },
  52799. }
  52800. ))
  52801. characterMakers.push(() => makeCharacter(
  52802. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52803. {
  52804. front: {
  52805. height: math.unit(6 + 2/12, "feet"),
  52806. weight: math.unit(500, "lb"),
  52807. preyCapacity: math.unit(4, "people"),
  52808. name: "Front",
  52809. image: {
  52810. source: "./media/characters/yepir/front.svg"
  52811. }
  52812. },
  52813. side: {
  52814. height: math.unit(6 + 2/12, "feet"),
  52815. weight: math.unit(500, "lb"),
  52816. preyCapacity: math.unit(4, "people"),
  52817. name: "Side",
  52818. image: {
  52819. source: "./media/characters/yepir/side.svg"
  52820. }
  52821. },
  52822. paw: {
  52823. height: math.unit(1.05, "feet"),
  52824. name: "Paw",
  52825. image: {
  52826. source: "./media/characters/yepir/paw.svg"
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Normal",
  52833. height: math.unit(6 + 2/12, "feet"),
  52834. default: true
  52835. },
  52836. ]
  52837. ))
  52838. characterMakers.push(() => makeCharacter(
  52839. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52840. {
  52841. front: {
  52842. height: math.unit(5 + 4/12, "feet"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/russec/front.svg",
  52846. extra: 1926/1626,
  52847. bottom: 72/1998
  52848. }
  52849. },
  52850. back: {
  52851. height: math.unit(5 + 4/12, "feet"),
  52852. name: "Back",
  52853. image: {
  52854. source: "./media/characters/russec/back.svg",
  52855. extra: 1910/1591,
  52856. bottom: 48/1958
  52857. }
  52858. },
  52859. },
  52860. [
  52861. {
  52862. name: "Small",
  52863. height: math.unit(5 + 4/12, "feet")
  52864. },
  52865. {
  52866. name: "Normal",
  52867. height: math.unit(72, "feet"),
  52868. default: true
  52869. },
  52870. ]
  52871. ))
  52872. characterMakers.push(() => makeCharacter(
  52873. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52874. {
  52875. side: {
  52876. height: math.unit(12, "feet"),
  52877. name: "Side",
  52878. image: {
  52879. source: "./media/characters/cianus/side.svg",
  52880. extra: 808/526,
  52881. bottom: 61/869
  52882. }
  52883. },
  52884. },
  52885. [
  52886. {
  52887. name: "Normal",
  52888. height: math.unit(12, "feet"),
  52889. default: true
  52890. },
  52891. ]
  52892. ))
  52893. characterMakers.push(() => makeCharacter(
  52894. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52895. {
  52896. front: {
  52897. height: math.unit(9 + 6/12, "feet"),
  52898. weight: math.unit(300, "lb"),
  52899. name: "Front",
  52900. image: {
  52901. source: "./media/characters/ahab/front.svg",
  52902. extra: 1897/1868,
  52903. bottom: 121/2018
  52904. }
  52905. },
  52906. frontNsfw: {
  52907. height: math.unit(9 + 6/12, "feet"),
  52908. weight: math.unit(300, "lb"),
  52909. name: "Front-nsfw",
  52910. image: {
  52911. source: "./media/characters/ahab/front-nsfw.svg",
  52912. extra: 1897/1868,
  52913. bottom: 121/2018
  52914. }
  52915. },
  52916. },
  52917. [
  52918. {
  52919. name: "Normal",
  52920. height: math.unit(9 + 6/12, "feet")
  52921. },
  52922. {
  52923. name: "Macro",
  52924. height: math.unit(657, "feet"),
  52925. default: true
  52926. },
  52927. ]
  52928. ))
  52929. characterMakers.push(() => makeCharacter(
  52930. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52931. {
  52932. front: {
  52933. height: math.unit(2.69, "meters"),
  52934. weight: math.unit(132, "kg"),
  52935. name: "Front",
  52936. image: {
  52937. source: "./media/characters/aarkus/front.svg",
  52938. extra: 1400/1231,
  52939. bottom: 34/1434
  52940. }
  52941. },
  52942. back: {
  52943. height: math.unit(2.69, "meters"),
  52944. weight: math.unit(132, "kg"),
  52945. name: "Back",
  52946. image: {
  52947. source: "./media/characters/aarkus/back.svg",
  52948. extra: 1381/1218,
  52949. bottom: 30/1411
  52950. }
  52951. },
  52952. frontNsfw: {
  52953. height: math.unit(2.69, "meters"),
  52954. weight: math.unit(132, "kg"),
  52955. name: "Front (NSFW)",
  52956. image: {
  52957. source: "./media/characters/aarkus/front-nsfw.svg",
  52958. extra: 1400/1231,
  52959. bottom: 34/1434
  52960. }
  52961. },
  52962. foot: {
  52963. height: math.unit(1.45, "feet"),
  52964. name: "Foot",
  52965. image: {
  52966. source: "./media/characters/aarkus/foot.svg"
  52967. }
  52968. },
  52969. head: {
  52970. height: math.unit(2.85, "feet"),
  52971. name: "Head",
  52972. image: {
  52973. source: "./media/characters/aarkus/head.svg"
  52974. }
  52975. },
  52976. headAlt: {
  52977. height: math.unit(3.07, "feet"),
  52978. name: "Head (Alt)",
  52979. image: {
  52980. source: "./media/characters/aarkus/head-alt.svg"
  52981. }
  52982. },
  52983. mouth: {
  52984. height: math.unit(1.25, "feet"),
  52985. name: "Mouth",
  52986. image: {
  52987. source: "./media/characters/aarkus/mouth.svg"
  52988. }
  52989. },
  52990. dick: {
  52991. height: math.unit(1.77, "feet"),
  52992. name: "Dick",
  52993. image: {
  52994. source: "./media/characters/aarkus/dick.svg"
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Normal",
  53001. height: math.unit(2.69, "meters"),
  53002. default: true
  53003. },
  53004. {
  53005. name: "Macro",
  53006. height: math.unit(269, "meters")
  53007. },
  53008. {
  53009. name: "Macro+",
  53010. height: math.unit(672.5, "meters")
  53011. },
  53012. {
  53013. name: "Megamacro",
  53014. height: math.unit(2.017, "km")
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(23.47, "cm"),
  53023. weight: math.unit(600, "grams"),
  53024. name: "Front",
  53025. image: {
  53026. source: "./media/characters/diode/front.svg",
  53027. extra: 1778/1396,
  53028. bottom: 95/1873
  53029. }
  53030. },
  53031. side: {
  53032. height: math.unit(23.47, "cm"),
  53033. weight: math.unit(600, "grams"),
  53034. name: "Side",
  53035. image: {
  53036. source: "./media/characters/diode/side.svg",
  53037. extra: 1831/1404,
  53038. bottom: 86/1917
  53039. }
  53040. },
  53041. wings: {
  53042. height: math.unit(0.683, "feet"),
  53043. name: "Wings",
  53044. image: {
  53045. source: "./media/characters/diode/wings.svg"
  53046. }
  53047. },
  53048. },
  53049. [
  53050. {
  53051. name: "Normal",
  53052. height: math.unit(23.47, "cm"),
  53053. default: true
  53054. },
  53055. ]
  53056. ))
  53057. characterMakers.push(() => makeCharacter(
  53058. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53059. {
  53060. front: {
  53061. height: math.unit(6 + 3/12, "feet"),
  53062. weight: math.unit(250, "lb"),
  53063. name: "Front",
  53064. image: {
  53065. source: "./media/characters/reika/front.svg",
  53066. extra: 1120/1078,
  53067. bottom: 86/1206
  53068. }
  53069. },
  53070. },
  53071. [
  53072. {
  53073. name: "Normal",
  53074. height: math.unit(6 + 3/12, "feet"),
  53075. default: true
  53076. },
  53077. ]
  53078. ))
  53079. characterMakers.push(() => makeCharacter(
  53080. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53081. {
  53082. front: {
  53083. height: math.unit(16 + 8/12, "feet"),
  53084. weight: math.unit(9000, "lb"),
  53085. name: "Front",
  53086. image: {
  53087. source: "./media/characters/lokuto-takama/front.svg",
  53088. extra: 1774/1632,
  53089. bottom: 147/1921
  53090. },
  53091. extraAttributes: {
  53092. "bustWidth": {
  53093. name: "Bust Width",
  53094. power: 1,
  53095. type: "length",
  53096. base: math.unit(2.4, "meters")
  53097. },
  53098. "breastWeight": {
  53099. name: "Breast Weight",
  53100. power: 3,
  53101. type: "mass",
  53102. base: math.unit(1000, "kg")
  53103. },
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Normal",
  53110. height: math.unit(16 + 8/12, "feet"),
  53111. default: true
  53112. },
  53113. ]
  53114. ))
  53115. characterMakers.push(() => makeCharacter(
  53116. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53117. {
  53118. front: {
  53119. height: math.unit(10, "cm"),
  53120. weight: math.unit(850, "grams"),
  53121. name: "Front",
  53122. image: {
  53123. source: "./media/characters/owak-bone/front.svg",
  53124. extra: 1965/1801,
  53125. bottom: 31/1996
  53126. }
  53127. },
  53128. },
  53129. [
  53130. {
  53131. name: "Normal",
  53132. height: math.unit(10, "cm"),
  53133. default: true
  53134. },
  53135. ]
  53136. ))
  53137. characterMakers.push(() => makeCharacter(
  53138. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53139. {
  53140. front: {
  53141. height: math.unit(2 + 6/12, "feet"),
  53142. weight: math.unit(9, "lb"),
  53143. name: "Front",
  53144. image: {
  53145. source: "./media/characters/muffin/front.svg",
  53146. extra: 1220/1195,
  53147. bottom: 84/1304
  53148. }
  53149. },
  53150. },
  53151. [
  53152. {
  53153. name: "Normal",
  53154. height: math.unit(2 + 6/12, "feet"),
  53155. default: true
  53156. },
  53157. ]
  53158. ))
  53159. characterMakers.push(() => makeCharacter(
  53160. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53161. {
  53162. front: {
  53163. height: math.unit(7, "feet"),
  53164. name: "Front",
  53165. image: {
  53166. source: "./media/characters/chimera/front.svg",
  53167. extra: 1752/1614,
  53168. bottom: 68/1820
  53169. }
  53170. },
  53171. },
  53172. [
  53173. {
  53174. name: "Normal",
  53175. height: math.unit(7, "feet")
  53176. },
  53177. {
  53178. name: "Gigamacro",
  53179. height: math.unit(2.9, "gigameters"),
  53180. default: true
  53181. },
  53182. {
  53183. name: "Universal",
  53184. height: math.unit(1.56e26, "yottameters")
  53185. },
  53186. ]
  53187. ))
  53188. characterMakers.push(() => makeCharacter(
  53189. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53190. {
  53191. front: {
  53192. height: math.unit(3, "feet"),
  53193. weight: math.unit(20, "lb"),
  53194. name: "Front",
  53195. image: {
  53196. source: "./media/characters/kit-fennec-fox/front.svg",
  53197. extra: 1027/932,
  53198. bottom: 16/1043
  53199. }
  53200. },
  53201. back: {
  53202. height: math.unit(3, "feet"),
  53203. weight: math.unit(20, "lb"),
  53204. name: "Back",
  53205. image: {
  53206. source: "./media/characters/kit-fennec-fox/back.svg",
  53207. extra: 1027/932,
  53208. bottom: 16/1043
  53209. }
  53210. },
  53211. },
  53212. [
  53213. {
  53214. name: "Normal",
  53215. height: math.unit(3, "feet"),
  53216. default: true
  53217. },
  53218. ]
  53219. ))
  53220. characterMakers.push(() => makeCharacter(
  53221. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53222. {
  53223. front: {
  53224. height: math.unit(167, "cm"),
  53225. name: "Front",
  53226. image: {
  53227. source: "./media/characters/blue-otter/front.svg",
  53228. extra: 1951/1920,
  53229. bottom: 31/1982
  53230. }
  53231. },
  53232. },
  53233. [
  53234. {
  53235. name: "Otter-Sized",
  53236. height: math.unit(100, "cm")
  53237. },
  53238. {
  53239. name: "Normal",
  53240. height: math.unit(167, "cm"),
  53241. default: true
  53242. },
  53243. ]
  53244. ))
  53245. characterMakers.push(() => makeCharacter(
  53246. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53247. {
  53248. front: {
  53249. height: math.unit(4 + 4/12, "feet"),
  53250. name: "Front",
  53251. image: {
  53252. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53253. extra: 1072/1067,
  53254. bottom: 117/1189
  53255. }
  53256. },
  53257. back: {
  53258. height: math.unit(4 + 4/12, "feet"),
  53259. name: "Back",
  53260. image: {
  53261. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53262. extra: 1135/1129,
  53263. bottom: 57/1192
  53264. }
  53265. },
  53266. head: {
  53267. height: math.unit(1.77, "feet"),
  53268. name: "Head",
  53269. image: {
  53270. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53271. }
  53272. },
  53273. },
  53274. [
  53275. {
  53276. name: "Normal",
  53277. height: math.unit(4 + 4/12, "feet"),
  53278. default: true
  53279. },
  53280. ]
  53281. ))
  53282. characterMakers.push(() => makeCharacter(
  53283. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53284. {
  53285. front: {
  53286. height: math.unit(2, "inches"),
  53287. name: "Front",
  53288. image: {
  53289. source: "./media/characters/carley-hartford/front.svg",
  53290. extra: 1035/988,
  53291. bottom: 23/1058
  53292. }
  53293. },
  53294. back: {
  53295. height: math.unit(2, "inches"),
  53296. name: "Back",
  53297. image: {
  53298. source: "./media/characters/carley-hartford/back.svg",
  53299. extra: 1035/988,
  53300. bottom: 23/1058
  53301. }
  53302. },
  53303. dressed: {
  53304. height: math.unit(2, "inches"),
  53305. name: "Dressed",
  53306. image: {
  53307. source: "./media/characters/carley-hartford/dressed.svg",
  53308. extra: 651/620,
  53309. bottom: 0/651
  53310. }
  53311. },
  53312. },
  53313. [
  53314. {
  53315. name: "Micro",
  53316. height: math.unit(2, "inches"),
  53317. default: true
  53318. },
  53319. {
  53320. name: "Macro",
  53321. height: math.unit(6 + 3/12, "feet")
  53322. },
  53323. ]
  53324. ))
  53325. characterMakers.push(() => makeCharacter(
  53326. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53327. {
  53328. front: {
  53329. height: math.unit(2 + 3/12, "feet"),
  53330. weight: math.unit(15 + 7/16, "lb"),
  53331. name: "Front",
  53332. image: {
  53333. source: "./media/characters/duke/front.svg",
  53334. extra: 910/815,
  53335. bottom: 30/940
  53336. }
  53337. },
  53338. },
  53339. [
  53340. {
  53341. name: "Normal",
  53342. height: math.unit(2 + 3/12, "feet"),
  53343. default: true
  53344. },
  53345. ]
  53346. ))
  53347. characterMakers.push(() => makeCharacter(
  53348. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53349. {
  53350. front: {
  53351. height: math.unit(5 + 4/12, "feet"),
  53352. weight: math.unit(156, "lb"),
  53353. name: "Front",
  53354. image: {
  53355. source: "./media/characters/dein/front.svg",
  53356. extra: 855/815,
  53357. bottom: 48/903
  53358. }
  53359. },
  53360. side: {
  53361. height: math.unit(5 + 4/12, "feet"),
  53362. weight: math.unit(156, "lb"),
  53363. name: "side",
  53364. image: {
  53365. source: "./media/characters/dein/side.svg",
  53366. extra: 846/803,
  53367. bottom: 25/871
  53368. }
  53369. },
  53370. maw: {
  53371. height: math.unit(1.45, "feet"),
  53372. name: "Maw",
  53373. image: {
  53374. source: "./media/characters/dein/maw.svg"
  53375. }
  53376. },
  53377. },
  53378. [
  53379. {
  53380. name: "Ferret Sized",
  53381. height: math.unit(2 + 5/12, "feet")
  53382. },
  53383. {
  53384. name: "Normal",
  53385. height: math.unit(5 + 4/12, "feet"),
  53386. default: true
  53387. },
  53388. ]
  53389. ))
  53390. characterMakers.push(() => makeCharacter(
  53391. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53392. {
  53393. front: {
  53394. height: math.unit(84 + 8/12, "feet"),
  53395. weight: math.unit(942180, "lb"),
  53396. name: "Front",
  53397. image: {
  53398. source: "./media/characters/daurine-arima/front.svg",
  53399. extra: 1989/1782,
  53400. bottom: 37/2026
  53401. }
  53402. },
  53403. side: {
  53404. height: math.unit(84 + 8/12, "feet"),
  53405. weight: math.unit(942180, "lb"),
  53406. name: "Side",
  53407. image: {
  53408. source: "./media/characters/daurine-arima/side.svg",
  53409. extra: 1997/1790,
  53410. bottom: 21/2018
  53411. }
  53412. },
  53413. back: {
  53414. height: math.unit(84 + 8/12, "feet"),
  53415. weight: math.unit(942180, "lb"),
  53416. name: "Back",
  53417. image: {
  53418. source: "./media/characters/daurine-arima/back.svg",
  53419. extra: 1992/1800,
  53420. bottom: 12/2004
  53421. }
  53422. },
  53423. head: {
  53424. height: math.unit(15.5, "feet"),
  53425. name: "Head",
  53426. image: {
  53427. source: "./media/characters/daurine-arima/head.svg"
  53428. }
  53429. },
  53430. headAlt: {
  53431. height: math.unit(19.19, "feet"),
  53432. name: "Head (Alt)",
  53433. image: {
  53434. source: "./media/characters/daurine-arima/head-alt.svg"
  53435. }
  53436. },
  53437. },
  53438. [
  53439. {
  53440. name: "Minimum height",
  53441. height: math.unit(8 + 10/12, "feet")
  53442. },
  53443. {
  53444. name: "Comfort height",
  53445. height: math.unit(19 + 6 /12, "feet")
  53446. },
  53447. {
  53448. name: "\"Normal\" height",
  53449. height: math.unit(28 + 10/12, "feet")
  53450. },
  53451. {
  53452. name: "Base height",
  53453. height: math.unit(84 + 8/12, "feet"),
  53454. default: true
  53455. },
  53456. {
  53457. name: "Mini-macro",
  53458. height: math.unit(2360, "feet")
  53459. },
  53460. {
  53461. name: "Macro",
  53462. height: math.unit(10, "miles")
  53463. },
  53464. {
  53465. name: "Goddess",
  53466. height: math.unit(9.99e40, "yottameters")
  53467. },
  53468. ]
  53469. ))
  53470. characterMakers.push(() => makeCharacter(
  53471. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53472. {
  53473. front: {
  53474. height: math.unit(2.3, "meters"),
  53475. name: "Front",
  53476. image: {
  53477. source: "./media/characters/cilenomon/front.svg",
  53478. extra: 1963/1778,
  53479. bottom: 54/2017
  53480. }
  53481. },
  53482. },
  53483. [
  53484. {
  53485. name: "Normal",
  53486. height: math.unit(2.3, "meters"),
  53487. default: true
  53488. },
  53489. {
  53490. name: "Big",
  53491. height: math.unit(5, "meters")
  53492. },
  53493. {
  53494. name: "Macro",
  53495. height: math.unit(30, "meters")
  53496. },
  53497. {
  53498. name: "True",
  53499. height: math.unit(1, "universe")
  53500. },
  53501. ]
  53502. ))
  53503. characterMakers.push(() => makeCharacter(
  53504. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53505. {
  53506. front: {
  53507. height: math.unit(5, "feet"),
  53508. name: "Front",
  53509. image: {
  53510. source: "./media/characters/sen-mink/front.svg",
  53511. extra: 1727/1675,
  53512. bottom: 35/1762
  53513. }
  53514. },
  53515. },
  53516. [
  53517. {
  53518. name: "Normal",
  53519. height: math.unit(5, "feet"),
  53520. default: true
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(5.42999, "feet"),
  53529. weight: math.unit(100, "lb"),
  53530. name: "Front",
  53531. image: {
  53532. source: "./media/characters/ophois/front.svg",
  53533. extra: 1429/1286,
  53534. bottom: 60/1489
  53535. }
  53536. },
  53537. },
  53538. [
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(5.42999, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(2, "meters"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/riley/front.svg",
  53554. extra: 1779/1754,
  53555. bottom: 139/1918
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(2, "meters"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53569. {
  53570. front: {
  53571. height: math.unit(6 + 2/12, "feet"),
  53572. weight: math.unit(195, "lb"),
  53573. preyCapacity: math.unit(6, "people"),
  53574. name: "Front",
  53575. image: {
  53576. source: "./media/characters/shuken-flash/front.svg",
  53577. extra: 1905/1739,
  53578. bottom: 65/1970
  53579. }
  53580. },
  53581. back: {
  53582. height: math.unit(6 + 2/12, "feet"),
  53583. weight: math.unit(195, "lb"),
  53584. preyCapacity: math.unit(6, "people"),
  53585. name: "Back",
  53586. image: {
  53587. source: "./media/characters/shuken-flash/back.svg",
  53588. extra: 1912/1751,
  53589. bottom: 13/1925
  53590. }
  53591. },
  53592. },
  53593. [
  53594. {
  53595. name: "Normal",
  53596. height: math.unit(6 + 2/12, "feet"),
  53597. default: true
  53598. },
  53599. ]
  53600. ))
  53601. characterMakers.push(() => makeCharacter(
  53602. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53603. {
  53604. front: {
  53605. height: math.unit(5 + 9/12, "feet"),
  53606. weight: math.unit(150, "lb"),
  53607. name: "Front",
  53608. image: {
  53609. source: "./media/characters/plat/front.svg",
  53610. extra: 1816/1703,
  53611. bottom: 43/1859
  53612. }
  53613. },
  53614. side: {
  53615. height: math.unit(5 + 9/12, "feet"),
  53616. weight: math.unit(300, "lb"),
  53617. name: "Side",
  53618. image: {
  53619. source: "./media/characters/plat/side.svg",
  53620. extra: 1824/1699,
  53621. bottom: 18/1842
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Normal",
  53628. height: math.unit(5 + 9/12, "feet"),
  53629. default: true
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(9, "feet"),
  53638. weight: math.unit(1800, "lb"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/elaine/front.svg",
  53642. extra: 1833/1354,
  53643. bottom: 25/1858
  53644. }
  53645. },
  53646. back: {
  53647. height: math.unit(8.8, "feet"),
  53648. weight: math.unit(1800, "lb"),
  53649. name: "Back",
  53650. image: {
  53651. source: "./media/characters/elaine/back.svg",
  53652. extra: 1641/1233,
  53653. bottom: 53/1694
  53654. }
  53655. },
  53656. },
  53657. [
  53658. {
  53659. name: "Normal",
  53660. height: math.unit(9, "feet"),
  53661. default: true
  53662. },
  53663. ]
  53664. ))
  53665. characterMakers.push(() => makeCharacter(
  53666. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53667. {
  53668. front: {
  53669. height: math.unit(17 + 9/12, "feet"),
  53670. weight: math.unit(8000, "lb"),
  53671. name: "Front",
  53672. image: {
  53673. source: "./media/characters/vera-raven/front.svg",
  53674. extra: 1457/1412,
  53675. bottom: 121/1578
  53676. }
  53677. },
  53678. side: {
  53679. height: math.unit(17 + 9/12, "feet"),
  53680. weight: math.unit(8000, "lb"),
  53681. name: "Side",
  53682. image: {
  53683. source: "./media/characters/vera-raven/side.svg",
  53684. extra: 1510/1464,
  53685. bottom: 54/1564
  53686. }
  53687. },
  53688. },
  53689. [
  53690. {
  53691. name: "Normal",
  53692. height: math.unit(17 + 9/12, "feet"),
  53693. default: true
  53694. },
  53695. ]
  53696. ))
  53697. characterMakers.push(() => makeCharacter(
  53698. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53699. {
  53700. dressed: {
  53701. height: math.unit(6 + 9/12, "feet"),
  53702. name: "Dressed",
  53703. image: {
  53704. source: "./media/characters/nakisha/dressed.svg",
  53705. extra: 1909/1757,
  53706. bottom: 48/1957
  53707. }
  53708. },
  53709. nude: {
  53710. height: math.unit(6 + 9/12, "feet"),
  53711. name: "Nude",
  53712. image: {
  53713. source: "./media/characters/nakisha/nude.svg",
  53714. extra: 1917/1765,
  53715. bottom: 34/1951
  53716. }
  53717. },
  53718. },
  53719. [
  53720. {
  53721. name: "Normal",
  53722. height: math.unit(6 + 9/12, "feet"),
  53723. default: true
  53724. },
  53725. ]
  53726. ))
  53727. characterMakers.push(() => makeCharacter(
  53728. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53729. {
  53730. front: {
  53731. height: math.unit(87, "meters"),
  53732. name: "Front",
  53733. image: {
  53734. source: "./media/characters/serafin/front.svg",
  53735. extra: 1919/1776,
  53736. bottom: 65/1984
  53737. }
  53738. },
  53739. },
  53740. [
  53741. {
  53742. name: "Normal",
  53743. height: math.unit(87, "meters"),
  53744. default: true
  53745. },
  53746. ]
  53747. ))
  53748. characterMakers.push(() => makeCharacter(
  53749. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53750. {
  53751. front: {
  53752. height: math.unit(6, "feet"),
  53753. weight: math.unit(200, "lb"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/poptart/front.svg",
  53757. extra: 615/583,
  53758. bottom: 23/638
  53759. }
  53760. },
  53761. back: {
  53762. height: math.unit(6, "feet"),
  53763. weight: math.unit(200, "lb"),
  53764. name: "Back",
  53765. image: {
  53766. source: "./media/characters/poptart/back.svg",
  53767. extra: 617/584,
  53768. bottom: 22/639
  53769. }
  53770. },
  53771. frontNsfw: {
  53772. height: math.unit(6, "feet"),
  53773. weight: math.unit(200, "lb"),
  53774. name: "Front (NSFW)",
  53775. image: {
  53776. source: "./media/characters/poptart/front-nsfw.svg",
  53777. extra: 615/583,
  53778. bottom: 23/638
  53779. }
  53780. },
  53781. backNsfw: {
  53782. height: math.unit(6, "feet"),
  53783. weight: math.unit(200, "lb"),
  53784. name: "Back (NSFW)",
  53785. image: {
  53786. source: "./media/characters/poptart/back-nsfw.svg",
  53787. extra: 617/584,
  53788. bottom: 22/639
  53789. }
  53790. },
  53791. hand: {
  53792. height: math.unit(1.14, "feet"),
  53793. name: "Hand",
  53794. image: {
  53795. source: "./media/characters/poptart/hand.svg"
  53796. }
  53797. },
  53798. foot: {
  53799. height: math.unit(1.5, "feet"),
  53800. name: "Foot",
  53801. image: {
  53802. source: "./media/characters/poptart/foot.svg"
  53803. }
  53804. },
  53805. },
  53806. [
  53807. {
  53808. name: "Normal",
  53809. height: math.unit(6, "feet"),
  53810. default: true
  53811. },
  53812. {
  53813. name: "Grande",
  53814. height: math.unit(350, "feet")
  53815. },
  53816. {
  53817. name: "Massif",
  53818. height: math.unit(967, "feet")
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53824. {
  53825. hyenaSide: {
  53826. height: math.unit(120, "cm"),
  53827. weight: math.unit(120, "lb"),
  53828. name: "Side",
  53829. image: {
  53830. source: "./media/characters/trance/hyena-side.svg",
  53831. extra: 998/904,
  53832. bottom: 76/1074
  53833. }
  53834. },
  53835. },
  53836. [
  53837. {
  53838. name: "Normal",
  53839. height: math.unit(120, "cm"),
  53840. default: true
  53841. },
  53842. {
  53843. name: "Dire",
  53844. height: math.unit(230, "cm")
  53845. },
  53846. {
  53847. name: "Macro",
  53848. height: math.unit(37, "feet")
  53849. },
  53850. ]
  53851. ))
  53852. characterMakers.push(() => makeCharacter(
  53853. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53854. {
  53855. front: {
  53856. height: math.unit(6 + 3/12, "feet"),
  53857. name: "Front",
  53858. image: {
  53859. source: "./media/characters/michael-berretta/front.svg",
  53860. extra: 515/494,
  53861. bottom: 20/535
  53862. }
  53863. },
  53864. back: {
  53865. height: math.unit(6 + 3/12, "feet"),
  53866. name: "Back",
  53867. image: {
  53868. source: "./media/characters/michael-berretta/back.svg",
  53869. extra: 520/497,
  53870. bottom: 21/541
  53871. }
  53872. },
  53873. frontNsfw: {
  53874. height: math.unit(6 + 3/12, "feet"),
  53875. name: "Front (NSFW)",
  53876. image: {
  53877. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53878. extra: 515/494,
  53879. bottom: 20/535
  53880. }
  53881. },
  53882. dick: {
  53883. height: math.unit(1, "feet"),
  53884. name: "Dick",
  53885. image: {
  53886. source: "./media/characters/michael-berretta/dick.svg"
  53887. }
  53888. },
  53889. },
  53890. [
  53891. {
  53892. name: "Normal",
  53893. height: math.unit(6 + 3/12, "feet"),
  53894. default: true
  53895. },
  53896. {
  53897. name: "Big",
  53898. height: math.unit(12, "feet")
  53899. },
  53900. {
  53901. name: "Macro",
  53902. height: math.unit(187.5, "feet")
  53903. },
  53904. ]
  53905. ))
  53906. characterMakers.push(() => makeCharacter(
  53907. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53908. {
  53909. front: {
  53910. height: math.unit(9 + 9/12, "feet"),
  53911. weight: math.unit(1244, "lb"),
  53912. name: "Front",
  53913. image: {
  53914. source: "./media/characters/stella-edgecomb/front.svg",
  53915. extra: 1835/1706,
  53916. bottom: 49/1884
  53917. }
  53918. },
  53919. pen: {
  53920. height: math.unit(0.95, "feet"),
  53921. name: "Pen",
  53922. image: {
  53923. source: "./media/characters/stella-edgecomb/pen.svg"
  53924. }
  53925. },
  53926. },
  53927. [
  53928. {
  53929. name: "Cozy Bear",
  53930. height: math.unit(0.5, "inches")
  53931. },
  53932. {
  53933. name: "Normal",
  53934. height: math.unit(9 + 9/12, "feet"),
  53935. default: true
  53936. },
  53937. {
  53938. name: "Giga Bear",
  53939. height: math.unit(1, "mile")
  53940. },
  53941. {
  53942. name: "Great Bear",
  53943. height: math.unit(53, "miles")
  53944. },
  53945. {
  53946. name: "Goddess Bear",
  53947. height: math.unit(40000, "miles")
  53948. },
  53949. {
  53950. name: "Sun Bear",
  53951. height: math.unit(900000, "miles")
  53952. },
  53953. ]
  53954. ))
  53955. characterMakers.push(() => makeCharacter(
  53956. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53957. {
  53958. anthroFront: {
  53959. height: math.unit(556, "cm"),
  53960. weight: math.unit(2650, "kg"),
  53961. preyCapacity: math.unit(3, "people"),
  53962. name: "Front",
  53963. image: {
  53964. source: "./media/characters/ash´iika/front.svg",
  53965. extra: 710/673,
  53966. bottom: 15/725
  53967. },
  53968. form: "anthro",
  53969. default: true
  53970. },
  53971. anthroSide: {
  53972. height: math.unit(556, "cm"),
  53973. weight: math.unit(2650, "kg"),
  53974. preyCapacity: math.unit(3, "people"),
  53975. name: "Side",
  53976. image: {
  53977. source: "./media/characters/ash´iika/side.svg",
  53978. extra: 696/676,
  53979. bottom: 13/709
  53980. },
  53981. form: "anthro"
  53982. },
  53983. anthroDressed: {
  53984. height: math.unit(556, "cm"),
  53985. weight: math.unit(2650, "kg"),
  53986. preyCapacity: math.unit(3, "people"),
  53987. name: "Dressed",
  53988. image: {
  53989. source: "./media/characters/ash´iika/dressed.svg",
  53990. extra: 710/673,
  53991. bottom: 15/725
  53992. },
  53993. form: "anthro"
  53994. },
  53995. anthroHead: {
  53996. height: math.unit(3.5, "feet"),
  53997. name: "Head",
  53998. image: {
  53999. source: "./media/characters/ash´iika/head.svg",
  54000. extra: 348/291,
  54001. bottom: 45/393
  54002. },
  54003. form: "anthro"
  54004. },
  54005. feralSide: {
  54006. height: math.unit(870, "cm"),
  54007. weight: math.unit(17500, "kg"),
  54008. preyCapacity: math.unit(15, "people"),
  54009. name: "Side",
  54010. image: {
  54011. source: "./media/characters/ash´iika/feral.svg",
  54012. extra: 595/199,
  54013. bottom: 7/602
  54014. },
  54015. form: "feral",
  54016. default: true,
  54017. },
  54018. },
  54019. [
  54020. {
  54021. name: "Normal",
  54022. height: math.unit(556, "cm"),
  54023. default: true,
  54024. form: "anthro"
  54025. },
  54026. {
  54027. name: "Macro",
  54028. height: math.unit(88, "meters"),
  54029. form: "anthro"
  54030. },
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(870, "cm"),
  54034. default: true,
  54035. form: "feral"
  54036. },
  54037. {
  54038. name: "Large",
  54039. height: math.unit(25, "meters"),
  54040. form: "feral"
  54041. },
  54042. ],
  54043. {
  54044. "anthro": {
  54045. name: "Anthro",
  54046. default: true
  54047. },
  54048. "feral": {
  54049. name: "Feral",
  54050. },
  54051. }
  54052. ))
  54053. characterMakers.push(() => makeCharacter(
  54054. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54055. {
  54056. front: {
  54057. height: math.unit(10, "feet"),
  54058. weight: math.unit(800, "lb"),
  54059. name: "Front",
  54060. image: {
  54061. source: "./media/characters/yen/front.svg",
  54062. extra: 443/411,
  54063. bottom: 6/449
  54064. }
  54065. },
  54066. sleeping: {
  54067. height: math.unit(10, "feet"),
  54068. weight: math.unit(800, "lb"),
  54069. name: "Sleeping",
  54070. image: {
  54071. source: "./media/characters/yen/sleeping.svg",
  54072. extra: 470/422,
  54073. bottom: 0/470
  54074. }
  54075. },
  54076. head: {
  54077. height: math.unit(2.2, "feet"),
  54078. name: "Head",
  54079. image: {
  54080. source: "./media/characters/yen/head.svg"
  54081. }
  54082. },
  54083. headAlt: {
  54084. height: math.unit(2.1, "feet"),
  54085. name: "Head (Alt)",
  54086. image: {
  54087. source: "./media/characters/yen/head-alt.svg"
  54088. }
  54089. },
  54090. },
  54091. [
  54092. {
  54093. name: "Normal",
  54094. height: math.unit(10, "feet"),
  54095. default: true
  54096. },
  54097. ]
  54098. ))
  54099. characterMakers.push(() => makeCharacter(
  54100. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54101. {
  54102. front: {
  54103. height: math.unit(12, "feet"),
  54104. name: "Front",
  54105. image: {
  54106. source: "./media/characters/citra/front.svg",
  54107. extra: 1950/1710,
  54108. bottom: 47/1997
  54109. }
  54110. },
  54111. },
  54112. [
  54113. {
  54114. name: "Normal",
  54115. height: math.unit(12, "feet"),
  54116. default: true
  54117. },
  54118. ]
  54119. ))
  54120. characterMakers.push(() => makeCharacter(
  54121. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54122. {
  54123. side: {
  54124. height: math.unit(7 + 10/12, "feet"),
  54125. name: "Side",
  54126. image: {
  54127. source: "./media/characters/sholstim/side.svg",
  54128. extra: 786/682,
  54129. bottom: 40/826
  54130. }
  54131. },
  54132. },
  54133. [
  54134. {
  54135. name: "Normal",
  54136. height: math.unit(7 + 10/12, "feet"),
  54137. default: true
  54138. },
  54139. ]
  54140. ))
  54141. characterMakers.push(() => makeCharacter(
  54142. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54143. {
  54144. front: {
  54145. height: math.unit(3.10, "meters"),
  54146. name: "Front",
  54147. image: {
  54148. source: "./media/characters/aggyn/front.svg",
  54149. extra: 1188/963,
  54150. bottom: 24/1212
  54151. }
  54152. },
  54153. },
  54154. [
  54155. {
  54156. name: "Normal",
  54157. height: math.unit(3.10, "meters"),
  54158. default: true
  54159. },
  54160. ]
  54161. ))
  54162. characterMakers.push(() => makeCharacter(
  54163. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54164. {
  54165. front: {
  54166. height: math.unit(7 + 5/12, "feet"),
  54167. weight: math.unit(687, "lb"),
  54168. name: "Front",
  54169. image: {
  54170. source: "./media/characters/alsandair-hergenroether/front.svg",
  54171. extra: 1251/1186,
  54172. bottom: 75/1326
  54173. }
  54174. },
  54175. back: {
  54176. height: math.unit(7 + 5/12, "feet"),
  54177. weight: math.unit(687, "lb"),
  54178. name: "Back",
  54179. image: {
  54180. source: "./media/characters/alsandair-hergenroether/back.svg",
  54181. extra: 1290/1229,
  54182. bottom: 17/1307
  54183. }
  54184. },
  54185. },
  54186. [
  54187. {
  54188. name: "Max Compression",
  54189. height: math.unit(7 + 5/12, "feet"),
  54190. default: true
  54191. },
  54192. {
  54193. name: "\"Normal\"",
  54194. height: math.unit(2, "universes")
  54195. },
  54196. ]
  54197. ))
  54198. characterMakers.push(() => makeCharacter(
  54199. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54200. {
  54201. front: {
  54202. height: math.unit(4 + 1/12, "feet"),
  54203. weight: math.unit(92, "lb"),
  54204. name: "Front",
  54205. image: {
  54206. source: "./media/characters/ie/front.svg",
  54207. extra: 1585/1352,
  54208. bottom: 91/1676
  54209. }
  54210. },
  54211. },
  54212. [
  54213. {
  54214. name: "Normal",
  54215. height: math.unit(4 + 1/12, "feet"),
  54216. default: true
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54222. {
  54223. anthro: {
  54224. height: math.unit(6, "feet"),
  54225. weight: math.unit(150, "lb"),
  54226. name: "Front",
  54227. image: {
  54228. source: "./media/characters/willow/anthro.svg",
  54229. extra: 1073/986,
  54230. bottom: 34/1107
  54231. },
  54232. form: "anthro",
  54233. default: true
  54234. },
  54235. taur: {
  54236. height: math.unit(6, "feet"),
  54237. weight: math.unit(150, "lb"),
  54238. name: "Side",
  54239. image: {
  54240. source: "./media/characters/willow/taur.svg",
  54241. extra: 647/512,
  54242. bottom: 136/783
  54243. },
  54244. form: "taur",
  54245. default: true
  54246. },
  54247. },
  54248. [
  54249. {
  54250. name: "Humanoid",
  54251. height: math.unit(2.7, "meters"),
  54252. form: "anthro"
  54253. },
  54254. {
  54255. name: "Normal",
  54256. height: math.unit(9, "meters"),
  54257. form: "anthro",
  54258. default: true
  54259. },
  54260. {
  54261. name: "Humanoid",
  54262. height: math.unit(2.1, "meters"),
  54263. form: "taur"
  54264. },
  54265. {
  54266. name: "Normal",
  54267. height: math.unit(7, "meters"),
  54268. form: "taur",
  54269. default: true
  54270. },
  54271. ],
  54272. {
  54273. "anthro": {
  54274. name: "Anthro",
  54275. default: true
  54276. },
  54277. "taur": {
  54278. name: "Taur",
  54279. },
  54280. }
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54284. {
  54285. front: {
  54286. height: math.unit(2 + 5/12, "feet"),
  54287. name: "Front",
  54288. image: {
  54289. source: "./media/characters/kyan/front.svg",
  54290. extra: 460/334,
  54291. bottom: 23/483
  54292. },
  54293. extraAttributes: {
  54294. "toeLength": {
  54295. name: "Toe Length",
  54296. power: 1,
  54297. type: "length",
  54298. base: math.unit(7, "cm")
  54299. },
  54300. "toeclawLength": {
  54301. name: "Toeclaw Length",
  54302. power: 1,
  54303. type: "length",
  54304. base: math.unit(4.7, "cm")
  54305. },
  54306. "earHeight": {
  54307. name: "Ear Height",
  54308. power: 1,
  54309. type: "length",
  54310. base: math.unit(14.1, "cm")
  54311. },
  54312. }
  54313. },
  54314. paws: {
  54315. height: math.unit(0.45, "feet"),
  54316. name: "Paws",
  54317. image: {
  54318. source: "./media/characters/kyan/paws.svg",
  54319. extra: 581/581,
  54320. bottom: 114/695
  54321. }
  54322. },
  54323. },
  54324. [
  54325. {
  54326. name: "Normal",
  54327. height: math.unit(2 + 5/12, "feet"),
  54328. default: true
  54329. },
  54330. ]
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(2 + 2/3, "feet"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/xazzon/front.svg",
  54340. extra: 1109/984,
  54341. bottom: 42/1151
  54342. }
  54343. },
  54344. back: {
  54345. height: math.unit(2 + 2/3, "feet"),
  54346. name: "Back",
  54347. image: {
  54348. source: "./media/characters/xazzon/back.svg",
  54349. extra: 1095/971,
  54350. bottom: 23/1118
  54351. }
  54352. },
  54353. },
  54354. [
  54355. {
  54356. name: "Normal",
  54357. height: math.unit(2 + 2/3, "feet"),
  54358. default: true
  54359. },
  54360. ]
  54361. ))
  54362. characterMakers.push(() => makeCharacter(
  54363. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54364. {
  54365. dressed: {
  54366. height: math.unit(5 + 7/12, "feet"),
  54367. weight: math.unit(173, "lb"),
  54368. name: "Dressed",
  54369. image: {
  54370. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54371. extra: 3262/2862,
  54372. bottom: 188/3450
  54373. }
  54374. },
  54375. undressed: {
  54376. height: math.unit(5 + 7/12, "feet"),
  54377. weight: math.unit(173, "lb"),
  54378. name: "Undressed",
  54379. image: {
  54380. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54381. extra: 3262/2862,
  54382. bottom: 188/3450
  54383. }
  54384. },
  54385. },
  54386. [
  54387. {
  54388. name: "The void",
  54389. height: math.unit(7.29193e-34, "angstroms")
  54390. },
  54391. {
  54392. name: "Uh-Oh.",
  54393. height: math.unit(5.734e-7, "angstroms")
  54394. },
  54395. {
  54396. name: "Pico",
  54397. height: math.unit(0.876, "angstroms")
  54398. },
  54399. {
  54400. name: "Nano",
  54401. height: math.unit(0.000134200, "mm")
  54402. },
  54403. {
  54404. name: "Micro",
  54405. height: math.unit(0.0673020, "mm")
  54406. },
  54407. {
  54408. name: "Tiny",
  54409. height: math.unit(2.4, "mm")
  54410. },
  54411. {
  54412. name: "Actual Normal",
  54413. height: math.unit(3, "inches"),
  54414. default: true
  54415. },
  54416. {
  54417. name: "Normal",
  54418. height: math.unit(5 + 8/12, "feet")
  54419. },
  54420. {
  54421. name: "Giant",
  54422. height: math.unit(12, "feet")
  54423. },
  54424. {
  54425. name: "City Ruler",
  54426. height: math.unit(270, "meters")
  54427. },
  54428. {
  54429. name: "Giga",
  54430. height: math.unit(1117.6, "km")
  54431. },
  54432. {
  54433. name: "All-Powerful Queen",
  54434. height: math.unit(70.8, "gigameters")
  54435. },
  54436. {
  54437. name: "'Goddess'",
  54438. height: math.unit(600, "yottameters")
  54439. },
  54440. {
  54441. name: "Biggest!",
  54442. height: math.unit(4.23e5, "yottameters")
  54443. },
  54444. ]
  54445. ))
  54446. characterMakers.push(() => makeCharacter(
  54447. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54448. {
  54449. front: {
  54450. height: math.unit(8, "feet"),
  54451. weight: math.unit(300, "lb"),
  54452. name: "Front",
  54453. image: {
  54454. source: "./media/characters/khyla-shadowsong/front.svg",
  54455. extra: 861/798,
  54456. bottom: 32/893
  54457. }
  54458. },
  54459. side: {
  54460. height: math.unit(8, "feet"),
  54461. weight: math.unit(300, "lb"),
  54462. name: "Side",
  54463. image: {
  54464. source: "./media/characters/khyla-shadowsong/side.svg",
  54465. extra: 790/750,
  54466. bottom: 87/877
  54467. }
  54468. },
  54469. back: {
  54470. height: math.unit(8, "feet"),
  54471. weight: math.unit(300, "lb"),
  54472. name: "Back",
  54473. image: {
  54474. source: "./media/characters/khyla-shadowsong/back.svg",
  54475. extra: 855/808,
  54476. bottom: 14/869
  54477. }
  54478. },
  54479. head: {
  54480. height: math.unit(2.7, "feet"),
  54481. name: "Head",
  54482. image: {
  54483. source: "./media/characters/khyla-shadowsong/head.svg"
  54484. }
  54485. },
  54486. },
  54487. [
  54488. {
  54489. name: "Micro",
  54490. height: math.unit(6, "inches")
  54491. },
  54492. {
  54493. name: "Normal",
  54494. height: math.unit(8, "feet"),
  54495. default: true
  54496. },
  54497. ]
  54498. ))
  54499. characterMakers.push(() => makeCharacter(
  54500. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54501. {
  54502. hyperFront: {
  54503. height: math.unit(9 + 4/12, "feet"),
  54504. weight: math.unit(2000, "lb"),
  54505. name: "Front",
  54506. image: {
  54507. source: "./media/characters/tiden/hyper-front.svg",
  54508. extra: 400/382,
  54509. bottom: 6/406
  54510. },
  54511. form: "hyper",
  54512. },
  54513. regularFront: {
  54514. height: math.unit(7 + 10/12, "feet"),
  54515. weight: math.unit(470, "lb"),
  54516. name: "Front",
  54517. image: {
  54518. source: "./media/characters/tiden/regular-front.svg",
  54519. extra: 468/442,
  54520. bottom: 6/474
  54521. },
  54522. form: "regular",
  54523. },
  54524. },
  54525. [
  54526. {
  54527. name: "Normal",
  54528. height: math.unit(9 + 4/12, "feet"),
  54529. default: true,
  54530. form: "hyper"
  54531. },
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(7 + 10/12, "feet"),
  54535. default: true,
  54536. form: "regular"
  54537. },
  54538. ],
  54539. {
  54540. "hyper": {
  54541. name: "Hyper",
  54542. default: true
  54543. },
  54544. "regular": {
  54545. name: "Regular",
  54546. },
  54547. }
  54548. ))
  54549. characterMakers.push(() => makeCharacter(
  54550. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54551. {
  54552. side: {
  54553. height: math.unit(6, "feet"),
  54554. weight: math.unit(150, "lb"),
  54555. name: "Side",
  54556. image: {
  54557. source: "./media/characters/jason-crowe/side.svg",
  54558. extra: 1771/766,
  54559. bottom: 219/1990
  54560. }
  54561. },
  54562. },
  54563. [
  54564. {
  54565. name: "Pocket Gryphon",
  54566. height: math.unit(6, "cm")
  54567. },
  54568. {
  54569. name: "Raven",
  54570. height: math.unit(60, "cm")
  54571. },
  54572. {
  54573. name: "Normal",
  54574. height: math.unit(1, "meter"),
  54575. default: true
  54576. },
  54577. ]
  54578. ))
  54579. characterMakers.push(() => makeCharacter(
  54580. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54581. {
  54582. front: {
  54583. height: math.unit(9 + 6/12, "feet"),
  54584. weight: math.unit(1100, "lb"),
  54585. name: "Front",
  54586. image: {
  54587. source: "./media/characters/django/front.svg",
  54588. extra: 1231/1136,
  54589. bottom: 34/1265
  54590. }
  54591. },
  54592. side: {
  54593. height: math.unit(9 + 6/12, "feet"),
  54594. weight: math.unit(1100, "lb"),
  54595. name: "Side",
  54596. image: {
  54597. source: "./media/characters/django/side.svg",
  54598. extra: 1267/1174,
  54599. bottom: 9/1276
  54600. }
  54601. },
  54602. },
  54603. [
  54604. {
  54605. name: "Normal",
  54606. height: math.unit(9 + 6/12, "feet"),
  54607. default: true
  54608. },
  54609. {
  54610. name: "Macro 1",
  54611. height: math.unit(50, "feet")
  54612. },
  54613. {
  54614. name: "Macro 2",
  54615. height: math.unit(500, "feet")
  54616. },
  54617. {
  54618. name: "Mega Macro",
  54619. height: math.unit(5300, "feet")
  54620. },
  54621. ]
  54622. ))
  54623. characterMakers.push(() => makeCharacter(
  54624. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54625. {
  54626. frontSfw: {
  54627. height: math.unit(120, "cm"),
  54628. weight: math.unit(15, "kg"),
  54629. name: "Front (SFW)",
  54630. image: {
  54631. source: "./media/characters/eri/front-sfw.svg",
  54632. extra: 1014/939,
  54633. bottom: 37/1051
  54634. },
  54635. form: "moth",
  54636. },
  54637. frontNsfw: {
  54638. height: math.unit(120, "cm"),
  54639. weight: math.unit(15, "kg"),
  54640. name: "Front (NSFW)",
  54641. image: {
  54642. source: "./media/characters/eri/front-nsfw.svg",
  54643. extra: 1014/939,
  54644. bottom: 37/1051
  54645. },
  54646. form: "moth",
  54647. default: true
  54648. },
  54649. egg: {
  54650. height: math.unit(10, "cm"),
  54651. name: "Egg",
  54652. image: {
  54653. source: "./media/characters/eri/egg.svg"
  54654. },
  54655. form: "egg",
  54656. default: true
  54657. },
  54658. },
  54659. [
  54660. {
  54661. name: "Normal",
  54662. height: math.unit(120, "cm"),
  54663. default: true,
  54664. form: "moth"
  54665. },
  54666. {
  54667. name: "Normal",
  54668. height: math.unit(10, "cm"),
  54669. default: true,
  54670. form: "egg"
  54671. },
  54672. ],
  54673. {
  54674. "moth": {
  54675. name: "Moth",
  54676. default: true
  54677. },
  54678. "egg": {
  54679. name: "Egg",
  54680. },
  54681. }
  54682. ))
  54683. characterMakers.push(() => makeCharacter(
  54684. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54685. {
  54686. front: {
  54687. height: math.unit(200, "feet"),
  54688. name: "Front",
  54689. image: {
  54690. source: "./media/characters/bishop-dowser/front.svg",
  54691. extra: 933/868,
  54692. bottom: 106/1039
  54693. }
  54694. },
  54695. },
  54696. [
  54697. {
  54698. name: "Giant",
  54699. height: math.unit(200, "feet"),
  54700. default: true
  54701. },
  54702. ]
  54703. ))
  54704. characterMakers.push(() => makeCharacter(
  54705. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54706. {
  54707. front: {
  54708. height: math.unit(2, "meters"),
  54709. preyCapacity: math.unit(3, "people"),
  54710. name: "Front",
  54711. image: {
  54712. source: "./media/characters/fryra/front.svg",
  54713. extra: 1025/948,
  54714. bottom: 30/1055
  54715. },
  54716. extraAttributes: {
  54717. "breastVolume": {
  54718. name: "Breast Volume",
  54719. power: 3,
  54720. type: "volume",
  54721. base: math.unit(8, "liters")
  54722. },
  54723. }
  54724. },
  54725. back: {
  54726. height: math.unit(2, "meters"),
  54727. preyCapacity: math.unit(3, "people"),
  54728. name: "Back",
  54729. image: {
  54730. source: "./media/characters/fryra/back.svg",
  54731. extra: 993/938,
  54732. bottom: 38/1031
  54733. },
  54734. extraAttributes: {
  54735. "breastVolume": {
  54736. name: "Breast Volume",
  54737. power: 3,
  54738. type: "volume",
  54739. base: math.unit(8, "liters")
  54740. },
  54741. }
  54742. },
  54743. head: {
  54744. height: math.unit(1.33, "feet"),
  54745. name: "Head",
  54746. image: {
  54747. source: "./media/characters/fryra/head.svg"
  54748. }
  54749. },
  54750. maw: {
  54751. height: math.unit(0.56, "feet"),
  54752. name: "Maw",
  54753. image: {
  54754. source: "./media/characters/fryra/maw.svg"
  54755. }
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Micro",
  54761. height: math.unit(5, "cm")
  54762. },
  54763. {
  54764. name: "Normal",
  54765. height: math.unit(2, "meters"),
  54766. default: true
  54767. },
  54768. {
  54769. name: "Small Macro",
  54770. height: math.unit(8, "meters")
  54771. },
  54772. {
  54773. name: "Macro",
  54774. height: math.unit(50, "meters")
  54775. },
  54776. {
  54777. name: "Megamacro",
  54778. height: math.unit(1, "km")
  54779. },
  54780. {
  54781. name: "Planetary",
  54782. height: math.unit(300000, "km")
  54783. },
  54784. {
  54785. name: "Universal",
  54786. height: math.unit(250, "lightyears")
  54787. },
  54788. {
  54789. name: "Fabric of Reality",
  54790. height: math.unit(1000, "multiverses")
  54791. },
  54792. ]
  54793. ))
  54794. characterMakers.push(() => makeCharacter(
  54795. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54796. {
  54797. frontDressed: {
  54798. height: math.unit(6 + 2/12, "feet"),
  54799. name: "Front (Dressed)",
  54800. image: {
  54801. source: "./media/characters/fiera/front-dressed.svg",
  54802. extra: 1883/1793,
  54803. bottom: 70/1953
  54804. }
  54805. },
  54806. backDressed: {
  54807. height: math.unit(6 + 2/12, "feet"),
  54808. name: "Back (Dressed)",
  54809. image: {
  54810. source: "./media/characters/fiera/back-dressed.svg",
  54811. extra: 1847/1780,
  54812. bottom: 70/1917
  54813. }
  54814. },
  54815. frontNude: {
  54816. height: math.unit(6 + 2/12, "feet"),
  54817. name: "Front (Nude)",
  54818. image: {
  54819. source: "./media/characters/fiera/front-nude.svg",
  54820. extra: 1875/1785,
  54821. bottom: 66/1941
  54822. }
  54823. },
  54824. backNude: {
  54825. height: math.unit(6 + 2/12, "feet"),
  54826. name: "Back (Nude)",
  54827. image: {
  54828. source: "./media/characters/fiera/back-nude.svg",
  54829. extra: 1855/1788,
  54830. bottom: 44/1899
  54831. }
  54832. },
  54833. maw: {
  54834. height: math.unit(1.3, "feet"),
  54835. name: "Maw",
  54836. image: {
  54837. source: "./media/characters/fiera/maw.svg"
  54838. }
  54839. },
  54840. paw: {
  54841. height: math.unit(1, "feet"),
  54842. name: "Paw",
  54843. image: {
  54844. source: "./media/characters/fiera/paw.svg"
  54845. }
  54846. },
  54847. shoe: {
  54848. height: math.unit(1.05, "feet"),
  54849. name: "Shoe",
  54850. image: {
  54851. source: "./media/characters/fiera/shoe.svg"
  54852. }
  54853. },
  54854. },
  54855. [
  54856. {
  54857. name: "Normal",
  54858. height: math.unit(6 + 2/12, "feet"),
  54859. default: true
  54860. },
  54861. {
  54862. name: "Size Difference",
  54863. height: math.unit(13, "feet")
  54864. },
  54865. {
  54866. name: "Macro",
  54867. height: math.unit(60, "feet")
  54868. },
  54869. {
  54870. name: "Mega Macro",
  54871. height: math.unit(200, "feet")
  54872. },
  54873. ]
  54874. ))
  54875. characterMakers.push(() => makeCharacter(
  54876. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54877. {
  54878. back: {
  54879. height: math.unit(6, "feet"),
  54880. name: "Back",
  54881. image: {
  54882. source: "./media/characters/flare/back.svg",
  54883. extra: 1883/1765,
  54884. bottom: 32/1915
  54885. }
  54886. },
  54887. },
  54888. [
  54889. {
  54890. name: "Normal",
  54891. height: math.unit(6 + 2/12, "feet"),
  54892. default: true
  54893. },
  54894. {
  54895. name: "Size Difference",
  54896. height: math.unit(13, "feet")
  54897. },
  54898. {
  54899. name: "Macro",
  54900. height: math.unit(60, "feet")
  54901. },
  54902. {
  54903. name: "Macro 2",
  54904. height: math.unit(100, "feet")
  54905. },
  54906. {
  54907. name: "Mega Macro",
  54908. height: math.unit(200, "feet")
  54909. },
  54910. ]
  54911. ))
  54912. characterMakers.push(() => makeCharacter(
  54913. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54914. {
  54915. front: {
  54916. height: math.unit(2.2, "m"),
  54917. weight: math.unit(300, "kg"),
  54918. name: "Front",
  54919. image: {
  54920. source: "./media/characters/hanna/front.svg",
  54921. extra: 1696/1502,
  54922. bottom: 206/1902
  54923. }
  54924. },
  54925. },
  54926. [
  54927. {
  54928. name: "Humanoid",
  54929. height: math.unit(2.2, "meters")
  54930. },
  54931. {
  54932. name: "Normal",
  54933. height: math.unit(4.8, "meters"),
  54934. default: true
  54935. },
  54936. ]
  54937. ))
  54938. characterMakers.push(() => makeCharacter(
  54939. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54940. {
  54941. front: {
  54942. height: math.unit(2.8, "meters"),
  54943. name: "Front",
  54944. image: {
  54945. source: "./media/characters/argo/front.svg",
  54946. extra: 731/518,
  54947. bottom: 84/815
  54948. }
  54949. },
  54950. },
  54951. [
  54952. {
  54953. name: "Normal",
  54954. height: math.unit(3, "meters"),
  54955. default: true
  54956. },
  54957. ]
  54958. ))
  54959. characterMakers.push(() => makeCharacter(
  54960. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54961. {
  54962. side: {
  54963. height: math.unit(3.8, "meters"),
  54964. name: "Side",
  54965. image: {
  54966. source: "./media/characters/sybil/side.svg",
  54967. extra: 382/361,
  54968. bottom: 25/407
  54969. }
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Normal",
  54975. height: math.unit(3.8, "meters"),
  54976. default: true
  54977. },
  54978. ]
  54979. ))
  54980. characterMakers.push(() => makeCharacter(
  54981. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54982. {
  54983. side: {
  54984. height: math.unit(6, "meters"),
  54985. name: "Side",
  54986. image: {
  54987. source: "./media/characters/plum/side.svg",
  54988. extra: 858/755,
  54989. bottom: 45/903
  54990. },
  54991. form: "taur",
  54992. default: true
  54993. },
  54994. back: {
  54995. height: math.unit(6.3, "meters"),
  54996. name: "Back",
  54997. image: {
  54998. source: "./media/characters/plum/back.svg",
  54999. extra: 887/813,
  55000. bottom: 32/919
  55001. },
  55002. form: "taur",
  55003. },
  55004. feral: {
  55005. height: math.unit(5.5, "meter"),
  55006. name: "Front",
  55007. image: {
  55008. source: "./media/characters/plum/feral.svg",
  55009. extra: 568/403,
  55010. bottom: 51/619
  55011. },
  55012. form: "feral",
  55013. default: true
  55014. },
  55015. head: {
  55016. height: math.unit(1.46, "meter"),
  55017. name: "Head",
  55018. image: {
  55019. source: "./media/characters/plum/head.svg"
  55020. },
  55021. form: "taur"
  55022. },
  55023. tailTop: {
  55024. height: math.unit(5.6, "meter"),
  55025. name: "Tail (Top)",
  55026. image: {
  55027. source: "./media/characters/plum/tail-top.svg"
  55028. },
  55029. form: "taur",
  55030. },
  55031. tailBottom: {
  55032. height: math.unit(5.6, "meter"),
  55033. name: "Tail (Bottom)",
  55034. image: {
  55035. source: "./media/characters/plum/tail-bottom.svg"
  55036. },
  55037. form: "taur",
  55038. },
  55039. feralHead: {
  55040. height: math.unit(2.56549521, "meter"),
  55041. name: "Head",
  55042. image: {
  55043. source: "./media/characters/plum/head.svg"
  55044. },
  55045. form: "feral"
  55046. },
  55047. feralTailTop: {
  55048. height: math.unit(5.44728435, "meter"),
  55049. name: "Tail (Top)",
  55050. image: {
  55051. source: "./media/characters/plum/tail-top.svg"
  55052. },
  55053. form: "feral",
  55054. },
  55055. feralTailBottom: {
  55056. height: math.unit(5.44728435, "meter"),
  55057. name: "Tail (Bottom)",
  55058. image: {
  55059. source: "./media/characters/plum/tail-bottom.svg"
  55060. },
  55061. form: "feral",
  55062. },
  55063. },
  55064. [
  55065. {
  55066. name: "Normal",
  55067. height: math.unit(6, "meters"),
  55068. default: true,
  55069. form: "taur"
  55070. },
  55071. {
  55072. name: "Normal",
  55073. height: math.unit(5.5, "meters"),
  55074. default: true,
  55075. form: "feral"
  55076. },
  55077. ],
  55078. {
  55079. "taur": {
  55080. name: "Taur",
  55081. default: true
  55082. },
  55083. "feral": {
  55084. name: "Feral",
  55085. },
  55086. }
  55087. ))
  55088. characterMakers.push(() => makeCharacter(
  55089. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55090. {
  55091. front: {
  55092. height: math.unit(6, "feet"),
  55093. weight: math.unit(115, "lb"),
  55094. name: "Front",
  55095. image: {
  55096. source: "./media/characters/celeste-kitsune/front.svg",
  55097. extra: 393/366,
  55098. bottom: 7/400
  55099. }
  55100. },
  55101. side: {
  55102. height: math.unit(6, "feet"),
  55103. weight: math.unit(115, "lb"),
  55104. name: "Side",
  55105. image: {
  55106. source: "./media/characters/celeste-kitsune/side.svg",
  55107. extra: 818/765,
  55108. bottom: 40/858
  55109. }
  55110. },
  55111. },
  55112. [
  55113. {
  55114. name: "Megamacro",
  55115. height: math.unit(1500, "miles"),
  55116. default: true
  55117. },
  55118. ]
  55119. ))
  55120. characterMakers.push(() => makeCharacter(
  55121. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55122. {
  55123. front: {
  55124. height: math.unit(8, "meters"),
  55125. name: "Front",
  55126. image: {
  55127. source: "./media/characters/io/front.svg",
  55128. extra: 865/722,
  55129. bottom: 58/923
  55130. }
  55131. },
  55132. back: {
  55133. height: math.unit(8, "meters"),
  55134. name: "Back",
  55135. image: {
  55136. source: "./media/characters/io/back.svg",
  55137. extra: 920/776,
  55138. bottom: 42/962
  55139. }
  55140. },
  55141. head: {
  55142. height: math.unit(5.09, "meters"),
  55143. name: "Head",
  55144. image: {
  55145. source: "./media/characters/io/head.svg"
  55146. }
  55147. },
  55148. hand: {
  55149. height: math.unit(1.6, "meters"),
  55150. name: "Hand",
  55151. image: {
  55152. source: "./media/characters/io/hand.svg"
  55153. }
  55154. },
  55155. foot: {
  55156. height: math.unit(2.4, "meters"),
  55157. name: "Foot",
  55158. image: {
  55159. source: "./media/characters/io/foot.svg"
  55160. }
  55161. },
  55162. },
  55163. [
  55164. {
  55165. name: "Normal",
  55166. height: math.unit(8, "meters"),
  55167. default: true
  55168. },
  55169. ]
  55170. ))
  55171. characterMakers.push(() => makeCharacter(
  55172. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55173. {
  55174. side: {
  55175. height: math.unit(6 + 3/12, "feet"),
  55176. weight: math.unit(225, "lb"),
  55177. name: "Side",
  55178. image: {
  55179. source: "./media/characters/silas/side.svg",
  55180. extra: 703/653,
  55181. bottom: 23/726
  55182. },
  55183. extraAttributes: {
  55184. "pawLength": {
  55185. name: "Paw Length",
  55186. power: 1,
  55187. type: "length",
  55188. base: math.unit(12, "inches")
  55189. },
  55190. "pawWidth": {
  55191. name: "Paw Width",
  55192. power: 1,
  55193. type: "length",
  55194. base: math.unit(4.5, "inches")
  55195. },
  55196. "pawArea": {
  55197. name: "Paw Area",
  55198. power: 2,
  55199. type: "area",
  55200. base: math.unit(12 * 4.5, "inches^2")
  55201. },
  55202. }
  55203. },
  55204. },
  55205. [
  55206. {
  55207. name: "Normal",
  55208. height: math.unit(6 + 3/12, "feet"),
  55209. default: true
  55210. },
  55211. ]
  55212. ))
  55213. characterMakers.push(() => makeCharacter(
  55214. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55215. {
  55216. back: {
  55217. height: math.unit(1.6, "meters"),
  55218. weight: math.unit(150, "lb"),
  55219. name: "Back",
  55220. image: {
  55221. source: "./media/characters/zari/back.svg",
  55222. extra: 424/411,
  55223. bottom: 32/456
  55224. },
  55225. extraAttributes: {
  55226. "bladderCapacity": {
  55227. name: "Bladder Size",
  55228. power: 3,
  55229. type: "volume",
  55230. base: math.unit(500, "mL")
  55231. },
  55232. "bladderFlow": {
  55233. name: "Flow Rate",
  55234. power: 3,
  55235. type: "volume",
  55236. base: math.unit(25, "mL")
  55237. },
  55238. }
  55239. },
  55240. },
  55241. [
  55242. {
  55243. name: "Normal",
  55244. height: math.unit(1.6, "meters"),
  55245. default: true
  55246. },
  55247. ]
  55248. ))
  55249. characterMakers.push(() => makeCharacter(
  55250. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55251. {
  55252. front: {
  55253. height: math.unit(25, "feet"),
  55254. weight: math.unit(5, "tons"),
  55255. name: "Front",
  55256. image: {
  55257. source: "./media/characters/charlie-human/front.svg",
  55258. extra: 1870/1740,
  55259. bottom: 102/1972
  55260. },
  55261. extraAttributes: {
  55262. "dickLength": {
  55263. name: "Dick Length",
  55264. power: 1,
  55265. type: "length",
  55266. base: math.unit(9, "feet")
  55267. },
  55268. }
  55269. },
  55270. back: {
  55271. height: math.unit(25, "feet"),
  55272. weight: math.unit(5, "tons"),
  55273. name: "Back",
  55274. image: {
  55275. source: "./media/characters/charlie-human/back.svg",
  55276. extra: 1858/1733,
  55277. bottom: 105/1963
  55278. },
  55279. extraAttributes: {
  55280. "dickLength": {
  55281. name: "Dick Length",
  55282. power: 1,
  55283. type: "length",
  55284. base: math.unit(9, "feet")
  55285. },
  55286. }
  55287. },
  55288. },
  55289. [
  55290. {
  55291. name: "\"Normal\"",
  55292. height: math.unit(6 + 4/12, "feet")
  55293. },
  55294. {
  55295. name: "Big",
  55296. height: math.unit(25, "feet"),
  55297. default: true
  55298. },
  55299. ]
  55300. ))
  55301. characterMakers.push(() => makeCharacter(
  55302. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55303. {
  55304. front: {
  55305. height: math.unit(6 + 4/12, "feet"),
  55306. weight: math.unit(320, "lb"),
  55307. name: "Front",
  55308. image: {
  55309. source: "./media/characters/ookitsu/front.svg",
  55310. extra: 1160/976,
  55311. bottom: 38/1198
  55312. }
  55313. },
  55314. frontNsfw: {
  55315. height: math.unit(6 + 4/12, "feet"),
  55316. weight: math.unit(320, "lb"),
  55317. name: "Front (NSFW)",
  55318. image: {
  55319. source: "./media/characters/ookitsu/front-nsfw.svg",
  55320. extra: 1160/976,
  55321. bottom: 38/1198
  55322. }
  55323. },
  55324. back: {
  55325. height: math.unit(6 + 4/12, "feet"),
  55326. weight: math.unit(320, "lb"),
  55327. name: "Back",
  55328. image: {
  55329. source: "./media/characters/ookitsu/back.svg",
  55330. extra: 1030/975,
  55331. bottom: 70/1100
  55332. }
  55333. },
  55334. head: {
  55335. height: math.unit(1.79, "feet"),
  55336. name: "Head",
  55337. image: {
  55338. source: "./media/characters/ookitsu/head.svg"
  55339. }
  55340. },
  55341. hand: {
  55342. height: math.unit(0.92, "feet"),
  55343. name: "Hand",
  55344. image: {
  55345. source: "./media/characters/ookitsu/hand.svg"
  55346. }
  55347. },
  55348. tails: {
  55349. height: math.unit(3.3, "feet"),
  55350. name: "Tails",
  55351. image: {
  55352. source: "./media/characters/ookitsu/tails.svg"
  55353. }
  55354. },
  55355. dick: {
  55356. height: math.unit(1.10833, "feet"),
  55357. name: "Dick",
  55358. image: {
  55359. source: "./media/characters/ookitsu/dick.svg"
  55360. }
  55361. },
  55362. },
  55363. [
  55364. {
  55365. name: "Normal",
  55366. height: math.unit(6 + 4/12, "feet"),
  55367. default: true
  55368. },
  55369. {
  55370. name: "Macro",
  55371. height: math.unit(30, "feet")
  55372. },
  55373. ]
  55374. ))
  55375. characterMakers.push(() => makeCharacter(
  55376. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55377. {
  55378. anthroFront: {
  55379. height: math.unit(6, "feet"),
  55380. weight: math.unit(250, "lb"),
  55381. name: "Front",
  55382. image: {
  55383. source: "./media/characters/jhusky/anthro-front.svg",
  55384. extra: 474/439,
  55385. bottom: 7/481
  55386. },
  55387. form: "anthro",
  55388. default: true
  55389. },
  55390. taurSideSfw: {
  55391. height: math.unit(6 + 4/12, "feet"),
  55392. weight: math.unit(500, "lb"),
  55393. name: "Side (SFW)",
  55394. image: {
  55395. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55396. extra: 1741/1629,
  55397. bottom: 196/1937
  55398. },
  55399. form: "taur",
  55400. default: true
  55401. },
  55402. taurSideNsfw: {
  55403. height: math.unit(6 + 4/12, "feet"),
  55404. weight: math.unit(500, "lb"),
  55405. name: "Taur (NSFW)",
  55406. image: {
  55407. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55408. extra: 1741/1629,
  55409. bottom: 196/1937
  55410. },
  55411. form: "taur",
  55412. },
  55413. },
  55414. [
  55415. {
  55416. name: "Huge",
  55417. height: math.unit(500, "feet"),
  55418. form: "anthro"
  55419. },
  55420. {
  55421. name: "Macro",
  55422. height: math.unit(1000, "feet"),
  55423. default: true,
  55424. form: "anthro"
  55425. },
  55426. {
  55427. name: "Megamacro",
  55428. height: math.unit(10000, "feet"),
  55429. form: "anthro"
  55430. },
  55431. {
  55432. name: "Huge",
  55433. height: math.unit(528, "feet"),
  55434. form: "taur"
  55435. },
  55436. {
  55437. name: "Macro",
  55438. height: math.unit(1056, "feet"),
  55439. default: true,
  55440. form: "taur"
  55441. },
  55442. {
  55443. name: "Megamacro",
  55444. height: math.unit(10556, "feet"),
  55445. form: "taur"
  55446. },
  55447. ],
  55448. {
  55449. "anthro": {
  55450. name: "Anthro",
  55451. default: true
  55452. },
  55453. "taur": {
  55454. name: "Taur",
  55455. },
  55456. }
  55457. ))
  55458. characterMakers.push(() => makeCharacter(
  55459. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55460. {
  55461. front: {
  55462. height: math.unit(8, "feet"),
  55463. weight: math.unit(500, "lb"),
  55464. name: "Front",
  55465. image: {
  55466. source: "./media/characters/armail/front.svg",
  55467. extra: 1753/1669,
  55468. bottom: 155/1908
  55469. }
  55470. },
  55471. back: {
  55472. height: math.unit(8, "feet"),
  55473. weight: math.unit(500, "lb"),
  55474. name: "Back",
  55475. image: {
  55476. source: "./media/characters/armail/back.svg",
  55477. extra: 1872/1803,
  55478. bottom: 63/1935
  55479. }
  55480. },
  55481. },
  55482. [
  55483. {
  55484. name: "Micro",
  55485. height: math.unit(0.25, "feet")
  55486. },
  55487. {
  55488. name: "Normal",
  55489. height: math.unit(8, "feet"),
  55490. default: true
  55491. },
  55492. {
  55493. name: "Mini-macro",
  55494. height: math.unit(30, "feet")
  55495. },
  55496. {
  55497. name: "Macro",
  55498. height: math.unit(400, "feet")
  55499. },
  55500. {
  55501. name: "Mega-macro",
  55502. height: math.unit(6000, "feet")
  55503. },
  55504. ]
  55505. ))
  55506. characterMakers.push(() => makeCharacter(
  55507. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55508. {
  55509. front: {
  55510. height: math.unit(6 + 7/12, "feet"),
  55511. weight: math.unit(210, "lb"),
  55512. name: "Front",
  55513. image: {
  55514. source: "./media/characters/wilfred-t-buxton/front.svg",
  55515. extra: 1068/882,
  55516. bottom: 28/1096
  55517. }
  55518. },
  55519. },
  55520. [
  55521. {
  55522. name: "Normal",
  55523. height: math.unit(6 + 7/12, "feet"),
  55524. default: true
  55525. },
  55526. ]
  55527. ))
  55528. characterMakers.push(() => makeCharacter(
  55529. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55530. {
  55531. front: {
  55532. height: math.unit(5 + 2/12, "feet"),
  55533. weight: math.unit(120, "lb"),
  55534. name: "Front",
  55535. image: {
  55536. source: "./media/characters/leighton-marrow/front.svg",
  55537. extra: 441/409,
  55538. bottom: 37/478
  55539. }
  55540. },
  55541. },
  55542. [
  55543. {
  55544. name: "Normal",
  55545. height: math.unit(5 + 2/12, "feet"),
  55546. default: true
  55547. },
  55548. ]
  55549. ))
  55550. characterMakers.push(() => makeCharacter(
  55551. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55552. {
  55553. front: {
  55554. height: math.unit(4, "meters"),
  55555. weight: math.unit(1200, "kg"),
  55556. name: "Front",
  55557. image: {
  55558. source: "./media/characters/licos/front.svg",
  55559. extra: 1727/1604,
  55560. bottom: 101/1828
  55561. },
  55562. form: "anthro",
  55563. default: true
  55564. },
  55565. taur_side: {
  55566. height: math.unit(20, "meters"),
  55567. weight: math.unit(1100000, "kg"),
  55568. name: "Side",
  55569. image: {
  55570. source: "./media/characters/licos/taur.svg",
  55571. extra: 1158/1091,
  55572. bottom: 80/1238
  55573. },
  55574. form: "taur",
  55575. default: true
  55576. },
  55577. },
  55578. [
  55579. {
  55580. name: "Normal",
  55581. height: math.unit(4, "meters"),
  55582. default: true,
  55583. form: "anthro"
  55584. },
  55585. {
  55586. name: "Normal",
  55587. height: math.unit(20, "meters"),
  55588. default: true,
  55589. form: "taur"
  55590. },
  55591. ],
  55592. {
  55593. "anthro": {
  55594. name: "Anthro",
  55595. default: true
  55596. },
  55597. "taur": {
  55598. name: "Taur",
  55599. },
  55600. }
  55601. ))
  55602. characterMakers.push(() => makeCharacter(
  55603. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55604. {
  55605. front: {
  55606. height: math.unit(10 + 3/12, "feet"),
  55607. name: "Front",
  55608. image: {
  55609. source: "./media/characters/theo-monkey/front.svg",
  55610. extra: 1735/1658,
  55611. bottom: 73/1808
  55612. }
  55613. },
  55614. back: {
  55615. height: math.unit(10 + 3/12, "feet"),
  55616. name: "Back",
  55617. image: {
  55618. source: "./media/characters/theo-monkey/back.svg",
  55619. extra: 1742/1664,
  55620. bottom: 33/1775
  55621. }
  55622. },
  55623. head: {
  55624. height: math.unit(2.29, "feet"),
  55625. name: "Head",
  55626. image: {
  55627. source: "./media/characters/theo-monkey/head.svg"
  55628. }
  55629. },
  55630. handPalm: {
  55631. height: math.unit(1.73, "feet"),
  55632. name: "Hand (Palm)",
  55633. image: {
  55634. source: "./media/characters/theo-monkey/hand-palm.svg"
  55635. }
  55636. },
  55637. handBack: {
  55638. height: math.unit(1.63, "feet"),
  55639. name: "Hand (Back)",
  55640. image: {
  55641. source: "./media/characters/theo-monkey/hand-back.svg"
  55642. }
  55643. },
  55644. footSole: {
  55645. height: math.unit(2.15, "feet"),
  55646. name: "Foot (Sole)",
  55647. image: {
  55648. source: "./media/characters/theo-monkey/foot-sole.svg"
  55649. }
  55650. },
  55651. footSide: {
  55652. height: math.unit(1.6, "feet"),
  55653. name: "Foot (Side)",
  55654. image: {
  55655. source: "./media/characters/theo-monkey/foot-side.svg"
  55656. }
  55657. },
  55658. },
  55659. [
  55660. {
  55661. name: "Normal",
  55662. height: math.unit(10 + 3/12, "feet"),
  55663. default: true
  55664. },
  55665. ]
  55666. ))
  55667. characterMakers.push(() => makeCharacter(
  55668. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55669. {
  55670. front: {
  55671. height: math.unit(11, "feet"),
  55672. weight: math.unit(3000, "lb"),
  55673. preyCapacity: math.unit(10, "people"),
  55674. name: "Front",
  55675. image: {
  55676. source: "./media/characters/brook/front.svg",
  55677. extra: 909/835,
  55678. bottom: 108/1017
  55679. }
  55680. },
  55681. back: {
  55682. height: math.unit(11, "feet"),
  55683. weight: math.unit(3000, "lb"),
  55684. preyCapacity: math.unit(10, "people"),
  55685. name: "Back",
  55686. image: {
  55687. source: "./media/characters/brook/back.svg",
  55688. extra: 976/916,
  55689. bottom: 34/1010
  55690. }
  55691. },
  55692. backAlt: {
  55693. height: math.unit(11, "feet"),
  55694. weight: math.unit(3000, "lb"),
  55695. preyCapacity: math.unit(10, "people"),
  55696. name: "Back (Alt)",
  55697. image: {
  55698. source: "./media/characters/brook/back-alt.svg",
  55699. extra: 1283/1213,
  55700. bottom: 35/1318
  55701. }
  55702. },
  55703. bust: {
  55704. height: math.unit(9.0859030837, "feet"),
  55705. weight: math.unit(3000, "lb"),
  55706. preyCapacity: math.unit(10, "people"),
  55707. name: "Bust",
  55708. image: {
  55709. source: "./media/characters/brook/bust.svg",
  55710. extra: 2043/1923,
  55711. bottom: 0/2043
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Small",
  55718. height: math.unit(11, "feet"),
  55719. default: true
  55720. },
  55721. {
  55722. name: "Towering",
  55723. height: math.unit(5, "km")
  55724. },
  55725. {
  55726. name: "Enormous",
  55727. height: math.unit(25, "earths")
  55728. },
  55729. ]
  55730. ))
  55731. characterMakers.push(() => makeCharacter(
  55732. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55733. {
  55734. front: {
  55735. height: math.unit(4, "feet"),
  55736. weight: math.unit(150, "lb"),
  55737. name: "Front",
  55738. image: {
  55739. source: "./media/characters/squishi/front.svg",
  55740. extra: 1428/1271,
  55741. bottom: 30/1458
  55742. },
  55743. extraAttributes: {
  55744. "pawSize": {
  55745. name: "Paw Size",
  55746. power: 1,
  55747. type: "length",
  55748. base: math.unit(14, "ShoeSizeMensUS"),
  55749. defaultUnit: "ShoeSizeMensUS"
  55750. },
  55751. }
  55752. },
  55753. side: {
  55754. height: math.unit(4, "feet"),
  55755. weight: math.unit(150, "lb"),
  55756. name: "Side",
  55757. image: {
  55758. source: "./media/characters/squishi/side.svg",
  55759. extra: 1428/1271,
  55760. bottom: 30/1458
  55761. },
  55762. extraAttributes: {
  55763. "pawSize": {
  55764. name: "Paw Size",
  55765. power: 1,
  55766. type: "length",
  55767. base: math.unit(14, "ShoeSizeMensUS"),
  55768. defaultUnit: "ShoeSizeMensUS"
  55769. },
  55770. }
  55771. },
  55772. back: {
  55773. height: math.unit(4, "feet"),
  55774. weight: math.unit(150, "lb"),
  55775. name: "Back",
  55776. image: {
  55777. source: "./media/characters/squishi/back.svg",
  55778. extra: 1428/1271,
  55779. bottom: 30/1458
  55780. },
  55781. extraAttributes: {
  55782. "pawSize": {
  55783. name: "Paw Size",
  55784. power: 1,
  55785. type: "length",
  55786. base: math.unit(14, "ShoeSizeMensUS"),
  55787. defaultUnit: "ShoeSizeMensUS"
  55788. },
  55789. }
  55790. },
  55791. },
  55792. [
  55793. {
  55794. name: "Normal",
  55795. height: math.unit(4, "feet"),
  55796. default: true
  55797. },
  55798. ]
  55799. ))
  55800. characterMakers.push(() => makeCharacter(
  55801. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55802. {
  55803. front: {
  55804. height: math.unit(7 + 8/12, "feet"),
  55805. weight: math.unit(333, "lb"),
  55806. name: "Front",
  55807. image: {
  55808. source: "./media/characters/vincent-vasroc/front.svg",
  55809. extra: 1962/1860,
  55810. bottom: 41/2003
  55811. }
  55812. },
  55813. back: {
  55814. height: math.unit(7 + 8/12, "feet"),
  55815. weight: math.unit(333, "lb"),
  55816. name: "Back",
  55817. image: {
  55818. source: "./media/characters/vincent-vasroc/back.svg",
  55819. extra: 1952/1815,
  55820. bottom: 33/1985
  55821. }
  55822. },
  55823. paw: {
  55824. height: math.unit(1.24, "feet"),
  55825. name: "Paw",
  55826. image: {
  55827. source: "./media/characters/vincent-vasroc/paw.svg"
  55828. }
  55829. },
  55830. ear: {
  55831. height: math.unit(0.75, "feet"),
  55832. name: "Ear",
  55833. image: {
  55834. source: "./media/characters/vincent-vasroc/ear.svg"
  55835. }
  55836. },
  55837. },
  55838. [
  55839. {
  55840. name: "Nano",
  55841. height: math.unit(92, "micrometers")
  55842. },
  55843. {
  55844. name: "Normal",
  55845. height: math.unit(7 + 8/12, "feet"),
  55846. default: true
  55847. },
  55848. ]
  55849. ))
  55850. characterMakers.push(() => makeCharacter(
  55851. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55852. {
  55853. frontNsfw: {
  55854. height: math.unit(40, "feet"),
  55855. weight: math.unit(58, "tons"),
  55856. name: "Front (NSFW)",
  55857. image: {
  55858. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55859. extra: 1265/965,
  55860. bottom: 155/1420
  55861. }
  55862. },
  55863. frontSfw: {
  55864. height: math.unit(40, "feet"),
  55865. weight: math.unit(58, "tons"),
  55866. name: "Front (SFW)",
  55867. image: {
  55868. source: "./media/characters/ru-kahn/front-sfw.svg",
  55869. extra: 1265/965,
  55870. bottom: 80/1345
  55871. }
  55872. },
  55873. },
  55874. [
  55875. {
  55876. name: "Small",
  55877. height: math.unit(4, "feet")
  55878. },
  55879. {
  55880. name: "Normal",
  55881. height: math.unit(40, "feet"),
  55882. default: true
  55883. },
  55884. {
  55885. name: "Macro",
  55886. height: math.unit(400, "feet")
  55887. },
  55888. ]
  55889. ))
  55890. characterMakers.push(() => makeCharacter(
  55891. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55892. {
  55893. frontNude: {
  55894. height: math.unit(6 + 5/12, "feet"),
  55895. name: "Front (Nude)",
  55896. image: {
  55897. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55898. extra: 1369/1366,
  55899. bottom: 68/1437
  55900. }
  55901. },
  55902. frontDressed: {
  55903. height: math.unit(6 + 5/12, "feet"),
  55904. name: "Front (Dressed)",
  55905. image: {
  55906. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55907. extra: 1369/1366,
  55908. bottom: 68/1437
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Normal",
  55915. height: math.unit(6 + 5/12, "feet"),
  55916. default: true
  55917. },
  55918. {
  55919. name: "Maximum",
  55920. height: math.unit(1930, "feet")
  55921. },
  55922. ]
  55923. ))
  55924. characterMakers.push(() => makeCharacter(
  55925. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55926. {
  55927. front: {
  55928. height: math.unit(5 + 6/12, "feet"),
  55929. name: "Front",
  55930. image: {
  55931. source: "./media/characters/kaja/front.svg",
  55932. extra: 1874/1514,
  55933. bottom: 117/1991
  55934. }
  55935. },
  55936. },
  55937. [
  55938. {
  55939. name: "Normal",
  55940. height: math.unit(5 + 6/12, "feet"),
  55941. default: true
  55942. },
  55943. ]
  55944. ))
  55945. characterMakers.push(() => makeCharacter(
  55946. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55947. {
  55948. front: {
  55949. height: math.unit(5 + 9/12, "feet"),
  55950. weight: math.unit(200, "lb"),
  55951. name: "Front",
  55952. image: {
  55953. source: "./media/characters/mark-smith/front.svg",
  55954. extra: 1004/943,
  55955. bottom: 58/1062
  55956. }
  55957. },
  55958. back: {
  55959. height: math.unit(5 + 9/12, "feet"),
  55960. weight: math.unit(200, "lb"),
  55961. name: "Back",
  55962. image: {
  55963. source: "./media/characters/mark-smith/back.svg",
  55964. extra: 1023/953,
  55965. bottom: 24/1047
  55966. }
  55967. },
  55968. head: {
  55969. height: math.unit(1.82, "feet"),
  55970. name: "Head",
  55971. image: {
  55972. source: "./media/characters/mark-smith/head.svg"
  55973. }
  55974. },
  55975. hand: {
  55976. height: math.unit(1.4, "feet"),
  55977. name: "Hand",
  55978. image: {
  55979. source: "./media/characters/mark-smith/hand.svg"
  55980. }
  55981. },
  55982. paw: {
  55983. height: math.unit(1.69, "feet"),
  55984. name: "Paw",
  55985. image: {
  55986. source: "./media/characters/mark-smith/paw.svg"
  55987. }
  55988. },
  55989. },
  55990. [
  55991. {
  55992. name: "Micro",
  55993. height: math.unit(0.25, "inches")
  55994. },
  55995. {
  55996. name: "Normal",
  55997. height: math.unit(5 + 9/12, "feet"),
  55998. default: true
  55999. },
  56000. {
  56001. name: "Macro",
  56002. height: math.unit(500, "feet")
  56003. },
  56004. ]
  56005. ))
  56006. characterMakers.push(() => makeCharacter(
  56007. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56008. {
  56009. frontNude: {
  56010. height: math.unit(6, "feet"),
  56011. name: "Front (Nude)",
  56012. image: {
  56013. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56014. extra: 1384/1321,
  56015. bottom: 57/1441
  56016. }
  56017. },
  56018. frontDressed: {
  56019. height: math.unit(6, "feet"),
  56020. name: "Front (Dressed)",
  56021. image: {
  56022. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56023. extra: 1384/1321,
  56024. bottom: 57/1441
  56025. }
  56026. },
  56027. },
  56028. [
  56029. {
  56030. name: "Normal",
  56031. height: math.unit(6, "feet"),
  56032. default: true
  56033. },
  56034. {
  56035. name: "Maximum",
  56036. height: math.unit(1776, "feet")
  56037. },
  56038. ]
  56039. ))
  56040. characterMakers.push(() => makeCharacter(
  56041. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56042. {
  56043. front: {
  56044. height: math.unit(2 + 4/12, "feet"),
  56045. weight: math.unit(350, "lb"),
  56046. name: "Front",
  56047. image: {
  56048. source: "./media/characters/devos/front.svg",
  56049. extra: 958/852,
  56050. bottom: 143/1101
  56051. }
  56052. },
  56053. },
  56054. [
  56055. {
  56056. name: "Base",
  56057. height: math.unit(2 + 4/12, "feet"),
  56058. default: true
  56059. },
  56060. ]
  56061. ))
  56062. characterMakers.push(() => makeCharacter(
  56063. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56064. {
  56065. front: {
  56066. height: math.unit(9 + 2/12, "feet"),
  56067. name: "Front",
  56068. image: {
  56069. source: "./media/characters/hiveheart/front.svg",
  56070. extra: 394/364,
  56071. bottom: 65/459
  56072. }
  56073. },
  56074. back: {
  56075. height: math.unit(9 + 2/12, "feet"),
  56076. name: "Back",
  56077. image: {
  56078. source: "./media/characters/hiveheart/back.svg",
  56079. extra: 374/357,
  56080. bottom: 63/437
  56081. }
  56082. },
  56083. },
  56084. [
  56085. {
  56086. name: "Base",
  56087. height: math.unit(9 + 2/12, "feet"),
  56088. default: true
  56089. },
  56090. ]
  56091. ))
  56092. characterMakers.push(() => makeCharacter(
  56093. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56094. {
  56095. front: {
  56096. height: math.unit(2.5, "inches"),
  56097. weight: math.unit(0.6, "oz"),
  56098. name: "Front",
  56099. image: {
  56100. source: "./media/characters/bryn/front.svg",
  56101. extra: 1480/1205,
  56102. bottom: 27/1507
  56103. }
  56104. },
  56105. back: {
  56106. height: math.unit(2.5, "inches"),
  56107. weight: math.unit(0.6, "oz"),
  56108. name: "Back",
  56109. image: {
  56110. source: "./media/characters/bryn/back.svg",
  56111. extra: 1475/1201,
  56112. bottom: 39/1514
  56113. }
  56114. },
  56115. foot: {
  56116. height: math.unit(0.4, "inches"),
  56117. name: "Foot",
  56118. image: {
  56119. source: "./media/characters/bryn/foot.svg"
  56120. }
  56121. },
  56122. },
  56123. [
  56124. {
  56125. name: "Normal",
  56126. height: math.unit(2.5, "inches"),
  56127. default: true
  56128. },
  56129. ]
  56130. ))
  56131. characterMakers.push(() => makeCharacter(
  56132. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56133. {
  56134. side: {
  56135. height: math.unit(7, "feet"),
  56136. weight: math.unit(657, "kg"),
  56137. name: "Side",
  56138. image: {
  56139. source: "./media/characters/delta/side.svg",
  56140. extra: 781/212,
  56141. bottom: 7/788
  56142. },
  56143. extraAttributes: {
  56144. "wingspan": {
  56145. name: "Wingspan",
  56146. power: 1,
  56147. type: "length",
  56148. base: math.unit(48, "feet")
  56149. },
  56150. "length": {
  56151. name: "Length",
  56152. power: 1,
  56153. type: "length",
  56154. base: math.unit(21, "feet")
  56155. },
  56156. "pawSize": {
  56157. name: "Paw Size",
  56158. power: 2,
  56159. type: "area",
  56160. base: math.unit(1.5*1.4, "feet^2")
  56161. },
  56162. }
  56163. },
  56164. },
  56165. [
  56166. {
  56167. name: "Normal",
  56168. height: math.unit(6, "feet"),
  56169. default: true
  56170. },
  56171. ]
  56172. ))
  56173. characterMakers.push(() => makeCharacter(
  56174. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56175. {
  56176. front: {
  56177. height: math.unit(6, "feet"),
  56178. name: "Front",
  56179. image: {
  56180. source: "./media/characters/pyrow/front.svg",
  56181. extra: 513/486,
  56182. bottom: 14/527
  56183. }
  56184. },
  56185. frontWing: {
  56186. height: math.unit(6, "feet"),
  56187. name: "Front (Wing)",
  56188. image: {
  56189. source: "./media/characters/pyrow/front-wing.svg",
  56190. extra: 539/383,
  56191. bottom: 20/559
  56192. }
  56193. },
  56194. back: {
  56195. height: math.unit(6, "feet"),
  56196. name: "Back",
  56197. image: {
  56198. source: "./media/characters/pyrow/back.svg",
  56199. extra: 500/473,
  56200. bottom: 9/509
  56201. }
  56202. },
  56203. },
  56204. [
  56205. {
  56206. name: "Normal",
  56207. height: math.unit(6, "feet"),
  56208. default: true
  56209. },
  56210. ]
  56211. ))
  56212. characterMakers.push(() => makeCharacter(
  56213. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56214. {
  56215. front: {
  56216. height: math.unit(5, "meters"),
  56217. weight: math.unit(3, "tonnes"),
  56218. name: "Front",
  56219. image: {
  56220. source: "./media/characters/velikan/front.svg",
  56221. extra: 867/744,
  56222. bottom: 71/938
  56223. },
  56224. extraAttributes: {
  56225. "shoeSize": {
  56226. name: "Shoe Size",
  56227. power: 1,
  56228. type: "length",
  56229. base: math.unit(135, "ShoeSizeUK"),
  56230. defaultUnit: "ShoeSizeUK"
  56231. },
  56232. }
  56233. },
  56234. },
  56235. [
  56236. {
  56237. name: "Normal",
  56238. height: math.unit(5, "meters"),
  56239. default: true
  56240. },
  56241. {
  56242. name: "Macro",
  56243. height: math.unit(1, "km")
  56244. },
  56245. {
  56246. name: "Mega Macro",
  56247. height: math.unit(100, "km")
  56248. },
  56249. {
  56250. name: "Giga Macro",
  56251. height: math.unit(2, "megameters")
  56252. },
  56253. {
  56254. name: "Planetary",
  56255. height: math.unit(22, "megameters")
  56256. },
  56257. {
  56258. name: "Solar",
  56259. height: math.unit(8, "gigameters")
  56260. },
  56261. {
  56262. name: "Cosmic",
  56263. height: math.unit(10, "zettameters")
  56264. },
  56265. {
  56266. name: "Omni",
  56267. height: math.unit(9e260, "multiverses")
  56268. },
  56269. ]
  56270. ))
  56271. characterMakers.push(() => makeCharacter(
  56272. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56273. {
  56274. front: {
  56275. height: math.unit(4 + 3/12, "feet"),
  56276. weight: math.unit(90, "lb"),
  56277. name: "Front",
  56278. image: {
  56279. source: "./media/characters/sabiki/front.svg",
  56280. extra: 1662/1423,
  56281. bottom: 65/1727
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Normal",
  56288. height: math.unit(4 + 3/12, "feet"),
  56289. default: true
  56290. },
  56291. ]
  56292. ))
  56293. characterMakers.push(() => makeCharacter(
  56294. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56295. {
  56296. frontSfw: {
  56297. height: math.unit(2, "mm"),
  56298. name: "Front (SFW)",
  56299. image: {
  56300. source: "./media/characters/carmel/front-sfw.svg",
  56301. extra: 1131/1006,
  56302. bottom: 66/1197
  56303. }
  56304. },
  56305. frontNsfw: {
  56306. height: math.unit(2, "mm"),
  56307. name: "Front (NSFW)",
  56308. image: {
  56309. source: "./media/characters/carmel/front-nsfw.svg",
  56310. extra: 1131/1006,
  56311. bottom: 66/1197
  56312. }
  56313. },
  56314. foot: {
  56315. height: math.unit(0.3, "mm"),
  56316. name: "Foot",
  56317. image: {
  56318. source: "./media/characters/carmel/foot.svg"
  56319. }
  56320. },
  56321. tongue: {
  56322. height: math.unit(0.71, "mm"),
  56323. name: "Tongue",
  56324. image: {
  56325. source: "./media/characters/carmel/tongue.svg"
  56326. }
  56327. },
  56328. dick: {
  56329. height: math.unit(0.085, "mm"),
  56330. name: "Dick",
  56331. image: {
  56332. source: "./media/characters/carmel/dick.svg"
  56333. }
  56334. },
  56335. },
  56336. [
  56337. {
  56338. name: "Micro",
  56339. height: math.unit(2, "mm"),
  56340. default: true
  56341. },
  56342. {
  56343. name: "Normal",
  56344. height: math.unit(4 + 8/12, "feet")
  56345. },
  56346. {
  56347. name: "Mega Macro",
  56348. height: math.unit(250, "feet")
  56349. },
  56350. {
  56351. name: "BIGGER",
  56352. height: math.unit(1000, "feet")
  56353. },
  56354. {
  56355. name: "BIGGEST",
  56356. height: math.unit(2, "miles")
  56357. },
  56358. ]
  56359. ))
  56360. characterMakers.push(() => makeCharacter(
  56361. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56362. {
  56363. front: {
  56364. height: math.unit(6.5, "feet"),
  56365. weight: math.unit(198, "lb"),
  56366. name: "Front",
  56367. image: {
  56368. source: "./media/characters/tamani/anthro.svg",
  56369. extra: 930/890,
  56370. bottom: 34/964
  56371. },
  56372. form: "anthro",
  56373. default: true
  56374. },
  56375. side: {
  56376. height: math.unit(6, "feet"),
  56377. weight: math.unit(198*2, "lb"),
  56378. name: "Side",
  56379. image: {
  56380. source: "./media/characters/tamani/feral.svg",
  56381. extra: 559/519,
  56382. bottom: 43/602
  56383. },
  56384. form: "feral"
  56385. },
  56386. },
  56387. [
  56388. {
  56389. name: "Normal",
  56390. height: math.unit(6.5, "feet"),
  56391. default: true,
  56392. form: "anthro"
  56393. },
  56394. {
  56395. name: "Normal",
  56396. height: math.unit(6, "feet"),
  56397. default: true,
  56398. form: "feral"
  56399. },
  56400. ],
  56401. {
  56402. "anthro": {
  56403. name: "Anthro",
  56404. default: true
  56405. },
  56406. "feral": {
  56407. name: "Feral",
  56408. },
  56409. }
  56410. ))
  56411. characterMakers.push(() => makeCharacter(
  56412. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56413. {
  56414. front: {
  56415. height: math.unit(4 + 1/12, "feet"),
  56416. weight: math.unit(114, "lb"),
  56417. name: "Front",
  56418. image: {
  56419. source: "./media/characters/dex/front.svg",
  56420. extra: 787/680,
  56421. bottom: 18/805
  56422. }
  56423. },
  56424. side: {
  56425. height: math.unit(4 + 1/12, "feet"),
  56426. weight: math.unit(114, "lb"),
  56427. name: "Side",
  56428. image: {
  56429. source: "./media/characters/dex/side.svg",
  56430. extra: 785/680,
  56431. bottom: 12/797
  56432. }
  56433. },
  56434. back: {
  56435. height: math.unit(4 + 1/12, "feet"),
  56436. weight: math.unit(114, "lb"),
  56437. name: "Back",
  56438. image: {
  56439. source: "./media/characters/dex/back.svg",
  56440. extra: 785/681,
  56441. bottom: 17/802
  56442. }
  56443. },
  56444. loungewear: {
  56445. height: math.unit(4 + 1/12, "feet"),
  56446. weight: math.unit(114, "lb"),
  56447. name: "Loungewear",
  56448. image: {
  56449. source: "./media/characters/dex/loungewear.svg",
  56450. extra: 787/680,
  56451. bottom: 18/805
  56452. }
  56453. },
  56454. workout: {
  56455. height: math.unit(4 + 1/12, "feet"),
  56456. weight: math.unit(114, "lb"),
  56457. name: "Workout",
  56458. image: {
  56459. source: "./media/characters/dex/workout.svg",
  56460. extra: 787/680,
  56461. bottom: 18/805
  56462. }
  56463. },
  56464. schoolUniform: {
  56465. height: math.unit(4 + 1/12, "feet"),
  56466. weight: math.unit(114, "lb"),
  56467. name: "School-uniform",
  56468. image: {
  56469. source: "./media/characters/dex/school-uniform.svg",
  56470. extra: 787/680,
  56471. bottom: 18/805
  56472. }
  56473. },
  56474. maw: {
  56475. height: math.unit(0.55, "feet"),
  56476. name: "Maw",
  56477. image: {
  56478. source: "./media/characters/dex/maw.svg"
  56479. }
  56480. },
  56481. paw: {
  56482. height: math.unit(0.87, "feet"),
  56483. name: "Paw",
  56484. image: {
  56485. source: "./media/characters/dex/paw.svg"
  56486. }
  56487. },
  56488. bust: {
  56489. height: math.unit(1.67, "feet"),
  56490. name: "Bust",
  56491. image: {
  56492. source: "./media/characters/dex/bust.svg"
  56493. }
  56494. },
  56495. },
  56496. [
  56497. {
  56498. name: "Normal",
  56499. height: math.unit(4 + 1/12, "feet"),
  56500. default: true
  56501. },
  56502. ]
  56503. ))
  56504. characterMakers.push(() => makeCharacter(
  56505. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56506. {
  56507. front: {
  56508. height: math.unit(4 + 3/12, "feet"),
  56509. weight: math.unit(60, "lb"),
  56510. name: "Front",
  56511. image: {
  56512. source: "./media/characters/silke/front.svg",
  56513. extra: 1334/1122,
  56514. bottom: 21/1355
  56515. }
  56516. },
  56517. back: {
  56518. height: math.unit(4 + 3/12, "feet"),
  56519. weight: math.unit(60, "lb"),
  56520. name: "Back",
  56521. image: {
  56522. source: "./media/characters/silke/back.svg",
  56523. extra: 1328/1092,
  56524. bottom: 16/1344
  56525. }
  56526. },
  56527. dressed: {
  56528. height: math.unit(4 + 3/12, "feet"),
  56529. weight: math.unit(60, "lb"),
  56530. name: "Dressed",
  56531. image: {
  56532. source: "./media/characters/silke/dressed.svg",
  56533. extra: 1334/1122,
  56534. bottom: 43/1377
  56535. }
  56536. },
  56537. },
  56538. [
  56539. {
  56540. name: "Normal",
  56541. height: math.unit(4 + 3/12, "feet"),
  56542. default: true
  56543. },
  56544. ]
  56545. ))
  56546. characterMakers.push(() => makeCharacter(
  56547. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56548. {
  56549. front: {
  56550. height: math.unit(1.58, "meters"),
  56551. weight: math.unit(47, "kg"),
  56552. name: "Front",
  56553. image: {
  56554. source: "./media/characters/wireshark/front.svg",
  56555. extra: 883/838,
  56556. bottom: 66/949
  56557. }
  56558. },
  56559. },
  56560. [
  56561. {
  56562. name: "Normal",
  56563. height: math.unit(1.58, "meters"),
  56564. default: true
  56565. },
  56566. ]
  56567. ))
  56568. characterMakers.push(() => makeCharacter(
  56569. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56570. {
  56571. front: {
  56572. height: math.unit(6, "meters"),
  56573. weight: math.unit(15000, "kg"),
  56574. name: "Front",
  56575. image: {
  56576. source: "./media/characters/gallagher/front.svg",
  56577. extra: 532/493,
  56578. bottom: 0/532
  56579. }
  56580. },
  56581. },
  56582. [
  56583. {
  56584. name: "Normal",
  56585. height: math.unit(6, "meters"),
  56586. default: true
  56587. },
  56588. ]
  56589. ))
  56590. characterMakers.push(() => makeCharacter(
  56591. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56592. {
  56593. front: {
  56594. height: math.unit(2.4, "meters"),
  56595. weight: math.unit(270, "kg"),
  56596. name: "Front",
  56597. image: {
  56598. source: "./media/characters/alice/front.svg",
  56599. extra: 950/900,
  56600. bottom: 36/986
  56601. }
  56602. },
  56603. side: {
  56604. height: math.unit(2.4, "meters"),
  56605. weight: math.unit(270, "kg"),
  56606. name: "Side",
  56607. image: {
  56608. source: "./media/characters/alice/side.svg",
  56609. extra: 921/876,
  56610. bottom: 19/940
  56611. }
  56612. },
  56613. dressed: {
  56614. height: math.unit(2.4, "meters"),
  56615. weight: math.unit(270, "kg"),
  56616. name: "Dressed",
  56617. image: {
  56618. source: "./media/characters/alice/dressed.svg",
  56619. extra: 905/850,
  56620. bottom: 81/986
  56621. }
  56622. },
  56623. fishnet: {
  56624. height: math.unit(2.4, "meters"),
  56625. weight: math.unit(270, "kg"),
  56626. name: "Fishnet",
  56627. image: {
  56628. source: "./media/characters/alice/fishnet.svg",
  56629. extra: 905/850,
  56630. bottom: 81/986
  56631. }
  56632. },
  56633. },
  56634. [
  56635. {
  56636. name: "Normal",
  56637. height: math.unit(2.4, "meters"),
  56638. default: true
  56639. },
  56640. ]
  56641. ))
  56642. characterMakers.push(() => makeCharacter(
  56643. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56644. {
  56645. front: {
  56646. height: math.unit(175.25, "feet"),
  56647. name: "Front",
  56648. image: {
  56649. source: "./media/characters/fio/front.svg",
  56650. extra: 1883/1591,
  56651. bottom: 34/1917
  56652. }
  56653. },
  56654. },
  56655. [
  56656. {
  56657. name: "Normal",
  56658. height: math.unit(175.25, "cm"),
  56659. default: true
  56660. },
  56661. ]
  56662. ))
  56663. characterMakers.push(() => makeCharacter(
  56664. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56665. {
  56666. side: {
  56667. height: math.unit(6, "meters"),
  56668. weight: math.unit(3400, "kg"),
  56669. preyCapacity: math.unit(1700, "liters"),
  56670. name: "Side",
  56671. image: {
  56672. source: "./media/characters/hass/side.svg",
  56673. extra: 1058/997,
  56674. bottom: 177/1235
  56675. }
  56676. },
  56677. feeding: {
  56678. height: math.unit(6*0.63, "meters"),
  56679. weight: math.unit(3400, "kg"),
  56680. preyCapacity: math.unit(1700, "liters"),
  56681. name: "Feeding",
  56682. image: {
  56683. source: "./media/characters/hass/feeding.svg",
  56684. extra: 689/579,
  56685. bottom: 146/835
  56686. }
  56687. },
  56688. guts: {
  56689. height: math.unit(6, "meters"),
  56690. weight: math.unit(3400, "kg"),
  56691. name: "Guts",
  56692. image: {
  56693. source: "./media/characters/hass/guts.svg",
  56694. extra: 1223/1198,
  56695. bottom: 182/1405
  56696. }
  56697. },
  56698. dickFront: {
  56699. height: math.unit(1.4, "meters"),
  56700. name: "Dick (Front)",
  56701. image: {
  56702. source: "./media/characters/hass/dick-front.svg"
  56703. }
  56704. },
  56705. dickSide: {
  56706. height: math.unit(1.3, "meters"),
  56707. name: "Dick (Side)",
  56708. image: {
  56709. source: "./media/characters/hass/dick-side.svg"
  56710. }
  56711. },
  56712. dickBack: {
  56713. height: math.unit(1.4, "meters"),
  56714. name: "Dick (Back)",
  56715. image: {
  56716. source: "./media/characters/hass/dick-back.svg"
  56717. }
  56718. },
  56719. },
  56720. [
  56721. {
  56722. name: "Normal",
  56723. height: math.unit(6, "meters"),
  56724. default: true
  56725. },
  56726. ]
  56727. ))
  56728. characterMakers.push(() => makeCharacter(
  56729. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56730. {
  56731. front: {
  56732. height: math.unit(4, "feet"),
  56733. weight: math.unit(60, "lb"),
  56734. name: "Front",
  56735. image: {
  56736. source: "./media/characters/hickory-finnegan/front.svg",
  56737. extra: 444/411,
  56738. bottom: 10/454
  56739. }
  56740. },
  56741. side: {
  56742. height: math.unit(4, "feet"),
  56743. weight: math.unit(60, "lb"),
  56744. name: "Side",
  56745. image: {
  56746. source: "./media/characters/hickory-finnegan/side.svg",
  56747. extra: 444/411,
  56748. bottom: 10/454
  56749. }
  56750. },
  56751. back: {
  56752. height: math.unit(4, "feet"),
  56753. weight: math.unit(60, "lb"),
  56754. name: "Back",
  56755. image: {
  56756. source: "./media/characters/hickory-finnegan/back.svg",
  56757. extra: 444/411,
  56758. bottom: 10/454
  56759. }
  56760. },
  56761. },
  56762. [
  56763. {
  56764. name: "Normal",
  56765. height: math.unit(4, "feet"),
  56766. default: true
  56767. },
  56768. ]
  56769. ))
  56770. characterMakers.push(() => makeCharacter(
  56771. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56772. {
  56773. snivy_front: {
  56774. height: math.unit(2, "feet"),
  56775. weight: math.unit(17.9, "lb"),
  56776. name: "Front",
  56777. image: {
  56778. source: "./media/characters/robin-phox/snivy-front.svg",
  56779. extra: 569/504,
  56780. bottom: 33/602
  56781. },
  56782. form: "snivy",
  56783. default: true
  56784. },
  56785. snivy_frontNsfw: {
  56786. height: math.unit(2, "feet"),
  56787. weight: math.unit(17.9, "lb"),
  56788. name: "Front (NSFW)",
  56789. image: {
  56790. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56791. extra: 569/504,
  56792. bottom: 33/602
  56793. },
  56794. form: "snivy",
  56795. },
  56796. snivy_back: {
  56797. height: math.unit(2, "feet"),
  56798. weight: math.unit(17.9, "lb"),
  56799. name: "Back",
  56800. image: {
  56801. source: "./media/characters/robin-phox/snivy-back.svg",
  56802. extra: 577/508,
  56803. bottom: 21/598
  56804. },
  56805. form: "snivy",
  56806. },
  56807. snivy_foot: {
  56808. height: math.unit(0.68, "feet"),
  56809. name: "Foot",
  56810. image: {
  56811. source: "./media/characters/robin-phox/snivy-foot.svg"
  56812. },
  56813. form: "snivy",
  56814. },
  56815. snivy_sole: {
  56816. height: math.unit(0.68, "feet"),
  56817. name: "Sole",
  56818. image: {
  56819. source: "./media/characters/robin-phox/snivy-sole.svg"
  56820. },
  56821. form: "snivy",
  56822. },
  56823. yoshi_front: {
  56824. height: math.unit(6, "feet"),
  56825. weight: math.unit(150, "lb"),
  56826. name: "Front",
  56827. image: {
  56828. source: "./media/characters/robin-phox/yoshi-front.svg",
  56829. extra: 890/792,
  56830. bottom: 29/919
  56831. },
  56832. form: "yoshi",
  56833. default: true
  56834. },
  56835. yoshi_frontNsfw: {
  56836. height: math.unit(6, "feet"),
  56837. weight: math.unit(150, "lb"),
  56838. name: "Front (NSFW)",
  56839. image: {
  56840. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56841. extra: 890/792,
  56842. bottom: 29/919
  56843. },
  56844. form: "yoshi",
  56845. },
  56846. yoshi_back: {
  56847. height: math.unit(6, "feet"),
  56848. weight: math.unit(150, "lb"),
  56849. name: "Back",
  56850. image: {
  56851. source: "./media/characters/robin-phox/yoshi-back.svg",
  56852. extra: 890/792,
  56853. bottom: 29/919
  56854. },
  56855. form: "yoshi",
  56856. },
  56857. yoshi_foot: {
  56858. height: math.unit(1.5, "feet"),
  56859. name: "Foot",
  56860. image: {
  56861. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56862. },
  56863. form: "yoshi",
  56864. },
  56865. delphox_front: {
  56866. height: math.unit(4 + 11/12, "feet"),
  56867. weight: math.unit(86, "lb"),
  56868. name: "Front",
  56869. image: {
  56870. source: "./media/characters/robin-phox/delphox-front.svg",
  56871. extra: 1266/1069,
  56872. bottom: 32/1298
  56873. },
  56874. form: "delphox",
  56875. default: true
  56876. },
  56877. delphox_frontNsfw: {
  56878. height: math.unit(4 + 11/12, "feet"),
  56879. weight: math.unit(86, "lb"),
  56880. name: "Front (NSFW)",
  56881. image: {
  56882. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56883. extra: 1266/1069,
  56884. bottom: 32/1298
  56885. },
  56886. form: "delphox",
  56887. },
  56888. delphox_back: {
  56889. height: math.unit(4 + 11/12, "feet"),
  56890. weight: math.unit(86, "lb"),
  56891. name: "Back",
  56892. image: {
  56893. source: "./media/characters/robin-phox/delphox-back.svg",
  56894. extra: 1269/1083,
  56895. bottom: 15/1284
  56896. },
  56897. form: "delphox",
  56898. },
  56899. mienshao_front: {
  56900. height: math.unit(4 + 7/12, "feet"),
  56901. weight: math.unit(78.3, "lb"),
  56902. name: "Front",
  56903. image: {
  56904. source: "./media/characters/robin-phox/mienshao-front.svg",
  56905. extra: 1052/970,
  56906. bottom: 108/1160
  56907. },
  56908. form: "mienshao",
  56909. default: true
  56910. },
  56911. mienshao_frontNsfw: {
  56912. height: math.unit(4 + 7/12, "feet"),
  56913. weight: math.unit(78.3, "lb"),
  56914. name: "Front (NSFW)",
  56915. image: {
  56916. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56917. extra: 1052/970,
  56918. bottom: 108/1160
  56919. },
  56920. form: "mienshao",
  56921. },
  56922. mienshao_back: {
  56923. height: math.unit(4 + 7/12, "feet"),
  56924. weight: math.unit(78.3, "lb"),
  56925. name: "Back",
  56926. image: {
  56927. source: "./media/characters/robin-phox/mienshao-back.svg",
  56928. extra: 1102/982,
  56929. bottom: 32/1134
  56930. },
  56931. form: "mienshao",
  56932. },
  56933. inteleon_front: {
  56934. height: math.unit(6 + 3/12, "feet"),
  56935. weight: math.unit(99.6, "lb"),
  56936. name: "Front",
  56937. image: {
  56938. source: "./media/characters/robin-phox/inteleon-front.svg",
  56939. extra: 910/799,
  56940. bottom: 76/986
  56941. },
  56942. form: "inteleon",
  56943. default: true
  56944. },
  56945. inteleon_frontNsfw: {
  56946. height: math.unit(6 + 3/12, "feet"),
  56947. weight: math.unit(99.6, "lb"),
  56948. name: "Front (NSFW)",
  56949. image: {
  56950. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56951. extra: 910/799,
  56952. bottom: 76/986
  56953. },
  56954. form: "inteleon",
  56955. },
  56956. inteleon_back: {
  56957. height: math.unit(6 + 3/12, "feet"),
  56958. weight: math.unit(99.6, "lb"),
  56959. name: "Back",
  56960. image: {
  56961. source: "./media/characters/robin-phox/inteleon-back.svg",
  56962. extra: 907/796,
  56963. bottom: 25/932
  56964. },
  56965. form: "inteleon",
  56966. },
  56967. reshiram_front: {
  56968. height: math.unit(10 + 6/12, "feet"),
  56969. weight: math.unit(727.5, "lb"),
  56970. name: "Front",
  56971. image: {
  56972. source: "./media/characters/robin-phox/reshiram-front.svg",
  56973. extra: 1198/940,
  56974. bottom: 123/1321
  56975. },
  56976. form: "reshiram",
  56977. },
  56978. reshiram_frontNsfw: {
  56979. height: math.unit(10 + 6/12, "feet"),
  56980. weight: math.unit(727.5, "lb"),
  56981. name: "Front-nsfw",
  56982. image: {
  56983. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56984. extra: 1198/940,
  56985. bottom: 123/1321
  56986. },
  56987. form: "reshiram",
  56988. },
  56989. reshiram_back: {
  56990. height: math.unit(10 + 6/12, "feet"),
  56991. weight: math.unit(727.5, "lb"),
  56992. name: "Back",
  56993. image: {
  56994. source: "./media/characters/robin-phox/reshiram-back.svg",
  56995. extra: 1024/904,
  56996. bottom: 85/1109
  56997. },
  56998. form: "reshiram",
  56999. },
  57000. samurott_front: {
  57001. height: math.unit(8, "feet"),
  57002. weight: math.unit(208.6, "lb"),
  57003. name: "Front",
  57004. image: {
  57005. source: "./media/characters/robin-phox/samurott-front.svg",
  57006. extra: 1048/984,
  57007. bottom: 100/1148
  57008. },
  57009. form: "samurott",
  57010. },
  57011. samurott_frontNsfw: {
  57012. height: math.unit(8, "feet"),
  57013. weight: math.unit(208.6, "lb"),
  57014. name: "Front-nsfw",
  57015. image: {
  57016. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57017. extra: 1048/984,
  57018. bottom: 100/1148
  57019. },
  57020. form: "samurott",
  57021. },
  57022. samurott_back: {
  57023. height: math.unit(8, "feet"),
  57024. weight: math.unit(208.6, "lb"),
  57025. name: "Back",
  57026. image: {
  57027. source: "./media/characters/robin-phox/samurott-back.svg",
  57028. extra: 1110/1042,
  57029. bottom: 12/1122
  57030. },
  57031. form: "samurott",
  57032. },
  57033. samurott_feral: {
  57034. height: math.unit(4 + 11/12, "feet"),
  57035. weight: math.unit(208.6, "lb"),
  57036. name: "Feral",
  57037. image: {
  57038. source: "./media/characters/robin-phox/samurott-feral.svg",
  57039. extra: 766/681,
  57040. bottom: 108/874
  57041. },
  57042. form: "samurott",
  57043. },
  57044. },
  57045. [
  57046. {
  57047. name: "Normal",
  57048. height: math.unit(2, "feet"),
  57049. default: true,
  57050. form: "snivy"
  57051. },
  57052. {
  57053. name: "Normal",
  57054. height: math.unit(6, "feet"),
  57055. default: true,
  57056. form: "yoshi"
  57057. },
  57058. {
  57059. name: "Normal",
  57060. height: math.unit(4 + 11/12, "feet"),
  57061. default: true,
  57062. form: "delphox"
  57063. },
  57064. {
  57065. name: "Normal",
  57066. height: math.unit(4 + 7/12, "feet"),
  57067. default: true,
  57068. form: "mienshao"
  57069. },
  57070. {
  57071. name: "Normal",
  57072. height: math.unit(6 + 3/12, "feet"),
  57073. default: true,
  57074. form: "inteleon"
  57075. },
  57076. {
  57077. name: "Normal",
  57078. height: math.unit(10 + 6/12, "feet"),
  57079. default: true,
  57080. form: "reshiram"
  57081. },
  57082. {
  57083. name: "Normal",
  57084. height: math.unit(8, "feet"),
  57085. default: true,
  57086. form: "samurott"
  57087. },
  57088. {
  57089. name: "Macro",
  57090. height: math.unit(500, "feet"),
  57091. allForms: true
  57092. },
  57093. {
  57094. name: "Mega Macro",
  57095. height: math.unit(10, "earths"),
  57096. allForms: true
  57097. },
  57098. {
  57099. name: "Giga Macro",
  57100. height: math.unit(1, "galaxy"),
  57101. allForms: true
  57102. },
  57103. {
  57104. name: "Godly Macro",
  57105. height: math.unit(1e10, "multiverses"),
  57106. allForms: true
  57107. },
  57108. ],
  57109. {
  57110. "snivy": {
  57111. name: "Snivy",
  57112. default: true
  57113. },
  57114. "yoshi": {
  57115. name: "Yoshi",
  57116. },
  57117. "delphox": {
  57118. name: "Delphox",
  57119. },
  57120. "mienshao": {
  57121. name: "Mienshao",
  57122. },
  57123. "inteleon": {
  57124. name: "Inteleon",
  57125. },
  57126. "reshiram": {
  57127. name: "Reshiram",
  57128. },
  57129. "samurott": {
  57130. name: "Samurott",
  57131. },
  57132. }
  57133. ))
  57134. characterMakers.push(() => makeCharacter(
  57135. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57136. {
  57137. front: {
  57138. height: math.unit(4, "feet"),
  57139. name: "Front",
  57140. image: {
  57141. source: "./media/characters/ash-leung/front.svg",
  57142. extra: 1916/1792,
  57143. bottom: 50/1966
  57144. }
  57145. },
  57146. },
  57147. [
  57148. {
  57149. name: "Atomic",
  57150. height: math.unit(1, "angstrom")
  57151. },
  57152. {
  57153. name: "Microscopic",
  57154. height: math.unit(4000, "angstroms")
  57155. },
  57156. {
  57157. name: "Speck",
  57158. height: math.unit(1, "mm")
  57159. },
  57160. {
  57161. name: "Small",
  57162. height: math.unit(1, "inch")
  57163. },
  57164. {
  57165. name: "Normal",
  57166. height: math.unit(4, "feet"),
  57167. default: true
  57168. },
  57169. ]
  57170. ))
  57171. characterMakers.push(() => makeCharacter(
  57172. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57173. {
  57174. frontDressed: {
  57175. height: math.unit(2.08, "meters"),
  57176. weight: math.unit(175, "lb"),
  57177. name: "Front (Dressed)",
  57178. image: {
  57179. source: "./media/characters/carie/front-dressed.svg",
  57180. extra: 456/417,
  57181. bottom: 7/463
  57182. }
  57183. },
  57184. backDressed: {
  57185. height: math.unit(2.08, "meters"),
  57186. weight: math.unit(175, "lb"),
  57187. name: "Back (Dressed)",
  57188. image: {
  57189. source: "./media/characters/carie/back-dressed.svg",
  57190. extra: 455/414,
  57191. bottom: 11/466
  57192. }
  57193. },
  57194. front: {
  57195. height: math.unit(2, "meters"),
  57196. weight: math.unit(175, "lb"),
  57197. name: "Front",
  57198. image: {
  57199. source: "./media/characters/carie/front.svg",
  57200. extra: 438/399,
  57201. bottom: 12/450
  57202. }
  57203. },
  57204. back: {
  57205. height: math.unit(2, "meters"),
  57206. weight: math.unit(175, "lb"),
  57207. name: "Back",
  57208. image: {
  57209. source: "./media/characters/carie/back.svg",
  57210. extra: 438/397,
  57211. bottom: 7/445
  57212. }
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Normal",
  57218. height: math.unit(2.08, "meters"),
  57219. default: true
  57220. },
  57221. {
  57222. name: "Macro",
  57223. height: math.unit(2.08e3, "meters")
  57224. },
  57225. {
  57226. name: "Mega Macro",
  57227. height: math.unit(2.08e6, "meters")
  57228. },
  57229. {
  57230. name: "Giga Macro",
  57231. height: math.unit(2.08e9, "meters")
  57232. },
  57233. {
  57234. name: "Tera Macro",
  57235. height: math.unit(2.08e12, "meters")
  57236. },
  57237. {
  57238. name: "Peta Macro",
  57239. height: math.unit(2.08e15, "meters")
  57240. },
  57241. {
  57242. name: "Exa Macro",
  57243. height: math.unit(2.08e18, "meters")
  57244. },
  57245. {
  57246. name: "Zetta Macro",
  57247. height: math.unit(2.08e21, "meters")
  57248. },
  57249. {
  57250. name: "Yotta Macro",
  57251. height: math.unit(2.08e24, "meters")
  57252. },
  57253. ]
  57254. ))
  57255. characterMakers.push(() => makeCharacter(
  57256. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57257. {
  57258. front: {
  57259. height: math.unit(5 + 2/12, "feet"),
  57260. weight: math.unit(120, "lb"),
  57261. name: "Front",
  57262. image: {
  57263. source: "./media/characters/sai-bree/front.svg",
  57264. extra: 1843/1702,
  57265. bottom: 91/1934
  57266. }
  57267. },
  57268. back: {
  57269. height: math.unit(5 + 2/12, "feet"),
  57270. weight: math.unit(120, "lb"),
  57271. name: "Back",
  57272. image: {
  57273. source: "./media/characters/sai-bree/back.svg",
  57274. extra: 1809/1637,
  57275. bottom: 56/1865
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Normal",
  57282. height: math.unit(5 + 2/12, "feet"),
  57283. default: true
  57284. },
  57285. {
  57286. name: "Macro",
  57287. height: math.unit(500, "feet")
  57288. },
  57289. ]
  57290. ))
  57291. characterMakers.push(() => makeCharacter(
  57292. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57293. {
  57294. side: {
  57295. height: math.unit(0.77, "meters"),
  57296. weight: math.unit(120, "lb"),
  57297. name: "Side",
  57298. image: {
  57299. source: "./media/characters/davwyn/side.svg",
  57300. extra: 1557/1225,
  57301. bottom: 131/1688
  57302. }
  57303. },
  57304. front: {
  57305. height: math.unit(0.835410, "meters"),
  57306. weight: math.unit(120, "lb"),
  57307. name: "Front",
  57308. image: {
  57309. source: "./media/characters/davwyn/front.svg",
  57310. extra: 870/843,
  57311. bottom: 175/1045
  57312. }
  57313. },
  57314. },
  57315. [
  57316. {
  57317. name: "Minidrake",
  57318. height: math.unit(0.77/4, "meters")
  57319. },
  57320. {
  57321. name: "Normal",
  57322. height: math.unit(0.77, "meters"),
  57323. default: true
  57324. },
  57325. ]
  57326. ))
  57327. characterMakers.push(() => makeCharacter(
  57328. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57329. {
  57330. front: {
  57331. height: math.unit(10 + 3/12, "feet"),
  57332. weight: math.unit(2857, "lb"),
  57333. name: "Front",
  57334. image: {
  57335. source: "./media/characters/balans/front.svg",
  57336. extra: 427/402,
  57337. bottom: 26/453
  57338. }
  57339. },
  57340. side: {
  57341. height: math.unit(10 + 3/12, "feet"),
  57342. weight: math.unit(2857, "lb"),
  57343. name: "Side",
  57344. image: {
  57345. source: "./media/characters/balans/side.svg",
  57346. extra: 397/371,
  57347. bottom: 17/414
  57348. }
  57349. },
  57350. back: {
  57351. height: math.unit(10 + 3/12, "feet"),
  57352. weight: math.unit(2857, "lb"),
  57353. name: "Back",
  57354. image: {
  57355. source: "./media/characters/balans/back.svg",
  57356. extra: 408/381,
  57357. bottom: 14/422
  57358. }
  57359. },
  57360. hand: {
  57361. height: math.unit(1.15, "feet"),
  57362. name: "Hand",
  57363. image: {
  57364. source: "./media/characters/balans/hand.svg"
  57365. }
  57366. },
  57367. footRest: {
  57368. height: math.unit(3.1, "feet"),
  57369. name: "Foot (Rest)",
  57370. image: {
  57371. source: "./media/characters/balans/foot-rest.svg"
  57372. }
  57373. },
  57374. footActive: {
  57375. height: math.unit(3.5, "feet"),
  57376. name: "Foot (Active)",
  57377. image: {
  57378. source: "./media/characters/balans/foot-active.svg"
  57379. }
  57380. },
  57381. },
  57382. [
  57383. {
  57384. name: "Normal",
  57385. height: math.unit(10 + 3/12, "feet"),
  57386. default: true
  57387. },
  57388. ]
  57389. ))
  57390. characterMakers.push(() => makeCharacter(
  57391. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57392. {
  57393. side: {
  57394. height: math.unit(9, "meters"),
  57395. weight: math.unit(114, "tonnes"),
  57396. name: "Side",
  57397. image: {
  57398. source: "./media/characters/eldkveikir/side.svg",
  57399. extra: 1927/338,
  57400. bottom: 42/1969
  57401. }
  57402. },
  57403. sitting: {
  57404. height: math.unit(13.4, "meters"),
  57405. weight: math.unit(114, "tonnes"),
  57406. name: "Sitting",
  57407. image: {
  57408. source: "./media/characters/eldkveikir/sitting.svg",
  57409. extra: 1108/963,
  57410. bottom: 610/1718
  57411. }
  57412. },
  57413. maw: {
  57414. height: math.unit(8.36, "meters"),
  57415. name: "Maw",
  57416. image: {
  57417. source: "./media/characters/eldkveikir/maw.svg"
  57418. }
  57419. },
  57420. hand: {
  57421. height: math.unit(4.84, "meters"),
  57422. name: "Hand",
  57423. image: {
  57424. source: "./media/characters/eldkveikir/hand.svg"
  57425. }
  57426. },
  57427. foot: {
  57428. height: math.unit(6.9, "meters"),
  57429. name: "Foot",
  57430. image: {
  57431. source: "./media/characters/eldkveikir/foot.svg"
  57432. }
  57433. },
  57434. genitals: {
  57435. height: math.unit(9.6, "meters"),
  57436. name: "Genitals",
  57437. image: {
  57438. source: "./media/characters/eldkveikir/genitals.svg"
  57439. }
  57440. },
  57441. },
  57442. [
  57443. {
  57444. name: "Normal",
  57445. height: math.unit(9, "meters"),
  57446. default: true
  57447. },
  57448. ]
  57449. ))
  57450. characterMakers.push(() => makeCharacter(
  57451. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57452. {
  57453. front: {
  57454. height: math.unit(14, "feet"),
  57455. weight: math.unit(4100, "lb"),
  57456. name: "Front",
  57457. image: {
  57458. source: "./media/characters/arrow/front.svg",
  57459. extra: 330/318,
  57460. bottom: 56/386
  57461. }
  57462. },
  57463. },
  57464. [
  57465. {
  57466. name: "Normal",
  57467. height: math.unit(14, "feet"),
  57468. default: true
  57469. },
  57470. {
  57471. name: "Minimacro",
  57472. height: math.unit(63, "feet")
  57473. },
  57474. {
  57475. name: "Macro",
  57476. height: math.unit(630, "feet")
  57477. },
  57478. {
  57479. name: "Megamacro",
  57480. height: math.unit(12600, "feet")
  57481. },
  57482. {
  57483. name: "Gigamacro",
  57484. height: math.unit(18000, "miles")
  57485. },
  57486. ]
  57487. ))
  57488. characterMakers.push(() => makeCharacter(
  57489. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57490. {
  57491. front: {
  57492. height: math.unit(10, "feet"),
  57493. weight: math.unit(2.4, "tons"),
  57494. name: "Front",
  57495. image: {
  57496. source: "./media/characters/3yk-k0-unit/front.svg",
  57497. extra: 573/561,
  57498. bottom: 33/606
  57499. }
  57500. },
  57501. back: {
  57502. height: math.unit(10, "feet"),
  57503. weight: math.unit(2.4, "tons"),
  57504. name: "Back",
  57505. image: {
  57506. source: "./media/characters/3yk-k0-unit/back.svg",
  57507. extra: 614/573,
  57508. bottom: 32/646
  57509. }
  57510. },
  57511. maw: {
  57512. height: math.unit(2.15, "feet"),
  57513. name: "Maw",
  57514. image: {
  57515. source: "./media/characters/3yk-k0-unit/maw.svg"
  57516. }
  57517. },
  57518. },
  57519. [
  57520. {
  57521. name: "Normal",
  57522. height: math.unit(10, "feet"),
  57523. default: true
  57524. },
  57525. ]
  57526. ))
  57527. characterMakers.push(() => makeCharacter(
  57528. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57529. {
  57530. front: {
  57531. height: math.unit(8 + 8/12, "feet"),
  57532. name: "Front",
  57533. image: {
  57534. source: "./media/characters/nemo/front.svg",
  57535. extra: 1308/1217,
  57536. bottom: 57/1365
  57537. }
  57538. },
  57539. },
  57540. [
  57541. {
  57542. name: "Normal",
  57543. height: math.unit(8 + 8/12, "feet"),
  57544. default: true
  57545. },
  57546. ]
  57547. ))
  57548. characterMakers.push(() => makeCharacter(
  57549. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57550. {
  57551. front: {
  57552. height: math.unit(8, "feet"),
  57553. weight: math.unit(760, "lb"),
  57554. name: "Front",
  57555. image: {
  57556. source: "./media/characters/rexx/front.svg",
  57557. extra: 786/750,
  57558. bottom: 17/803
  57559. },
  57560. extraAttributes: {
  57561. "pawLength": {
  57562. name: "Paw Length",
  57563. power: 1,
  57564. type: "length",
  57565. base: math.unit(27, "inches")
  57566. },
  57567. }
  57568. },
  57569. },
  57570. [
  57571. {
  57572. name: "Micro",
  57573. height: math.unit(2, "inches")
  57574. },
  57575. {
  57576. name: "Normal",
  57577. height: math.unit(8, "feet"),
  57578. default: true
  57579. },
  57580. {
  57581. name: "Macro",
  57582. height: math.unit(150, "feet")
  57583. },
  57584. ]
  57585. ))
  57586. characterMakers.push(() => makeCharacter(
  57587. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57588. {
  57589. front: {
  57590. height: math.unit(18, "feet"),
  57591. weight: math.unit(1975, "lb"),
  57592. name: "Front",
  57593. image: {
  57594. source: "./media/characters/draco/front.svg",
  57595. extra: 1325/1241,
  57596. bottom: 83/1408
  57597. }
  57598. },
  57599. back: {
  57600. height: math.unit(18, "feet"),
  57601. weight: math.unit(1975, "lb"),
  57602. name: "Back",
  57603. image: {
  57604. source: "./media/characters/draco/back.svg",
  57605. extra: 1332/1250,
  57606. bottom: 43/1375
  57607. }
  57608. },
  57609. dick: {
  57610. height: math.unit(7.5, "feet"),
  57611. name: "Dick",
  57612. image: {
  57613. source: "./media/characters/draco/dick.svg"
  57614. }
  57615. },
  57616. },
  57617. [
  57618. {
  57619. name: "Normal",
  57620. height: math.unit(18, "feet"),
  57621. default: true
  57622. },
  57623. ]
  57624. ))
  57625. characterMakers.push(() => makeCharacter(
  57626. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57627. {
  57628. front: {
  57629. height: math.unit(3.2, "meters"),
  57630. name: "Front",
  57631. image: {
  57632. source: "./media/characters/harriett/front.svg",
  57633. extra: 1966/1915,
  57634. bottom: 9/1975
  57635. }
  57636. },
  57637. },
  57638. [
  57639. {
  57640. name: "Normal",
  57641. height: math.unit(3.2, "meters"),
  57642. default: true
  57643. },
  57644. ]
  57645. ))
  57646. characterMakers.push(() => makeCharacter(
  57647. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57648. {
  57649. sitting: {
  57650. height: math.unit(0.8, "meter"),
  57651. name: "Sitting",
  57652. image: {
  57653. source: "./media/characters/serpentus/sitting.svg",
  57654. extra: 293/290,
  57655. bottom: 140/433
  57656. }
  57657. },
  57658. },
  57659. [
  57660. {
  57661. name: "Normal",
  57662. height: math.unit(0.8, "meter"),
  57663. default: true
  57664. },
  57665. ]
  57666. ))
  57667. characterMakers.push(() => makeCharacter(
  57668. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57669. {
  57670. front: {
  57671. height: math.unit(5.7174385736, "feet"),
  57672. name: "Front",
  57673. image: {
  57674. source: "./media/characters/nova-polecat/front.svg",
  57675. extra: 1317/1216,
  57676. bottom: 92/1409
  57677. }
  57678. },
  57679. },
  57680. [
  57681. {
  57682. name: "Normal",
  57683. height: math.unit(5.7174385736, "feet"),
  57684. default: true
  57685. },
  57686. ]
  57687. ))
  57688. characterMakers.push(() => makeCharacter(
  57689. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57690. {
  57691. front: {
  57692. height: math.unit(5 + 4/12, "feet"),
  57693. weight: math.unit(250, "lb"),
  57694. name: "Front",
  57695. image: {
  57696. source: "./media/characters/mook/front.svg",
  57697. extra: 1088/1037,
  57698. bottom: 132/1220
  57699. }
  57700. },
  57701. back: {
  57702. height: math.unit(5 + 1/12, "feet"),
  57703. weight: math.unit(250, "lb"),
  57704. name: "Back",
  57705. image: {
  57706. source: "./media/characters/mook/back.svg",
  57707. extra: 1184/905,
  57708. bottom: 96/1280
  57709. }
  57710. },
  57711. head: {
  57712. height: math.unit(1.85, "feet"),
  57713. name: "Head",
  57714. image: {
  57715. source: "./media/characters/mook/head.svg"
  57716. }
  57717. },
  57718. hand: {
  57719. height: math.unit(1.9, "feet"),
  57720. name: "Hand",
  57721. image: {
  57722. source: "./media/characters/mook/hand.svg"
  57723. }
  57724. },
  57725. palm: {
  57726. height: math.unit(1.84, "feet"),
  57727. name: "Palm",
  57728. image: {
  57729. source: "./media/characters/mook/palm.svg"
  57730. }
  57731. },
  57732. foot: {
  57733. height: math.unit(1.44, "feet"),
  57734. name: "Foot",
  57735. image: {
  57736. source: "./media/characters/mook/foot.svg"
  57737. }
  57738. },
  57739. sole: {
  57740. height: math.unit(1.44, "feet"),
  57741. name: "Sole",
  57742. image: {
  57743. source: "./media/characters/mook/sole.svg"
  57744. }
  57745. },
  57746. },
  57747. [
  57748. {
  57749. name: "Normal",
  57750. height: math.unit(5 + 4/12, "feet"),
  57751. default: true
  57752. },
  57753. {
  57754. name: "Big",
  57755. height: math.unit(12, "feet")
  57756. },
  57757. ]
  57758. ))
  57759. characterMakers.push(() => makeCharacter(
  57760. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57761. {
  57762. front: {
  57763. height: math.unit(6 + 10/12, "feet"),
  57764. weight: math.unit(233, "lb"),
  57765. name: "Front",
  57766. image: {
  57767. source: "./media/characters/kayla/front.svg",
  57768. extra: 1850/1775,
  57769. bottom: 65/1915
  57770. }
  57771. },
  57772. },
  57773. [
  57774. {
  57775. name: "Normal",
  57776. height: math.unit(6 + 10/12, "feet"),
  57777. default: true
  57778. },
  57779. {
  57780. name: "Amazonian",
  57781. height: math.unit(12 + 5/12, "feet")
  57782. },
  57783. {
  57784. name: "Mini Giantess",
  57785. height: math.unit(26, "feet")
  57786. },
  57787. {
  57788. name: "Giantess",
  57789. height: math.unit(200, "feet")
  57790. },
  57791. {
  57792. name: "Mega Giantess",
  57793. height: math.unit(2500, "feet")
  57794. },
  57795. {
  57796. name: "City Sized",
  57797. height: math.unit(50, "miles")
  57798. },
  57799. {
  57800. name: "Country Sized",
  57801. height: math.unit(500, "miles")
  57802. },
  57803. {
  57804. name: "Continent Sized",
  57805. height: math.unit(2500, "miles")
  57806. },
  57807. {
  57808. name: "Planet Sized",
  57809. height: math.unit(10000, "miles")
  57810. },
  57811. {
  57812. name: "Star Sized",
  57813. height: math.unit(5e6, "miles")
  57814. },
  57815. {
  57816. name: "Solar System Sized",
  57817. height: math.unit(125, "AU")
  57818. },
  57819. {
  57820. name: "Galaxy Sized",
  57821. height: math.unit(300e3, "lightyears")
  57822. },
  57823. {
  57824. name: "Universe Sized",
  57825. height: math.unit(200e9, "lightyears")
  57826. },
  57827. {
  57828. name: "Multiverse Sized",
  57829. height: math.unit(20, "exauniverses")
  57830. },
  57831. {
  57832. name: "Mother of Existence",
  57833. height: math.unit(1e6, "yottauniverses")
  57834. },
  57835. ]
  57836. ))
  57837. characterMakers.push(() => makeCharacter(
  57838. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57839. {
  57840. side: {
  57841. height: math.unit(9.5, "meters"),
  57842. name: "Side",
  57843. image: {
  57844. source: "./media/characters/kulve-ragnarok/side.svg",
  57845. extra: 364/326,
  57846. bottom: 50/414
  57847. }
  57848. },
  57849. },
  57850. [
  57851. {
  57852. name: "Normal",
  57853. height: math.unit(9.5, "meters"),
  57854. default: true
  57855. },
  57856. ]
  57857. ))
  57858. characterMakers.push(() => makeCharacter(
  57859. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57860. {
  57861. front: {
  57862. height: math.unit(8 + 9/12, "feet"),
  57863. name: "Front",
  57864. image: {
  57865. source: "./media/characters/atlas-goat/front.svg",
  57866. extra: 1462/1323,
  57867. bottom: 12/1474
  57868. }
  57869. },
  57870. },
  57871. [
  57872. {
  57873. name: "Normal",
  57874. height: math.unit(8 + 9/12, "feet"),
  57875. default: true
  57876. },
  57877. {
  57878. name: "Skyline",
  57879. height: math.unit(845, "feet")
  57880. },
  57881. {
  57882. name: "Orbital",
  57883. height: math.unit(93000, "miles")
  57884. },
  57885. {
  57886. name: "Constellation",
  57887. height: math.unit(27000, "lightyears")
  57888. },
  57889. ]
  57890. ))
  57891. characterMakers.push(() => makeCharacter(
  57892. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57893. {
  57894. side: {
  57895. height: math.unit(1.8, "meters"),
  57896. weight: math.unit(120, "kg"),
  57897. name: "Side",
  57898. image: {
  57899. source: "./media/characters/xie-ling/side.svg",
  57900. extra: 646/574,
  57901. bottom: 44/690
  57902. }
  57903. },
  57904. },
  57905. [
  57906. {
  57907. name: "Tiny",
  57908. height: math.unit(1.80, "meters")
  57909. },
  57910. {
  57911. name: "Small",
  57912. height: math.unit(6, "meters")
  57913. },
  57914. {
  57915. name: "Medium",
  57916. height: math.unit(15, "meters")
  57917. },
  57918. {
  57919. name: "Normal",
  57920. height: math.unit(30, "meters"),
  57921. default: true
  57922. },
  57923. {
  57924. name: "Above Normal",
  57925. height: math.unit(60, "meters")
  57926. },
  57927. {
  57928. name: "Big",
  57929. height: math.unit(220, "meters")
  57930. },
  57931. {
  57932. name: "Giant",
  57933. height: math.unit(2.2, "km")
  57934. },
  57935. {
  57936. name: "Macro",
  57937. height: math.unit(25, "km")
  57938. },
  57939. {
  57940. name: "Mega Macro",
  57941. height: math.unit(350, "km")
  57942. },
  57943. {
  57944. name: "Mega Macro+",
  57945. height: math.unit(5000, "km")
  57946. },
  57947. {
  57948. name: "Goddess",
  57949. height: math.unit(3, "multiverses")
  57950. },
  57951. ]
  57952. ))
  57953. characterMakers.push(() => makeCharacter(
  57954. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57955. {
  57956. frontSfw: {
  57957. height: math.unit(5 + 11/12, "feet"),
  57958. weight: math.unit(210, "lb"),
  57959. name: "Front",
  57960. image: {
  57961. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57962. extra: 1928/1821,
  57963. bottom: 45/1973
  57964. }
  57965. },
  57966. backSfw: {
  57967. height: math.unit(5 + 11/12, "feet"),
  57968. weight: math.unit(210, "lb"),
  57969. name: "Back",
  57970. image: {
  57971. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57972. extra: 1920/1813,
  57973. bottom: 34/1954
  57974. }
  57975. },
  57976. frontNsfw: {
  57977. height: math.unit(5 + 11/12, "feet"),
  57978. weight: math.unit(210, "lb"),
  57979. name: "Front (NSFW)",
  57980. image: {
  57981. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57982. extra: 1928/1821,
  57983. bottom: 45/1973
  57984. }
  57985. },
  57986. backNsfw: {
  57987. height: math.unit(5 + 11/12, "feet"),
  57988. weight: math.unit(210, "lb"),
  57989. name: "Back (NSFW)",
  57990. image: {
  57991. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57992. extra: 1920/1813,
  57993. bottom: 34/1954
  57994. }
  57995. },
  57996. },
  57997. [
  57998. {
  57999. name: "Normal",
  58000. height: math.unit(5 + 11/12, "feet"),
  58001. default: true
  58002. },
  58003. {
  58004. name: "Goddess",
  58005. height: math.unit(20 + 3/12, "feet")
  58006. },
  58007. {
  58008. name: "Breaker of Man",
  58009. height: math.unit(329 + 9/12, "feet")
  58010. },
  58011. {
  58012. name: "Solar Justice",
  58013. height: math.unit(0.6, "solarradii")
  58014. },
  58015. {
  58016. name: "She Who Judges",
  58017. height: math.unit(1, "universe")
  58018. },
  58019. ]
  58020. ))
  58021. characterMakers.push(() => makeCharacter(
  58022. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58023. {
  58024. casual_front: {
  58025. height: math.unit(6 + 1/12, "feet"),
  58026. weight: math.unit(190, "lb"),
  58027. preyCapacity: math.unit(1, "people"),
  58028. name: "Front",
  58029. image: {
  58030. source: "./media/characters/managarmr/casual-front.svg",
  58031. extra: 411/381,
  58032. bottom: 15/426
  58033. },
  58034. extraAttributes: {
  58035. "pawSize": {
  58036. name: "Paw Size",
  58037. power: 1,
  58038. type: "length",
  58039. base: math.unit(0.2, "meters")
  58040. },
  58041. },
  58042. form: "casual",
  58043. },
  58044. casual_back: {
  58045. height: math.unit(6 + 1/12, "feet"),
  58046. weight: math.unit(190, "lb"),
  58047. preyCapacity: math.unit(1, "people"),
  58048. name: "Back",
  58049. image: {
  58050. source: "./media/characters/managarmr/casual-back.svg",
  58051. extra: 413/383,
  58052. bottom: 13/426
  58053. },
  58054. extraAttributes: {
  58055. "pawSize": {
  58056. name: "Paw Size",
  58057. power: 1,
  58058. type: "length",
  58059. base: math.unit(0.2, "meters")
  58060. },
  58061. },
  58062. form: "casual",
  58063. },
  58064. base_front: {
  58065. height: math.unit(7, "feet"),
  58066. weight: math.unit(210, "lb"),
  58067. preyCapacity: math.unit(2, "people"),
  58068. name: "Front",
  58069. image: {
  58070. source: "./media/characters/managarmr/base-front.svg",
  58071. extra: 580/485,
  58072. bottom: 32/612
  58073. },
  58074. extraAttributes: {
  58075. "wingspan": {
  58076. name: "Wingspan",
  58077. power: 1,
  58078. type: "length",
  58079. base: math.unit(4, "meters")
  58080. },
  58081. "pawSize": {
  58082. name: "Paw Size",
  58083. power: 1,
  58084. type: "length",
  58085. base: math.unit(0.2, "meters")
  58086. },
  58087. },
  58088. form: "base",
  58089. },
  58090. "true-divine_front": {
  58091. height: math.unit(40, "feet"),
  58092. weight: math.unit(39000, "lb"),
  58093. preyCapacity: math.unit(375, "people"),
  58094. name: "Front",
  58095. image: {
  58096. source: "./media/characters/managarmr/true-divine-front.svg",
  58097. extra: 725/573,
  58098. bottom: 120/845
  58099. },
  58100. extraAttributes: {
  58101. "wingspan": {
  58102. name: "Wingspan",
  58103. power: 1,
  58104. type: "length",
  58105. base: math.unit(20, "meters")
  58106. },
  58107. "pawSize": {
  58108. name: "Paw Size",
  58109. power: 1,
  58110. type: "length",
  58111. base: math.unit(1.5, "meters")
  58112. },
  58113. },
  58114. form: "true-divine",
  58115. },
  58116. },
  58117. [
  58118. {
  58119. name: "Normal",
  58120. height: math.unit(6 + 1/12, "feet"),
  58121. form: "casual",
  58122. default: true
  58123. },
  58124. {
  58125. name: "Normal",
  58126. height: math.unit(7, "feet"),
  58127. form: "base",
  58128. default: true
  58129. },
  58130. ],
  58131. {
  58132. "casual": {
  58133. name: "Casual",
  58134. default: true
  58135. },
  58136. "base": {
  58137. name: "Base",
  58138. },
  58139. "true-divine": {
  58140. name: "True Divine",
  58141. },
  58142. }
  58143. ))
  58144. characterMakers.push(() => makeCharacter(
  58145. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58146. {
  58147. front: {
  58148. height: math.unit(1.8, "meters"),
  58149. weight: math.unit(110, "kg"),
  58150. name: "Front",
  58151. image: {
  58152. source: "./media/characters/mystra/front.svg",
  58153. extra: 529/442,
  58154. bottom: 31/560
  58155. }
  58156. },
  58157. frontLewd: {
  58158. height: math.unit(1.8, "meters"),
  58159. weight: math.unit(110, "kg"),
  58160. name: "Front (Lewd)",
  58161. image: {
  58162. source: "./media/characters/mystra/front-lewd.svg",
  58163. extra: 529/442,
  58164. bottom: 31/560
  58165. }
  58166. },
  58167. head: {
  58168. height: math.unit(1.63, "feet"),
  58169. name: "Head",
  58170. image: {
  58171. source: "./media/characters/mystra/head.svg"
  58172. }
  58173. },
  58174. paw: {
  58175. height: math.unit(1.9, "feet"),
  58176. name: "Paw",
  58177. image: {
  58178. source: "./media/characters/mystra/paw.svg"
  58179. }
  58180. },
  58181. },
  58182. [
  58183. {
  58184. name: "Incognito",
  58185. height: math.unit(2.3, "meters")
  58186. },
  58187. {
  58188. name: "Small Macro",
  58189. height: math.unit(300, "meters")
  58190. },
  58191. {
  58192. name: "Small Mega",
  58193. height: math.unit(2, "km")
  58194. },
  58195. {
  58196. name: "Mega",
  58197. height: math.unit(30, "km")
  58198. },
  58199. {
  58200. name: "Small Giga",
  58201. height: math.unit(100, "km")
  58202. },
  58203. {
  58204. name: "Giga",
  58205. height: math.unit(1000, "km"),
  58206. default: true
  58207. },
  58208. {
  58209. name: "Continental",
  58210. height: math.unit(5000, "km")
  58211. },
  58212. {
  58213. name: "Terra",
  58214. height: math.unit(20000, "km")
  58215. },
  58216. {
  58217. name: "Solar",
  58218. height: math.unit(2e6, "km")
  58219. },
  58220. {
  58221. name: "Galactic",
  58222. height: math.unit(528502, "lightyears")
  58223. },
  58224. {
  58225. name: "Universal",
  58226. height: math.unit(20, "universes")
  58227. },
  58228. ]
  58229. ))
  58230. characterMakers.push(() => makeCharacter(
  58231. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58232. {
  58233. front: {
  58234. height: math.unit(2, "meters"),
  58235. weight: math.unit(140, "kg"),
  58236. name: "Front",
  58237. image: {
  58238. source: "./media/characters/caleb/front.svg",
  58239. extra: 873/817,
  58240. bottom: 47/920
  58241. }
  58242. },
  58243. back: {
  58244. height: math.unit(2, "meters"),
  58245. weight: math.unit(140, "kg"),
  58246. name: "Back",
  58247. image: {
  58248. source: "./media/characters/caleb/back.svg",
  58249. extra: 877/828,
  58250. bottom: 24/901
  58251. }
  58252. },
  58253. snakeTail: {
  58254. height: math.unit(1.44, "feet"),
  58255. name: "Snake Tail",
  58256. image: {
  58257. source: "./media/characters/caleb/snake-tail.svg"
  58258. }
  58259. },
  58260. dick: {
  58261. height: math.unit(2.6, "feet"),
  58262. name: "Dick",
  58263. image: {
  58264. source: "./media/characters/caleb/dick.svg"
  58265. }
  58266. },
  58267. },
  58268. [
  58269. {
  58270. name: "Incognito",
  58271. height: math.unit(3, "meters")
  58272. },
  58273. {
  58274. name: "Home Size",
  58275. height: math.unit(200, "meters"),
  58276. default: true
  58277. },
  58278. {
  58279. name: "Macro",
  58280. height: math.unit(500, "meters")
  58281. },
  58282. {
  58283. name: "Big Macro",
  58284. height: math.unit(5, "km")
  58285. },
  58286. {
  58287. name: "Giga",
  58288. height: math.unit(250, "km")
  58289. },
  58290. {
  58291. name: "Giga+",
  58292. height: math.unit(5000, "km")
  58293. },
  58294. {
  58295. name: "Small Terra",
  58296. height: math.unit(35e3, "km")
  58297. },
  58298. {
  58299. name: "Terra",
  58300. height: math.unit(2e6, "km")
  58301. },
  58302. {
  58303. name: "Terra+",
  58304. height: math.unit(1.5e6, "km")
  58305. },
  58306. ]
  58307. ))
  58308. characterMakers.push(() => makeCharacter(
  58309. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58310. {
  58311. front: {
  58312. height: math.unit(2, "meters"),
  58313. weight: math.unit(120, "kg"),
  58314. name: "Front",
  58315. image: {
  58316. source: "./media/characters/gilirian/front.svg",
  58317. extra: 805/737,
  58318. bottom: 13/818
  58319. }
  58320. },
  58321. side: {
  58322. height: math.unit(2, "meters"),
  58323. weight: math.unit(120, "kg"),
  58324. name: "Side",
  58325. image: {
  58326. source: "./media/characters/gilirian/side.svg",
  58327. extra: 810/746,
  58328. bottom: 6/816
  58329. }
  58330. },
  58331. back: {
  58332. height: math.unit(2, "meters"),
  58333. weight: math.unit(120, "kg"),
  58334. name: "Back",
  58335. image: {
  58336. source: "./media/characters/gilirian/back.svg",
  58337. extra: 815/745,
  58338. bottom: 15/830
  58339. }
  58340. },
  58341. frontNsfw: {
  58342. height: math.unit(2, "meters"),
  58343. weight: math.unit(120, "kg"),
  58344. name: "Front (NSFW)",
  58345. image: {
  58346. source: "./media/characters/gilirian/front-nsfw.svg",
  58347. extra: 805/737,
  58348. bottom: 13/818
  58349. }
  58350. },
  58351. sideNsfw: {
  58352. height: math.unit(2, "meters"),
  58353. weight: math.unit(120, "kg"),
  58354. name: "Side (NSFW)",
  58355. image: {
  58356. source: "./media/characters/gilirian/side-nsfw.svg",
  58357. extra: 810/746,
  58358. bottom: 6/816
  58359. }
  58360. },
  58361. },
  58362. [
  58363. {
  58364. name: "Incognito",
  58365. height: math.unit(2, "meters"),
  58366. default: true
  58367. },
  58368. {
  58369. name: "Macro",
  58370. height: math.unit(250, "meters")
  58371. },
  58372. {
  58373. name: "Big Macro",
  58374. height: math.unit(1500, "meters")
  58375. },
  58376. {
  58377. name: "Mega",
  58378. height: math.unit(40, "km")
  58379. },
  58380. {
  58381. name: "Giga",
  58382. height: math.unit(300, "km")
  58383. },
  58384. {
  58385. name: "Extra Giga",
  58386. height: math.unit(5000, "km")
  58387. },
  58388. {
  58389. name: "Small Terra",
  58390. height: math.unit(10e3, "km")
  58391. },
  58392. {
  58393. name: "Terra",
  58394. height: math.unit(3e5, "km")
  58395. },
  58396. {
  58397. name: "Galactic",
  58398. height: math.unit(369950, "lightyears")
  58399. },
  58400. ]
  58401. ))
  58402. characterMakers.push(() => makeCharacter(
  58403. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58404. {
  58405. front: {
  58406. height: math.unit(2.5, "meters"),
  58407. weight: math.unit(230, "lb"),
  58408. name: "Front",
  58409. image: {
  58410. source: "./media/characters/tarken/front.svg",
  58411. extra: 764/720,
  58412. bottom: 49/813
  58413. }
  58414. },
  58415. back: {
  58416. height: math.unit(2.5, "meters"),
  58417. weight: math.unit(230, "lb"),
  58418. name: "Back",
  58419. image: {
  58420. source: "./media/characters/tarken/back.svg",
  58421. extra: 756/720,
  58422. bottom: 35/791
  58423. }
  58424. },
  58425. frontNsfw: {
  58426. height: math.unit(2.5, "meters"),
  58427. weight: math.unit(230, "lb"),
  58428. name: "Front (NSFW)",
  58429. image: {
  58430. source: "./media/characters/tarken/front-nsfw.svg",
  58431. extra: 764/720,
  58432. bottom: 49/813
  58433. }
  58434. },
  58435. backNsfw: {
  58436. height: math.unit(2.5, "meters"),
  58437. weight: math.unit(230, "lb"),
  58438. name: "Back (NSFW)",
  58439. image: {
  58440. source: "./media/characters/tarken/back-nsfw.svg",
  58441. extra: 756/720,
  58442. bottom: 35/791
  58443. }
  58444. },
  58445. head: {
  58446. height: math.unit(2.22, "feet"),
  58447. name: "Head",
  58448. image: {
  58449. source: "./media/characters/tarken/head.svg"
  58450. }
  58451. },
  58452. tail: {
  58453. height: math.unit(5.25, "feet"),
  58454. name: "Tail",
  58455. image: {
  58456. source: "./media/characters/tarken/tail.svg"
  58457. }
  58458. },
  58459. dick: {
  58460. height: math.unit(1.95, "feet"),
  58461. name: "Dick",
  58462. image: {
  58463. source: "./media/characters/tarken/dick.svg"
  58464. }
  58465. },
  58466. hand: {
  58467. height: math.unit(1.78, "feet"),
  58468. name: "Hand",
  58469. image: {
  58470. source: "./media/characters/tarken/hand.svg"
  58471. }
  58472. },
  58473. beam: {
  58474. height: math.unit(1.5, "feet"),
  58475. name: "Beam",
  58476. image: {
  58477. source: "./media/characters/tarken/beam.svg"
  58478. }
  58479. },
  58480. },
  58481. [
  58482. {
  58483. name: "Original Size",
  58484. height: math.unit(2.5, "meters")
  58485. },
  58486. {
  58487. name: "Macro",
  58488. height: math.unit(150, "meters"),
  58489. default: true
  58490. },
  58491. {
  58492. name: "Macro+",
  58493. height: math.unit(300, "meters")
  58494. },
  58495. {
  58496. name: "Mega",
  58497. height: math.unit(2, "km")
  58498. },
  58499. {
  58500. name: "Mega+",
  58501. height: math.unit(35, "km")
  58502. },
  58503.  {
  58504. name: "Mega++",
  58505. height: math.unit(60, "km")
  58506. },
  58507. {
  58508. name: "Giga",
  58509. height: math.unit(200, "km")
  58510. },
  58511. {
  58512. name: "Giga+",
  58513. height: math.unit(2500, "km")
  58514. },
  58515. {
  58516. name: "Giga++",
  58517. height: math.unit(6600, "km")
  58518. },
  58519. {
  58520. name: "Terra",
  58521. height: math.unit(20000, "km")
  58522. },
  58523. {
  58524. name: "Terra+",
  58525. height: math.unit(300000, "km")
  58526. },
  58527. ]
  58528. ))
  58529. characterMakers.push(() => makeCharacter(
  58530. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58531. {
  58532. magpie_dressed: {
  58533. height: math.unit(1.7, "meters"),
  58534. weight: math.unit(70, "kg"),
  58535. name: "Dressed",
  58536. image: {
  58537. source: "./media/characters/otreus/magpie-dressed.svg",
  58538. extra: 691/672,
  58539. bottom: 116/807
  58540. },
  58541. form: "magpie",
  58542. default: true
  58543. },
  58544. magpie_nude: {
  58545. height: math.unit(1.7, "meters"),
  58546. weight: math.unit(70, "kg"),
  58547. name: "Nude",
  58548. image: {
  58549. source: "./media/characters/otreus/magpie-nude.svg",
  58550. extra: 691/672,
  58551. bottom: 116/807
  58552. },
  58553. form: "magpie",
  58554. },
  58555. magpie_dressedLewd: {
  58556. height: math.unit(1.7, "meters"),
  58557. weight: math.unit(70, "kg"),
  58558. name: "Dressed (Lewd)",
  58559. image: {
  58560. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58561. extra: 691/672,
  58562. bottom: 116/807
  58563. },
  58564. form: "magpie",
  58565. },
  58566. magpie_nudeLewd: {
  58567. height: math.unit(1.7, "meters"),
  58568. weight: math.unit(70, "kg"),
  58569. name: "Nude (Lewd)",
  58570. image: {
  58571. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58572. extra: 691/672,
  58573. bottom: 116/807
  58574. },
  58575. form: "magpie",
  58576. },
  58577. magpie_leftFoot: {
  58578. height: math.unit(1.58, "feet"),
  58579. name: "Left Foot",
  58580. image: {
  58581. source: "./media/characters/otreus/magpie-left-foot.svg"
  58582. },
  58583. form: "magpie",
  58584. },
  58585. magpie_rightFoot: {
  58586. height: math.unit(1.58, "feet"),
  58587. name: "Right Foot",
  58588. image: {
  58589. source: "./media/characters/otreus/magpie-right-foot.svg"
  58590. },
  58591. form: "magpie",
  58592. },
  58593. magpie_wingspan: {
  58594. height: math.unit(2, "meters"),
  58595. weight: math.unit(70, "kg"),
  58596. name: "Wingspan",
  58597. image: {
  58598. source: "./media/characters/otreus/magpie-wingspan.svg"
  58599. },
  58600. extraAttributes: {
  58601. "wingspan": {
  58602. name: "Wingspan",
  58603. power: 1,
  58604. type: "length",
  58605. base: math.unit(3.35, "meters")
  58606. },
  58607. },
  58608. form: "magpie",
  58609. },
  58610. hippogriff_dressed: {
  58611. height: math.unit(1.7, "meters"),
  58612. weight: math.unit(70, "kg"),
  58613. name: "Dressed",
  58614. image: {
  58615. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58616. extra: 710/689,
  58617. bottom: 67/777
  58618. },
  58619. form: "hippogriff",
  58620. default: true
  58621. },
  58622. hippogriff_nude: {
  58623. height: math.unit(1.7, "meters"),
  58624. weight: math.unit(70, "kg"),
  58625. name: "Nude",
  58626. image: {
  58627. source: "./media/characters/otreus/hippogriff-nude.svg",
  58628. extra: 710/689,
  58629. bottom: 67/777
  58630. },
  58631. form: "hippogriff",
  58632. },
  58633. hippogriff_dressedLewd: {
  58634. height: math.unit(1.7, "meters"),
  58635. weight: math.unit(70, "kg"),
  58636. name: "Dressed (Lewd)",
  58637. image: {
  58638. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58639. extra: 710/689,
  58640. bottom: 67/777
  58641. },
  58642. form: "hippogriff",
  58643. },
  58644. hippogriff_nudeLewd: {
  58645. height: math.unit(1.7, "meters"),
  58646. weight: math.unit(70, "kg"),
  58647. name: "Nude (Lewd)",
  58648. image: {
  58649. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58650. extra: 710/689,
  58651. bottom: 67/777
  58652. },
  58653. form: "hippogriff",
  58654. },
  58655. },
  58656. [
  58657. {
  58658. name: "Original Size",
  58659. height: math.unit(1.7, "meters"),
  58660. allForms: true
  58661. },
  58662. {
  58663. name: "Incognito Size",
  58664. height: math.unit(2, "meters"),
  58665. allForms: true
  58666. },
  58667. {
  58668. name: "Mega",
  58669. height: math.unit(2, "km"),
  58670. allForms: true
  58671. },
  58672. {
  58673. name: "Mega+",
  58674. height: math.unit(40, "km"),
  58675. allForms: true
  58676. },
  58677. {
  58678. name: "Giga",
  58679. height: math.unit(250, "km"),
  58680. allForms: true
  58681. },
  58682. {
  58683. name: "Giga+",
  58684. height: math.unit(3000, "km"),
  58685. allForms: true
  58686. },
  58687. {
  58688. name: "Terra",
  58689. height: math.unit(20000, "km"),
  58690. allForms: true
  58691. },
  58692. {
  58693. name: "Solar (Home Size)",
  58694. height: math.unit(3e6, "km"),
  58695. allForms: true,
  58696. default: true
  58697. },
  58698. ],
  58699. {
  58700. "magpie": {
  58701. name: "Magpie",
  58702. default: true
  58703. },
  58704. "hippogriff": {
  58705. name: "Hippogriff",
  58706. },
  58707. }
  58708. ))
  58709. characterMakers.push(() => makeCharacter(
  58710. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58711. {
  58712. frontDressed: {
  58713. height: math.unit(1.8, "meters"),
  58714. weight: math.unit(90, "kg"),
  58715. name: "Front (Dressed)",
  58716. image: {
  58717. source: "./media/characters/thalia/front-dressed.svg",
  58718. extra: 478/402,
  58719. bottom: 55/533
  58720. }
  58721. },
  58722. backDressed: {
  58723. height: math.unit(1.8, "meters"),
  58724. weight: math.unit(90, "kg"),
  58725. name: "Back (Dressed)",
  58726. image: {
  58727. source: "./media/characters/thalia/back-dressed.svg",
  58728. extra: 500/424,
  58729. bottom: 15/515
  58730. }
  58731. },
  58732. frontNude: {
  58733. height: math.unit(1.8, "meters"),
  58734. weight: math.unit(90, "kg"),
  58735. name: "Front (Nude)",
  58736. image: {
  58737. source: "./media/characters/thalia/front-nude.svg",
  58738. extra: 478/402,
  58739. bottom: 55/533
  58740. }
  58741. },
  58742. backNude: {
  58743. height: math.unit(1.8, "meters"),
  58744. weight: math.unit(90, "kg"),
  58745. name: "Back (Nude)",
  58746. image: {
  58747. source: "./media/characters/thalia/back-nude.svg",
  58748. extra: 500/424,
  58749. bottom: 15/515
  58750. }
  58751. },
  58752. },
  58753. [
  58754. {
  58755. name: "Incognito",
  58756. height: math.unit(3, "meters")
  58757. },
  58758. {
  58759. name: "Macro",
  58760. height: math.unit(500, "meters")
  58761. },
  58762. {
  58763. name: "Mega",
  58764. height: math.unit(5, "km")
  58765. },
  58766. {
  58767. name: "Mega+",
  58768. height: math.unit(30, "km")
  58769. },
  58770. {
  58771. name: "Giga",
  58772. height: math.unit(350, "km")
  58773. },
  58774. {
  58775. name: "Giga+",
  58776. height: math.unit(4000, "km")
  58777. },
  58778. {
  58779. name: "Terra",
  58780. height: math.unit(35000, "km")
  58781. },
  58782. {
  58783. name: "Original Size",
  58784. height: math.unit(130000, "km")
  58785. },
  58786. {
  58787. name: "Solar (Home Size)",
  58788. height: math.unit(4e6, "km"),
  58789. default: true
  58790. },
  58791. ]
  58792. ))
  58793. characterMakers.push(() => makeCharacter(
  58794. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58795. {
  58796. front: {
  58797. height: math.unit(1.8, "meters"),
  58798. weight: math.unit(95, "kg"),
  58799. name: "Front",
  58800. image: {
  58801. source: "./media/characters/shango/front.svg",
  58802. extra: 1925/1774,
  58803. bottom: 67/1992
  58804. }
  58805. },
  58806. back: {
  58807. height: math.unit(1.8, "meters"),
  58808. weight: math.unit(95, "kg"),
  58809. name: "Back",
  58810. image: {
  58811. source: "./media/characters/shango/back.svg",
  58812. extra: 1915/1766,
  58813. bottom: 52/1967
  58814. }
  58815. },
  58816. frontLewd: {
  58817. height: math.unit(1.8, "meters"),
  58818. weight: math.unit(95, "kg"),
  58819. name: "Front (Lewd)",
  58820. image: {
  58821. source: "./media/characters/shango/front-lewd.svg",
  58822. extra: 1925/1774,
  58823. bottom: 67/1992
  58824. }
  58825. },
  58826. backLewd: {
  58827. height: math.unit(1.8, "meters"),
  58828. weight: math.unit(95, "kg"),
  58829. name: "Back (Lewd)",
  58830. image: {
  58831. source: "./media/characters/shango/back-lewd.svg",
  58832. extra: 1915/1766,
  58833. bottom: 52/1967
  58834. }
  58835. },
  58836. maw: {
  58837. height: math.unit(1.64, "feet"),
  58838. name: "Maw",
  58839. image: {
  58840. source: "./media/characters/shango/maw.svg"
  58841. }
  58842. },
  58843. dick: {
  58844. height: math.unit(2.14, "feet"),
  58845. name: "Dick",
  58846. image: {
  58847. source: "./media/characters/shango/dick.svg"
  58848. }
  58849. },
  58850. },
  58851. [
  58852. {
  58853. name: "Incognito",
  58854. height: math.unit(1.8, "meters")
  58855. },
  58856. {
  58857. name: "Home Size",
  58858. height: math.unit(60, "meters"),
  58859. default: true
  58860. },
  58861. {
  58862. name: "Macro",
  58863. height: math.unit(450, "meters")
  58864. },
  58865. {
  58866. name: "Mega",
  58867. height: math.unit(6, "km")
  58868. },
  58869. {
  58870. name: "Mega+",
  58871. height: math.unit(35, "km")
  58872. },
  58873. {
  58874. name: "Giga",
  58875. height: math.unit(500, "km")
  58876. },
  58877. {
  58878. name: "Giga+",
  58879. height: math.unit(5000, "km")
  58880. },
  58881. {
  58882. name: "Terra",
  58883. height: math.unit(60000, "km")
  58884. },
  58885. {
  58886. name: "Terra+",
  58887. height: math.unit(400000, "km")
  58888. },
  58889. ]
  58890. ))
  58891. characterMakers.push(() => makeCharacter(
  58892. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58893. {
  58894. front: {
  58895. height: math.unit(2, "meters"),
  58896. weight: math.unit(95, "kg"),
  58897. name: "Front",
  58898. image: {
  58899. source: "./media/characters/osiris-gryphon/front.svg",
  58900. extra: 1508/1313,
  58901. bottom: 87/1595
  58902. }
  58903. },
  58904. back: {
  58905. height: math.unit(2, "meters"),
  58906. weight: math.unit(95, "kg"),
  58907. name: "Back",
  58908. image: {
  58909. source: "./media/characters/osiris-gryphon/back.svg",
  58910. extra: 1436/1309,
  58911. bottom: 64/1500
  58912. }
  58913. },
  58914. frontLewd: {
  58915. height: math.unit(2, "meters"),
  58916. weight: math.unit(95, "kg"),
  58917. name: "Front-lewd",
  58918. image: {
  58919. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58920. extra: 1508/1313,
  58921. bottom: 87/1595
  58922. }
  58923. },
  58924. wing: {
  58925. height: math.unit(6.3333, "feet"),
  58926. name: "Wing",
  58927. image: {
  58928. source: "./media/characters/osiris-gryphon/wing.svg"
  58929. }
  58930. },
  58931. },
  58932. [
  58933. {
  58934. name: "Incognito",
  58935. height: math.unit(2, "meters")
  58936. },
  58937. {
  58938. name: "Home Size",
  58939. height: math.unit(30, "meters"),
  58940. default: true
  58941. },
  58942. {
  58943. name: "Macro",
  58944. height: math.unit(100, "meters")
  58945. },
  58946. {
  58947. name: "Macro+",
  58948. height: math.unit(350, "meters")
  58949. },
  58950. {
  58951. name: "Mega",
  58952. height: math.unit(40, "km")
  58953. },
  58954. {
  58955. name: "Giga",
  58956. height: math.unit(300, "km")
  58957. },
  58958. {
  58959. name: "Giga+",
  58960. height: math.unit(2000, "km")
  58961. },
  58962. {
  58963. name: "Terra",
  58964. height: math.unit(30000, "km")
  58965. },
  58966. ]
  58967. ))
  58968. characterMakers.push(() => makeCharacter(
  58969. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58970. {
  58971. front: {
  58972. height: math.unit(2.5, "meters"),
  58973. weight: math.unit(200, "kg"),
  58974. name: "Front",
  58975. image: {
  58976. source: "./media/characters/atlas-dragon/front.svg",
  58977. extra: 745/462,
  58978. bottom: 36/781
  58979. }
  58980. },
  58981. back: {
  58982. height: math.unit(2.5, "meters"),
  58983. weight: math.unit(200, "kg"),
  58984. name: "Back",
  58985. image: {
  58986. source: "./media/characters/atlas-dragon/back.svg",
  58987. extra: 848/822,
  58988. bottom: 57/905
  58989. }
  58990. },
  58991. frontLewd: {
  58992. height: math.unit(2.5, "meters"),
  58993. weight: math.unit(200, "kg"),
  58994. name: "Front (Lewd)",
  58995. image: {
  58996. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58997. extra: 745/462,
  58998. bottom: 36/781
  58999. }
  59000. },
  59001. backLewd: {
  59002. height: math.unit(2.5, "meters"),
  59003. weight: math.unit(200, "kg"),
  59004. name: "Back (Lewd)",
  59005. image: {
  59006. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59007. extra: 848/822,
  59008. bottom: 57/905
  59009. }
  59010. },
  59011. },
  59012. [
  59013. {
  59014. name: "Incognito",
  59015. height: math.unit(2.5, "meters")
  59016. },
  59017. {
  59018. name: "Small Macro",
  59019. height: math.unit(50, "meters")
  59020. },
  59021. {
  59022. name: "Macro",
  59023. height: math.unit(350, "meters")
  59024. },
  59025. {
  59026. name: "Mega",
  59027. height: math.unit(5.5, "kilometers")
  59028. },
  59029. {
  59030. name: "Mega+",
  59031. height: math.unit(50, "km")
  59032. },
  59033. {
  59034. name: "Giga",
  59035. height: math.unit(350, "km")
  59036. },
  59037. {
  59038. name: "Giga+",
  59039. height: math.unit(2000, "km")
  59040. },
  59041. {
  59042. name: "Giga++",
  59043. height: math.unit(6500, "km")
  59044. },
  59045. {
  59046. name: "Terra",
  59047. height: math.unit(30000, "km")
  59048. },
  59049. {
  59050. name: "Terra+",
  59051. height: math.unit(250000, "km")
  59052. },
  59053. {
  59054. name: "True Size",
  59055. height: math.unit(100, "multiverses"),
  59056. default: true
  59057. },
  59058. ]
  59059. ))
  59060. characterMakers.push(() => makeCharacter(
  59061. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59062. {
  59063. front: {
  59064. height: math.unit(1.8, "m"),
  59065. weight: math.unit(120, "kg"),
  59066. name: "Front",
  59067. image: {
  59068. source: "./media/characters/chey/front.svg",
  59069. extra: 1359/1270,
  59070. bottom: 18/1377
  59071. }
  59072. },
  59073. arm: {
  59074. height: math.unit(2.05, "feet"),
  59075. name: "Arm",
  59076. image: {
  59077. source: "./media/characters/chey/arm.svg"
  59078. }
  59079. },
  59080. head: {
  59081. height: math.unit(1.89, "feet"),
  59082. name: "Head",
  59083. image: {
  59084. source: "./media/characters/chey/head.svg"
  59085. }
  59086. },
  59087. },
  59088. [
  59089. {
  59090. name: "Original Size",
  59091. height: math.unit(5, "cm")
  59092. },
  59093. {
  59094. name: "Incognito Size",
  59095. height: math.unit(2.4, "m")
  59096. },
  59097. {
  59098. name: "Home Size",
  59099. height: math.unit(200, "meters"),
  59100. default: true
  59101. },
  59102. {
  59103. name: "Mega",
  59104. height: math.unit(2, "km")
  59105. },
  59106. {
  59107. name: "Giga (Preferred Size)",
  59108. height: math.unit(2000, "km")
  59109. },
  59110. {
  59111. name: "Giga+",
  59112. height: math.unit(6000, "km")
  59113. },
  59114. {
  59115. name: "Terra",
  59116. height: math.unit(17000, "km")
  59117. },
  59118. {
  59119. name: "Terra+",
  59120. height: math.unit(75000, "km")
  59121. },
  59122. {
  59123. name: "Terra++",
  59124. height: math.unit(225000, "km")
  59125. },
  59126. ]
  59127. ))
  59128. characterMakers.push(() => makeCharacter(
  59129. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59130. {
  59131. side: {
  59132. height: math.unit(7.8, "meters"),
  59133. name: "Side",
  59134. image: {
  59135. source: "./media/characters/ragnarok/side.svg",
  59136. extra: 725/621,
  59137. bottom: 72/797
  59138. }
  59139. },
  59140. },
  59141. [
  59142. {
  59143. name: "Normal",
  59144. height: math.unit(7.8, "meters"),
  59145. default: true
  59146. },
  59147. ]
  59148. ))
  59149. characterMakers.push(() => makeCharacter(
  59150. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59151. {
  59152. hyena_front: {
  59153. height: math.unit(2.1, "meters"),
  59154. weight: math.unit(110, "kg"),
  59155. name: "Front",
  59156. image: {
  59157. source: "./media/characters/nima/hyena-front.svg",
  59158. extra: 1904/1796,
  59159. bottom: 67/1971
  59160. },
  59161. form: "hyena",
  59162. },
  59163. hyena_back: {
  59164. height: math.unit(2.1, "meters"),
  59165. weight: math.unit(110, "kg"),
  59166. name: "Back",
  59167. image: {
  59168. source: "./media/characters/nima/hyena-back.svg",
  59169. extra: 1964/1884,
  59170. bottom: 35/1999
  59171. },
  59172. form: "hyena",
  59173. },
  59174. shark_front: {
  59175. height: math.unit(1.95, "meters"),
  59176. weight: math.unit(110, "kg"),
  59177. name: "Front",
  59178. image: {
  59179. source: "./media/characters/nima/shark-front.svg",
  59180. extra: 2238/2013,
  59181. bottom: 0/223
  59182. },
  59183. form: "shark",
  59184. },
  59185. paw: {
  59186. height: math.unit(1, "feet"),
  59187. name: "Paw",
  59188. image: {
  59189. source: "./media/characters/nima/paw.svg"
  59190. }
  59191. },
  59192. circlet: {
  59193. height: math.unit(0.3, "feet"),
  59194. name: "Circlet",
  59195. image: {
  59196. source: "./media/characters/nima/circlet.svg"
  59197. }
  59198. },
  59199. necklace: {
  59200. height: math.unit(1.2, "feet"),
  59201. name: "Necklace",
  59202. image: {
  59203. source: "./media/characters/nima/necklace.svg"
  59204. }
  59205. },
  59206. bracelet: {
  59207. height: math.unit(0.51, "feet"),
  59208. name: "Bracelet",
  59209. image: {
  59210. source: "./media/characters/nima/bracelet.svg"
  59211. }
  59212. },
  59213. armband: {
  59214. height: math.unit(1.3, "feet"),
  59215. name: "Armband",
  59216. image: {
  59217. source: "./media/characters/nima/armband.svg"
  59218. }
  59219. },
  59220. },
  59221. [
  59222. {
  59223. name: "Incognito",
  59224. height: math.unit(2.1, "meters"),
  59225. allForms: true
  59226. },
  59227. {
  59228. name: "Small Macro",
  59229. height: math.unit(50, "meters"),
  59230. allForms: true
  59231. },
  59232. {
  59233. name: "Macro",
  59234. height: math.unit(200, "meters"),
  59235. allForms: true
  59236. },
  59237. {
  59238. name: "Mega",
  59239. height: math.unit(2.5, "km"),
  59240. allForms: true
  59241. },
  59242. {
  59243. name: "Mega+",
  59244. height: math.unit(30, "km"),
  59245. allForms: true
  59246. },
  59247. {
  59248. name: "Giga (Home Size)",
  59249. height: math.unit(400, "km"),
  59250. allForms: true,
  59251. default: true
  59252. },
  59253. {
  59254. name: "Giga+",
  59255. height: math.unit(2500, "km"),
  59256. allForms: true
  59257. },
  59258. {
  59259. name: "Giga++",
  59260. height: math.unit(8000, "km"),
  59261. allForms: true
  59262. },
  59263. {
  59264. name: "Terra",
  59265. height: math.unit(20000, "km"),
  59266. allForms: true
  59267. },
  59268. {
  59269. name: "Terra+",
  59270. height: math.unit(70000, "km"),
  59271. allForms: true
  59272. },
  59273. {
  59274. name: "Terra++",
  59275. height: math.unit(600000, "km"),
  59276. allForms: true
  59277. },
  59278. {
  59279. name: "Galactic",
  59280. height: math.unit(40, "galaxies"),
  59281. allForms: true
  59282. },
  59283. {
  59284. name: "Universal",
  59285. height: math.unit(40, "universes"),
  59286. allForms: true
  59287. },
  59288. ],
  59289. {
  59290. "hyena": {
  59291. name: "Hyena",
  59292. default: true
  59293. },
  59294. "shark": {
  59295. name: "Shark",
  59296. },
  59297. }
  59298. ))
  59299. characterMakers.push(() => makeCharacter(
  59300. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59301. {
  59302. anthro_front: {
  59303. height: math.unit(1.5, "meters"),
  59304. name: "Front",
  59305. image: {
  59306. source: "./media/characters/adelaide/anthro-front.svg",
  59307. extra: 860/783,
  59308. bottom: 60/920
  59309. },
  59310. form: "anthro",
  59311. default: true
  59312. },
  59313. hand: {
  59314. height: math.unit(0.65, "feet"),
  59315. name: "Hand",
  59316. image: {
  59317. source: "./media/characters/adelaide/hand.svg"
  59318. },
  59319. form: "anthro"
  59320. },
  59321. foot: {
  59322. height: math.unit(1.38 * 259 / 314, "feet"),
  59323. name: "Foot",
  59324. image: {
  59325. source: "./media/characters/adelaide/foot.svg",
  59326. extra: 259/259,
  59327. bottom: 55/314
  59328. },
  59329. form: "anthro"
  59330. },
  59331. feather: {
  59332. height: math.unit(0.85, "feet"),
  59333. name: "Feather",
  59334. image: {
  59335. source: "./media/characters/adelaide/feather.svg"
  59336. },
  59337. form: "anthro"
  59338. },
  59339. feral_side: {
  59340. height: math.unit(1, "meters"),
  59341. name: "Side",
  59342. image: {
  59343. source: "./media/characters/adelaide/feral-side.svg",
  59344. extra: 550/467,
  59345. bottom: 37/587
  59346. },
  59347. form: "feral",
  59348. default: true
  59349. },
  59350. feral_hand: {
  59351. height: math.unit(0.58, "feet"),
  59352. name: "Hand",
  59353. image: {
  59354. source: "./media/characters/adelaide/hand.svg"
  59355. },
  59356. form: "feral"
  59357. },
  59358. feral_foot: {
  59359. height: math.unit(1.2 * 259 / 314, "feet"),
  59360. name: "Foot",
  59361. image: {
  59362. source: "./media/characters/adelaide/foot.svg",
  59363. extra: 259/259,
  59364. bottom: 55/314
  59365. },
  59366. form: "feral"
  59367. },
  59368. feral_feather: {
  59369. height: math.unit(0.63, "feet"),
  59370. name: "Feather",
  59371. image: {
  59372. source: "./media/characters/adelaide/feather.svg"
  59373. },
  59374. form: "feral"
  59375. },
  59376. },
  59377. [
  59378. {
  59379. name: "Normal",
  59380. height: math.unit(1.5, "meters"),
  59381. form: "anthro",
  59382. default: true
  59383. },
  59384. {
  59385. name: "Normal",
  59386. height: math.unit(1, "meters"),
  59387. form: "feral",
  59388. default: true
  59389. },
  59390. ],
  59391. {
  59392. "anthro": {
  59393. name: "Anthro",
  59394. default: true
  59395. },
  59396. "feral": {
  59397. name: "Feral",
  59398. },
  59399. }
  59400. ))
  59401. characterMakers.push(() => makeCharacter(
  59402. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59403. {
  59404. front: {
  59405. height: math.unit(2.5, "meters"),
  59406. name: "Front",
  59407. image: {
  59408. source: "./media/characters/goa/front.svg",
  59409. extra: 1109/1013,
  59410. bottom: 150/1259
  59411. }
  59412. },
  59413. },
  59414. [
  59415. {
  59416. name: "Normal",
  59417. height: math.unit(2.5, "meters"),
  59418. default: true
  59419. },
  59420. ]
  59421. ))
  59422. characterMakers.push(() => makeCharacter(
  59423. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59424. {
  59425. front: {
  59426. height: math.unit(2, "meters"),
  59427. weight: math.unit(100, "kg"),
  59428. name: "Front",
  59429. image: {
  59430. source: "./media/characters/kiki-weavile/front.svg",
  59431. extra: 357/332,
  59432. bottom: 60/417
  59433. }
  59434. },
  59435. },
  59436. [
  59437. {
  59438. name: "Normal",
  59439. height: math.unit(2, "meters"),
  59440. default: true
  59441. },
  59442. ]
  59443. ))
  59444. characterMakers.push(() => makeCharacter(
  59445. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59446. {
  59447. side: {
  59448. height: math.unit(1.6, "meters"),
  59449. name: "Side",
  59450. image: {
  59451. source: "./media/characters/liza/side.svg",
  59452. extra: 943/915,
  59453. bottom: 72/1015
  59454. }
  59455. },
  59456. },
  59457. [
  59458. {
  59459. name: "Normal",
  59460. height: math.unit(1.6, "meters"),
  59461. default: true
  59462. },
  59463. ]
  59464. ))
  59465. characterMakers.push(() => makeCharacter(
  59466. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59467. {
  59468. side: {
  59469. height: math.unit(2.5, "meters"),
  59470. name: "Side",
  59471. image: {
  59472. source: "./media/characters/persephone-sweetbreath/side.svg",
  59473. extra: 796/700,
  59474. bottom: 44/840
  59475. }
  59476. },
  59477. },
  59478. [
  59479. {
  59480. name: "Normal",
  59481. height: math.unit(2.5, "meters"),
  59482. default: true
  59483. },
  59484. ]
  59485. ))
  59486. characterMakers.push(() => makeCharacter(
  59487. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59488. {
  59489. front: {
  59490. height: math.unit(32, "meters"),
  59491. name: "Front",
  59492. image: {
  59493. source: "./media/characters/pierce/front.svg",
  59494. extra: 1695/1475,
  59495. bottom: 185/1880
  59496. }
  59497. },
  59498. side: {
  59499. height: math.unit(32, "meters"),
  59500. name: "Side",
  59501. image: {
  59502. source: "./media/characters/pierce/side.svg",
  59503. extra: 974/859,
  59504. bottom: 43/1017
  59505. }
  59506. },
  59507. frontWingless: {
  59508. height: math.unit(32, "meters"),
  59509. name: "Front (Wingless)",
  59510. image: {
  59511. source: "./media/characters/pierce/front-wingless.svg",
  59512. extra: 1695/1475,
  59513. bottom: 185/1880
  59514. }
  59515. },
  59516. sideWingless: {
  59517. height: math.unit(32, "meters"),
  59518. name: "Side (Wingless)",
  59519. image: {
  59520. source: "./media/characters/pierce/side-wingless.svg",
  59521. extra: 974/859,
  59522. bottom: 43/1017
  59523. }
  59524. },
  59525. maw: {
  59526. height: math.unit(19.3, "meters"),
  59527. name: "Maw",
  59528. image: {
  59529. source: "./media/characters/pierce/maw.svg"
  59530. }
  59531. },
  59532. },
  59533. [
  59534. {
  59535. name: "Small",
  59536. height: math.unit(8.5, "meters")
  59537. },
  59538. {
  59539. name: "Normal",
  59540. height: math.unit(32, "meters"),
  59541. default: true
  59542. },
  59543. ]
  59544. ))
  59545. characterMakers.push(() => makeCharacter(
  59546. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59547. {
  59548. front: {
  59549. height: math.unit(2.3, "meters"),
  59550. weight: math.unit(165, "kg"),
  59551. name: "Front",
  59552. image: {
  59553. source: "./media/characters/shira/front.svg",
  59554. extra: 924/919,
  59555. bottom: 17/941
  59556. },
  59557. form: "cobra",
  59558. default: true
  59559. },
  59560. back: {
  59561. height: math.unit(2.3, "meters"),
  59562. weight: math.unit(165, "kg"),
  59563. name: "Back",
  59564. image: {
  59565. source: "./media/characters/shira/back.svg",
  59566. extra: 928/922,
  59567. bottom: 18/946
  59568. },
  59569. form: "cobra"
  59570. },
  59571. frontLewd: {
  59572. height: math.unit(2.3, "meters"),
  59573. weight: math.unit(165, "kg"),
  59574. name: "Front (Lewd)",
  59575. image: {
  59576. source: "./media/characters/shira/front-lewd.svg",
  59577. extra: 924/919,
  59578. bottom: 17/941
  59579. },
  59580. form: "cobra"
  59581. },
  59582. backLewd: {
  59583. height: math.unit(2.3, "meters"),
  59584. weight: math.unit(165, "kg"),
  59585. name: "Back (Lewd)",
  59586. image: {
  59587. source: "./media/characters/shira/back-lewd.svg",
  59588. extra: 928/922,
  59589. bottom: 18/946
  59590. },
  59591. form: "cobra"
  59592. },
  59593. maw: {
  59594. height: math.unit(1.14, "feet"),
  59595. name: "Maw",
  59596. image: {
  59597. source: "./media/characters/shira/maw.svg"
  59598. },
  59599. form: "cobra"
  59600. },
  59601. magma_front: {
  59602. height: math.unit(2.3, "meters"),
  59603. weight: math.unit(165, "kg"),
  59604. name: "Front",
  59605. image: {
  59606. source: "./media/characters/shira/magma-front.svg",
  59607. extra: 1870/1693,
  59608. bottom: 24/1894
  59609. },
  59610. form: "magma",
  59611. },
  59612. magma_back: {
  59613. height: math.unit(2.3, "meters"),
  59614. weight: math.unit(165, "kg"),
  59615. name: "Back",
  59616. image: {
  59617. source: "./media/characters/shira/magma-back.svg",
  59618. extra: 1918/1756,
  59619. bottom: 46/1964
  59620. },
  59621. form: "magma",
  59622. },
  59623. },
  59624. [
  59625. {
  59626. name: "Incognito",
  59627. height: math.unit(2.3, "meters"),
  59628. allForms: true
  59629. },
  59630. {
  59631. name: "Home Size",
  59632. height: math.unit(150, "meters"),
  59633. default: true,
  59634. allForms: true
  59635. },
  59636. {
  59637. name: "Macro",
  59638. height: math.unit(2, "km"),
  59639. allForms: true
  59640. },
  59641. {
  59642. name: "Mega",
  59643. height: math.unit(30, "km"),
  59644. allForms: true
  59645. },
  59646. {
  59647. name: "Giga",
  59648. height: math.unit(450, "km"),
  59649. allForms: true
  59650. },
  59651. {
  59652. name: "Giga+",
  59653. height: math.unit(3000, "km"),
  59654. allForms: true
  59655. },
  59656. {
  59657. name: "Giga++",
  59658. height: math.unit(6000, "km"),
  59659. allForms: true
  59660. },
  59661. {
  59662. name: "Terra",
  59663. height: math.unit(80000, "km"),
  59664. allForms: true
  59665. },
  59666. {
  59667. name: "Terra+",
  59668. height: math.unit(350000, "km"),
  59669. allForms: true
  59670. },
  59671. {
  59672. name: "Solar",
  59673. height: math.unit(1e6, "km"),
  59674. allForms: true
  59675. },
  59676. ],
  59677. {
  59678. "cobra": {
  59679. name: "Cobra",
  59680. default: true
  59681. },
  59682. "magma": {
  59683. name: "Magma Dragon",
  59684. },
  59685. }
  59686. ))
  59687. characterMakers.push(() => makeCharacter(
  59688. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59689. {
  59690. front: {
  59691. height: math.unit(2, "meters"),
  59692. weight: math.unit(160, "kg"),
  59693. name: "Front",
  59694. image: {
  59695. source: "./media/characters/daxerios/front.svg",
  59696. extra: 1334/1277,
  59697. bottom: 45/1379
  59698. }
  59699. },
  59700. frontLewd: {
  59701. height: math.unit(2, "meters"),
  59702. weight: math.unit(160, "kg"),
  59703. name: "Front (Lewd)",
  59704. image: {
  59705. source: "./media/characters/daxerios/front-lewd.svg",
  59706. extra: 1334/1277,
  59707. bottom: 45/1379
  59708. }
  59709. },
  59710. dick: {
  59711. height: math.unit(2.35, "feet"),
  59712. name: "Dick",
  59713. image: {
  59714. source: "./media/characters/daxerios/dick.svg"
  59715. }
  59716. },
  59717. },
  59718. [
  59719. {
  59720. name: "\"Small\"",
  59721. height: math.unit(5, "meters")
  59722. },
  59723. {
  59724. name: "Original Size",
  59725. height: math.unit(500, "meters"),
  59726. default: true
  59727. },
  59728. {
  59729. name: "Mega",
  59730. height: math.unit(2, "km")
  59731. },
  59732. {
  59733. name: "Mega+",
  59734. height: math.unit(35, "km")
  59735. },
  59736. {
  59737. name: "Giga",
  59738. height: math.unit(250, "km")
  59739. },
  59740. {
  59741. name: "Giga+",
  59742. height: math.unit(3000, "km")
  59743. },
  59744. {
  59745. name: "Terra",
  59746. height: math.unit(25000, "km")
  59747. },
  59748. {
  59749. name: "Terra+",
  59750. height: math.unit(300000, "km")
  59751. },
  59752. {
  59753. name: "Solar",
  59754. height: math.unit(1e6, "km")
  59755. },
  59756. ]
  59757. ))
  59758. characterMakers.push(() => makeCharacter(
  59759. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59760. {
  59761. front: {
  59762. height: math.unit(8 + 4/12, "feet"),
  59763. weight: math.unit(464, "lb"),
  59764. name: "Front",
  59765. image: {
  59766. source: "./media/characters/caveat/front.svg",
  59767. extra: 1861/1678,
  59768. bottom: 40/1901
  59769. }
  59770. },
  59771. },
  59772. [
  59773. {
  59774. name: "Normal",
  59775. height: math.unit(8 + 4/12, "feet"),
  59776. default: true
  59777. },
  59778. ]
  59779. ))
  59780. characterMakers.push(() => makeCharacter(
  59781. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59782. {
  59783. front: {
  59784. height: math.unit(12, "feet"),
  59785. weight: math.unit(1800, "lb"),
  59786. name: "Front",
  59787. image: {
  59788. source: "./media/characters/centbair/front.svg",
  59789. extra: 781/663,
  59790. bottom: 25/806
  59791. }
  59792. },
  59793. frontNsfw: {
  59794. height: math.unit(12, "feet"),
  59795. weight: math.unit(1800, "lb"),
  59796. name: "Front (NSFW)",
  59797. image: {
  59798. source: "./media/characters/centbair/front-nsfw.svg",
  59799. extra: 781/663,
  59800. bottom: 25/806
  59801. }
  59802. },
  59803. back: {
  59804. height: math.unit(12, "feet"),
  59805. weight: math.unit(1800, "lb"),
  59806. name: "Back",
  59807. image: {
  59808. source: "./media/characters/centbair/back.svg",
  59809. extra: 808/761,
  59810. bottom: 19/827
  59811. }
  59812. },
  59813. dick: {
  59814. height: math.unit(6.5, "feet"),
  59815. name: "Dick",
  59816. image: {
  59817. source: "./media/characters/centbair/dick.svg"
  59818. }
  59819. },
  59820. slit: {
  59821. height: math.unit(3.25, "feet"),
  59822. name: "Slit",
  59823. image: {
  59824. source: "./media/characters/centbair/slit.svg"
  59825. }
  59826. },
  59827. },
  59828. [
  59829. {
  59830. name: "Normal",
  59831. height: math.unit(12, "feet"),
  59832. default: true
  59833. },
  59834. ]
  59835. ))
  59836. characterMakers.push(() => makeCharacter(
  59837. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59838. {
  59839. front: {
  59840. height: math.unit(5 + 7/12, "feet"),
  59841. name: "Front",
  59842. image: {
  59843. source: "./media/characters/andy/front.svg",
  59844. extra: 634/588,
  59845. bottom: 36/670
  59846. },
  59847. extraAttributes: {
  59848. "pawLength": {
  59849. name: "Paw Length",
  59850. power: 1,
  59851. type: "length",
  59852. base: math.unit(1, "feet")
  59853. },
  59854. }
  59855. },
  59856. side: {
  59857. height: math.unit(5 + 7/12, "feet"),
  59858. name: "Side",
  59859. image: {
  59860. source: "./media/characters/andy/side.svg",
  59861. extra: 641/596,
  59862. bottom: 34/675
  59863. },
  59864. extraAttributes: {
  59865. "pawLength": {
  59866. name: "Paw Length",
  59867. power: 1,
  59868. type: "length",
  59869. base: math.unit(1, "feet")
  59870. },
  59871. }
  59872. },
  59873. back: {
  59874. height: math.unit(5 + 7/12, "feet"),
  59875. name: "Back",
  59876. image: {
  59877. source: "./media/characters/andy/back.svg",
  59878. extra: 618/583,
  59879. bottom: 39/657
  59880. },
  59881. extraAttributes: {
  59882. "pawLength": {
  59883. name: "Paw Length",
  59884. power: 1,
  59885. type: "length",
  59886. base: math.unit(1, "feet")
  59887. },
  59888. }
  59889. },
  59890. paw: {
  59891. height: math.unit(1.13, "feet"),
  59892. name: "Paw",
  59893. image: {
  59894. source: "./media/characters/andy/paw.svg"
  59895. }
  59896. },
  59897. },
  59898. [
  59899. {
  59900. name: "Micro",
  59901. height: math.unit(4, "inches")
  59902. },
  59903. {
  59904. name: "Normal",
  59905. height: math.unit(5 + 7/12, "feet"),
  59906. default: true
  59907. },
  59908. {
  59909. name: "Macro",
  59910. height: math.unit(390.42, "feet")
  59911. },
  59912. ]
  59913. ))
  59914. characterMakers.push(() => makeCharacter(
  59915. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59916. {
  59917. front: {
  59918. height: math.unit(7, "feet"),
  59919. weight: math.unit(250, "lb"),
  59920. name: "Front",
  59921. image: {
  59922. source: "./media/characters/vix-titan/front.svg",
  59923. extra: 460/428,
  59924. bottom: 15/475
  59925. },
  59926. extraAttributes: {
  59927. "pawWidth": {
  59928. name: "Paw Width",
  59929. power: 1,
  59930. type: "length",
  59931. base: math.unit(0.75, "feet")
  59932. },
  59933. }
  59934. },
  59935. },
  59936. [
  59937. {
  59938. name: "Normal",
  59939. height: math.unit(7, "feet"),
  59940. default: true
  59941. },
  59942. {
  59943. name: "Giant",
  59944. height: math.unit(1500, "feet")
  59945. },
  59946. {
  59947. name: "Mega",
  59948. height: math.unit(10, "miles")
  59949. },
  59950. {
  59951. name: "Giga",
  59952. height: math.unit(150, "miles")
  59953. },
  59954. {
  59955. name: "Tera",
  59956. height: math.unit(144000, "miles")
  59957. },
  59958. ]
  59959. ))
  59960. characterMakers.push(() => makeCharacter(
  59961. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59962. {
  59963. front: {
  59964. height: math.unit(6 + 2/12, "feet"),
  59965. name: "Front",
  59966. image: {
  59967. source: "./media/characters/reiku/front.svg",
  59968. extra: 1910/1757,
  59969. bottom: 103/2013
  59970. },
  59971. extraAttributes: {
  59972. "thighThickness": {
  59973. name: "Thigh Thickness",
  59974. power: 1,
  59975. type: "length",
  59976. base: math.unit(1.12, "feet")
  59977. },
  59978. "assThickness": {
  59979. name: "Ass Thickness",
  59980. power: 1,
  59981. type: "length",
  59982. base: math.unit(1.12*2, "feet")
  59983. },
  59984. }
  59985. },
  59986. side: {
  59987. height: math.unit(6 + 2/12, "feet"),
  59988. name: "Side",
  59989. image: {
  59990. source: "./media/characters/reiku/side.svg",
  59991. extra: 1846/1748,
  59992. bottom: 99/1945
  59993. },
  59994. extraAttributes: {
  59995. "thighThickness": {
  59996. name: "Thigh Thickness",
  59997. power: 1,
  59998. type: "length",
  59999. base: math.unit(1.12, "feet")
  60000. },
  60001. "assThickness": {
  60002. name: "Ass Thickness",
  60003. power: 1,
  60004. type: "length",
  60005. base: math.unit(1.12*2, "feet")
  60006. },
  60007. }
  60008. },
  60009. back: {
  60010. height: math.unit(6 + 2/12, "feet"),
  60011. name: "Back",
  60012. image: {
  60013. source: "./media/characters/reiku/back.svg",
  60014. extra: 1941/1786,
  60015. bottom: 34/1975
  60016. },
  60017. extraAttributes: {
  60018. "thighThickness": {
  60019. name: "Thigh Thickness",
  60020. power: 1,
  60021. type: "length",
  60022. base: math.unit(1.12, "feet")
  60023. },
  60024. "assThickness": {
  60025. name: "Ass Thickness",
  60026. power: 1,
  60027. type: "length",
  60028. base: math.unit(1.12*2, "feet")
  60029. },
  60030. }
  60031. },
  60032. head: {
  60033. height: math.unit(1.8, "feet"),
  60034. name: "Head",
  60035. image: {
  60036. source: "./media/characters/reiku/head.svg"
  60037. }
  60038. },
  60039. tailTop: {
  60040. height: math.unit(8.4, "feet"),
  60041. name: "Tail (Top)",
  60042. image: {
  60043. source: "./media/characters/reiku/tail-top.svg"
  60044. }
  60045. },
  60046. tailBottom: {
  60047. height: math.unit(8.4, "feet"),
  60048. name: "Tail (Bottom)",
  60049. image: {
  60050. source: "./media/characters/reiku/tail-bottom.svg"
  60051. }
  60052. },
  60053. foot: {
  60054. height: math.unit(2.6, "feet"),
  60055. name: "Foot",
  60056. image: {
  60057. source: "./media/characters/reiku/foot.svg"
  60058. }
  60059. },
  60060. footCurled: {
  60061. height: math.unit(2.3, "feet"),
  60062. name: "Foot (Curled)",
  60063. image: {
  60064. source: "./media/characters/reiku/foot-curled.svg"
  60065. }
  60066. },
  60067. footSide: {
  60068. height: math.unit(1.26, "feet"),
  60069. name: "Foot (Side)",
  60070. image: {
  60071. source: "./media/characters/reiku/foot-side.svg"
  60072. }
  60073. },
  60074. },
  60075. [
  60076. {
  60077. name: "Normal",
  60078. height: math.unit(6 + 2/12, "feet"),
  60079. default: true
  60080. },
  60081. ]
  60082. ))
  60083. characterMakers.push(() => makeCharacter(
  60084. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60085. {
  60086. front: {
  60087. height: math.unit(7, "feet"),
  60088. weight: math.unit(500, "kg"),
  60089. name: "Front",
  60090. image: {
  60091. source: "./media/characters/cialda/front.svg",
  60092. extra: 912/745,
  60093. bottom: 55/967
  60094. }
  60095. },
  60096. },
  60097. [
  60098. {
  60099. name: "Normal",
  60100. height: math.unit(7, "feet"),
  60101. default: true
  60102. },
  60103. ]
  60104. ))
  60105. characterMakers.push(() => makeCharacter(
  60106. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60107. {
  60108. side: {
  60109. height: math.unit(6, "feet"),
  60110. weight: math.unit(600, "lb"),
  60111. preyCapacity: math.unit(25, "liters"),
  60112. name: "Side",
  60113. image: {
  60114. source: "./media/characters/darkkin/side.svg",
  60115. extra: 1597/1447,
  60116. bottom: 101/1698
  60117. }
  60118. },
  60119. },
  60120. [
  60121. {
  60122. name: "Canon Height",
  60123. height: math.unit(568, "feet"),
  60124. default: true
  60125. },
  60126. ]
  60127. ))
  60128. characterMakers.push(() => makeCharacter(
  60129. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60130. {
  60131. front: {
  60132. height: math.unit(6, "feet"),
  60133. weight: math.unit(1500, "lb"),
  60134. preyCapacity: math.unit(3, "people"),
  60135. name: "Front",
  60136. image: {
  60137. source: "./media/characters/livnia/front.svg",
  60138. extra: 934/932,
  60139. bottom: 83/1017
  60140. }
  60141. },
  60142. back: {
  60143. height: math.unit(6, "feet"),
  60144. weight: math.unit(1500, "lb"),
  60145. preyCapacity: math.unit(3, "people"),
  60146. name: "Back",
  60147. image: {
  60148. source: "./media/characters/livnia/back.svg",
  60149. extra: 916/915,
  60150. bottom: 58/974
  60151. }
  60152. },
  60153. head: {
  60154. height: math.unit(1.53, "feet"),
  60155. name: "Head",
  60156. image: {
  60157. source: "./media/characters/livnia/head.svg"
  60158. }
  60159. },
  60160. maw: {
  60161. height: math.unit(0.78, "feet"),
  60162. name: "Maw",
  60163. image: {
  60164. source: "./media/characters/livnia/maw.svg"
  60165. }
  60166. },
  60167. genitals: {
  60168. height: math.unit(0.35, "feet"),
  60169. name: "Genitals",
  60170. image: {
  60171. source: "./media/characters/livnia/genitals.svg"
  60172. }
  60173. },
  60174. },
  60175. [
  60176. {
  60177. name: "Normal",
  60178. height: math.unit(1000, "feet"),
  60179. default: true
  60180. },
  60181. ]
  60182. ))
  60183. characterMakers.push(() => makeCharacter(
  60184. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60185. {
  60186. front: {
  60187. height: math.unit(4, "feet"),
  60188. weight: math.unit(73, "lb"),
  60189. name: "Front",
  60190. image: {
  60191. source: "./media/characters/hayaku/front.svg",
  60192. extra: 1011/888,
  60193. bottom: 33/1044
  60194. }
  60195. },
  60196. back: {
  60197. height: math.unit(4, "feet"),
  60198. weight: math.unit(73, "lb"),
  60199. name: "Back",
  60200. image: {
  60201. source: "./media/characters/hayaku/back.svg",
  60202. extra: 1040/930,
  60203. bottom: 20/1060
  60204. }
  60205. },
  60206. },
  60207. [
  60208. {
  60209. name: "Normal",
  60210. height: math.unit(4, "feet"),
  60211. default: true
  60212. },
  60213. ]
  60214. ))
  60215. characterMakers.push(() => makeCharacter(
  60216. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60217. {
  60218. front: {
  60219. height: math.unit(6 + 7/12, "feet"),
  60220. weight: math.unit(300, "lb"),
  60221. name: "Front",
  60222. image: {
  60223. source: "./media/characters/athena-bryzant/front.svg",
  60224. extra: 870/835,
  60225. bottom: 33/903
  60226. }
  60227. },
  60228. back: {
  60229. height: math.unit(6 + 7/12, "feet"),
  60230. weight: math.unit(300, "lb"),
  60231. name: "Back",
  60232. image: {
  60233. source: "./media/characters/athena-bryzant/back.svg",
  60234. extra: 858/823,
  60235. bottom: 30/888
  60236. }
  60237. },
  60238. head: {
  60239. height: math.unit(2.38, "feet"),
  60240. name: "Head",
  60241. image: {
  60242. source: "./media/characters/athena-bryzant/head.svg"
  60243. }
  60244. },
  60245. wings: {
  60246. height: math.unit(2.85, "feet"),
  60247. name: "Wings",
  60248. image: {
  60249. source: "./media/characters/athena-bryzant/wings.svg"
  60250. }
  60251. },
  60252. },
  60253. [
  60254. {
  60255. name: "Normal",
  60256. height: math.unit(6 + 7/12, "feet"),
  60257. default: true
  60258. },
  60259. {
  60260. name: "Big",
  60261. height: math.unit(8, "feet")
  60262. },
  60263. {
  60264. name: "Very Big",
  60265. height: math.unit(11, "feet")
  60266. },
  60267. ]
  60268. ))
  60269. characterMakers.push(() => makeCharacter(
  60270. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60271. {
  60272. side: {
  60273. height: math.unit(3, "meters"),
  60274. weight: math.unit(7500, "kg"),
  60275. preyCapacity: math.unit(1e12, "people"),
  60276. name: "Side",
  60277. image: {
  60278. source: "./media/characters/zel-kesh/side.svg",
  60279. extra: 910/407,
  60280. bottom: 147/1057
  60281. }
  60282. },
  60283. },
  60284. [
  60285. {
  60286. name: "Normal",
  60287. height: math.unit(3, "meters"),
  60288. default: true
  60289. },
  60290. ]
  60291. ))
  60292. characterMakers.push(() => makeCharacter(
  60293. { name: "Kane (Fox)", species: ["fox"], tags: ["anthro"] },
  60294. {
  60295. front: {
  60296. height: math.unit(2, "meters"),
  60297. weight: math.unit(95, "kg"),
  60298. name: "Front",
  60299. image: {
  60300. source: "./media/characters/kane-fox/front.svg",
  60301. extra: 945/888,
  60302. bottom: 27/972
  60303. }
  60304. },
  60305. back: {
  60306. height: math.unit(2, "meters"),
  60307. weight: math.unit(95, "kg"),
  60308. name: "Back",
  60309. image: {
  60310. source: "./media/characters/kane-fox/back.svg",
  60311. extra: 959/914,
  60312. bottom: 15/974
  60313. }
  60314. },
  60315. frontLewd: {
  60316. height: math.unit(2, "meters"),
  60317. weight: math.unit(95, "kg"),
  60318. name: "Front (Lewd)",
  60319. image: {
  60320. source: "./media/characters/kane-fox/front-lewd.svg",
  60321. extra: 945/888,
  60322. bottom: 27/972
  60323. }
  60324. },
  60325. },
  60326. [
  60327. {
  60328. name: "Home Size",
  60329. height: math.unit(2, "meters"),
  60330. default: true
  60331. },
  60332. {
  60333. name: "Macro",
  60334. height: math.unit(200, "meters")
  60335. },
  60336. {
  60337. name: "Small Mega",
  60338. height: math.unit(3, "km")
  60339. },
  60340. {
  60341. name: "Mega",
  60342. height: math.unit(50, "km")
  60343. },
  60344. {
  60345. name: "Giga",
  60346. height: math.unit(200, "km")
  60347. },
  60348. {
  60349. name: "Giga+",
  60350. height: math.unit(2500, "km")
  60351. },
  60352. {
  60353. name: "Terra",
  60354. height: math.unit(70000, "km")
  60355. },
  60356. {
  60357. name: "Terra+",
  60358. height: math.unit(150000, "km")
  60359. },
  60360. {
  60361. name: "Terra++",
  60362. height: math.unit(400000, "km")
  60363. },
  60364. ]
  60365. ))
  60366. characterMakers.push(() => makeCharacter(
  60367. { name: "Ayranus", species: ["otter", "lion", "bat"], tags: ["anthro"] },
  60368. {
  60369. otter_front: {
  60370. height: math.unit(1.8, "meters"),
  60371. weight: math.unit(90, "kg"),
  60372. name: "Front",
  60373. image: {
  60374. source: "./media/characters/ayranus/otter-front.svg",
  60375. extra: 468/452,
  60376. bottom: 43/511
  60377. },
  60378. form: "otter",
  60379. },
  60380. otter_frontLewd: {
  60381. height: math.unit(1.8, "meters"),
  60382. weight: math.unit(90, "kg"),
  60383. name: "Front (Lewd)",
  60384. image: {
  60385. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60386. extra: 468/452,
  60387. bottom: 43/511
  60388. },
  60389. form: "otter",
  60390. },
  60391. lionbat_front: {
  60392. height: math.unit(1.8, "meters"),
  60393. weight: math.unit(90, "kg"),
  60394. name: "Front (Lewd)",
  60395. image: {
  60396. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60397. extra: 797/740,
  60398. bottom: 78/875
  60399. },
  60400. form: "lionbat",
  60401. },
  60402. paw: {
  60403. height: math.unit(1.5, "feet"),
  60404. name: "Paw",
  60405. image: {
  60406. source: "./media/characters/ayranus/paw.svg"
  60407. },
  60408. },
  60409. },
  60410. [
  60411. {
  60412. name: "Incognito",
  60413. height: math.unit(1.8, "meters"),
  60414. allForms: true
  60415. },
  60416. {
  60417. name: "Macro",
  60418. height: math.unit(60, "meters"),
  60419. allForms: true
  60420. },
  60421. {
  60422. name: "Macro+",
  60423. height: math.unit(200, "meters"),
  60424. allForms: true
  60425. },
  60426. {
  60427. name: "Mega",
  60428. height: math.unit(35, "km"),
  60429. allForms: true
  60430. },
  60431. {
  60432. name: "Giga",
  60433. height: math.unit(220, "km"),
  60434. allForms: true
  60435. },
  60436. {
  60437. name: "Giga+",
  60438. height: math.unit(1500, "km"),
  60439. allForms: true
  60440. },
  60441. {
  60442. name: "Terra",
  60443. height: math.unit(13000, "km"),
  60444. allForms: true
  60445. },
  60446. {
  60447. name: "Terra+",
  60448. height: math.unit(500000, "km"),
  60449. allForms: true
  60450. },
  60451. {
  60452. name: "Galactic",
  60453. height: math.unit(486080, "parsecs"),
  60454. default: true,
  60455. allForms: true
  60456. },
  60457. ],
  60458. {
  60459. "otter": {
  60460. name: "Otter",
  60461. default: true
  60462. },
  60463. "lionbat": {
  60464. name: "Lionbat",
  60465. },
  60466. }
  60467. ))
  60468. characterMakers.push(() => makeCharacter(
  60469. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60470. {
  60471. front: {
  60472. height: math.unit(7 + 4/12, "feet"),
  60473. weight: math.unit(400, "lb"),
  60474. name: "Front",
  60475. image: {
  60476. source: "./media/characters/proxy/front.svg",
  60477. extra: 1605/1542,
  60478. bottom: 55/1660
  60479. }
  60480. },
  60481. side: {
  60482. height: math.unit(7 + 4/12, "feet"),
  60483. weight: math.unit(400, "lb"),
  60484. name: "Side",
  60485. image: {
  60486. source: "./media/characters/proxy/side.svg",
  60487. extra: 794/759,
  60488. bottom: 6/800
  60489. }
  60490. },
  60491. hand: {
  60492. height: math.unit(1.54, "feet"),
  60493. name: "Hand",
  60494. image: {
  60495. source: "./media/characters/proxy/hand.svg"
  60496. }
  60497. },
  60498. paw: {
  60499. height: math.unit(1.53, "feet"),
  60500. name: "Paw",
  60501. image: {
  60502. source: "./media/characters/proxy/paw.svg"
  60503. }
  60504. },
  60505. maw: {
  60506. height: math.unit(1.9, "feet"),
  60507. name: "Maw",
  60508. image: {
  60509. source: "./media/characters/proxy/maw.svg"
  60510. }
  60511. },
  60512. },
  60513. [
  60514. {
  60515. name: "Normal",
  60516. height: math.unit(7 + 4/12, "feet"),
  60517. default: true
  60518. },
  60519. ]
  60520. ))
  60521. characterMakers.push(() => makeCharacter(
  60522. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60523. {
  60524. front: {
  60525. height: math.unit(4, "meters"),
  60526. name: "Front",
  60527. image: {
  60528. source: "./media/characters/crocozilla/front.svg",
  60529. extra: 1790/1742,
  60530. bottom: 78/1868
  60531. }
  60532. },
  60533. },
  60534. [
  60535. {
  60536. name: "Normal",
  60537. height: math.unit(4, "meters"),
  60538. default: true
  60539. },
  60540. ]
  60541. ))
  60542. //characters
  60543. function makeCharacters() {
  60544. const results = [];
  60545. characterMakers.forEach(character => {
  60546. results.push(character());
  60547. });
  60548. return results;
  60549. }