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.
 
 
 

58534 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: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. "snivy": {
  2182. name: "Snivy",
  2183. parents: ["pokemon", "snake"]
  2184. },
  2185. }
  2186. //species
  2187. function getSpeciesInfo(speciesList) {
  2188. let result = new Set();
  2189. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2190. result.add(entry)
  2191. });
  2192. return Array.from(result);
  2193. };
  2194. function getSpeciesInfoHelper(species) {
  2195. if (!speciesData[species]) {
  2196. console.warn(species + " doesn't exist");
  2197. return [];
  2198. }
  2199. if (speciesData[species].parents) {
  2200. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2201. } else {
  2202. return [species];
  2203. }
  2204. }
  2205. characterMakers.push(() => makeCharacter(
  2206. {
  2207. name: "Fen",
  2208. species: ["crux"],
  2209. description: {
  2210. title: "Bio",
  2211. text: "Very furry. Sheds on everything."
  2212. },
  2213. tags: [
  2214. "anthro",
  2215. "goo"
  2216. ]
  2217. },
  2218. {
  2219. front: {
  2220. height: math.unit(12, "feet"),
  2221. weight: math.unit(2400, "lb"),
  2222. preyCapacity: math.unit(1, "people"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/fen/front.svg",
  2226. extra: 1804/1562,
  2227. bottom: 205/2009
  2228. },
  2229. extraAttributes: {
  2230. pawSize: {
  2231. name: "Paw Size",
  2232. power: 2,
  2233. type: "area",
  2234. base: math.unit(0.35, "m^2")
  2235. }
  2236. }
  2237. },
  2238. diving: {
  2239. height: math.unit(4.9, "meters"),
  2240. weight: math.unit(2400, "lb"),
  2241. name: "Diving",
  2242. image: {
  2243. source: "./media/characters/fen/diving.svg"
  2244. }
  2245. },
  2246. sleeby: {
  2247. height: math.unit(3.45, "meters"),
  2248. weight: math.unit(2400, "lb"),
  2249. name: "Sleeby",
  2250. image: {
  2251. source: "./media/characters/fen/sleeby.svg"
  2252. }
  2253. },
  2254. goo: {
  2255. height: math.unit(12, "feet"),
  2256. weight: math.unit(3600, "lb"),
  2257. volume: math.unit(1000, "liters"),
  2258. preyCapacity: math.unit(6, "people"),
  2259. name: "Goo",
  2260. image: {
  2261. source: "./media/characters/fen/goo.svg",
  2262. extra: 1307/1071,
  2263. bottom: 134/1441
  2264. }
  2265. },
  2266. gooNsfw: {
  2267. height: math.unit(12, "feet"),
  2268. weight: math.unit(3750, "lb"),
  2269. volume: math.unit(1000, "liters"),
  2270. preyCapacity: math.unit(6, "people"),
  2271. name: "Goo (NSFW)",
  2272. image: {
  2273. source: "./media/characters/fen/goo-nsfw.svg",
  2274. extra: 1875/1734,
  2275. bottom: 122/1997
  2276. }
  2277. },
  2278. maw: {
  2279. height: math.unit(5.03, "feet"),
  2280. name: "Maw",
  2281. image: {
  2282. source: "./media/characters/fen/maw.svg"
  2283. }
  2284. },
  2285. gooCeiling: {
  2286. height: math.unit(6.6, "feet"),
  2287. weight: math.unit(3000, "lb"),
  2288. volume: math.unit(1000, "liters"),
  2289. preyCapacity: math.unit(6, "people"),
  2290. name: "Goo (Ceiling)",
  2291. image: {
  2292. source: "./media/characters/fen/goo-ceiling.svg"
  2293. }
  2294. },
  2295. paw: {
  2296. height: math.unit(3.77, "feet"),
  2297. name: "Paw",
  2298. image: {
  2299. source: "./media/characters/fen/paw.svg"
  2300. },
  2301. extraAttributes: {
  2302. "toeSize": {
  2303. name: "Toe Size",
  2304. power: 2,
  2305. type: "area",
  2306. base: math.unit(0.02875, "m^2")
  2307. },
  2308. "pawSize": {
  2309. name: "Paw Size",
  2310. power: 2,
  2311. type: "area",
  2312. base: math.unit(0.378, "m^2")
  2313. },
  2314. }
  2315. },
  2316. tail: {
  2317. height: math.unit(12.1, "feet"),
  2318. name: "Tail",
  2319. image: {
  2320. source: "./media/characters/fen/tail.svg"
  2321. }
  2322. },
  2323. tailFull: {
  2324. height: math.unit(12.1, "feet"),
  2325. name: "Full Tail",
  2326. image: {
  2327. source: "./media/characters/fen/tail-full.svg"
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(12, "feet"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/fen/back.svg",
  2336. },
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nHe is not currently looking at you."
  2341. }
  2342. }
  2343. },
  2344. full: {
  2345. height: math.unit(1.85, "meter"),
  2346. weight: math.unit(3200, "lb"),
  2347. name: "Full",
  2348. image: {
  2349. source: "./media/characters/fen/full.svg",
  2350. extra: 1133/859,
  2351. bottom: 145/1278
  2352. },
  2353. info: {
  2354. description: {
  2355. mode: "append",
  2356. text: "\n\nMunch."
  2357. }
  2358. }
  2359. },
  2360. gooLounging: {
  2361. height: math.unit(4.53, "feet"),
  2362. weight: math.unit(3000, "lb"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo (Lounging)",
  2365. image: {
  2366. source: "./media/characters/fen/goo-lounging.svg",
  2367. bottom: 116 / 613
  2368. }
  2369. },
  2370. lounging: {
  2371. height: math.unit(10.52, "feet"),
  2372. weight: math.unit(2400, "lb"),
  2373. name: "Lounging",
  2374. image: {
  2375. source: "./media/characters/fen/lounging.svg"
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Small",
  2382. height: math.unit(2.2428, "meter")
  2383. },
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(12, "feet"),
  2387. default: true,
  2388. },
  2389. {
  2390. name: "Big",
  2391. height: math.unit(20, "feet")
  2392. },
  2393. {
  2394. name: "Minimacro",
  2395. height: math.unit(40, "feet"),
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nTOO DAMN BIG"
  2400. }
  2401. }
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(100, "feet"),
  2406. info: {
  2407. description: {
  2408. mode: "append",
  2409. text: "\n\nTOO DAMN BIG"
  2410. }
  2411. }
  2412. },
  2413. {
  2414. name: "Megamacro",
  2415. height: math.unit(2, "miles")
  2416. },
  2417. {
  2418. name: "Gigamacro",
  2419. height: math.unit(10, "earths")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(183, "cm"),
  2428. weight: math.unit(80, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/sofia-fluttertail/front.svg",
  2432. bottom: 0.01,
  2433. extra: 2154 / 2081
  2434. }
  2435. },
  2436. frontAlt: {
  2437. height: math.unit(183, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Front (alt)",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2442. }
  2443. },
  2444. back: {
  2445. height: math.unit(183, "cm"),
  2446. weight: math.unit(80, "kg"),
  2447. name: "Back",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/back.svg"
  2450. }
  2451. },
  2452. kneeling: {
  2453. height: math.unit(125, "cm"),
  2454. weight: math.unit(80, "kg"),
  2455. name: "Kneeling",
  2456. image: {
  2457. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2458. extra: 1033 / 977,
  2459. bottom: 23.7 / 1057
  2460. }
  2461. },
  2462. maw: {
  2463. height: math.unit(183 / 5, "cm"),
  2464. name: "Maw",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/maw.svg"
  2467. }
  2468. },
  2469. mawcloseup: {
  2470. height: math.unit(183 / 5 * 0.41, "cm"),
  2471. name: "Maw (Closeup)",
  2472. image: {
  2473. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2474. }
  2475. },
  2476. paws: {
  2477. height: math.unit(1.17, "feet"),
  2478. name: "Paws",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/paws.svg",
  2481. extra: 851 / 851,
  2482. bottom: 17 / 868
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(1.83, "meter")
  2490. },
  2491. {
  2492. name: "Size Thief",
  2493. height: math.unit(18, "feet")
  2494. },
  2495. {
  2496. name: "50 Foot Collie",
  2497. height: math.unit(50, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(96, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Megamerger",
  2506. height: math.unit(650, "feet")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/march/front.svg",
  2519. extra: 1992/1851,
  2520. bottom: 39/2031
  2521. }
  2522. },
  2523. foot: {
  2524. height: math.unit(0.9, "feet"),
  2525. name: "Foot",
  2526. image: {
  2527. source: "./media/characters/march/foot.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7.9, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(220, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2.98, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(15963, "km")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(2980000000, "km")
  2552. },
  2553. {
  2554. name: "Examacro",
  2555. height: math.unit(250, "parsecs")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(60, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/noir/front.svg",
  2568. extra: 1,
  2569. bottom: 0.032
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(6.6, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(500, "feet")
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(2.5, "km"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Gigamacro",
  2589. height: math.unit(22500, "km")
  2590. },
  2591. {
  2592. name: "Teramacro",
  2593. height: math.unit(2500000000, "km")
  2594. },
  2595. {
  2596. name: "Examacro",
  2597. height: math.unit(200, "parsecs")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(7, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/okuri/front.svg",
  2610. extra: 739/665,
  2611. bottom: 39/778
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/okuri/back.svg",
  2620. extra: 734/653,
  2621. bottom: 13/747
  2622. }
  2623. },
  2624. sitting: {
  2625. height: math.unit(2.95, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Sitting",
  2628. image: {
  2629. source: "./media/characters/okuri/sitting.svg",
  2630. extra: 370/318,
  2631. bottom: 99/469
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Smallest",
  2638. height: math.unit(5 + 2/12, "feet")
  2639. },
  2640. {
  2641. name: "Smaller",
  2642. height: math.unit(300, "feet")
  2643. },
  2644. {
  2645. name: "Small",
  2646. height: math.unit(1000, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(1, "mile")
  2651. },
  2652. {
  2653. name: "Mega Macro (Small)",
  2654. height: math.unit(20, "km")
  2655. },
  2656. {
  2657. name: "Mega Macro (Large)",
  2658. height: math.unit(600, "km")
  2659. },
  2660. {
  2661. name: "Giga Macro",
  2662. height: math.unit(10000, "km")
  2663. },
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(577560, "km"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Large",
  2671. height: math.unit(4, "galaxies")
  2672. },
  2673. {
  2674. name: "Largest",
  2675. height: math.unit(15, "multiverses")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7, "feet"),
  2684. weight: math.unit(100, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/manny/front.svg",
  2688. extra: 1,
  2689. bottom: 0.06
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/manny/back.svg",
  2698. extra: 1,
  2699. bottom: 0.014
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet"),
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(78, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(300, "meters")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(2400, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(5167, "meters")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(41769, "miles")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/adake/front-1.svg"
  2740. }
  2741. },
  2742. frontAlt: {
  2743. height: math.unit(7, "feet"),
  2744. weight: math.unit(100, "kg"),
  2745. name: "Front (Alt)",
  2746. image: {
  2747. source: "./media/characters/adake/front-2.svg",
  2748. extra: 1,
  2749. bottom: 0.01
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(7, "feet"),
  2754. weight: math.unit(100, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/adake/back.svg",
  2758. }
  2759. },
  2760. kneel: {
  2761. height: math.unit(5.385, "feet"),
  2762. weight: math.unit(100, "kg"),
  2763. name: "Kneeling",
  2764. image: {
  2765. source: "./media/characters/adake/kneel.svg",
  2766. bottom: 0.052
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/elijah/front.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/elijah/back.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. frontNsfw: {
  2822. height: math.unit(1.65, "meters"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front (NSFW)",
  2825. image: {
  2826. source: "./media/characters/elijah/front-nsfw.svg",
  2827. extra: 858 / 830,
  2828. bottom: 95.5 / 953.8559
  2829. }
  2830. },
  2831. backNsfw: {
  2832. height: math.unit(1.65, "meters"),
  2833. weight: math.unit(50, "kg"),
  2834. name: "Back (NSFW)",
  2835. image: {
  2836. source: "./media/characters/elijah/back-nsfw.svg",
  2837. extra: 895 / 850,
  2838. bottom: 5.3 / 897.956
  2839. }
  2840. },
  2841. dick: {
  2842. height: math.unit(1, "feet"),
  2843. name: "Dick",
  2844. image: {
  2845. source: "./media/characters/elijah/dick.svg"
  2846. }
  2847. },
  2848. beakOpen: {
  2849. height: math.unit(1.25, "feet"),
  2850. name: "Beak (Open)",
  2851. image: {
  2852. source: "./media/characters/elijah/beak-open.svg"
  2853. }
  2854. },
  2855. beakShut: {
  2856. height: math.unit(1.25, "feet"),
  2857. name: "Beak (Shut)",
  2858. image: {
  2859. source: "./media/characters/elijah/beak-shut.svg"
  2860. }
  2861. },
  2862. footFlexing: {
  2863. height: math.unit(1.61, "feet"),
  2864. name: "Foot (Flexing)",
  2865. image: {
  2866. source: "./media/characters/elijah/foot-flexing.svg"
  2867. }
  2868. },
  2869. footStepping: {
  2870. height: math.unit(1.44, "feet"),
  2871. name: "Foot (Stepping)",
  2872. image: {
  2873. source: "./media/characters/elijah/foot-stepping.svg"
  2874. }
  2875. },
  2876. plantigradeLeg: {
  2877. height: math.unit(2.34, "feet"),
  2878. name: "Plantigrade Leg",
  2879. image: {
  2880. source: "./media/characters/elijah/plantigrade-leg.svg"
  2881. }
  2882. },
  2883. plantigradeFootLeft: {
  2884. height: math.unit(0.9, "feet"),
  2885. name: "Plantigrade Foot (Left)",
  2886. image: {
  2887. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2888. }
  2889. },
  2890. plantigradeFootRight: {
  2891. height: math.unit(0.9, "feet"),
  2892. name: "Plantigrade Foot (Right)",
  2893. image: {
  2894. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(1.65, "meters")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(55, "meters"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Macro+",
  2910. height: math.unit(105, "meters")
  2911. },
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(7 + 2/12, "feet"),
  2919. weight: math.unit(320, "kg"),
  2920. preyCapacity: math.unit(0.276549935, "people"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/rai/front.svg",
  2924. extra: 1802/1696,
  2925. bottom: 68/1870
  2926. },
  2927. form: "anthro",
  2928. default: true
  2929. },
  2930. frontDressed: {
  2931. height: math.unit(7 + 2/12, "feet"),
  2932. weight: math.unit(320, "kg"),
  2933. preyCapacity: math.unit(0.276549935, "people"),
  2934. name: "Front (Dressed)",
  2935. image: {
  2936. source: "./media/characters/rai/front-dressed.svg",
  2937. extra: 1802/1696,
  2938. bottom: 68/1870
  2939. },
  2940. form: "anthro"
  2941. },
  2942. side: {
  2943. height: math.unit(7 + 2/12, "feet"),
  2944. weight: math.unit(320, "kg"),
  2945. preyCapacity: math.unit(0.276549935, "people"),
  2946. name: "Side",
  2947. image: {
  2948. source: "./media/characters/rai/side.svg",
  2949. extra: 1789/1710,
  2950. bottom: 115/1904
  2951. },
  2952. form: "anthro"
  2953. },
  2954. back: {
  2955. height: math.unit(7 + 2/12, "feet"),
  2956. weight: math.unit(320, "kg"),
  2957. preyCapacity: math.unit(0.276549935, "people"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/rai/back.svg",
  2961. extra: 1770/1707,
  2962. bottom: 28/1798
  2963. },
  2964. form: "anthro"
  2965. },
  2966. feral: {
  2967. height: math.unit(9.5, "feet"),
  2968. weight: math.unit(640, "kg"),
  2969. preyCapacity: math.unit(4, "people"),
  2970. name: "Feral",
  2971. image: {
  2972. source: "./media/characters/rai/feral.svg",
  2973. extra: 945/553,
  2974. bottom: 176/1121
  2975. },
  2976. form: "feral",
  2977. default: true
  2978. },
  2979. dragon: {
  2980. height: math.unit(23, "feet"),
  2981. weight: math.unit(50000, "lb"),
  2982. name: "Dragon",
  2983. image: {
  2984. source: "./media/characters/rai/dragon.svg",
  2985. extra: 2498 / 2030,
  2986. bottom: 85.2 / 2584
  2987. },
  2988. form: "dragon",
  2989. default: true
  2990. },
  2991. maw: {
  2992. height: math.unit(1.69, "feet"),
  2993. name: "Maw",
  2994. image: {
  2995. source: "./media/characters/rai/maw.svg"
  2996. },
  2997. form: "anthro"
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(7 + 2/12, "feet"),
  3004. form: "anthro"
  3005. },
  3006. {
  3007. name: "Big",
  3008. height: math.unit(11, "feet"),
  3009. form: "anthro"
  3010. },
  3011. {
  3012. name: "Minimacro",
  3013. height: math.unit(77, "feet"),
  3014. form: "anthro"
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(302, "feet"),
  3019. default: true,
  3020. form: "anthro"
  3021. },
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(9.5, "feet"),
  3025. form: "feral",
  3026. default: true
  3027. },
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(23, "feet"),
  3031. form: "dragon",
  3032. default: true
  3033. }
  3034. ],
  3035. {
  3036. "anthro": {
  3037. name: "Anthro",
  3038. default: true
  3039. },
  3040. "feral": {
  3041. name: "Feral",
  3042. },
  3043. "dragon": {
  3044. name: "Dragon",
  3045. },
  3046. }
  3047. ))
  3048. characterMakers.push(() => makeCharacter(
  3049. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3050. {
  3051. frontDressed: {
  3052. height: math.unit(216, "feet"),
  3053. weight: math.unit(7000000, "lb"),
  3054. preyCapacity: math.unit(1321, "people"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/jazzy/front-dressed.svg",
  3058. extra: 2738 / 2651,
  3059. bottom: 41.8 / 2786
  3060. }
  3061. },
  3062. backDressed: {
  3063. height: math.unit(216, "feet"),
  3064. weight: math.unit(7000000, "lb"),
  3065. preyCapacity: math.unit(1321, "people"),
  3066. name: "Back (Dressed)",
  3067. image: {
  3068. source: "./media/characters/jazzy/back-dressed.svg",
  3069. extra: 2775 / 2673,
  3070. bottom: 36.8 / 2817
  3071. }
  3072. },
  3073. front: {
  3074. height: math.unit(216, "feet"),
  3075. weight: math.unit(7000000, "lb"),
  3076. preyCapacity: math.unit(1321, "people"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/jazzy/front.svg",
  3080. extra: 2738 / 2651,
  3081. bottom: 41.8 / 2786
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(216, "feet"),
  3086. weight: math.unit(7000000, "lb"),
  3087. preyCapacity: math.unit(1321, "people"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/jazzy/back.svg",
  3091. extra: 2775 / 2673,
  3092. bottom: 36.8 / 2817
  3093. }
  3094. },
  3095. maw: {
  3096. height: math.unit(20, "feet"),
  3097. name: "Maw",
  3098. image: {
  3099. source: "./media/characters/jazzy/maw.svg"
  3100. }
  3101. },
  3102. paws: {
  3103. height: math.unit(27.5, "feet"),
  3104. name: "Paws",
  3105. image: {
  3106. source: "./media/characters/jazzy/paws.svg"
  3107. }
  3108. },
  3109. eye: {
  3110. height: math.unit(4.4, "feet"),
  3111. name: "Eye",
  3112. image: {
  3113. source: "./media/characters/jazzy/eye.svg"
  3114. }
  3115. },
  3116. droneOffense: {
  3117. height: math.unit(9.5, "inches"),
  3118. name: "Drone (Offense)",
  3119. image: {
  3120. source: "./media/characters/jazzy/drone-offense.svg"
  3121. }
  3122. },
  3123. droneRecon: {
  3124. height: math.unit(9.5, "inches"),
  3125. name: "Drone (Recon)",
  3126. image: {
  3127. source: "./media/characters/jazzy/drone-recon.svg"
  3128. }
  3129. },
  3130. droneDefense: {
  3131. height: math.unit(9.5, "inches"),
  3132. name: "Drone (Defense)",
  3133. image: {
  3134. source: "./media/characters/jazzy/drone-defense.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(216, "feet"),
  3142. default: true
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(9 + 6/12, "feet"),
  3151. weight: math.unit(700, "lb"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/flamm/front.svg",
  3155. extra: 1736/1596,
  3156. bottom: 93/1829
  3157. }
  3158. },
  3159. buff: {
  3160. height: math.unit(9 + 6/12, "feet"),
  3161. weight: math.unit(950, "lb"),
  3162. name: "Buff",
  3163. image: {
  3164. source: "./media/characters/flamm/buff.svg",
  3165. extra: 3018/2874,
  3166. bottom: 221/3239
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9.5, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(200, "feet"),
  3178. default: true
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/zephiro/front.svg",
  3191. extra: 1873/1761,
  3192. bottom: 147/2020
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(5 + 3/12, "feet"),
  3197. weight: math.unit(60, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/zephiro/side.svg",
  3201. extra: 1929/1827,
  3202. bottom: 65/1994
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(5 + 3/12, "feet"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/zephiro/back.svg",
  3211. extra: 1926/1816,
  3212. bottom: 41/1967
  3213. }
  3214. },
  3215. hand: {
  3216. height: math.unit(0.68, "feet"),
  3217. name: "Hand",
  3218. image: {
  3219. source: "./media/characters/zephiro/hand.svg"
  3220. }
  3221. },
  3222. paw: {
  3223. height: math.unit(1, "feet"),
  3224. name: "Paw",
  3225. image: {
  3226. source: "./media/characters/zephiro/paw.svg"
  3227. }
  3228. },
  3229. beans: {
  3230. height: math.unit(0.93, "feet"),
  3231. name: "Beans",
  3232. image: {
  3233. source: "./media/characters/zephiro/beans.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(3, "inches")
  3241. },
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(5 + 3 / 12, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(118, "feet")
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(5, "feet"),
  3258. weight: math.unit(90, "kg"),
  3259. preyCapacity: math.unit(14, "people"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/fory/front.svg",
  3263. extra: 2862 / 2674,
  3264. bottom: 180 / 3043.8
  3265. },
  3266. form: "weaselbun",
  3267. default: true,
  3268. extraAttributes: {
  3269. "pawSize": {
  3270. name: "Paw Size",
  3271. power: 2,
  3272. type: "area",
  3273. base: math.unit(0.1596, "m^2")
  3274. },
  3275. "pawLength": {
  3276. name: "Paw Length",
  3277. power: 1,
  3278. type: "length",
  3279. base: math.unit(0.7, "m")
  3280. }
  3281. }
  3282. },
  3283. back: {
  3284. height: math.unit(5, "feet"),
  3285. weight: math.unit(90, "kg"),
  3286. preyCapacity: math.unit(14, "people"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/fory/back.svg",
  3290. extra: 1790/1672,
  3291. bottom: 84/1874
  3292. },
  3293. form: "weaselbun",
  3294. extraAttributes: {
  3295. "pawSize": {
  3296. name: "Paw Size",
  3297. power: 2,
  3298. type: "area",
  3299. base: math.unit(0.1596, "m^2")
  3300. },
  3301. "pawLength": {
  3302. name: "Paw Length",
  3303. power: 1,
  3304. type: "length",
  3305. base: math.unit(0.7, "m")
  3306. }
  3307. }
  3308. },
  3309. paw: {
  3310. height: math.unit(2.14, "feet"),
  3311. name: "Paw",
  3312. image: {
  3313. source: "./media/characters/fory/paw.svg"
  3314. },
  3315. form: "weaselbun",
  3316. extraAttributes: {
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.1596, "m^2")
  3322. },
  3323. "pawLength": {
  3324. name: "Paw Length",
  3325. power: 1,
  3326. type: "length",
  3327. base: math.unit(0.48, "m")
  3328. }
  3329. }
  3330. },
  3331. bunBack: {
  3332. height: math.unit(3, "feet"),
  3333. weight: math.unit(20, "kg"),
  3334. preyCapacity: math.unit(3, "people"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/fory/bun-back.svg",
  3338. extra: 1749/1564,
  3339. bottom: 246/1995
  3340. },
  3341. form: "bun",
  3342. default: true,
  3343. extraAttributes: {
  3344. "pawSize": {
  3345. name: "Paw Size",
  3346. power: 2,
  3347. type: "area",
  3348. base: math.unit(0.072, "m^2")
  3349. },
  3350. "pawLength": {
  3351. name: "Paw Length",
  3352. power: 1,
  3353. type: "length",
  3354. base: math.unit(0.45, "m")
  3355. }
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(5, "feet"),
  3363. form: "weaselbun"
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(50, "feet"),
  3368. default: true,
  3369. form: "weaselbun"
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(10, "miles"),
  3374. form: "weaselbun"
  3375. },
  3376. {
  3377. name: "Gigamacro",
  3378. height: math.unit(5, "earths"),
  3379. form: "weaselbun"
  3380. },
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(3, "feet"),
  3384. default: true,
  3385. form: "bun"
  3386. },
  3387. {
  3388. name: "Fun-Size",
  3389. height: math.unit(12, "feet"),
  3390. form: "bun"
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(100, "feet"),
  3395. form: "bun"
  3396. },
  3397. {
  3398. name: "Planetary",
  3399. height: math.unit(3, "earths"),
  3400. form: "bun"
  3401. },
  3402. ],
  3403. {
  3404. "weaselbun": {
  3405. name: "Weaselbun",
  3406. default: true
  3407. },
  3408. "bun": {
  3409. name: "Bun",
  3410. },
  3411. }
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/kurrikage/front.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(7, "feet"),
  3428. weight: math.unit(90, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/kurrikage/back.svg",
  3432. extra: 1790/1677,
  3433. bottom: 61/1851
  3434. }
  3435. },
  3436. dressed: {
  3437. height: math.unit(7, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Dressed",
  3440. image: {
  3441. source: "./media/characters/kurrikage/dressed.svg",
  3442. extra: 1845/1733,
  3443. bottom: 119/1964
  3444. }
  3445. },
  3446. foot: {
  3447. height: math.unit(1.5, "feet"),
  3448. name: "Foot",
  3449. image: {
  3450. source: "./media/characters/kurrikage/foot.svg"
  3451. }
  3452. },
  3453. staff: {
  3454. height: math.unit(6.7, "feet"),
  3455. name: "Staff",
  3456. image: {
  3457. source: "./media/characters/kurrikage/staff.svg"
  3458. }
  3459. },
  3460. peek: {
  3461. height: math.unit(1.05, "feet"),
  3462. name: "Peeking",
  3463. image: {
  3464. source: "./media/characters/kurrikage/peek.svg",
  3465. bottom: 0.08
  3466. }
  3467. },
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(12, "feet"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(20, "feet")
  3478. },
  3479. {
  3480. name: "Macro",
  3481. height: math.unit(500, "feet")
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(20, "miles")
  3486. },
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/shingo/front.svg",
  3498. extra: 1900/1825,
  3499. bottom: 82/1982
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/shingo/side.svg",
  3508. extra: 1930/1865,
  3509. bottom: 16/1946
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/shingo/back.svg",
  3518. extra: 1922/1852,
  3519. bottom: 16/1938
  3520. }
  3521. },
  3522. frontDressed: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lb"),
  3525. name: "Front-dressed",
  3526. image: {
  3527. source: "./media/characters/shingo/front-dressed.svg",
  3528. extra: 1900/1825,
  3529. bottom: 82/1982
  3530. }
  3531. },
  3532. paw: {
  3533. height: math.unit(1.29, "feet"),
  3534. name: "Paw",
  3535. image: {
  3536. source: "./media/characters/shingo/paw.svg"
  3537. }
  3538. },
  3539. hand: {
  3540. height: math.unit(1.07, "feet"),
  3541. name: "Hand",
  3542. image: {
  3543. source: "./media/characters/shingo/hand.svg"
  3544. }
  3545. },
  3546. frontAlt: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (Alt)",
  3550. image: {
  3551. source: "./media/characters/shingo/front-alt.svg",
  3552. extra: 3511 / 3338,
  3553. bottom: 0.005
  3554. }
  3555. },
  3556. frontAlt2: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Front (Alt 2)",
  3560. image: {
  3561. source: "./media/characters/shingo/front-alt-2.svg",
  3562. extra: 706/681,
  3563. bottom: 11/717
  3564. }
  3565. },
  3566. pawAlt: {
  3567. height: math.unit(1, "feet"),
  3568. name: "Paw (Alt)",
  3569. image: {
  3570. source: "./media/characters/shingo/paw-alt.svg"
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Micro",
  3577. height: math.unit(4, "inches")
  3578. },
  3579. {
  3580. name: "Normal",
  3581. height: math.unit(6, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(108, "feet")
  3587. },
  3588. {
  3589. name: "Macro+",
  3590. height: math.unit(1500, "feet")
  3591. },
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3596. {
  3597. side: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/aigey/side.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(200, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(100, "miles")
  3615. },
  3616. ]
  3617. )
  3618. )
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/natasha/front.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. frontNsfw: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Front (NSFW)",
  3636. image: {
  3637. source: "./media/characters/natasha/front-nsfw.svg",
  3638. extra: 859 / 824,
  3639. bottom: 23 / 879.6
  3640. }
  3641. },
  3642. frontErect: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Front (Erect)",
  3646. image: {
  3647. source: "./media/characters/natasha/front-erect.svg",
  3648. extra: 859 / 824,
  3649. bottom: 23 / 879.6
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(5 + 5 / 12, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/natasha/back.svg",
  3658. extra: 887.9 / 852.6,
  3659. bottom: 9.7 / 896.4
  3660. }
  3661. },
  3662. backAlt: {
  3663. height: math.unit(5 + 5 / 12, "feet"),
  3664. weight: math.unit(75, "kg"),
  3665. name: "Back (Alt)",
  3666. image: {
  3667. source: "./media/characters/natasha/back-alt.svg",
  3668. extra: 1236.7 / 1192,
  3669. bottom: 22.3 / 1258.2
  3670. }
  3671. },
  3672. dick: {
  3673. height: math.unit(1.772, "feet"),
  3674. name: "Dick",
  3675. image: {
  3676. source: "./media/characters/natasha/dick.svg"
  3677. }
  3678. },
  3679. paw: {
  3680. height: math.unit(0.250, "meters"),
  3681. name: "Paw",
  3682. image: {
  3683. source: "./media/characters/natasha/paw.svg"
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0024, "m^2")
  3691. },
  3692. "padSize": {
  3693. name: "Pad Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.00889, "m^2")
  3697. },
  3698. "pawSize": {
  3699. name: "Paw Size",
  3700. power: 2,
  3701. type: "area",
  3702. base: math.unit(0.023667, "m^2")
  3703. },
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Shortstack",
  3710. height: math.unit(3, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(5 + 5 / 12, "feet")
  3716. },
  3717. {
  3718. name: "Large",
  3719. height: math.unit(12, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(100, "feet")
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(260, "feet")
  3728. },
  3729. {
  3730. name: "Macro++",
  3731. height: math.unit(1, "mile")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/malik/front.svg",
  3744. extra: 1750/1561,
  3745. bottom: 80/1830
  3746. },
  3747. extraAttributes: {
  3748. "toeSize": {
  3749. name: "Toe Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.0159, "m^2")
  3753. },
  3754. "pawSize": {
  3755. name: "Paw Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.09834, "m^2")
  3759. },
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/malik/side.svg",
  3768. extra: 1802/1685,
  3769. bottom: 42/1844
  3770. },
  3771. extraAttributes: {
  3772. "toeSize": {
  3773. name: "Toe Size",
  3774. power: 2,
  3775. type: "area",
  3776. base: math.unit(0.0159, "m^2")
  3777. },
  3778. "pawSize": {
  3779. name: "Paw Size",
  3780. power: 2,
  3781. type: "area",
  3782. base: math.unit(0.09834, "m^2")
  3783. },
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/malik/back.svg",
  3792. extra: 1803/1607,
  3793. bottom: 33/1836
  3794. },
  3795. extraAttributes: {
  3796. "toeSize": {
  3797. name: "Toe Size",
  3798. power: 2,
  3799. type: "area",
  3800. base: math.unit(0.0159, "m^2")
  3801. },
  3802. "pawSize": {
  3803. name: "Paw Size",
  3804. power: 2,
  3805. type: "area",
  3806. base: math.unit(0.09834, "m^2")
  3807. },
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(156, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(1188, "feet")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/sefer/front.svg",
  3832. extra: 848 / 659,
  3833. bottom: 28.3 / 876.442
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(75, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/sefer/back.svg",
  3842. extra: 864 / 695,
  3843. bottom: 10 / 871
  3844. }
  3845. },
  3846. frontDressed: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(75, "kg"),
  3849. name: "Dressed",
  3850. image: {
  3851. source: "./media/characters/sefer/dressed.svg",
  3852. extra: 839 / 653,
  3853. bottom: 37.6 / 878
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(6, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Big",
  3865. height: math.unit(8, "meters")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3871. {
  3872. body: {
  3873. height: math.unit(2.2428, "meter"),
  3874. weight: math.unit(124.738, "kg"),
  3875. name: "Body",
  3876. image: {
  3877. extra: 1225 / 1050,
  3878. source: "./media/characters/north/front.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Micro",
  3885. height: math.unit(4, "inches")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(63, "meters")
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(101, "miles"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3900. {
  3901. angled: {
  3902. height: math.unit(4, "meter"),
  3903. weight: math.unit(150, "kg"),
  3904. name: "Angled",
  3905. image: {
  3906. source: "./media/characters/talan/angled-sfw.svg",
  3907. bottom: 29 / 3734
  3908. }
  3909. },
  3910. angledNsfw: {
  3911. height: math.unit(4, "meter"),
  3912. weight: math.unit(150, "kg"),
  3913. name: "Angled (NSFW)",
  3914. image: {
  3915. source: "./media/characters/talan/angled-nsfw.svg",
  3916. bottom: 29 / 3734
  3917. }
  3918. },
  3919. frontNsfw: {
  3920. height: math.unit(4, "meter"),
  3921. weight: math.unit(150, "kg"),
  3922. name: "Front (NSFW)",
  3923. image: {
  3924. source: "./media/characters/talan/front-nsfw.svg",
  3925. bottom: 29 / 3734
  3926. }
  3927. },
  3928. sideNsfw: {
  3929. height: math.unit(4, "meter"),
  3930. weight: math.unit(150, "kg"),
  3931. name: "Side (NSFW)",
  3932. image: {
  3933. source: "./media/characters/talan/side-nsfw.svg",
  3934. bottom: 29 / 3734
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(4, "meter"),
  3939. weight: math.unit(150, "kg"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/talan/back.svg"
  3943. }
  3944. },
  3945. dickBottom: {
  3946. height: math.unit(0.621, "meter"),
  3947. name: "Dick (Bottom)",
  3948. image: {
  3949. source: "./media/characters/talan/dick-bottom.svg"
  3950. }
  3951. },
  3952. dickTop: {
  3953. height: math.unit(0.621, "meter"),
  3954. name: "Dick (Top)",
  3955. image: {
  3956. source: "./media/characters/talan/dick-top.svg"
  3957. }
  3958. },
  3959. dickSide: {
  3960. height: math.unit(0.305, "meter"),
  3961. name: "Dick (Side)",
  3962. image: {
  3963. source: "./media/characters/talan/dick-side.svg"
  3964. }
  3965. },
  3966. dickFront: {
  3967. height: math.unit(0.305, "meter"),
  3968. name: "Dick (Front)",
  3969. image: {
  3970. source: "./media/characters/talan/dick-front.svg"
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(4, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(100, "meters")
  3982. },
  3983. {
  3984. name: "Megamacro",
  3985. height: math.unit(2, "miles"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(5000, "miles")
  3991. },
  3992. {
  3993. name: "Teramacro",
  3994. height: math.unit(100, "parsecs")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front.svg"
  4007. }
  4008. },
  4009. frontAlt: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(90, "kg"),
  4012. name: "Front (alt)",
  4013. image: {
  4014. source: "./media/characters/gael'rathus/front-alt.svg"
  4015. }
  4016. },
  4017. frontAlt2: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(90, "kg"),
  4020. name: "Front (alt 2)",
  4021. image: {
  4022. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(9, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(25, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(0.25, "miles")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(10, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4048. {
  4049. side: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(140, "kg"),
  4052. name: "Side",
  4053. image: {
  4054. source: "./media/characters/sosha/side.svg",
  4055. extra: 1170/1006,
  4056. bottom: 94/1264
  4057. }
  4058. },
  4059. maw: {
  4060. height: math.unit(2.87, "feet"),
  4061. name: "Maw",
  4062. image: {
  4063. source: "./media/characters/sosha/maw.svg",
  4064. extra: 966/865,
  4065. bottom: 0/966
  4066. }
  4067. },
  4068. cooch: {
  4069. height: math.unit(5.6, "feet"),
  4070. name: "Cooch",
  4071. image: {
  4072. source: "./media/characters/sosha/cooch.svg"
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(12, "feet"),
  4080. default: true
  4081. }
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4086. {
  4087. side: {
  4088. height: math.unit(5 + 5 / 12, "feet"),
  4089. weight: math.unit(170, "kg"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/runnola/side.svg",
  4093. extra: 741 / 448,
  4094. bottom: 0.05
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Small",
  4101. height: math.unit(3, "feet")
  4102. },
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(5 + 5 / 12, "feet"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Big",
  4110. height: math.unit(10, "feet")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(50, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/kurribird/front.svg",
  4123. bottom: 0.015
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(1.5, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Front (Alt)",
  4130. image: {
  4131. source: "./media/characters/kurribird/front-alt.svg",
  4132. extra: 1.45
  4133. }
  4134. },
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7, "feet")
  4140. },
  4141. {
  4142. name: "Big",
  4143. height: math.unit(12, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(1500, "feet")
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(2, "miles")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/elbial/front.svg",
  4165. extra: 1643 / 1556,
  4166. bottom: 60.2 / 1696
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/elbial/side.svg",
  4175. extra: 1601/1528,
  4176. bottom: 97/1698
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(2, "meter"),
  4181. weight: math.unit(80, "kg"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/elbial/back.svg",
  4185. extra: 1653/1569,
  4186. bottom: 20/1673
  4187. }
  4188. },
  4189. frontDressed: {
  4190. height: math.unit(2, "meter"),
  4191. weight: math.unit(80, "kg"),
  4192. name: "Front (Dressed)",
  4193. image: {
  4194. source: "./media/characters/elbial/front-dressed.svg",
  4195. extra: 1638/1569,
  4196. bottom: 70/1708
  4197. }
  4198. },
  4199. genitals: {
  4200. height: math.unit(2 / 3.367, "meter"),
  4201. name: "Genitals",
  4202. image: {
  4203. source: "./media/characters/elbial/genitals.svg"
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Large",
  4210. height: math.unit(100, "feet")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(500, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(10, "miles")
  4220. },
  4221. {
  4222. name: "Gigamacro",
  4223. height: math.unit(25000, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(8000000, "gigaparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(60, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/noah/front.svg"
  4240. }
  4241. },
  4242. talons: {
  4243. height: math.unit(0.315, "meter"),
  4244. name: "Talons",
  4245. image: {
  4246. source: "./media/characters/noah/talons.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Large",
  4253. height: math.unit(50, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(750, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(50, "miles")
  4263. },
  4264. {
  4265. name: "Gigamacro",
  4266. height: math.unit(100000, "miles")
  4267. },
  4268. {
  4269. name: "Full-Size",
  4270. height: math.unit(3000000000, "miles")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/natalya/front.svg"
  4283. }
  4284. },
  4285. back: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(80, "kg"),
  4288. name: "Back",
  4289. image: {
  4290. source: "./media/characters/natalya/back.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(150, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(5, "miles")
  4303. },
  4304. {
  4305. name: "Full-Size",
  4306. height: math.unit(600, "kiloparsecs")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/erestrebah/front.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(2, "meter"),
  4325. weight: math.unit(50, "kg"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/erestrebah/back.svg",
  4329. extra: 1257/1139,
  4330. bottom: 13/1270
  4331. }
  4332. },
  4333. wing: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Wing",
  4337. image: {
  4338. source: "./media/characters/erestrebah/wing.svg",
  4339. extra: 1262/1162,
  4340. bottom: 96/1358
  4341. }
  4342. },
  4343. mouth: {
  4344. height: math.unit(0.39, "feet"),
  4345. name: "Mouth",
  4346. image: {
  4347. source: "./media/characters/erestrebah/mouth.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. {
  4357. name: "Large",
  4358. height: math.unit(50, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(750, "feet")
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(3, "miles")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/jennifer/front.svg",
  4384. bottom: 0.11,
  4385. extra: 1.16
  4386. }
  4387. },
  4388. frontAlt: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Front (Alt)",
  4392. image: {
  4393. source: "./media/characters/jennifer/front-alt.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Canon Height",
  4400. height: math.unit(120, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(300, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(20000, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meter"),
  4418. weight: math.unit(50, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/kalista/front.svg",
  4422. extra: 1314/1145,
  4423. bottom: 101/1415
  4424. }
  4425. },
  4426. back: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Back",
  4430. image: {
  4431. source: "./media/characters/kalista/back.svg",
  4432. extra: 1366 / 1156,
  4433. bottom: 33.9 / 1362.78
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Uncomfortably Small",
  4440. height: math.unit(10, "feet")
  4441. },
  4442. {
  4443. name: "Small",
  4444. height: math.unit(30, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(100, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(2000, "feet")
  4454. },
  4455. {
  4456. name: "True Form",
  4457. height: math.unit(8924, "miles")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(120, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/ggv/front.svg"
  4470. }
  4471. },
  4472. side: {
  4473. height: math.unit(2, "meter"),
  4474. weight: math.unit(120, "kg"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/ggv/side.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Extremely Puny",
  4484. height: math.unit(9 + 5 / 12, "feet")
  4485. },
  4486. {
  4487. name: "Horribly Small",
  4488. height: math.unit(47.7, "miles"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Reasonably Sized",
  4493. height: math.unit(25000, "parsecs")
  4494. },
  4495. {
  4496. name: "Slightly Uncompressed",
  4497. height: math.unit(7.77e31, "parsecs")
  4498. },
  4499. {
  4500. name: "Omniversal",
  4501. height: math.unit(1e300, "meters")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4507. {
  4508. front: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(75, "lb"),
  4511. name: "Front",
  4512. image: {
  4513. source: "./media/characters/napalm/front.svg"
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(75, "lb"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/napalm/back.svg"
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Standard",
  4528. height: math.unit(55, "feet"),
  4529. default: true
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/asana/front.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. back: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Back",
  4550. image: {
  4551. source: "./media/characters/asana/back.svg",
  4552. extra: 1114 / 1043,
  4553. bottom: 5 / 1120
  4554. }
  4555. },
  4556. dressedDark: {
  4557. height: math.unit(7 + 5 / 6, "feet"),
  4558. weight: math.unit(325, "lb"),
  4559. name: "Dressed (Dark)",
  4560. image: {
  4561. source: "./media/characters/asana/dressed-dark.svg",
  4562. extra: 1133 / 1060,
  4563. bottom: 15.2 / 1148.6
  4564. }
  4565. },
  4566. dressedLight: {
  4567. height: math.unit(7 + 5 / 6, "feet"),
  4568. weight: math.unit(325, "lb"),
  4569. name: "Dressed (Light)",
  4570. image: {
  4571. source: "./media/characters/asana/dressed-light.svg",
  4572. extra: 1133 / 1060,
  4573. bottom: 15.2 / 1148.6
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Standard",
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Large",
  4585. height: math.unit(10, "meters")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(2500, "meters")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5e6, "meters")
  4594. },
  4595. {
  4596. name: "Examacro",
  4597. height: math.unit(5e12, "lightyears")
  4598. },
  4599. {
  4600. name: "Max Size",
  4601. height: math.unit(1e31, "lightyears")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/ebony/front.svg",
  4614. bottom: 0.03,
  4615. extra: 1045 / 810 + 0.03
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(60, "kg"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/ebony/side.svg",
  4624. bottom: 0.03,
  4625. extra: 1045 / 810 + 0.03
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(60, "kg"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/ebony/back.svg",
  4634. bottom: 0.01,
  4635. extra: 1045 / 810 + 0.01
  4636. }
  4637. },
  4638. },
  4639. [
  4640. // TODO check why I did this lol
  4641. {
  4642. name: "Standard",
  4643. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(200, "feet")
  4649. },
  4650. {
  4651. name: "Gigamacro",
  4652. height: math.unit(13000, "km")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(175, "lb"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/mountain/front.svg",
  4665. extra: 972 / 955,
  4666. bottom: 64 / 1036.6
  4667. }
  4668. },
  4669. back: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(175, "lb"),
  4672. name: "Back",
  4673. image: {
  4674. source: "./media/characters/mountain/back.svg",
  4675. extra: 970 / 950,
  4676. bottom: 28.25 / 999
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Large",
  4683. height: math.unit(20, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(300, "meters")
  4688. },
  4689. {
  4690. name: "Gigamacro",
  4691. height: math.unit(10000, "km"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(10e9, "lightyears")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(8, "feet"),
  4705. weight: math.unit(500, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/rick/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(8, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(5, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ona/front.svg"
  4733. }
  4734. },
  4735. frontAlt: {
  4736. height: math.unit(8, "feet"),
  4737. weight: math.unit(120, "lb"),
  4738. name: "Front (Alt)",
  4739. image: {
  4740. source: "./media/characters/ona/front-alt.svg"
  4741. }
  4742. },
  4743. back: {
  4744. height: math.unit(8, "feet"),
  4745. weight: math.unit(120, "lb"),
  4746. name: "Back",
  4747. image: {
  4748. source: "./media/characters/ona/back.svg"
  4749. }
  4750. },
  4751. foot: {
  4752. height: math.unit(1.1, "feet"),
  4753. name: "Foot",
  4754. image: {
  4755. source: "./media/characters/ona/foot.svg"
  4756. }
  4757. }
  4758. },
  4759. [
  4760. {
  4761. name: "Megamacro",
  4762. height: math.unit(70, "km"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Gigamacro",
  4767. height: math.unit(681818, "miles")
  4768. },
  4769. {
  4770. name: "Examacro",
  4771. height: math.unit(3800000, "lightyears")
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(3000, "lb"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/mech/front.svg",
  4784. extra: 2900 / 2770,
  4785. bottom: 110 / 3010
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(3000, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/mech/back.svg",
  4794. extra: 3011 / 2890,
  4795. bottom: 94 / 3105
  4796. }
  4797. },
  4798. maw: {
  4799. height: math.unit(3.07, "feet"),
  4800. name: "Maw",
  4801. image: {
  4802. source: "./media/characters/mech/maw.svg"
  4803. }
  4804. },
  4805. head: {
  4806. height: math.unit(3.07, "feet"),
  4807. name: "Head",
  4808. image: {
  4809. source: "./media/characters/mech/head.svg"
  4810. }
  4811. },
  4812. dick: {
  4813. height: math.unit(1.43, "feet"),
  4814. name: "Dick",
  4815. image: {
  4816. source: "./media/characters/mech/dick.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(12, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(300, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(1500, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(1.3, "meter"),
  4841. weight: math.unit(30, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/gregory/front.svg",
  4845. }
  4846. }
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(1.3, "meter"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(20, "meter")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(2.8, "meter"),
  4865. weight: math.unit(200, "kg"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/elory/front.svg",
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(2.8, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(38, "meter")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(470, "feet"),
  4889. weight: math.unit(924, "tons"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/angelpatamon/front.svg",
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(470, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Deity Size I",
  4904. height: math.unit(28651.2, "km")
  4905. },
  4906. {
  4907. name: "Deity Size II",
  4908. height: math.unit(171907.2, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4914. {
  4915. side: {
  4916. height: math.unit(7.2, "meter"),
  4917. weight: math.unit(8.2, "tons"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/cryae/side.svg",
  4921. extra: 3500 / 1500
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(7.2, "meter"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/xera/front.svg",
  4942. extra: 2377 / 1972,
  4943. bottom: 75.5 / 2452
  4944. }
  4945. },
  4946. side: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/xera/side.svg",
  4952. extra: 2345 / 2019,
  4953. bottom: 39.7 / 2384
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/xera/back.svg",
  4962. extra: 2095 / 1984,
  4963. bottom: 67 / 2166
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Small",
  4970. height: math.unit(10, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(500, "meters"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(10, "km")
  4980. },
  4981. {
  4982. name: "Gigamacro",
  4983. height: math.unit(25000, "km")
  4984. },
  4985. {
  4986. name: "Teramacro",
  4987. height: math.unit(3e6, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(175, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/nebula/front.svg",
  5000. extra: 2566 / 2362,
  5001. bottom: 81 / 2644
  5002. }
  5003. }
  5004. },
  5005. [
  5006. {
  5007. name: "Small",
  5008. height: math.unit(4.5, "meters")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(1500, "meters"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(150, "km")
  5018. },
  5019. {
  5020. name: "Gigamacro",
  5021. height: math.unit(27000, "km")
  5022. }
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/abysgar/front.svg",
  5034. extra: 1739/1614,
  5035. bottom: 71/1810
  5036. }
  5037. },
  5038. frontNsfw: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(225, "lb"),
  5041. name: "Front (NSFW)",
  5042. image: {
  5043. source: "./media/characters/abysgar/front-nsfw.svg",
  5044. extra: 1739/1614,
  5045. bottom: 71/1810
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(4.6, "feet"),
  5050. weight: math.unit(225, "lb"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/abysgar/back.svg",
  5054. extra: 1384/1327,
  5055. bottom: 0/1384
  5056. }
  5057. },
  5058. head: {
  5059. height: math.unit(1.25, "feet"),
  5060. name: "Head",
  5061. image: {
  5062. source: "./media/characters/abysgar/head.svg",
  5063. extra: 669/569,
  5064. bottom: 0/669
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Small",
  5071. height: math.unit(4.5, "meters")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1250, "meters"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megamacro",
  5080. height: math.unit(125, "km")
  5081. },
  5082. {
  5083. name: "Gigamacro",
  5084. height: math.unit(26000, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(180, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/yakuz/front.svg"
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Small",
  5103. height: math.unit(5, "meters")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(1500, "meters"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(200, "km")
  5113. },
  5114. {
  5115. name: "Gigamacro",
  5116. height: math.unit(100000, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(175, "lb"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/mirova/front.svg",
  5129. extra: 3334 / 3071,
  5130. bottom: 42 / 3375.6
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(5, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(900, "meters"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Megamacro",
  5146. height: math.unit(135, "km")
  5147. },
  5148. {
  5149. name: "Gigamacro",
  5150. height: math.unit(20000, "km")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(28.35, "feet"),
  5159. weight: math.unit(99.75, "tons"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/asana-mech/side.svg",
  5163. extra: 923 / 699,
  5164. bottom: 50 / 975
  5165. }
  5166. },
  5167. chaingun: {
  5168. height: math.unit(7, "feet"),
  5169. weight: math.unit(2400, "lb"),
  5170. name: "Chaingun",
  5171. image: {
  5172. source: "./media/characters/asana-mech/chaingun.svg"
  5173. }
  5174. },
  5175. laser: {
  5176. height: math.unit(7.12, "feet"),
  5177. weight: math.unit(2000, "lb"),
  5178. name: "Laser",
  5179. image: {
  5180. source: "./media/characters/asana-mech/laser.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(28.35, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(2500, "feet")
  5193. },
  5194. {
  5195. name: "Megamacro",
  5196. height: math.unit(25, "miles")
  5197. },
  5198. {
  5199. name: "Examacro",
  5200. height: math.unit(6e8, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/asche/front.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontUnderwear: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Underwear)",
  5221. image: {
  5222. source: "./media/characters/asche/front-underwear.svg",
  5223. extra: 1258 / 1190,
  5224. bottom: 47 / 1305
  5225. }
  5226. },
  5227. frontDressed: {
  5228. height: math.unit(5, "meters"),
  5229. weight: math.unit(1000, "kg"),
  5230. name: "Front (Dressed)",
  5231. image: {
  5232. source: "./media/characters/asche/front-dressed.svg",
  5233. extra: 1258 / 1190,
  5234. bottom: 47 / 1305
  5235. }
  5236. },
  5237. frontArmor: {
  5238. height: math.unit(5, "meters"),
  5239. weight: math.unit(1000, "kg"),
  5240. name: "Front (Armored)",
  5241. image: {
  5242. source: "./media/characters/asche/front-armored.svg",
  5243. extra: 1374 / 1308,
  5244. bottom: 23 / 1397
  5245. }
  5246. },
  5247. mp724: {
  5248. height: math.unit(0.96, "meters"),
  5249. weight: math.unit(38, "kg"),
  5250. name: "H&K MP724",
  5251. image: {
  5252. source: "./media/characters/asche/h&k-mp724.svg"
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(5, "meters"),
  5257. weight: math.unit(1000, "kg"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/asche/side.svg",
  5261. extra: 1717 / 1609,
  5262. bottom: 0.005
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(5, "meters"),
  5267. weight: math.unit(1000, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/asche/back.svg",
  5271. extra: 1570 / 1501
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "DEFCON 5",
  5278. height: math.unit(5, "meters")
  5279. },
  5280. {
  5281. name: "DEFCON 4",
  5282. height: math.unit(500, "meters"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "DEFCON 3",
  5287. height: math.unit(5, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 2",
  5291. height: math.unit(500, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 1",
  5295. height: math.unit(500000, "km")
  5296. },
  5297. {
  5298. name: "DEFCON 0",
  5299. height: math.unit(3, "gigaparsecs")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(7, "feet"),
  5308. weight: math.unit(92.7, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/gale/front.svg",
  5312. extra: 977/919,
  5313. bottom: 105/1082
  5314. }
  5315. },
  5316. side: {
  5317. height: math.unit(6.7, "feet"),
  5318. weight: math.unit(92.7, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/gale/side.svg",
  5322. extra: 978/922,
  5323. bottom: 140/1118
  5324. }
  5325. },
  5326. back: {
  5327. height: math.unit(7, "feet"),
  5328. weight: math.unit(92.7, "kg"),
  5329. name: "Back",
  5330. image: {
  5331. source: "./media/characters/gale/back.svg",
  5332. extra: 966/920,
  5333. bottom: 61/1027
  5334. }
  5335. },
  5336. maw: {
  5337. height: math.unit(2.23, "feet"),
  5338. name: "Maw",
  5339. image: {
  5340. source: "./media/characters/gale/maw.svg"
  5341. }
  5342. },
  5343. foot: {
  5344. height: math.unit(2.1, "feet"),
  5345. name: "Foot",
  5346. image: {
  5347. source: "./media/characters/gale/foot.svg"
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(7, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(150, "feet"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Macro+",
  5363. height: math.unit(300, "feet")
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5 + 10/12, "feet"),
  5372. weight: math.unit(67, "kg"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/draylen/front.svg",
  5376. extra: 832/777,
  5377. bottom: 85/917
  5378. }
  5379. }
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(5 + 10/12, "feet")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(150, "feet"),
  5389. default: true
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(7 + 9 / 12, "feet"),
  5398. weight: math.unit(379, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/chez/front.svg"
  5402. }
  5403. },
  5404. side: {
  5405. height: math.unit(7 + 9 / 12, "feet"),
  5406. weight: math.unit(379, "lbs"),
  5407. name: "Side",
  5408. image: {
  5409. source: "./media/characters/chez/side.svg"
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(7 + 9 / 12, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "God King",
  5421. height: math.unit(9750000, "meters")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(275, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/kaylum/front.svg",
  5434. bottom: 0.01,
  5435. extra: 1166 / 1031
  5436. }
  5437. },
  5438. frontWingless: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(275, "lbs"),
  5441. name: "Front (Wingless)",
  5442. image: {
  5443. source: "./media/characters/kaylum/front-wingless.svg",
  5444. bottom: 0.01,
  5445. extra: 1117 / 1031
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(3.05, "meters")
  5453. },
  5454. {
  5455. name: "Master",
  5456. height: math.unit(5.5, "meters")
  5457. },
  5458. {
  5459. name: "Rampage",
  5460. height: math.unit(19, "meters")
  5461. },
  5462. {
  5463. name: "Macro Lite",
  5464. height: math.unit(37, "meters")
  5465. },
  5466. {
  5467. name: "Hyper Predator",
  5468. height: math.unit(61, "meters")
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(138, "meters"),
  5473. default: true
  5474. }
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(5 + 5 / 12, "feet"),
  5482. weight: math.unit(120, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/geta/front.svg",
  5486. extra: 1003/933,
  5487. bottom: 21/1024
  5488. }
  5489. },
  5490. paw: {
  5491. height: math.unit(0.35, "feet"),
  5492. name: "Paw",
  5493. image: {
  5494. source: "./media/characters/geta/paw.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Micro",
  5501. height: math.unit(3, "inches"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(5 + 5 / 12, "feet")
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(300, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/tyrnn/front.svg"
  5519. }
  5520. }
  5521. },
  5522. [
  5523. {
  5524. name: "Main Height",
  5525. height: math.unit(355, "feet"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Fave. Height",
  5530. height: math.unit(2400, "feet")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(300, "lbs"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/appledectomy/front.svg"
  5543. }
  5544. }
  5545. },
  5546. [
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(2500, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(50, "miles"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "Gigamacro",
  5558. height: math.unit(5000, "miles")
  5559. },
  5560. {
  5561. name: "Teramacro",
  5562. height: math.unit(250000, "miles")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(200, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/vulpes/front.svg",
  5575. extra: 573 / 543,
  5576. bottom: 0.033
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(200, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/vulpes/side.svg",
  5585. extra: 577 / 549,
  5586. bottom: 11 / 588
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(200, "lbs"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/vulpes/back.svg",
  5595. extra: 573 / 549,
  5596. bottom: 20 / 593
  5597. }
  5598. },
  5599. feet: {
  5600. height: math.unit(1.276, "feet"),
  5601. name: "Feet",
  5602. image: {
  5603. source: "./media/characters/vulpes/feet.svg"
  5604. }
  5605. },
  5606. maw: {
  5607. height: math.unit(1.18, "feet"),
  5608. name: "Maw",
  5609. image: {
  5610. source: "./media/characters/vulpes/maw.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Micro",
  5617. height: math.unit(2, "inches")
  5618. },
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(6.3, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(850, "feet")
  5626. },
  5627. {
  5628. name: "Megamacro",
  5629. height: math.unit(7500, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Gigamacro",
  5634. height: math.unit(570000, "miles")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(210, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/rain-fallen/front.svg"
  5647. }
  5648. },
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(210, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/rain-fallen/side.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(210, "lbs"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/rain-fallen/back.svg"
  5663. }
  5664. },
  5665. feral: {
  5666. height: math.unit(9, "feet"),
  5667. weight: math.unit(700, "lbs"),
  5668. name: "Feral",
  5669. image: {
  5670. source: "./media/characters/rain-fallen/feral.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Meddling with Mortals",
  5677. height: math.unit(8 + 8/12, "feet")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "meter")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(150, "meter"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(278e6, "meter")
  5691. },
  5692. {
  5693. name: "Gigamacro",
  5694. height: math.unit(2e9, "meter")
  5695. },
  5696. {
  5697. name: "Teramacro",
  5698. height: math.unit(8e12, "meter")
  5699. },
  5700. {
  5701. name: "Devourer",
  5702. height: math.unit(14, "zettameters")
  5703. },
  5704. {
  5705. name: "Scarlet King",
  5706. height: math.unit(18, "yottameters")
  5707. },
  5708. {
  5709. name: "Void",
  5710. height: math.unit(1e88, "yottameters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5716. {
  5717. standing: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(180, "lbs"),
  5720. name: "Standing",
  5721. image: {
  5722. source: "./media/characters/zaakira/standing.svg",
  5723. extra: 1599/1504,
  5724. bottom: 39/1638
  5725. }
  5726. },
  5727. laying: {
  5728. height: math.unit(3.3, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Laying",
  5731. image: {
  5732. source: "./media/characters/zaakira/laying.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(12, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(279, "feet"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. femSfw: {
  5752. height: math.unit(8, "feet"),
  5753. weight: math.unit(350, "lb"),
  5754. name: "Fem",
  5755. image: {
  5756. source: "./media/characters/sigvald/fem-sfw.svg",
  5757. extra: 182 / 164,
  5758. bottom: 8.7 / 190.5
  5759. }
  5760. },
  5761. femNsfw: {
  5762. height: math.unit(8, "feet"),
  5763. weight: math.unit(350, "lb"),
  5764. name: "Fem (NSFW)",
  5765. image: {
  5766. source: "./media/characters/sigvald/fem-nsfw.svg",
  5767. extra: 182 / 164,
  5768. bottom: 8.7 / 190.5
  5769. }
  5770. },
  5771. maleNsfw: {
  5772. height: math.unit(8, "feet"),
  5773. weight: math.unit(350, "lb"),
  5774. name: "Male (NSFW)",
  5775. image: {
  5776. source: "./media/characters/sigvald/male-nsfw.svg",
  5777. extra: 182 / 164,
  5778. bottom: 8.7 / 190.5
  5779. }
  5780. },
  5781. hermNsfw: {
  5782. height: math.unit(8, "feet"),
  5783. weight: math.unit(350, "lb"),
  5784. name: "Herm (NSFW)",
  5785. image: {
  5786. source: "./media/characters/sigvald/herm-nsfw.svg",
  5787. extra: 182 / 164,
  5788. bottom: 8.7 / 190.5
  5789. }
  5790. },
  5791. dick: {
  5792. height: math.unit(2.36, "feet"),
  5793. name: "Dick",
  5794. image: {
  5795. source: "./media/characters/sigvald/dick.svg"
  5796. }
  5797. },
  5798. eye: {
  5799. height: math.unit(0.31, "feet"),
  5800. name: "Eye",
  5801. image: {
  5802. source: "./media/characters/sigvald/eye.svg"
  5803. }
  5804. },
  5805. mouth: {
  5806. height: math.unit(0.92, "feet"),
  5807. name: "Mouth",
  5808. image: {
  5809. source: "./media/characters/sigvald/mouth.svg"
  5810. }
  5811. },
  5812. paws: {
  5813. height: math.unit(2.2, "feet"),
  5814. name: "Paws",
  5815. image: {
  5816. source: "./media/characters/sigvald/paws.svg"
  5817. }
  5818. }
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(8, "feet")
  5824. },
  5825. {
  5826. name: "Large",
  5827. height: math.unit(12, "feet")
  5828. },
  5829. {
  5830. name: "Larger",
  5831. height: math.unit(20, "feet")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(150, "feet")
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(200, "feet"),
  5840. default: true
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5846. {
  5847. side: {
  5848. height: math.unit(12, "feet"),
  5849. weight: math.unit(2000, "kg"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/scott/side.svg",
  5853. extra: 754 / 724,
  5854. bottom: 0.069
  5855. }
  5856. },
  5857. upright: {
  5858. height: math.unit(12, "feet"),
  5859. weight: math.unit(2000, "kg"),
  5860. name: "Upright",
  5861. image: {
  5862. source: "./media/characters/scott/upright.svg",
  5863. extra: 3881 / 3722,
  5864. bottom: 0.05
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(12, "feet"),
  5872. default: true
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5878. {
  5879. side: {
  5880. height: math.unit(8, "meters"),
  5881. weight: math.unit(84755, "lbs"),
  5882. name: "Side",
  5883. image: {
  5884. source: "./media/characters/tobias/side.svg",
  5885. extra: 1474 / 1096,
  5886. bottom: 38.9 / 1513.1235
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(8, "meters"),
  5894. default: true
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5900. {
  5901. front: {
  5902. height: math.unit(5.5, "feet"),
  5903. weight: math.unit(400, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/kieran/front.svg",
  5907. extra: 2694 / 2364,
  5908. bottom: 217 / 2908
  5909. }
  5910. },
  5911. side: {
  5912. height: math.unit(5.5, "feet"),
  5913. weight: math.unit(400, "lbs"),
  5914. name: "Side",
  5915. image: {
  5916. source: "./media/characters/kieran/side.svg",
  5917. extra: 875 / 777,
  5918. bottom: 84.6 / 959
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5.5, "feet"),
  5926. default: true
  5927. },
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5932. {
  5933. side: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(70, "kg"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/sanya/side.svg",
  5939. bottom: 0.02,
  5940. extra: 1.02
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Small",
  5947. height: math.unit(2, "meters")
  5948. },
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(3, "meters")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(16, "meters"),
  5956. default: true
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(2, "meters"),
  5965. weight: math.unit(120, "kg"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/miranda/front.svg",
  5969. extra: 195 / 185,
  5970. bottom: 10.9 / 206.5
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(120, "kg"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/miranda/back.svg",
  5979. extra: 201 / 193,
  5980. bottom: 2.3 / 203.7
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(10, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "James", species: ["deer"], tags: ["anthro"] },
  5994. {
  5995. side: {
  5996. height: math.unit(2, "meters"),
  5997. weight: math.unit(100, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/james/front.svg",
  6001. extra: 10 / 8.5
  6002. }
  6003. },
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(8.5, "feet"),
  6009. default: true
  6010. }
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6015. {
  6016. side: {
  6017. height: math.unit(9.5, "feet"),
  6018. weight: math.unit(2500, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/heather/side.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(9.5, "feet"),
  6029. default: true
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6.5, "feet"),
  6038. weight: math.unit(400, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/lukas/side.svg",
  6042. extra: 7.25 / 6.5
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6.5, "feet"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6056. {
  6057. side: {
  6058. height: math.unit(5, "feet"),
  6059. weight: math.unit(3000, "lbs"),
  6060. name: "Side",
  6061. image: {
  6062. source: "./media/characters/louise/side.svg"
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5, "feet"),
  6070. default: true
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6076. {
  6077. side: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(150, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/ramona/side.svg",
  6083. extra: 871/854,
  6084. bottom: 41/912
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(6 + 4/12, "feet")
  6092. },
  6093. {
  6094. name: "Minimacro",
  6095. height: math.unit(5.3, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(20, "stories")
  6101. },
  6102. {
  6103. name: "Macro+",
  6104. height: math.unit(50, "stories")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6110. {
  6111. standing: {
  6112. height: math.unit(5.75, "feet"),
  6113. weight: math.unit(160, "lbs"),
  6114. name: "Standing",
  6115. image: {
  6116. source: "./media/characters/deerpuff/standing.svg",
  6117. extra: 682 / 624
  6118. }
  6119. },
  6120. sitting: {
  6121. height: math.unit(5.75 / 1.79, "feet"),
  6122. weight: math.unit(160, "lbs"),
  6123. name: "Sitting",
  6124. image: {
  6125. source: "./media/characters/deerpuff/sitting.svg",
  6126. bottom: 44 / 400,
  6127. extra: 1
  6128. }
  6129. },
  6130. taurLaying: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(400, "lbs"),
  6133. name: "Taur (Laying)",
  6134. image: {
  6135. source: "./media/characters/deerpuff/taur-laying.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Puffball",
  6142. height: math.unit(6, "inches")
  6143. },
  6144. {
  6145. name: "Normalpuff",
  6146. height: math.unit(5.75, "feet")
  6147. },
  6148. {
  6149. name: "Macropuff",
  6150. height: math.unit(1500, "feet"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Megapuff",
  6155. height: math.unit(500, "miles")
  6156. },
  6157. {
  6158. name: "Gigapuff",
  6159. height: math.unit(250000, "miles")
  6160. },
  6161. {
  6162. name: "Omegapuff",
  6163. height: math.unit(1000, "lightyears")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6169. {
  6170. stomping: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(170, "lbs"),
  6173. name: "Stomping",
  6174. image: {
  6175. source: "./media/characters/vivian/stomping.svg"
  6176. }
  6177. },
  6178. sitting: {
  6179. height: math.unit(6 / 1.75, "feet"),
  6180. weight: math.unit(170, "lbs"),
  6181. name: "Sitting",
  6182. image: {
  6183. source: "./media/characters/vivian/sitting.svg",
  6184. bottom: 1 / 6.4,
  6185. extra: 1,
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(7, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(10, "stories")
  6198. },
  6199. {
  6200. name: "Macro+",
  6201. height: math.unit(30, "stories")
  6202. },
  6203. {
  6204. name: "Megamacro",
  6205. height: math.unit(10, "miles")
  6206. },
  6207. {
  6208. name: "Megamacro+",
  6209. height: math.unit(2750000, "meters")
  6210. },
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6215. {
  6216. front: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(160, "lbs"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/prince/front.svg",
  6222. extra: 1938/1682,
  6223. bottom: 45/1983
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(160, "lbs"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/prince/back.svg",
  6232. extra: 1955/1726,
  6233. bottom: 6/1961
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(7.75, "feet"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Not cute",
  6245. height: math.unit(17, "feet")
  6246. },
  6247. {
  6248. name: "I said NOT",
  6249. height: math.unit(91, "feet")
  6250. },
  6251. {
  6252. name: "Please stop",
  6253. height: math.unit(560, "feet")
  6254. },
  6255. {
  6256. name: "What have you done",
  6257. height: math.unit(2200, "feet")
  6258. },
  6259. {
  6260. name: "Deer God",
  6261. height: math.unit(3.6, "miles")
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6267. {
  6268. standing: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(300, "lbs"),
  6271. name: "Standing",
  6272. image: {
  6273. source: "./media/characters/psymon/standing.svg",
  6274. extra: 1888 / 1810,
  6275. bottom: 0.05
  6276. }
  6277. },
  6278. slithering: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(300, "lbs"),
  6281. name: "Slithering",
  6282. image: {
  6283. source: "./media/characters/psymon/slithering.svg",
  6284. extra: 1330 / 1224
  6285. }
  6286. },
  6287. slitheringAlt: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(300, "lbs"),
  6290. name: "Slithering (Alt)",
  6291. image: {
  6292. source: "./media/characters/psymon/slithering-alt.svg",
  6293. extra: 1330 / 1224
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(11.25, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Large",
  6305. height: math.unit(27, "feet")
  6306. },
  6307. {
  6308. name: "Giant",
  6309. height: math.unit(87, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(365, "feet")
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(3, "miles")
  6318. },
  6319. {
  6320. name: "World Serpent",
  6321. height: math.unit(8000, "miles")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(180, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/daimos/front.svg",
  6334. extra: 4160 / 3897,
  6335. bottom: 0.021
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(8, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Big Dog",
  6347. height: math.unit(22, "feet")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(127, "feet")
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(3600, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(180, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/blake/side.svg",
  6368. extra: 1212 / 1120,
  6369. bottom: 0.05
  6370. }
  6371. },
  6372. crouched: {
  6373. height: math.unit(6 * 0.57, "feet"),
  6374. weight: math.unit(180, "lbs"),
  6375. name: "Crouched",
  6376. image: {
  6377. source: "./media/characters/blake/crouched.svg",
  6378. extra: 840 / 587,
  6379. bottom: 0.04
  6380. }
  6381. },
  6382. bent: {
  6383. height: math.unit(6 * 0.75, "feet"),
  6384. weight: math.unit(180, "lbs"),
  6385. name: "Bent",
  6386. image: {
  6387. source: "./media/characters/blake/bent.svg",
  6388. extra: 592 / 544,
  6389. bottom: 0.035
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(8 + 1 / 6, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Big Backside",
  6401. height: math.unit(37, "feet")
  6402. },
  6403. {
  6404. name: "Subway Shredder",
  6405. height: math.unit(72, "feet")
  6406. },
  6407. {
  6408. name: "City Carver",
  6409. height: math.unit(1675, "feet")
  6410. },
  6411. {
  6412. name: "Tectonic Tweaker",
  6413. height: math.unit(2300, "miles")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(180, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/guisetto/front.svg",
  6426. extra: 856 / 817,
  6427. bottom: 0.06
  6428. }
  6429. },
  6430. airborne: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Airborne",
  6434. image: {
  6435. source: "./media/characters/guisetto/airborne.svg",
  6436. extra: 584 / 525
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(10 + 11 / 12, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Large",
  6448. height: math.unit(35, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(475, "feet")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/luxor/front.svg",
  6465. extra: 2940 / 2152
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(180, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/luxor/back.svg",
  6474. extra: 1083 / 960
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(5 + 5 / 6, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Lamp",
  6486. height: math.unit(50, "feet")
  6487. },
  6488. {
  6489. name: "Lämp",
  6490. height: math.unit(300, "feet")
  6491. },
  6492. {
  6493. name: "The sun is a lamp",
  6494. height: math.unit(250000, "miles")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(50, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/huoyan/front.svg"
  6507. }
  6508. },
  6509. side: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(180, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/huoyan/side.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Chef",
  6521. height: math.unit(9, "feet")
  6522. },
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(65, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(780, "feet")
  6531. },
  6532. {
  6533. name: "Flaming Mountain",
  6534. height: math.unit(4.8, "miles")
  6535. },
  6536. {
  6537. name: "Celestial",
  6538. height: math.unit(765000, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(5 + 3 / 4, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/tails/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(5 + 3 / 4, "feet"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(4, "feet"),
  6567. weight: math.unit(50, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/rainy/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(800, "feet"),
  6578. default: true
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(150, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/rainier/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "mm"),
  6598. default: true
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(8 + 4/12, "feet"),
  6607. weight: math.unit(450, "kilograms"),
  6608. volume: math.unit(5, "cups"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/andy-renard/front.svg",
  6612. extra: 1839/1726,
  6613. bottom: 134/1973
  6614. }
  6615. },
  6616. back: {
  6617. height: math.unit(8 + 4/12, "feet"),
  6618. weight: math.unit(450, "kilograms"),
  6619. volume: math.unit(5, "cups"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/andy-renard/back.svg",
  6623. extra: 1838/1710,
  6624. bottom: 105/1943
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Tall",
  6631. height: math.unit(8 + 4/12, "feet")
  6632. },
  6633. {
  6634. name: "Mini Macro",
  6635. height: math.unit(15, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(100, "feet")
  6641. },
  6642. {
  6643. name: "Mega Macro",
  6644. height: math.unit(1000, "feet")
  6645. },
  6646. {
  6647. name: "Giga Macro",
  6648. height: math.unit(10, "miles")
  6649. },
  6650. {
  6651. name: "God Macro",
  6652. height: math.unit(1, "multiverse")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(210, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/cimmaron/front-sfw.svg",
  6665. extra: 701 / 676,
  6666. bottom: 0.046
  6667. }
  6668. },
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(210, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/cimmaron/back-sfw.svg",
  6675. extra: 701 / 676,
  6676. bottom: 0.046
  6677. }
  6678. },
  6679. frontNsfw: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(210, "lbs"),
  6682. name: "Front (NSFW)",
  6683. image: {
  6684. source: "./media/characters/cimmaron/front-nsfw.svg",
  6685. extra: 701 / 676,
  6686. bottom: 0.046
  6687. }
  6688. },
  6689. backNsfw: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(210, "lbs"),
  6692. name: "Back (NSFW)",
  6693. image: {
  6694. source: "./media/characters/cimmaron/back-nsfw.svg",
  6695. extra: 701 / 676,
  6696. bottom: 0.046
  6697. }
  6698. },
  6699. dick: {
  6700. height: math.unit(1.714, "feet"),
  6701. name: "Dick",
  6702. image: {
  6703. source: "./media/characters/cimmaron/dick.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(6, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro Mayor",
  6715. height: math.unit(350, "meters")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(200, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/akari/front.svg",
  6728. extra: 962 / 901,
  6729. bottom: 0.04
  6730. }
  6731. }
  6732. },
  6733. [
  6734. {
  6735. name: "Micro",
  6736. height: math.unit(5, "inches"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(7, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(140, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/cynosura/front.svg",
  6754. extra: 437/410,
  6755. bottom: 9/446
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(140, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/cynosura/back.svg",
  6764. extra: 1304/1160,
  6765. bottom: 71/1375
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(4, "inches")
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(5.75, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Tall",
  6781. height: math.unit(10, "feet")
  6782. },
  6783. {
  6784. name: "Big",
  6785. height: math.unit(20, "feet")
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(50, "feet")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(13 + 2/12, "feet"),
  6798. weight: math.unit(800, "kg"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/gin/front.svg",
  6802. extra: 1312/1191,
  6803. bottom: 45/1357
  6804. }
  6805. },
  6806. mouth: {
  6807. height: math.unit(2.39 * 1.8, "feet"),
  6808. name: "Mouth",
  6809. image: {
  6810. source: "./media/characters/gin/mouth.svg"
  6811. }
  6812. },
  6813. hand: {
  6814. height: math.unit(1.57 * 2.19, "feet"),
  6815. name: "Hand",
  6816. image: {
  6817. source: "./media/characters/gin/hand.svg"
  6818. }
  6819. },
  6820. foot: {
  6821. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6822. name: "Foot",
  6823. image: {
  6824. source: "./media/characters/gin/foot.svg"
  6825. }
  6826. },
  6827. sole: {
  6828. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6829. name: "Sole",
  6830. image: {
  6831. source: "./media/characters/gin/sole.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Very Small",
  6838. height: math.unit(13 + 2 / 12, "feet")
  6839. },
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(600, "miles")
  6843. },
  6844. {
  6845. name: "Regular",
  6846. height: math.unit(20, "earths"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(2.2, "solarradii")
  6852. },
  6853. {
  6854. name: "Teramacro",
  6855. height: math.unit(1.2, "galaxies")
  6856. },
  6857. {
  6858. name: "Omegamacro",
  6859. height: math.unit(200, "universes")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6 + 1 / 6, "feet"),
  6868. weight: math.unit(178, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/guy/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6 + 1 / 6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Large",
  6883. height: math.unit(25 + 7 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(60 + 9 / 12, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(246, "feet")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(878, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(9, "feet"),
  6904. weight: math.unit(800, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/tiberius/front.svg",
  6908. extra: 2295 / 2071
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(9, "feet"),
  6913. weight: math.unit(800, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/tiberius/back.svg",
  6917. extra: 2373 / 2160
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(9, "feet"),
  6925. default: true
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(600, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/surgo/front.svg",
  6938. extra: 3591 / 2227
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(600, "lbs"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/surgo/back.svg",
  6947. extra: 3557 / 2228
  6948. }
  6949. },
  6950. laying: {
  6951. height: math.unit(6 * 0.85, "feet"),
  6952. weight: math.unit(600, "lbs"),
  6953. name: "Laying",
  6954. image: {
  6955. source: "./media/characters/surgo/laying.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(6, "feet"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6969. {
  6970. side: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(150, "lbs"),
  6973. name: "Side",
  6974. image: {
  6975. source: "./media/characters/cibus/side.svg",
  6976. extra: 800 / 400
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(6, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(240, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/nibbles/front.svg"
  6997. }
  6998. },
  6999. side: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(240, "lbs"),
  7002. name: "Side",
  7003. image: {
  7004. source: "./media/characters/nibbles/side.svg"
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(9, "feet"),
  7012. default: true
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7018. {
  7019. side: {
  7020. height: math.unit(5 + 1 / 6, "feet"),
  7021. weight: math.unit(130, "lbs"),
  7022. name: "Side",
  7023. image: {
  7024. source: "./media/characters/rikky/side.svg",
  7025. extra: 851 / 801
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(5 + 1 / 6, "feet")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(152, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(7, "miles")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7047. {
  7048. side: {
  7049. height: math.unit(370, "cm"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/malfressa/side.svg"
  7054. }
  7055. },
  7056. walking: {
  7057. height: math.unit(370, "cm"),
  7058. weight: math.unit(350, "lbs"),
  7059. name: "Walking",
  7060. image: {
  7061. source: "./media/characters/malfressa/walking.svg"
  7062. }
  7063. },
  7064. feral: {
  7065. height: math.unit(2500, "cm"),
  7066. weight: math.unit(100000, "lbs"),
  7067. name: "Feral",
  7068. image: {
  7069. source: "./media/characters/malfressa/feral.svg",
  7070. extra: 2108 / 837,
  7071. bottom: 0.02
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(370, "cm")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(300, "meters"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(60, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/jaro/front.svg",
  7096. extra: 845/817,
  7097. bottom: 45/890
  7098. }
  7099. },
  7100. back: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(60, "kg"),
  7103. name: "Back",
  7104. image: {
  7105. source: "./media/characters/jaro/back.svg",
  7106. extra: 847/817,
  7107. bottom: 34/881
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(7, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5.5, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Minimacro",
  7123. height: math.unit(20, "feet")
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(200, "meters")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(195, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/rogue/front.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(90, "feet"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7153. {
  7154. standing: {
  7155. height: math.unit(5 + 8 / 12, "feet"),
  7156. weight: math.unit(140, "lb"),
  7157. name: "Standing",
  7158. image: {
  7159. source: "./media/characters/piper/standing.svg",
  7160. extra: 1440/1284,
  7161. bottom: 66/1506
  7162. }
  7163. },
  7164. running: {
  7165. height: math.unit(5 + 8 / 12, "feet"),
  7166. weight: math.unit(140, "lb"),
  7167. name: "Running",
  7168. image: {
  7169. source: "./media/characters/piper/running.svg",
  7170. extra: 3948/3655,
  7171. bottom: 0/3948
  7172. }
  7173. },
  7174. sole: {
  7175. height: math.unit(0.81, "feet"),
  7176. weight: math.unit(2, "kg"),
  7177. name: "Sole",
  7178. image: {
  7179. source: "./media/characters/piper/sole.svg"
  7180. }
  7181. },
  7182. nipple: {
  7183. height: math.unit(0.25, "feet"),
  7184. weight: math.unit(1.5, "lb"),
  7185. name: "Nipple",
  7186. image: {
  7187. source: "./media/characters/piper/nipple.svg"
  7188. }
  7189. },
  7190. head: {
  7191. height: math.unit(1.1, "feet"),
  7192. name: "Head",
  7193. image: {
  7194. source: "./media/characters/piper/head.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Micro",
  7201. height: math.unit(2, "inches")
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(5 + 8 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(250, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Megamacro",
  7214. height: math.unit(7, "miles")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(220, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/gemini/front.svg"
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(220, "lb"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/gemini/back.svg"
  7235. }
  7236. },
  7237. kneeling: {
  7238. height: math.unit(6 / 1.5, "feet"),
  7239. weight: math.unit(220, "lb"),
  7240. name: "Kneeling",
  7241. image: {
  7242. source: "./media/characters/gemini/kneeling.svg",
  7243. bottom: 0.02
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(6900, "meters")
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7261. {
  7262. anthro: {
  7263. height: math.unit(2.35, "meters"),
  7264. weight: math.unit(73, "kg"),
  7265. name: "Anthro",
  7266. image: {
  7267. source: "./media/characters/alicia/anthro.svg",
  7268. extra: 2571 / 2385,
  7269. bottom: 75 / 2648
  7270. }
  7271. },
  7272. paw: {
  7273. height: math.unit(1.32, "feet"),
  7274. name: "Paw",
  7275. image: {
  7276. source: "./media/characters/alicia/paw.svg"
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(1.69, "meters"),
  7281. weight: math.unit(73, "kg"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/alicia/feral.svg",
  7285. extra: 2123 / 1715,
  7286. bottom: 222 / 2349
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(2.35, "meters")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(10000, "kilometers")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(7, "feet"),
  7311. weight: math.unit(250, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/archy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(1, "inch")
  7322. },
  7323. {
  7324. name: "Shorty",
  7325. height: math.unit(5, "feet")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(600, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Megamacro",
  7338. height: math.unit(1, "mile")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(1.65, "meters"),
  7347. weight: math.unit(74, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/berri/front.svg",
  7351. extra: 857 / 837,
  7352. bottom: 18 / 877
  7353. }
  7354. },
  7355. bum: {
  7356. height: math.unit(1.46, "feet"),
  7357. name: "Bum",
  7358. image: {
  7359. source: "./media/characters/berri/bum.svg"
  7360. }
  7361. },
  7362. mouth: {
  7363. height: math.unit(0.44, "feet"),
  7364. name: "Mouth",
  7365. image: {
  7366. source: "./media/characters/berri/mouth.svg"
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(0.826, "feet"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/berri/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(1.65, "meters")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(60, "m"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Megamacro",
  7389. height: math.unit(9.213, "km")
  7390. },
  7391. {
  7392. name: "Planet Eater",
  7393. height: math.unit(489, "megameters")
  7394. },
  7395. {
  7396. name: "Teramacro",
  7397. height: math.unit(2471635000000, "meters")
  7398. },
  7399. {
  7400. name: "Examacro",
  7401. height: math.unit(8.0624e+26, "meters")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.72, "meters"),
  7410. weight: math.unit(68, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/lexi/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Very Smol",
  7420. height: math.unit(10, "mm")
  7421. },
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(6.8, "cm"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(1.72, "m")
  7430. }
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(1.69, "meters"),
  7438. weight: math.unit(68, "kg"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/martin/front.svg",
  7442. extra: 596 / 581
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(6.85, "cm"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(1.69, "m")
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(1.69, "meters"),
  7463. weight: math.unit(68, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/juno/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(7, "cm")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.89, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(353, "meters"),
  7482. default: true
  7483. }
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(1.93, "meters"),
  7491. weight: math.unit(83, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/samantha/front.svg"
  7495. }
  7496. },
  7497. frontClothed: {
  7498. height: math.unit(1.93, "meters"),
  7499. weight: math.unit(83, "kg"),
  7500. name: "Front (Clothed)",
  7501. image: {
  7502. source: "./media/characters/samantha/front-clothed.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(1.93, "meters"),
  7507. weight: math.unit(83, "kg"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/samantha/back.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.93, "m")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(74, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(223, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(8381, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro+",
  7534. height: math.unit(12000, "kilometers")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.92, "meters"),
  7543. weight: math.unit(80, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/dr-clay/front.svg"
  7547. }
  7548. },
  7549. frontClothed: {
  7550. height: math.unit(1.92, "meters"),
  7551. weight: math.unit(80, "kg"),
  7552. name: "Front (Clothed)",
  7553. image: {
  7554. source: "./media/characters/dr-clay/front-clothed.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(1.92, "m")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(214, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro+",
  7570. height: math.unit(12.237, "meters"),
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(557, "megameters"),
  7575. },
  7576. {
  7577. name: "Unimaginable",
  7578. height: math.unit(120e9, "lightyears")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(80, "kg"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Teramacro",
  7597. height: math.unit(500000, "lightyears"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7604. {
  7605. crux: {
  7606. height: math.unit(2, "meters"),
  7607. weight: math.unit(150, "kg"),
  7608. name: "Crux",
  7609. image: {
  7610. source: "./media/characters/vemus/crux.svg",
  7611. extra: 1074/936,
  7612. bottom: 23/1097
  7613. }
  7614. },
  7615. skunkTanuki: {
  7616. height: math.unit(2, "meters"),
  7617. weight: math.unit(150, "kg"),
  7618. name: "Skunk-Tanuki",
  7619. image: {
  7620. source: "./media/characters/vemus/skunk-tanuki.svg",
  7621. extra: 926/893,
  7622. bottom: 20/946
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(4, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Big",
  7634. height: math.unit(8, "meters")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(100, "meters")
  7639. },
  7640. {
  7641. name: "Macro+",
  7642. height: math.unit(1500, "meters")
  7643. },
  7644. {
  7645. name: "Stellar",
  7646. height: math.unit(14e8, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(2, "meters"),
  7655. weight: math.unit(70, "kg"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/beherit/front.svg",
  7659. extra: 1234/1109,
  7660. bottom: 55/1289
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(6, "feet")
  7668. },
  7669. {
  7670. name: "Lorg",
  7671. height: math.unit(25, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Lorger",
  7676. height: math.unit(75, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(200, "meters")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(2, "meters"),
  7689. weight: math.unit(150, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/everett/front.svg",
  7693. extra: 1017/866,
  7694. bottom: 86/1103
  7695. }
  7696. },
  7697. paw: {
  7698. height: math.unit(2 / 3.6, "meters"),
  7699. name: "Paw",
  7700. image: {
  7701. source: "./media/characters/everett/paw.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(15, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Lorg",
  7713. height: math.unit(70, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Lorger",
  7718. height: math.unit(250, "feet")
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(500, "meters")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(2, "meters"),
  7731. weight: math.unit(86, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/rose/front.svg",
  7735. extra: 1785/1636,
  7736. bottom: 30/1815
  7737. },
  7738. form: "liom",
  7739. default: true
  7740. },
  7741. frontSporty: {
  7742. height: math.unit(2, "meters"),
  7743. weight: math.unit(86, "kg"),
  7744. name: "Front (Sporty)",
  7745. image: {
  7746. source: "./media/characters/rose/front-sporty.svg",
  7747. extra: 350/335,
  7748. bottom: 10/360
  7749. },
  7750. form: "liom"
  7751. },
  7752. frontAlt: {
  7753. height: math.unit(1.6, "meters"),
  7754. weight: math.unit(86, "kg"),
  7755. name: "Front (Alt)",
  7756. image: {
  7757. source: "./media/characters/rose/front-alt.svg",
  7758. extra: 299/283,
  7759. bottom: 3/302
  7760. },
  7761. form: "liom"
  7762. },
  7763. plush: {
  7764. height: math.unit(2, "meters"),
  7765. weight: math.unit(86/3, "kg"),
  7766. name: "Plush",
  7767. image: {
  7768. source: "./media/characters/rose/plush.svg",
  7769. extra: 361/337,
  7770. bottom: 11/372
  7771. },
  7772. form: "plush",
  7773. default: true
  7774. },
  7775. faeStanding: {
  7776. height: math.unit(10, "cm"),
  7777. weight: math.unit(10, "grams"),
  7778. name: "Standing",
  7779. image: {
  7780. source: "./media/characters/rose/fae-standing.svg",
  7781. extra: 1189/1060,
  7782. bottom: 27/1216
  7783. },
  7784. form: "fae",
  7785. default: true
  7786. },
  7787. faeSitting: {
  7788. height: math.unit(5, "cm"),
  7789. weight: math.unit(10, "grams"),
  7790. name: "Sitting",
  7791. image: {
  7792. source: "./media/characters/rose/fae-sitting.svg",
  7793. extra: 737/577,
  7794. bottom: 356/1093
  7795. },
  7796. form: "fae"
  7797. },
  7798. faePaw: {
  7799. height: math.unit(1.35, "cm"),
  7800. name: "Paw",
  7801. image: {
  7802. source: "./media/characters/rose/fae-paw.svg"
  7803. },
  7804. form: "fae"
  7805. },
  7806. },
  7807. [
  7808. {
  7809. name: "True Micro",
  7810. height: math.unit(9, "cm"),
  7811. form: "liom"
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(16, "cm"),
  7816. form: "liom"
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.85, "meters"),
  7821. default: true,
  7822. form: "liom"
  7823. },
  7824. {
  7825. name: "Mini-Macro",
  7826. height: math.unit(5, "meters"),
  7827. form: "liom"
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(15, "meters"),
  7832. form: "liom"
  7833. },
  7834. {
  7835. name: "True Macro",
  7836. height: math.unit(40, "meters"),
  7837. form: "liom"
  7838. },
  7839. {
  7840. name: "City Scale",
  7841. height: math.unit(1, "km"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Plushie",
  7846. height: math.unit(9, "cm"),
  7847. form: "plush",
  7848. default: true
  7849. },
  7850. {
  7851. name: "Fae",
  7852. height: math.unit(10, "cm"),
  7853. form: "fae",
  7854. default: true
  7855. },
  7856. ],
  7857. {
  7858. "liom": {
  7859. name: "Liom"
  7860. },
  7861. "plush": {
  7862. name: "Plush"
  7863. },
  7864. "fae": {
  7865. name: "Fae Fox",
  7866. default: true
  7867. }
  7868. }
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(350, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/regal/front.svg"
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(2, "meters"),
  7883. weight: math.unit(350, "lbs"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/regal/back.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(350, "feet"),
  7894. default: true
  7895. }
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(4 + 11 / 12, "feet"),
  7903. weight: math.unit(100, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/opal/front.svg"
  7907. }
  7908. },
  7909. frontAlt: {
  7910. height: math.unit(4 + 11 / 12, "feet"),
  7911. weight: math.unit(100, "lbs"),
  7912. name: "Front (Alt)",
  7913. image: {
  7914. source: "./media/characters/opal/front-alt.svg"
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Small",
  7921. height: math.unit(4 + 11 / 12, "feet")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(20, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(120, "feet")
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(80, "miles")
  7935. },
  7936. {
  7937. name: "True Size",
  7938. height: math.unit(100000, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(200, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/vector-wuff/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(2.8, "meters")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(450, "meters"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(15, "kilometers")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(256, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/dannik/front.svg"
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(69.57, "meters"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(120, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/azura-saharah/front.svg"
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(120, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/azura-saharah/back.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "feet"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8020. {
  8021. side: {
  8022. height: math.unit(5 + 4 / 12, "feet"),
  8023. weight: math.unit(163, "lbs"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/kennedy/side.svg"
  8027. }
  8028. }
  8029. },
  8030. [
  8031. {
  8032. name: "Standard Doggo",
  8033. height: math.unit(5 + 4 / 12, "feet")
  8034. },
  8035. {
  8036. name: "Big Doggo",
  8037. height: math.unit(25 + 3 / 12, "feet"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 5/12, "feet"),
  8047. weight: math.unit(100, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/odios-de-lunar/front.svg",
  8051. extra: 1468/1323,
  8052. bottom: 22/1490
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(3, "inches")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(5.5, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(100, "feet")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8074. {
  8075. back: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(220, "lbs"),
  8078. name: "Back",
  8079. image: {
  8080. source: "./media/characters/mandake/back.svg"
  8081. }
  8082. }
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(7, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(78, "feet")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(300, "meters")
  8097. },
  8098. {
  8099. name: "Macro++",
  8100. height: math.unit(2400, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(5167, "meters")
  8105. },
  8106. {
  8107. name: "Gigamacro",
  8108. height: math.unit(41769, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(120, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/yozey/front.svg"
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(120, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/yozey/front-alt.svg"
  8129. }
  8130. },
  8131. side: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(120, "lbs"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/yozey/side.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(3, "inches"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(6, "feet")
  8149. }
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(103, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/valeska-voss/front.svg"
  8161. }
  8162. }
  8163. },
  8164. [
  8165. {
  8166. name: "Mini-Sized Sub",
  8167. height: math.unit(3.1, "inches")
  8168. },
  8169. {
  8170. name: "Mid-Sized Sub",
  8171. height: math.unit(6.2, "inches")
  8172. },
  8173. {
  8174. name: "Full-Sized Sub",
  8175. height: math.unit(9.3, "inches")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5 + 2 / 12, "foot"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(160, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/gene-zeta/front.svg",
  8193. extra: 3006 / 2826,
  8194. bottom: 182 / 3188
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(6, "inches")
  8202. },
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(5 + 11 / 12, "foot"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(140, "feet")
  8211. },
  8212. {
  8213. name: "Supercharged",
  8214. height: math.unit(2500, "feet")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(350, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/razinox/front.svg",
  8227. extra: 1686 / 1548,
  8228. bottom: 28.2 / 1868
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(350, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/razinox/back.svg",
  8237. extra: 1660 / 1590,
  8238. bottom: 15 / 1665
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(10 + 8 / 12, "foot")
  8246. },
  8247. {
  8248. name: "Minimacro",
  8249. height: math.unit(15, "foot")
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(60, "foot"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(5, "miles")
  8259. },
  8260. {
  8261. name: "Gigamacro",
  8262. height: math.unit(6000, "miles")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/cobalt/front.svg"
  8275. }
  8276. }
  8277. },
  8278. [
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(8 + 1 / 12, "foot")
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(111, "foot"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Supracosmic",
  8290. height: math.unit(1e42, "feet")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(5, "inches"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/amanda/front.svg",
  8302. extra: 926/791,
  8303. bottom: 38/964
  8304. }
  8305. },
  8306. back: {
  8307. height: math.unit(5, "inches"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/amanda/back.svg",
  8311. extra: 909/805,
  8312. bottom: 43/952
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(5, "inches"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2.75, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/teal/front.svg",
  8333. extra: 2463 / 2320,
  8334. bottom: 166 / 2629
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(2.75, "meters"),
  8339. weight: math.unit(1200, "lb"),
  8340. name: "Back",
  8341. image: {
  8342. source: "./media/characters/teal/back.svg",
  8343. extra: 2580 / 2489,
  8344. bottom: 151 / 2731
  8345. }
  8346. },
  8347. sitting: {
  8348. height: math.unit(1.9, "meters"),
  8349. weight: math.unit(1200, "lb"),
  8350. name: "Sitting",
  8351. image: {
  8352. source: "./media/characters/teal/sitting.svg",
  8353. extra: 623 / 590,
  8354. bottom: 121 / 744
  8355. }
  8356. },
  8357. standing: {
  8358. height: math.unit(2.75, "meters"),
  8359. weight: math.unit(1200, "lb"),
  8360. name: "Standing",
  8361. image: {
  8362. source: "./media/characters/teal/standing.svg",
  8363. extra: 923 / 893,
  8364. bottom: 60 / 983
  8365. }
  8366. },
  8367. stretching: {
  8368. height: math.unit(3.65, "meters"),
  8369. weight: math.unit(1200, "lb"),
  8370. name: "Stretching",
  8371. image: {
  8372. source: "./media/characters/teal/stretching.svg",
  8373. extra: 1276 / 1244,
  8374. bottom: 0 / 1276
  8375. }
  8376. },
  8377. legged: {
  8378. height: math.unit(1.3, "meters"),
  8379. weight: math.unit(100, "lb"),
  8380. name: "Legged",
  8381. image: {
  8382. source: "./media/characters/teal/legged.svg",
  8383. extra: 462 / 437,
  8384. bottom: 24 / 486
  8385. }
  8386. },
  8387. naga: {
  8388. height: math.unit(5.4, "meters"),
  8389. weight: math.unit(4000, "lb"),
  8390. name: "Naga",
  8391. image: {
  8392. source: "./media/characters/teal/naga.svg",
  8393. extra: 1902 / 1858,
  8394. bottom: 0 / 1902
  8395. }
  8396. },
  8397. hand: {
  8398. height: math.unit(0.52, "meters"),
  8399. name: "Hand",
  8400. image: {
  8401. source: "./media/characters/teal/hand.svg"
  8402. }
  8403. },
  8404. maw: {
  8405. height: math.unit(0.43, "meters"),
  8406. name: "Maw",
  8407. image: {
  8408. source: "./media/characters/teal/maw.svg"
  8409. }
  8410. },
  8411. slit: {
  8412. height: math.unit(0.25, "meters"),
  8413. name: "Slit",
  8414. image: {
  8415. source: "./media/characters/teal/slit.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.75, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(300, "feet")
  8428. },
  8429. {
  8430. name: "Macro+",
  8431. height: math.unit(2000, "feet")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8437. {
  8438. frontCat: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(180, "lbs"),
  8441. name: "Front (Cat)",
  8442. image: {
  8443. source: "./media/characters/ravin-amulet/front-cat.svg"
  8444. }
  8445. },
  8446. frontCatAlt: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(180, "lbs"),
  8449. name: "Front (Alt, Cat)",
  8450. image: {
  8451. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8452. }
  8453. },
  8454. frontWerewolf: {
  8455. height: math.unit(6 * 1.2, "feet"),
  8456. weight: math.unit(225, "lbs"),
  8457. name: "Front (Werewolf)",
  8458. image: {
  8459. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8460. }
  8461. },
  8462. backWerewolf: {
  8463. height: math.unit(6 * 1.2, "feet"),
  8464. weight: math.unit(225, "lbs"),
  8465. name: "Back (Werewolf)",
  8466. image: {
  8467. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Nano",
  8474. height: math.unit(1, "micrometer")
  8475. },
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(1, "inch")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(6, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(60, "feet")
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(165, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/fluoresce/front.svg"
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(6, "cm")
  8507. },
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 7 / 12, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(56, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(1.9, "miles")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(9 + 6 / 12, "feet"),
  8528. weight: math.unit(523, "lbs"),
  8529. name: "Side",
  8530. image: {
  8531. source: "./media/characters/aurora/side.svg",
  8532. extra: 474/393,
  8533. bottom: 5/479
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(9 + 6 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(96, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro+",
  8549. height: math.unit(243, "feet")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(194, "cm"),
  8558. weight: math.unit(90, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/ranek/front.svg",
  8562. extra: 1862/1791,
  8563. bottom: 80/1942
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(194, "cm"),
  8568. weight: math.unit(90, "kg"),
  8569. name: "Back",
  8570. image: {
  8571. source: "./media/characters/ranek/back.svg",
  8572. extra: 1853/1787,
  8573. bottom: 74/1927
  8574. }
  8575. },
  8576. feral: {
  8577. height: math.unit(30, "cm"),
  8578. weight: math.unit(1.6, "lbs"),
  8579. name: "Feral",
  8580. image: {
  8581. source: "./media/characters/ranek/feral.svg",
  8582. extra: 990/631,
  8583. bottom: 29/1019
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(194, "cm"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(100, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(5 + 6 / 12, "feet"),
  8604. weight: math.unit(153, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/andrew-cooper/front.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Nano",
  8614. height: math.unit(1, "mm")
  8615. },
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 6 / 12, "feet"),
  8623. default: true
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/akane-sato/front.svg",
  8636. extra: 1219 / 1140
  8637. }
  8638. },
  8639. back: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(180, "lbs"),
  8642. name: "Back",
  8643. image: {
  8644. source: "./media/characters/akane-sato/back.svg",
  8645. extra: 1219 / 1170
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(2.5, "meters")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(250, "meters"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(25, "km")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(65, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rook/front.svg",
  8674. extra: 960 / 950
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(8.8, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(88, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(8, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(12 + 2 / 12, "feet"),
  8699. weight: math.unit(808, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/prodigy/front.svg"
  8703. }
  8704. }
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12 + 2 / 12, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(143, "feet")
  8715. },
  8716. {
  8717. name: "Macro+",
  8718. height: math.unit(400, "feet")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(225, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/daniel/front.svg"
  8731. }
  8732. },
  8733. leaning: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(225, "lbs"),
  8736. name: "Leaning",
  8737. image: {
  8738. source: "./media/characters/daniel/leaning.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(1000, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(88, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/chiros/front.svg",
  8759. extra: 306 / 226
  8760. }
  8761. },
  8762. side: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(88, "lbs"),
  8765. name: "Side",
  8766. image: {
  8767. source: "./media/characters/chiros/side.svg",
  8768. extra: 306 / 226
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(6, "cm"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(100, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/selka/front.svg",
  8789. extra: 947 / 887
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5, "cm"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(8 + 3 / 12, "feet"),
  8806. weight: math.unit(424, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/verin/front.svg",
  8810. extra: 1845 / 1550
  8811. }
  8812. },
  8813. frontArmored: {
  8814. height: math.unit(8 + 3 / 12, "feet"),
  8815. weight: math.unit(424, "lbs"),
  8816. name: "Front (Armored)",
  8817. image: {
  8818. source: "./media/characters/verin/front-armor.svg",
  8819. extra: 1845 / 1550,
  8820. bottom: 0.01
  8821. }
  8822. },
  8823. back: {
  8824. height: math.unit(8 + 3 / 12, "feet"),
  8825. weight: math.unit(424, "lbs"),
  8826. name: "Back",
  8827. image: {
  8828. source: "./media/characters/verin/back.svg",
  8829. bottom: 0.1,
  8830. extra: 1
  8831. }
  8832. },
  8833. foot: {
  8834. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8835. name: "Foot",
  8836. image: {
  8837. source: "./media/characters/verin/foot.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(8 + 3 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Minimacro",
  8848. height: math.unit(21, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(626, "feet")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(2.718, "meters"),
  8862. weight: math.unit(150, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/front.svg",
  8866. extra: 1752/1689,
  8867. bottom: 36/1788
  8868. }
  8869. },
  8870. back: {
  8871. height: math.unit(2.718, "meters"),
  8872. weight: math.unit(150, "lbs"),
  8873. name: "Back",
  8874. image: {
  8875. source: "./media/characters/sovrim-terraquian/back.svg",
  8876. extra: 1698/1657,
  8877. bottom: 58/1756
  8878. }
  8879. },
  8880. tongue: {
  8881. height: math.unit(2.865, "feet"),
  8882. name: "Tongue",
  8883. image: {
  8884. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8885. }
  8886. },
  8887. hand: {
  8888. height: math.unit(1.61, "feet"),
  8889. name: "Hand",
  8890. image: {
  8891. source: "./media/characters/sovrim-terraquian/hand.svg"
  8892. }
  8893. },
  8894. foot: {
  8895. height: math.unit(1.05, "feet"),
  8896. name: "Foot",
  8897. image: {
  8898. source: "./media/characters/sovrim-terraquian/foot.svg"
  8899. }
  8900. },
  8901. footAlt: {
  8902. height: math.unit(0.88, "feet"),
  8903. name: "Foot (Alt)",
  8904. image: {
  8905. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Micro",
  8912. height: math.unit(2, "inches")
  8913. },
  8914. {
  8915. name: "Small",
  8916. height: math.unit(1, "meter")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(Math.E, "meters"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(20, "meters")
  8926. },
  8927. {
  8928. name: "Macro+",
  8929. height: math.unit(400, "meters")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(7, "feet"),
  8938. weight: math.unit(489, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/reece-silvermane/front.svg",
  8942. bottom: 0.02,
  8943. extra: 1
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(1.5, "miles"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(78, "kg"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/kane/front.svg",
  8964. extra: 978 / 899
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(2.1, "m"),
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(1, "km"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "kg"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tegon/front.svg",
  8989. bottom: 0.01,
  8990. extra: 1
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(1, "inch")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(6 + 3 / 12, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(300, "feet")
  9007. },
  9008. {
  9009. name: "Megamacro",
  9010. height: math.unit(69, "miles")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9016. {
  9017. side: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(2304, "lbs"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/arcturax/side.svg",
  9023. extra: 790 / 376,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(2, "inch")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(39, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Megamacro",
  9044. height: math.unit(7, "miles")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(50, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/sentri/front.svg",
  9057. extra: 1750 / 1570,
  9058. bottom: 0.025
  9059. }
  9060. },
  9061. frontAlt: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(50, "lbs"),
  9064. name: "Front (Alt)",
  9065. image: {
  9066. source: "./media/characters/sentri/front-alt.svg",
  9067. extra: 1750 / 1570,
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(15, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(2500, "feet")
  9081. }
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 8 / 12, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/corvin/front.svg",
  9093. extra: 1803 / 1629
  9094. }
  9095. },
  9096. frontShirt: {
  9097. height: math.unit(5 + 8 / 12, "feet"),
  9098. weight: math.unit(130, "lbs"),
  9099. name: "Front (Shirt)",
  9100. image: {
  9101. source: "./media/characters/corvin/front-shirt.svg",
  9102. extra: 1803 / 1629
  9103. }
  9104. },
  9105. frontPoncho: {
  9106. height: math.unit(5 + 8 / 12, "feet"),
  9107. weight: math.unit(130, "lbs"),
  9108. name: "Front (Poncho)",
  9109. image: {
  9110. source: "./media/characters/corvin/front-poncho.svg",
  9111. extra: 1803 / 1629
  9112. }
  9113. },
  9114. side: {
  9115. height: math.unit(5 + 8 / 12, "feet"),
  9116. weight: math.unit(130, "lbs"),
  9117. name: "Side",
  9118. image: {
  9119. source: "./media/characters/corvin/side.svg",
  9120. extra: 1012 / 945
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(5 + 8 / 12, "feet"),
  9125. weight: math.unit(130, "lbs"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/corvin/back.svg",
  9129. extra: 1803 / 1629
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(3, "inches")
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 8 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(300, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Megamacro",
  9149. height: math.unit(500, "miles")
  9150. }
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(135, "lbs"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/q/front.svg",
  9162. extra: 854 / 752,
  9163. bottom: 0.005
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/q/back.svg",
  9172. extra: 854 / 752
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(90, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Extra Macro",
  9184. height: math.unit(300, "feet"),
  9185. },
  9186. {
  9187. name: "BIG WALF",
  9188. height: math.unit(750, "feet"),
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(3, "feet"),
  9197. weight: math.unit(28, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/citrine/front.svg"
  9201. }
  9202. }
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(3, "feet"),
  9208. default: true
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9214. {
  9215. front: {
  9216. height: math.unit(14, "feet"),
  9217. weight: math.unit(1450, "kg"),
  9218. preyCapacity: math.unit(15, "people"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/aura-starwind/front.svg",
  9222. extra: 1440/1327,
  9223. bottom: 11/1451
  9224. }
  9225. },
  9226. side: {
  9227. height: math.unit(14, "feet"),
  9228. weight: math.unit(1450, "kg"),
  9229. preyCapacity: math.unit(15, "people"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/aura-starwind/side.svg",
  9233. extra: 1654 / 1497
  9234. }
  9235. },
  9236. taur: {
  9237. height: math.unit(18, "feet"),
  9238. weight: math.unit(5500, "kg"),
  9239. preyCapacity: math.unit(50, "people"),
  9240. name: "Taur",
  9241. image: {
  9242. source: "./media/characters/aura-starwind/taur.svg",
  9243. extra: 1760 / 1650
  9244. }
  9245. },
  9246. feral: {
  9247. height: math.unit(46, "feet"),
  9248. weight: math.unit(25000, "kg"),
  9249. preyCapacity: math.unit(120, "people"),
  9250. name: "Feral",
  9251. image: {
  9252. source: "./media/characters/aura-starwind/feral.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(14, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(50, "meters")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(5000, "meters")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(100000, "kilometers")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(2 + 7 / 12, "feet"),
  9281. weight: math.unit(32, "lbs"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/rivet/front.svg",
  9285. extra: 1716 / 1658,
  9286. bottom: 0.03
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(0.551, "feet"),
  9291. name: "Rivet's Foot",
  9292. image: {
  9293. source: "./media/characters/rivet/foot.svg"
  9294. },
  9295. rename: true
  9296. }
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(1.5, "inches"),
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(2 + 7 / 12, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(85, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(2.2, "km")
  9315. }
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 9 / 12, "feet"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/coffee/front.svg",
  9327. extra: 946/880,
  9328. bottom: 66/1012
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit(1.29, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/coffee/foot.svg"
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 9 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(800, "feet")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(25, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(200, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/chari-gal/front.svg",
  9368. extra: 1568 / 1385,
  9369. bottom: 0.047
  9370. }
  9371. },
  9372. gigantamax: {
  9373. height: math.unit(6 * 16, "feet"),
  9374. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9375. name: "Gigantamax",
  9376. image: {
  9377. source: "./media/characters/chari-gal/gigantamax.svg",
  9378. extra: 1124 / 888,
  9379. bottom: 0.03
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 7 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(200, "feet"),
  9391. default: true
  9392. }
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(150, "lbs"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/nova/front.svg",
  9404. extra: 5000 / 4722,
  9405. bottom: 0.02
  9406. }
  9407. }
  9408. },
  9409. [
  9410. {
  9411. name: "Micro-",
  9412. height: math.unit(0.8, "inches")
  9413. },
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(2, "inches"),
  9417. default: true
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9423. {
  9424. koboldFront: {
  9425. height: math.unit(3 + 1 / 12, "feet"),
  9426. weight: math.unit(21.7, "lbs"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/argent/kobold-front.svg",
  9430. extra: 1471 / 1331,
  9431. bottom: 100.8 / 1575.5
  9432. },
  9433. form: "kobold",
  9434. default: true
  9435. },
  9436. dragonFront: {
  9437. height: math.unit(75, "inches"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/argent/dragon-front.svg",
  9441. extra: 1389/1248,
  9442. bottom: 54/1443
  9443. },
  9444. form: "dragon",
  9445. },
  9446. dragonBack: {
  9447. height: math.unit(75, "inches"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/argent/dragon-back.svg",
  9451. extra: 1399/1271,
  9452. bottom: 23/1422
  9453. },
  9454. form: "dragon",
  9455. },
  9456. dragonDressed: {
  9457. height: math.unit(75, "inches"),
  9458. name: "Dressed",
  9459. image: {
  9460. source: "./media/characters/argent/dragon-dressed.svg",
  9461. extra: 1350/1215,
  9462. bottom: 26/1376
  9463. },
  9464. form: "dragon"
  9465. },
  9466. dragonHead: {
  9467. height: math.unit(23.5, "inches"),
  9468. name: "Head",
  9469. image: {
  9470. source: "./media/characters/argent/dragon-head.svg"
  9471. },
  9472. form: "dragon",
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(2, "inches"),
  9479. form: "kobold",
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(3 + 1 / 12, "feet"),
  9484. form: "kobold",
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(120, "feet"),
  9490. form: "kobold",
  9491. },
  9492. {
  9493. name: "Speck",
  9494. height: math.unit(1, "mm"),
  9495. form: "dragon",
  9496. },
  9497. {
  9498. name: "Tiny",
  9499. height: math.unit(1, "cm"),
  9500. form: "dragon",
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(5, "cm"),
  9505. form: "dragon",
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(75, "inches"),
  9510. form: "dragon",
  9511. default: true
  9512. },
  9513. {
  9514. name: "Extra Tall",
  9515. height: math.unit(9, "feet"),
  9516. form: "dragon",
  9517. },
  9518. {
  9519. name: "Inconvenient",
  9520. height: math.unit(5, "meters"),
  9521. form: "dragon",
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(70, "meters"),
  9526. form: "dragon",
  9527. },
  9528. {
  9529. name: "Macro+",
  9530. height: math.unit(250, "meters"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(20, "km"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Mountainous",
  9540. height: math.unit(100, "km"),
  9541. form: "dragon",
  9542. },
  9543. {
  9544. name: "Continental",
  9545. height: math.unit(2, "megameters"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Too Big",
  9550. height: math.unit(900, "megameters"),
  9551. form: "dragon",
  9552. },
  9553. ],
  9554. {
  9555. "kobold": {
  9556. name: "Kobold",
  9557. default: true
  9558. },
  9559. "dragon": {
  9560. name: "Dragon",
  9561. },
  9562. }
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9566. {
  9567. lamp: {
  9568. height: math.unit(7 * 1559 / 989, "feet"),
  9569. name: "Magic Lamp",
  9570. image: {
  9571. source: "./media/characters/mira-al-cul/lamp.svg",
  9572. extra: 1617 / 1559
  9573. }
  9574. },
  9575. front: {
  9576. height: math.unit(7, "feet"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/mira-al-cul/front.svg",
  9580. extra: 1044 / 990
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Heavily Restricted",
  9587. height: math.unit(7 * 1559 / 989, "feet")
  9588. },
  9589. {
  9590. name: "Freshly Freed",
  9591. height: math.unit(50 * 1559 / 989, "feet")
  9592. },
  9593. {
  9594. name: "World Encompassing",
  9595. height: math.unit(10000 * 1559 / 989, "miles")
  9596. },
  9597. {
  9598. name: "Galactic",
  9599. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9600. },
  9601. {
  9602. name: "Palmed Universe",
  9603. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Multiversal Matriarch",
  9608. height: math.unit(8.87e10, "yottameters")
  9609. },
  9610. {
  9611. name: "Void Mother",
  9612. height: math.unit(3.14e110, "yottaparsecs")
  9613. },
  9614. {
  9615. name: "Toying with Transcendence",
  9616. height: math.unit(1e307, "meters")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9622. {
  9623. front: {
  9624. height: math.unit(17 + 1 / 12, "feet"),
  9625. weight: math.unit(476.2 * 5, "lbs"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/kuro-shi-uchū/front.svg",
  9629. extra: 2329 / 1835,
  9630. bottom: 0.02
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(2, "inches")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(12, "meters")
  9642. },
  9643. {
  9644. name: "Planetary",
  9645. height: math.unit(0.00929, "AU"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Universal",
  9650. height: math.unit(20, "gigaparsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5 + 2 / 12, "feet"),
  9659. weight: math.unit(120, "lbs"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/katherine/front.svg",
  9663. extra: 2075 / 1969
  9664. }
  9665. },
  9666. dress: {
  9667. height: math.unit(5 + 2 / 12, "feet"),
  9668. weight: math.unit(120, "lbs"),
  9669. name: "Dress",
  9670. image: {
  9671. source: "./media/characters/katherine/dress.svg",
  9672. extra: 2258 / 2064
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(1, "inches"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5 + 2 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(100, "meters")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(80, "miles")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(7 + 8 / 12, "feet"),
  9701. weight: math.unit(250, "lbs"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/yevis/front.svg",
  9705. extra: 1938 / 1755
  9706. }
  9707. }
  9708. },
  9709. [
  9710. {
  9711. name: "Mortal",
  9712. height: math.unit(7 + 8 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Battle",
  9716. height: math.unit(25 + 11 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Wrath",
  9720. height: math.unit(1654 + 11 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Planet Destroyer",
  9724. height: math.unit(12000, "miles")
  9725. },
  9726. {
  9727. name: "Galaxy Conqueror",
  9728. height: math.unit(1.45, "zettameters"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Universal War",
  9733. height: math.unit(184, "gigaparsecs")
  9734. },
  9735. {
  9736. name: "Eternity War",
  9737. height: math.unit(1.98e55, "yottaparsecs")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5 + 8 / 12, "feet"),
  9746. weight: math.unit(63, "kg"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/xavier/front.svg",
  9750. extra: 944 / 883
  9751. }
  9752. },
  9753. frontStretch: {
  9754. height: math.unit(5 + 8 / 12, "feet"),
  9755. weight: math.unit(63, "kg"),
  9756. name: "Stretching",
  9757. image: {
  9758. source: "./media/characters/xavier/front-stretch.svg",
  9759. extra: 962 / 820
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(5 + 8 / 12, "feet")
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(100, "meters"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "McLargeHuge",
  9775. height: math.unit(10, "miles")
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(5 + 5 / 12, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/joshii/front.svg",
  9788. extra: 765 / 653,
  9789. bottom: 51 / 816
  9790. }
  9791. },
  9792. foot: {
  9793. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9794. name: "Foot",
  9795. image: {
  9796. source: "./media/characters/joshii/foot.svg"
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(2, "inches")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 5 / 12, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(785, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(24.5, "miles")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(150, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/goddess-elizabeth/front.svg",
  9829. extra: 1800 / 1525,
  9830. bottom: 0.005
  9831. }
  9832. },
  9833. foot: {
  9834. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9835. name: "Foot",
  9836. image: {
  9837. source: "./media/characters/goddess-elizabeth/foot.svg"
  9838. }
  9839. },
  9840. mouth: {
  9841. height: math.unit(6, "feet"),
  9842. name: "Mouth",
  9843. image: {
  9844. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(12, "feet")
  9852. },
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(80, "miles"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(15000, "parsecs")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(144, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/kara/front.svg"
  9873. }
  9874. },
  9875. feet: {
  9876. height: math.unit(6 / 6.765, "feet"),
  9877. name: "Kara's Feet",
  9878. rename: true,
  9879. image: {
  9880. source: "./media/characters/kara/feet.svg"
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 9 / 12, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(174, "feet"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(18, "feet"),
  9901. weight: math.unit(4050, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/tyrone/front.svg",
  9905. extra: 2405 / 2270,
  9906. bottom: 182 / 2587
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(18, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(300, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(15, "km")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(500, "km")
  9927. },
  9928. {
  9929. name: "Teramacro",
  9930. height: math.unit(0.5, "gigameters")
  9931. },
  9932. {
  9933. name: "Omnimacro",
  9934. height: math.unit(1e252, "yottauniverse")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(7 + 8 / 12, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/danny/front.svg",
  9947. extra: 1490 / 1350
  9948. }
  9949. },
  9950. back: {
  9951. height: math.unit(7 + 8 / 12, "feet"),
  9952. weight: math.unit(120, "lb"),
  9953. name: "Back",
  9954. image: {
  9955. source: "./media/characters/danny/back.svg",
  9956. extra: 1490 / 1350
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(7 + 8 / 12, "feet"),
  9964. default: true
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(3.5, "inches"),
  9973. weight: math.unit(19, "grams"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/mallow/front.svg",
  9977. extra: 471 / 431
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(3.5, "inches"),
  9982. weight: math.unit(19, "grams"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/mallow/back.svg",
  9986. extra: 471 / 431
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(3.5, "inches"),
  9994. default: true
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(9, "feet"),
  10003. weight: math.unit(230, "kg"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/starry-aqua/front.svg"
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(9, "feet"),
  10011. weight: math.unit(230, "kg"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/starry-aqua/back.svg"
  10015. }
  10016. },
  10017. hand: {
  10018. height: math.unit(9 * 0.1168, "feet"),
  10019. name: "Hand",
  10020. image: {
  10021. source: "./media/characters/starry-aqua/hand.svg"
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(9 * 0.18, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/starry-aqua/foot.svg"
  10029. }
  10030. }
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(3, "inches")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(9, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(300, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(3200, "feet")
  10049. }
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(15, "feet"),
  10057. weight: math.unit(5026, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/luka-towers/front.svg",
  10061. extra: 1269/1133,
  10062. bottom: 51/1320
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(15, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Minimacro",
  10074. height: math.unit(25, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(320, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(35000, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(4000, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(15000, "miles")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/natalie-nightring/front.svg",
  10103. extra: 1,
  10104. bottom: 0.06
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Uh Oh",
  10111. height: math.unit(0.1, "mm")
  10112. },
  10113. {
  10114. name: "Small",
  10115. height: math.unit(3, "inches")
  10116. },
  10117. {
  10118. name: "Human Scale",
  10119. height: math.unit(6, "feet")
  10120. },
  10121. {
  10122. name: "Librarian",
  10123. height: math.unit(50, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Immense",
  10128. height: math.unit(200, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(180, "lbs"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/danni-rosie/front.svg",
  10141. extra: 1260 / 1128,
  10142. bottom: 0.022
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(2, "inches"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. weight: math.unit(220, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/samantha-kruse/front.svg",
  10163. extra: (985 / 935),
  10164. bottom: 0.03
  10165. }
  10166. },
  10167. frontUndressed: {
  10168. height: math.unit(5 + 9 / 12, "feet"),
  10169. weight: math.unit(220, "lb"),
  10170. name: "Front (Undressed)",
  10171. image: {
  10172. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10173. extra: (973 / 923),
  10174. bottom: 0.025
  10175. }
  10176. },
  10177. fat: {
  10178. height: math.unit(5 + 9 / 12, "feet"),
  10179. weight: math.unit(900, "lb"),
  10180. name: "Front (Fat)",
  10181. image: {
  10182. source: "./media/characters/samantha-kruse/fat.svg",
  10183. extra: 2688 / 2561
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. default: true
  10192. }
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10197. {
  10198. back: {
  10199. height: math.unit(5 + 4 / 12, "feet"),
  10200. weight: math.unit(4963, "lb"),
  10201. name: "Back",
  10202. image: {
  10203. source: "./media/characters/amelia-rosie/back.svg",
  10204. extra: 1113 / 963,
  10205. bottom: 0.01
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Level 0",
  10212. height: math.unit(5 + 4 / 12, "feet")
  10213. },
  10214. {
  10215. name: "Level 1",
  10216. height: math.unit(164597, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Level 2",
  10221. height: math.unit(956243, "miles")
  10222. },
  10223. {
  10224. name: "Level 3",
  10225. height: math.unit(29421709423, "miles")
  10226. },
  10227. {
  10228. name: "Level 4",
  10229. height: math.unit(154, "lightyears")
  10230. },
  10231. {
  10232. name: "Level 5",
  10233. height: math.unit(4738272, "lightyears")
  10234. },
  10235. {
  10236. name: "Level 6",
  10237. height: math.unit(145787152896, "lightyears")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(5 + 11 / 12, "feet"),
  10246. weight: math.unit(65, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rook-kitara/front.svg",
  10250. extra: 1347 / 1274,
  10251. bottom: 0.005
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Totally Unfair",
  10258. height: math.unit(1.8, "mm")
  10259. },
  10260. {
  10261. name: "Lap Rookie",
  10262. height: math.unit(1.4, "feet")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 11 / 12, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "How Did This Happen",
  10271. height: math.unit(80, "miles")
  10272. }
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(7, "feet"),
  10280. weight: math.unit(300, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/pisces/front.svg",
  10284. extra: 2255 / 2115,
  10285. bottom: 0.03
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7, "feet"),
  10290. weight: math.unit(300, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/pisces/back.svg",
  10294. extra: 2146 / 2055,
  10295. bottom: 0.04
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(7, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Swimming Pool",
  10307. height: math.unit(12.2, "meters")
  10308. },
  10309. {
  10310. name: "Olympic Swimming Pool",
  10311. height: math.unit(56.3, "meters")
  10312. },
  10313. {
  10314. name: "Lake Superior",
  10315. height: math.unit(93900, "meters")
  10316. },
  10317. {
  10318. name: "Mediterranean Sea",
  10319. height: math.unit(644457, "meters")
  10320. },
  10321. {
  10322. name: "World's Oceans",
  10323. height: math.unit(4567491, "meters")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(2.3, "meters"),
  10332. weight: math.unit(120, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/zelas/front.svg"
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(2.3, "meters"),
  10340. weight: math.unit(120, "kg"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/zelas/side.svg"
  10344. }
  10345. },
  10346. back: {
  10347. height: math.unit(2.3, "meters"),
  10348. weight: math.unit(120, "kg"),
  10349. name: "Back",
  10350. image: {
  10351. source: "./media/characters/zelas/back.svg"
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(1.116, "feet"),
  10356. name: "Foot",
  10357. image: {
  10358. source: "./media/characters/zelas/foot.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.3, "meters")
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(30, "meters"),
  10370. default: true
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(1, "inch"),
  10379. weight: math.unit(0.21, "grams"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/talbot/front.svg",
  10383. extra: 594 / 544
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(1, "inch"),
  10391. default: true
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10397. {
  10398. front: {
  10399. height: math.unit(3 + 3 / 12, "feet"),
  10400. weight: math.unit(51.8, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/fliss/front.svg",
  10404. extra: 840 / 640
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Teeny Tiny",
  10411. height: math.unit(1, "mm")
  10412. },
  10413. {
  10414. name: "Small",
  10415. height: math.unit(1, "inch"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Standard Sylveon",
  10420. height: math.unit(3 + 3 / 12, "feet")
  10421. },
  10422. {
  10423. name: "Large Nuisance",
  10424. height: math.unit(33, "feet")
  10425. },
  10426. {
  10427. name: "City Filler",
  10428. height: math.unit(3000, "feet")
  10429. },
  10430. {
  10431. name: "New Horizon",
  10432. height: math.unit(6000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(5, "cm"),
  10441. weight: math.unit(1.94, "g"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/fleta/front.svg",
  10445. extra: 835 / 803
  10446. }
  10447. },
  10448. back: {
  10449. height: math.unit(5, "cm"),
  10450. weight: math.unit(1.94, "g"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/fleta/back.svg",
  10454. extra: 835 / 803
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(5, "cm"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(225, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/dominic/front.svg",
  10475. extra: 1770 / 1620,
  10476. bottom: 0.025
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(225, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/dominic/back.svg",
  10485. extra: 1745 / 1620,
  10486. bottom: 0.065
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Nano",
  10493. height: math.unit(0.1, "mm")
  10494. },
  10495. {
  10496. name: "Micro-",
  10497. height: math.unit(1, "mm")
  10498. },
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(4, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(6 + 4 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(115, "feet")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(955, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(8990, "feet")
  10519. },
  10520. {
  10521. name: "Gigmacro",
  10522. height: math.unit(9310, "miles")
  10523. },
  10524. {
  10525. name: "Teramacro",
  10526. height: math.unit(1567005010, "miles")
  10527. },
  10528. {
  10529. name: "Examacro",
  10530. height: math.unit(1425, "parsecs")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(400, "feet"),
  10539. weight: math.unit(44444444, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/major-colonel/front.svg"
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(400, "feet"),
  10547. weight: math.unit(44444444, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/major-colonel/back.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(400, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10564. {
  10565. catFront: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(120, "lb"),
  10568. name: "Front (Cat Side)",
  10569. image: {
  10570. source: "./media/characters/axel-lycan/cat-front.svg",
  10571. extra: 430 / 402,
  10572. bottom: 43 / 472.35
  10573. }
  10574. },
  10575. catBack: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(120, "lb"),
  10578. name: "Back (Cat Side)",
  10579. image: {
  10580. source: "./media/characters/axel-lycan/cat-back.svg",
  10581. extra: 447 / 419,
  10582. bottom: 23.3 / 469
  10583. }
  10584. },
  10585. wolfFront: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(120, "lb"),
  10588. name: "Front (Wolf Side)",
  10589. image: {
  10590. source: "./media/characters/axel-lycan/wolf-front.svg",
  10591. extra: 485 / 456,
  10592. bottom: 19 / 504
  10593. }
  10594. },
  10595. wolfBack: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(120, "lb"),
  10598. name: "Back (Wolf Side)",
  10599. image: {
  10600. source: "./media/characters/axel-lycan/wolf-back.svg",
  10601. extra: 475 / 438,
  10602. bottom: 39.2 / 514
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(1, "km"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(175, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/vanrel-hyena/front.svg",
  10623. extra: 1086 / 1010,
  10624. bottom: 0.04
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(5 + 9 / 12, "feet"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(103, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/abbott-absol/front.svg",
  10645. extra: 2010 / 1842
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Megamicro",
  10652. height: math.unit(0.1, "mm")
  10653. },
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch")
  10657. },
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(6, "feet"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(264, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/hector/front.svg",
  10674. extra: 2280 / 2130,
  10675. bottom: 0.07
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(12.25, "foot"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(160, "feet")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/sal/front.svg",
  10700. extra: 1846 / 1699,
  10701. bottom: 0.04
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10715. {
  10716. front: {
  10717. height: math.unit(3, "meters"),
  10718. weight: math.unit(450, "kg"),
  10719. name: "front",
  10720. image: {
  10721. source: "./media/characters/ranger/front.svg",
  10722. extra: 2401 / 2243,
  10723. bottom: 0.05
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(3, "meters"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(14, "feet"),
  10740. weight: math.unit(800, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/theresa/front.svg",
  10744. extra: 3575 / 3346,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(14, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(3, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/ine/front.svg",
  10766. extra: 678 / 539,
  10767. bottom: 0.023
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(2.265, "feet"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(5, "feet"),
  10784. weight: math.unit(30, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/vial/front.svg",
  10788. extra: 1365 / 1277,
  10789. bottom: 0.04
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(5, "feet"),
  10797. default: true
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(3.4, "meters"),
  10806. weight: math.unit(1000, "lb"),
  10807. name: "Side",
  10808. image: {
  10809. source: "./media/characters/rovoska/side.svg",
  10810. extra: 4403 / 1515
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(3.4, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(8, "feet"),
  10827. weight: math.unit(315, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/gunner-rotthbauer/front.svg"
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(8, "feet"),
  10835. weight: math.unit(315, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/gunner-rotthbauer/back.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(3.5, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(8, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(250, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(1, "AU")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(5 + 5 / 12, "feet"),
  10867. weight: math.unit(140, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/allatia/front.svg",
  10871. extra: 1227 / 1180,
  10872. bottom: 0.027
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(5 + 5 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(250, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(8, "miles")
  10889. }
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(120, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/tene/front.svg",
  10901. extra: 814/750,
  10902. bottom: 36/850
  10903. }
  10904. },
  10905. stomping: {
  10906. height: math.unit(2.025, "meters"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Stomping",
  10909. image: {
  10910. source: "./media/characters/tene/stomping.svg",
  10911. extra: 885/821,
  10912. bottom: 15/900
  10913. }
  10914. },
  10915. sitting: {
  10916. height: math.unit(1, "meter"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Sitting",
  10919. image: {
  10920. source: "./media/characters/tene/sitting.svg",
  10921. extra: 396/366,
  10922. bottom: 79/475
  10923. }
  10924. },
  10925. smiling: {
  10926. height: math.unit(1.2, "feet"),
  10927. name: "Smiling",
  10928. image: {
  10929. source: "./media/characters/tene/smiling.svg",
  10930. extra: 1364/1071,
  10931. bottom: 0/1364
  10932. }
  10933. },
  10934. smug: {
  10935. height: math.unit(1.3, "feet"),
  10936. name: "Smug",
  10937. image: {
  10938. source: "./media/characters/tene/smug.svg",
  10939. extra: 1323/1082,
  10940. bottom: 0/1323
  10941. }
  10942. },
  10943. feral: {
  10944. height: math.unit(3.9, "feet"),
  10945. weight: math.unit(250, "lb"),
  10946. name: "Feral",
  10947. image: {
  10948. source: "./media/characters/tene/feral.svg",
  10949. extra: 717 / 458,
  10950. bottom: 0.179
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(6, "feet")
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(300, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(5, "miles")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10972. {
  10973. side: {
  10974. height: math.unit(6, "feet"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/evander/side.svg",
  10978. extra: 877 / 477
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(0.83, "meters"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(12, "feet"),
  10995. weight: math.unit(1000, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10999. extra: 1762 / 1611
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(12, "feet"),
  11004. weight: math.unit(1000, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11008. extra: 1762 / 1611
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(12, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Kaiju",
  11020. height: math.unit(150, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/zero-alurus/front.svg"
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/zero-alurus/back.svg"
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(5 + 10 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(60, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro+",
  11056. height: math.unit(450, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(200, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/mega-shi/front.svg",
  11069. extra: 1279 / 1250,
  11070. bottom: 0.02
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(200, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/mega-shi/back.svg",
  11079. extra: 1279 / 1250,
  11080. bottom: 0.02
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(16 + 6 / 12, "feet")
  11088. },
  11089. {
  11090. name: "Third Dimension",
  11091. height: math.unit(40, "meters")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(660, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(10, "miles")
  11101. },
  11102. {
  11103. name: "Planetary Launch",
  11104. height: math.unit(500, "miles")
  11105. },
  11106. {
  11107. name: "Interstellar",
  11108. height: math.unit(1e9, "miles")
  11109. },
  11110. {
  11111. name: "Leaving the Universe",
  11112. height: math.unit(1, "gigaparsec")
  11113. },
  11114. {
  11115. name: "Travelling Universes",
  11116. height: math.unit(30e15, "parsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(5 + 4/12, "feet"),
  11125. weight: math.unit(120, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/odyssey/front.svg",
  11129. extra: 1747/1571,
  11130. bottom: 47/1794
  11131. }
  11132. },
  11133. side: {
  11134. height: math.unit(5.1, "feet"),
  11135. weight: math.unit(120, "lb"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/odyssey/side.svg",
  11139. extra: 1847/1619,
  11140. bottom: 47/1894
  11141. }
  11142. },
  11143. lounging: {
  11144. height: math.unit(1.464, "feet"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Lounging",
  11147. image: {
  11148. source: "./media/characters/odyssey/lounging.svg",
  11149. extra: 1235/837,
  11150. bottom: 551/1786
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(5 + 4 / 12, "feet")
  11158. },
  11159. {
  11160. name: "Macro",
  11161. height: math.unit(1, "km")
  11162. },
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(3000, "km")
  11166. },
  11167. {
  11168. name: "Gigamacro",
  11169. height: math.unit(1, "AU"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Omniversal",
  11174. height: math.unit(100e14, "lightyears")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(5 + 10/12, "feet"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/mekuto/front.svg",
  11186. extra: 875/835,
  11187. bottom: 46/921
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Minimicro",
  11194. height: math.unit(0.2, "inches")
  11195. },
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(1.5, "inches")
  11199. },
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 10 / 12, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Minimacro",
  11207. height: math.unit(17 + 9 / 12, "feet")
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(177.5, "feet")
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(152, "miles")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6.5, "inches"),
  11224. weight: math.unit(13, "oz"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/dafydd-tomos/front.svg",
  11228. extra: 2990 / 2603,
  11229. bottom: 0.03
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Micro",
  11236. height: math.unit(6.5, "inches"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Splinter", species: ["thylacine"], 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/splinter/front.svg",
  11250. extra: 2990 / 2882,
  11251. bottom: 0.04
  11252. }
  11253. },
  11254. back: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Back",
  11258. image: {
  11259. source: "./media/characters/splinter/back.svg",
  11260. extra: 2990 / 2882,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(6, "feet")
  11269. },
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(230, "meters"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(4 + 10 / 12, "feet"),
  11282. weight: math.unit(480, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/snow-gabumon/front.svg",
  11286. extra: 1140 / 963,
  11287. bottom: 0.058
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(4 + 10 / 12, "feet"),
  11292. weight: math.unit(480, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/snow-gabumon/back.svg",
  11296. extra: 1115 / 962,
  11297. bottom: 0.041
  11298. }
  11299. },
  11300. frontUndresed: {
  11301. height: math.unit(4 + 10 / 12, "feet"),
  11302. weight: math.unit(480, "lb"),
  11303. name: "Front (Undressed)",
  11304. image: {
  11305. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11306. extra: 1061 / 960,
  11307. bottom: 0.045
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(1, "inch")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(4 + 10 / 12, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(200, "feet")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(120, "miles")
  11328. },
  11329. {
  11330. name: "Gigamacro",
  11331. height: math.unit(9800, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(1.7, "meters"),
  11340. weight: math.unit(140, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/moody/front.svg",
  11344. extra: 3226 / 3007,
  11345. bottom: 0.087
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(1, "mm")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(1.7, "meters"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(80, "meters")
  11362. },
  11363. {
  11364. name: "Macro+",
  11365. height: math.unit(500, "meters")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/zyas/front.svg",
  11378. extra: 1180 / 1120,
  11379. bottom: 0.045
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(10, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(500, "feet")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(5, "miles")
  11396. },
  11397. {
  11398. name: "Teramacro",
  11399. height: math.unit(150000, "miles")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(150, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/cuon/front.svg",
  11412. extra: 1390 / 1320,
  11413. bottom: 0.008
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Micro",
  11420. height: math.unit(3, "inches")
  11421. },
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(18 + 9 / 12, "feet"),
  11425. default: true
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(360, "feet")
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(360, "miles")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(2.4, "meters"),
  11442. weight: math.unit(70, "kg"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/nyanuxk/front.svg",
  11446. extra: 1172 / 1084,
  11447. bottom: 0.065
  11448. }
  11449. },
  11450. side: {
  11451. height: math.unit(2.4, "meters"),
  11452. weight: math.unit(70, "kg"),
  11453. name: "Side",
  11454. image: {
  11455. source: "./media/characters/nyanuxk/side.svg",
  11456. extra: 1190 / 1132,
  11457. bottom: 0.007
  11458. }
  11459. },
  11460. back: {
  11461. height: math.unit(2.4, "meters"),
  11462. weight: math.unit(70, "kg"),
  11463. name: "Back",
  11464. image: {
  11465. source: "./media/characters/nyanuxk/back.svg",
  11466. extra: 1200 / 1141,
  11467. bottom: 0.015
  11468. }
  11469. },
  11470. foot: {
  11471. height: math.unit(0.52, "meters"),
  11472. name: "Foot",
  11473. image: {
  11474. source: "./media/characters/nyanuxk/foot.svg"
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Micro",
  11481. height: math.unit(2, "cm")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.4, "meters"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Smaller Macro",
  11490. height: math.unit(120, "meters")
  11491. },
  11492. {
  11493. name: "Bigger Macro",
  11494. height: math.unit(1.2, "km")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(15, "kilometers")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(2000, "km")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(500000, "km")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11512. {
  11513. side: {
  11514. height: math.unit(6, "feet"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/ailbhe/side.svg",
  11518. extra: 757 / 464,
  11519. bottom: 0.041
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(1.07, "meters"),
  11527. default: true
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(120, "kg"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/zevulfius/front.svg",
  11540. extra: 965 / 903
  11541. }
  11542. },
  11543. side: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(120, "kg"),
  11546. name: "Side",
  11547. image: {
  11548. source: "./media/characters/zevulfius/side.svg",
  11549. extra: 939 / 900
  11550. }
  11551. },
  11552. back: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(120, "kg"),
  11555. name: "Back",
  11556. image: {
  11557. source: "./media/characters/zevulfius/back.svg",
  11558. extra: 918 / 854,
  11559. bottom: 0.005
  11560. }
  11561. },
  11562. foot: {
  11563. height: math.unit(6 / 3.72, "feet"),
  11564. name: "Foot",
  11565. image: {
  11566. source: "./media/characters/zevulfius/foot.svg"
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(750, "meters")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(20, "km"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Gigamacro",
  11582. height: math.unit(2000, "km")
  11583. },
  11584. {
  11585. name: "Teramacro",
  11586. height: math.unit(250000, "km")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(100, "feet"),
  11595. weight: math.unit(350, "kg"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/rikes/front.svg",
  11599. extra: 1565 / 1483,
  11600. bottom: 0.017
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(100, "feet"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(8, "feet"),
  11617. weight: math.unit(356, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/adam-silver-mane/front.svg",
  11621. extra: 1036/937,
  11622. bottom: 63/1099
  11623. }
  11624. },
  11625. side: {
  11626. height: math.unit(8, "feet"),
  11627. weight: math.unit(356, "lb"),
  11628. name: "Side",
  11629. image: {
  11630. source: "./media/characters/adam-silver-mane/side.svg",
  11631. extra: 997/901,
  11632. bottom: 59/1056
  11633. }
  11634. },
  11635. frontNsfw: {
  11636. height: math.unit(8, "feet"),
  11637. weight: math.unit(356, "lb"),
  11638. name: "Front (NSFW)",
  11639. image: {
  11640. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11641. extra: 1036/937,
  11642. bottom: 63/1099
  11643. }
  11644. },
  11645. sideNsfw: {
  11646. height: math.unit(8, "feet"),
  11647. weight: math.unit(356, "lb"),
  11648. name: "Side (NSFW)",
  11649. image: {
  11650. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11651. extra: 997/901,
  11652. bottom: 59/1056
  11653. }
  11654. },
  11655. dick: {
  11656. height: math.unit(2.1, "feet"),
  11657. name: "Dick",
  11658. image: {
  11659. source: "./media/characters/adam-silver-mane/dick.svg"
  11660. }
  11661. },
  11662. taur: {
  11663. height: math.unit(16, "feet"),
  11664. weight: math.unit(1500, "kg"),
  11665. name: "Taur",
  11666. image: {
  11667. source: "./media/characters/adam-silver-mane/taur.svg",
  11668. extra: 1713 / 1571,
  11669. bottom: 0.01
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(8, "feet")
  11677. },
  11678. {
  11679. name: "Minimacro",
  11680. height: math.unit(80, "feet")
  11681. },
  11682. {
  11683. name: "MDA",
  11684. height: math.unit(80, "meters")
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(800, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(8000, "feet")
  11694. },
  11695. {
  11696. name: "Gigamacro",
  11697. height: math.unit(800, "miles")
  11698. },
  11699. {
  11700. name: "Teramacro",
  11701. height: math.unit(80000, "miles")
  11702. },
  11703. {
  11704. name: "Celestial",
  11705. height: math.unit(8e6, "miles")
  11706. },
  11707. {
  11708. name: "Star Dragon",
  11709. height: math.unit(800000, "parsecs")
  11710. },
  11711. {
  11712. name: "Godly",
  11713. height: math.unit(800, "teraparsecs")
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/ky'owin/front.svg",
  11726. extra: 3862/3053,
  11727. bottom: 74/3936
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Normal",
  11734. height: math.unit(6 + 8 / 12, "feet")
  11735. },
  11736. {
  11737. name: "Large",
  11738. height: math.unit(68, "feet")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(132, "feet")
  11743. },
  11744. {
  11745. name: "Macro+",
  11746. height: math.unit(340, "feet")
  11747. },
  11748. {
  11749. name: "Macro++",
  11750. height: math.unit(680, "feet"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(1, "mile")
  11756. },
  11757. {
  11758. name: "Megamacro+",
  11759. height: math.unit(10, "miles")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(4, "feet"),
  11768. weight: math.unit(50, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/mal/front.svg",
  11772. extra: 785 / 724,
  11773. bottom: 0.07
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Micro",
  11780. height: math.unit(4, "inches")
  11781. },
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(4, "feet"),
  11785. default: true
  11786. },
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(200, "feet")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/jordan-deware/front.svg",
  11802. extra: 1191 / 1012
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Nano",
  11809. height: math.unit(0.01, "mm")
  11810. },
  11811. {
  11812. name: "Minimicro",
  11813. height: math.unit(1, "mm")
  11814. },
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(0.5, "inches")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(4, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Minimacro",
  11826. height: math.unit(40, "meters")
  11827. },
  11828. {
  11829. name: "Small Macro",
  11830. height: math.unit(400, "meters")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(4, "miles")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(40, "miles")
  11839. },
  11840. {
  11841. name: "Megamacro+",
  11842. height: math.unit(400, "miles")
  11843. },
  11844. {
  11845. name: "Gigamacro",
  11846. height: math.unit(400000, "miles")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11852. {
  11853. side: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Side",
  11857. image: {
  11858. source: "./media/characters/kimiko/side.svg",
  11859. extra: 600 / 358
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(15, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(220, "feet")
  11872. },
  11873. {
  11874. name: "Macro+",
  11875. height: math.unit(1450, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(11500, "feet")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(9500, "miles")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(2208005005, "miles")
  11888. },
  11889. {
  11890. name: "Examacro",
  11891. height: math.unit(2750, "parsecs")
  11892. },
  11893. {
  11894. name: "Zettamacro",
  11895. height: math.unit(101500, "parsecs")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(70, "kg"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/andrew-sleepy/front.svg"
  11908. }
  11909. },
  11910. side: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(70, "kg"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/andrew-sleepy/side.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(1, "mm"),
  11923. default: true
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11929. {
  11930. front: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Front",
  11934. image: {
  11935. source: "./media/characters/judio/front.svg",
  11936. extra: 1258 / 1110
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5 + 6 / 12, "feet")
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(1000, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(10, "miles")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11958. {
  11959. frontDressed: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(68, "kg"),
  11962. name: "Front (Dressed)",
  11963. image: {
  11964. source: "./media/characters/nomaxice/front-dressed.svg",
  11965. extra: 1137/824,
  11966. bottom: 74/1211
  11967. }
  11968. },
  11969. frontShorts: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(68, "kg"),
  11972. name: "Front (Shorts)",
  11973. image: {
  11974. source: "./media/characters/nomaxice/front-shorts.svg",
  11975. extra: 1137/824,
  11976. bottom: 74/1211
  11977. }
  11978. },
  11979. back: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(68, "kg"),
  11982. name: "Back",
  11983. image: {
  11984. source: "./media/characters/nomaxice/back.svg",
  11985. extra: 822/786,
  11986. bottom: 39/861
  11987. }
  11988. },
  11989. hand: {
  11990. height: math.unit(0.565, "feet"),
  11991. name: "Hand",
  11992. image: {
  11993. source: "./media/characters/nomaxice/hand.svg"
  11994. }
  11995. },
  11996. foot: {
  11997. height: math.unit(1, "feet"),
  11998. name: "Foot",
  11999. image: {
  12000. source: "./media/characters/nomaxice/foot.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Micro",
  12007. height: math.unit(8, "cm")
  12008. },
  12009. {
  12010. name: "Norm",
  12011. height: math.unit(1.82, "m")
  12012. },
  12013. {
  12014. name: "Norm+",
  12015. height: math.unit(8.8, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Big",
  12020. height: math.unit(8, "meters")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(18, "meters")
  12025. },
  12026. {
  12027. name: "Macro+",
  12028. height: math.unit(88, "meters")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(12, "feet"),
  12037. weight: math.unit(1.5, "tons"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/dydros/front.svg",
  12041. extra: 863 / 800,
  12042. bottom: 0.015
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(12, "feet"),
  12047. weight: math.unit(1.5, "tons"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/dydros/back.svg",
  12051. extra: 900 / 843,
  12052. bottom: 0.005
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(12, "feet"),
  12060. default: true
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(100, "kg"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/riggi/front.svg",
  12073. extra: 5787 / 5303
  12074. }
  12075. },
  12076. hyper: {
  12077. height: math.unit(6 * 5 / 3, "feet"),
  12078. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12079. name: "Hyper",
  12080. image: {
  12081. source: "./media/characters/riggi/hyper.svg",
  12082. extra: 3595 / 3485
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Small Macro",
  12089. height: math.unit(50, "feet")
  12090. },
  12091. {
  12092. name: "Default",
  12093. height: math.unit(200, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Loom",
  12098. height: math.unit(10000, "feet")
  12099. },
  12100. {
  12101. name: "Cruising Altitude",
  12102. height: math.unit(30000, "feet")
  12103. },
  12104. {
  12105. name: "Megamacro",
  12106. height: math.unit(100, "miles")
  12107. },
  12108. {
  12109. name: "Continent Sized",
  12110. height: math.unit(2800, "miles")
  12111. },
  12112. {
  12113. name: "Earth Sized",
  12114. height: math.unit(8000, "miles")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(250, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/alexi/front.svg",
  12127. extra: 3483 / 3291,
  12128. bottom: 0.04
  12129. }
  12130. },
  12131. back: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(250, "lb"),
  12134. name: "Back",
  12135. image: {
  12136. source: "./media/characters/alexi/back.svg",
  12137. extra: 3533 / 3356,
  12138. bottom: 0.021
  12139. }
  12140. },
  12141. frontTransforming: {
  12142. height: math.unit(8.58, "feet"),
  12143. weight: math.unit(1300, "lb"),
  12144. name: "Transforming",
  12145. image: {
  12146. source: "./media/characters/alexi/front-transforming.svg",
  12147. extra: 437 / 409,
  12148. bottom: 19 / 458.66
  12149. }
  12150. },
  12151. frontTransformed: {
  12152. height: math.unit(12.5, "feet"),
  12153. weight: math.unit(4000, "lb"),
  12154. name: "Transformed",
  12155. image: {
  12156. source: "./media/characters/alexi/front-transformed.svg",
  12157. extra: 639 / 614,
  12158. bottom: 30.55 / 671
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(14, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Minimacro",
  12170. height: math.unit(30, "meters")
  12171. },
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(500, "meters")
  12175. },
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(9000, "km")
  12179. },
  12180. {
  12181. name: "Teramacro",
  12182. height: math.unit(384000, "km")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/kayroo/front.svg",
  12195. extra: 1153 / 1038,
  12196. bottom: 0.06
  12197. }
  12198. },
  12199. foot: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Foot",
  12203. image: {
  12204. source: "./media/characters/kayroo/foot.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(8, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(250, "feet")
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(2800, "feet")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(5200, "feet")
  12225. },
  12226. {
  12227. name: "Gigamacro",
  12228. height: math.unit(27000, "feet")
  12229. },
  12230. {
  12231. name: "Omega",
  12232. height: math.unit(45000, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(18, "feet"),
  12241. weight: math.unit(5800, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/rhys/front.svg",
  12245. extra: 3386 / 3090,
  12246. bottom: 0.07
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(18, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Working Size",
  12258. height: math.unit(200, "feet")
  12259. },
  12260. {
  12261. name: "Demolition Size",
  12262. height: math.unit(2000, "feet")
  12263. },
  12264. {
  12265. name: "Maximum Licensed Size",
  12266. height: math.unit(5, "miles")
  12267. },
  12268. {
  12269. name: "Maximum Observed Size",
  12270. height: math.unit(10, "yottameters")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(250, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/toto/front.svg",
  12283. extra: 527 / 479,
  12284. bottom: 0.05
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(3, "feet")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(10, "feet")
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(150, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(1200, "feet")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "King", species: ["lion"], tags: ["anthro"] },
  12310. {
  12311. back: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Back",
  12315. image: {
  12316. source: "./media/characters/king/back.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Micro",
  12323. height: math.unit(2, "inches")
  12324. },
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(8, "feet")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(200, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(50, "miles")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(11, "feet"),
  12345. weight: math.unit(1400, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/cordite/front.svg",
  12349. extra: 1919/1827,
  12350. bottom: 40/1959
  12351. }
  12352. },
  12353. side: {
  12354. height: math.unit(11, "feet"),
  12355. weight: math.unit(1400, "lb"),
  12356. name: "Side",
  12357. image: {
  12358. source: "./media/characters/cordite/side.svg",
  12359. extra: 1908/1793,
  12360. bottom: 38/1946
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(11, "feet"),
  12365. weight: math.unit(1400, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/cordite/back.svg",
  12369. extra: 1938/1837,
  12370. bottom: 10/1948
  12371. }
  12372. },
  12373. feral: {
  12374. height: math.unit(2, "feet"),
  12375. weight: math.unit(90, "lb"),
  12376. name: "Feral",
  12377. image: {
  12378. source: "./media/characters/cordite/feral.svg",
  12379. extra: 1260 / 755,
  12380. bottom: 0.05
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(11, "feet"),
  12388. default: true
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/pianostrong/front.svg",
  12401. extra: 6577 / 6254,
  12402. bottom: 0.02
  12403. }
  12404. },
  12405. side: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Side",
  12409. image: {
  12410. source: "./media/characters/pianostrong/side.svg",
  12411. extra: 6106 / 5730
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/pianostrong/back.svg",
  12420. extra: 6085 / 5733,
  12421. bottom: 0.01
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(100, "feet")
  12429. },
  12430. {
  12431. name: "Macro+",
  12432. height: math.unit(300, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Macro++",
  12437. height: math.unit(1000, "feet")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(150, "lb"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/kona/front.svg",
  12450. extra: 2960 / 2629,
  12451. bottom: 0.005
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(11 + 8 / 12, "feet")
  12459. },
  12460. {
  12461. name: "Macro",
  12462. height: math.unit(850, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro+",
  12467. height: math.unit(1.5, "km"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(80, "miles")
  12473. },
  12474. {
  12475. name: "Gigamacro",
  12476. height: math.unit(3500, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. side: {
  12484. height: math.unit(1.9, "meters"),
  12485. weight: math.unit(326, "kg"),
  12486. name: "Side",
  12487. image: {
  12488. source: "./media/characters/levi/side.svg",
  12489. extra: 1704 / 1334,
  12490. bottom: 0.02
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.9, "meters"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(20, "meters")
  12503. },
  12504. {
  12505. name: "Macro+",
  12506. height: math.unit(200, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(2, "km")
  12511. },
  12512. {
  12513. name: "Megamacro+",
  12514. height: math.unit(20, "km")
  12515. },
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(2500, "km")
  12519. },
  12520. {
  12521. name: "Gigamacro+",
  12522. height: math.unit(120000, "km")
  12523. },
  12524. {
  12525. name: "Teramacro",
  12526. height: math.unit(7.77e6, "km")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6 + 4/12, "feet"),
  12535. weight: math.unit(190, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/bmc/front.svg",
  12539. extra: 1626/1472,
  12540. bottom: 79/1705
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(6 + 4/12, "feet"),
  12545. weight: math.unit(190, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/bmc/back.svg",
  12549. extra: 1640/1479,
  12550. bottom: 45/1685
  12551. }
  12552. },
  12553. frontArmor: {
  12554. height: math.unit(6 + 4/12, "feet"),
  12555. weight: math.unit(190, "lb"),
  12556. name: "Front-armor",
  12557. image: {
  12558. source: "./media/characters/bmc/front-armor.svg",
  12559. extra: 1538/1468,
  12560. bottom: 79/1617
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Human-sized",
  12567. height: math.unit(6 + 4 / 12, "feet")
  12568. },
  12569. {
  12570. name: "Interactive Size",
  12571. height: math.unit(25, "feet")
  12572. },
  12573. {
  12574. name: "Small",
  12575. height: math.unit(250, "feet")
  12576. },
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(1250, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Good Day",
  12584. height: math.unit(88, "miles")
  12585. },
  12586. {
  12587. name: "Largest Measured Size",
  12588. height: math.unit(105.960, "galaxies")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(20, "feet"),
  12597. weight: math.unit(2016, "kg"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/sven-the-kaiju/front.svg",
  12601. extra: 1277/1250,
  12602. bottom: 35/1312
  12603. }
  12604. },
  12605. mouth: {
  12606. height: math.unit(1.85, "feet"),
  12607. name: "Mouth",
  12608. image: {
  12609. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Fairy",
  12616. height: math.unit(6, "inches")
  12617. },
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(20, "feet"),
  12621. default: true
  12622. },
  12623. {
  12624. name: "Rampage",
  12625. height: math.unit(200, "feet")
  12626. },
  12627. {
  12628. name: "Archfey Forest Guardian",
  12629. height: math.unit(1, "mile")
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12635. {
  12636. front: {
  12637. height: math.unit(4, "meters"),
  12638. weight: math.unit(2, "tons"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/marik/front.svg",
  12642. extra: 1057 / 1003,
  12643. bottom: 0.08
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(4, "meters"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(20, "meters")
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(50, "km")
  12660. },
  12661. {
  12662. name: "Gigamacro",
  12663. height: math.unit(100, "km")
  12664. },
  12665. {
  12666. name: "Alpha Macro",
  12667. height: math.unit(7.88e7, "yottameters")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(110, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/mel/front.svg",
  12680. extra: 736 / 617,
  12681. bottom: 0.017
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Pico",
  12688. height: math.unit(3, "pm")
  12689. },
  12690. {
  12691. name: "Nano",
  12692. height: math.unit(3, "nm")
  12693. },
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(0.3, "mm"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Micro+",
  12701. height: math.unit(3, "mm")
  12702. },
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(5 + 10.5 / 12, "feet")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12711. {
  12712. kaiju: {
  12713. height: math.unit(1.75, "meters"),
  12714. weight: math.unit(55, "kg"),
  12715. name: "Kaiju",
  12716. image: {
  12717. source: "./media/characters/lykonous/kaiju.svg",
  12718. extra: 1055 / 946,
  12719. bottom: 0.135
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(2.5, "meters"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Kaiju Dragon",
  12731. height: math.unit(60, "meters")
  12732. },
  12733. {
  12734. name: "Mega Kaiju",
  12735. height: math.unit(120, "km")
  12736. },
  12737. {
  12738. name: "Giga Kaiju",
  12739. height: math.unit(200, "megameters")
  12740. },
  12741. {
  12742. name: "Terra Kaiju",
  12743. height: math.unit(400, "gigameters")
  12744. },
  12745. {
  12746. name: "Kaiju Dragon God",
  12747. height: math.unit(13000, "exaparsecs")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/blü/front.svg",
  12760. extra: 1883 / 1564,
  12761. bottom: 0.031
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(13, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Big Boi",
  12773. height: math.unit(150, "meters")
  12774. },
  12775. {
  12776. name: "Mini Stomper",
  12777. height: math.unit(300, "meters")
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(1000, "meters")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(11000, "meters")
  12786. },
  12787. {
  12788. name: "Gigamacro",
  12789. height: math.unit(11000, "km")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(420000, "km")
  12794. },
  12795. {
  12796. name: "Examacro",
  12797. height: math.unit(120, "parsecs")
  12798. },
  12799. {
  12800. name: "God Tho",
  12801. height: math.unit(98000000000, "parsecs")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12807. {
  12808. taurFront: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(200, "lb"),
  12811. name: "Taur (Front)",
  12812. image: {
  12813. source: "./media/characters/scales/taur-front.svg",
  12814. extra: 1,
  12815. bottom: 0.05
  12816. }
  12817. },
  12818. taurBack: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(200, "lb"),
  12821. name: "Taur (Back)",
  12822. image: {
  12823. source: "./media/characters/scales/taur-back.svg",
  12824. extra: 1,
  12825. bottom: 0.08
  12826. }
  12827. },
  12828. anthro: {
  12829. height: math.unit(6 * 7 / 12, "feet"),
  12830. weight: math.unit(100, "lb"),
  12831. name: "Anthro",
  12832. image: {
  12833. source: "./media/characters/scales/anthro.svg",
  12834. extra: 1,
  12835. bottom: 0.06
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(12, "feet"),
  12843. default: true
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/koragos/front.svg",
  12856. extra: 841 / 794,
  12857. bottom: 0.035
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(6, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/koragos/back.svg",
  12866. extra: 841 / 810,
  12867. bottom: 0.022
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 11 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(490, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(10, "miles")
  12884. },
  12885. {
  12886. name: "Gigamacro",
  12887. height: math.unit(50, "miles")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(250, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/xylrem/front.svg",
  12900. extra: 3323 / 3050,
  12901. bottom: 0.065
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(4, "feet")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(16, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(2720, "feet")
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(25000, "miles")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(8, "feet"),
  12930. weight: math.unit(250, "kg"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/ikideru/front.svg",
  12934. extra: 930 / 870,
  12935. bottom: 0.087
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(8, "feet"),
  12940. weight: math.unit(250, "kg"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/ikideru/back.svg",
  12944. extra: 919 / 852,
  12945. bottom: 0.055
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Rare",
  12952. height: math.unit(8, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Playful Loom",
  12957. height: math.unit(80, "feet")
  12958. },
  12959. {
  12960. name: "City Leaner",
  12961. height: math.unit(230, "feet")
  12962. },
  12963. {
  12964. name: "Megamacro",
  12965. height: math.unit(2500, "feet")
  12966. },
  12967. {
  12968. name: "Gigamacro",
  12969. height: math.unit(26400, "feet")
  12970. },
  12971. {
  12972. name: "Tectonic Shifter",
  12973. height: math.unit(1.7, "megameters")
  12974. },
  12975. {
  12976. name: "Planet Carer",
  12977. height: math.unit(21, "megameters")
  12978. },
  12979. {
  12980. name: "God",
  12981. height: math.unit(11157.22, "parsecs")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(120, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/neo/front.svg"
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Micro",
  13000. height: math.unit(2, "inches"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Human Size",
  13005. height: math.unit(5 + 8 / 12, "feet")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(13 + 10 / 12, "feet"),
  13014. weight: math.unit(5320, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/chauncey-chantz/front.svg",
  13018. extra: 1587 / 1435,
  13019. bottom: 0.02
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(13 + 10 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(45, "feet")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(250, "miles")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(10000, "miles")
  13040. },
  13041. {
  13042. name: "Galactic",
  13043. height: math.unit(40000, "parsecs")
  13044. },
  13045. {
  13046. name: "Universal",
  13047. height: math.unit(1, "yottameter")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(150, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/epifox/front.svg",
  13060. extra: 1,
  13061. bottom: 0.075
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Micro",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(12, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(3810, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro",
  13081. height: math.unit(500, "miles")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(1.8796, "m"),
  13090. weight: math.unit(230, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/colin-t/front.svg",
  13094. extra: 1272 / 1193,
  13095. bottom: 0.07
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Micro",
  13102. height: math.unit(0.571, "meters")
  13103. },
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(1.8796, "meters"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Tall",
  13111. height: math.unit(4, "meters")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(67.241, "meters")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(371.856, "meters")
  13120. },
  13121. {
  13122. name: "Planetary",
  13123. height: math.unit(12631.5689, "km")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(1.85, "meters"),
  13132. weight: math.unit(80, "kg"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/matvei/front.svg",
  13136. extra: 456/447,
  13137. bottom: 8/464
  13138. }
  13139. },
  13140. back: {
  13141. height: math.unit(1.85, "meters"),
  13142. weight: math.unit(80, "kg"),
  13143. name: "Back",
  13144. image: {
  13145. source: "./media/characters/matvei/back.svg",
  13146. extra: 434/427,
  13147. bottom: 11/445
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(1.85, "meters"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(5 + 9 / 12, "feet"),
  13164. weight: math.unit(70, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/quincy/front.svg",
  13168. extra: 3041 / 2751
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(5 + 9 / 12, "feet"),
  13173. weight: math.unit(70, "lb"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/quincy/back.svg",
  13177. extra: 3041 / 2751
  13178. }
  13179. },
  13180. flying: {
  13181. height: math.unit(5 + 4 / 12, "feet"),
  13182. weight: math.unit(70, "lb"),
  13183. name: "Flying",
  13184. image: {
  13185. source: "./media/characters/quincy/flying.svg",
  13186. extra: 1044 / 930
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(3, "cm")
  13194. },
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(5 + 9 / 12, "feet")
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(200, "meters"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(1000, "meters")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(3 + 11/12, "feet"),
  13215. weight: math.unit(50, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/vanrel/front.svg",
  13219. extra: 1104/949,
  13220. bottom: 52/1156
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(3 + 11/12, "feet"),
  13225. weight: math.unit(50, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/vanrel/back.svg",
  13229. extra: 1119/976,
  13230. bottom: 37/1156
  13231. }
  13232. },
  13233. tome: {
  13234. height: math.unit(1.35, "feet"),
  13235. weight: math.unit(10, "lb"),
  13236. name: "Vanrel's Tome",
  13237. rename: true,
  13238. image: {
  13239. source: "./media/characters/vanrel/tome.svg"
  13240. }
  13241. },
  13242. beans: {
  13243. height: math.unit(0.89, "feet"),
  13244. name: "Beans",
  13245. image: {
  13246. source: "./media/characters/vanrel/beans.svg"
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(3 + 11/12, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(7 + 5 / 12, "feet"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/kuiper-vanrel/front.svg",
  13266. extra: 1219/1169,
  13267. bottom: 69/1288
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(7 + 5 / 12, "feet"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/kuiper-vanrel/back.svg",
  13275. extra: 1236/1193,
  13276. bottom: 27/1263
  13277. }
  13278. },
  13279. foot: {
  13280. height: math.unit(0.55, "meters"),
  13281. name: "Foot",
  13282. image: {
  13283. source: "./media/characters/kuiper-vanrel/foot.svg",
  13284. }
  13285. },
  13286. battle: {
  13287. height: math.unit(6.824, "feet"),
  13288. name: "Battle",
  13289. image: {
  13290. source: "./media/characters/kuiper-vanrel/battle.svg",
  13291. extra: 1466 / 1327,
  13292. bottom: 29 / 1492.5
  13293. }
  13294. },
  13295. meerkui: {
  13296. height: math.unit(18, "inches"),
  13297. name: "Meerkui",
  13298. image: {
  13299. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13300. extra: 1354/1289,
  13301. bottom: 69/1423
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(7 + 5 / 12, "feet"),
  13309. default: true
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(8 + 5 / 12, "feet"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/keset-vanrel/front.svg",
  13321. extra: 1231/1148,
  13322. bottom: 82/1313
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(8 + 5 / 12, "feet"),
  13327. name: "Back",
  13328. image: {
  13329. source: "./media/characters/keset-vanrel/back.svg",
  13330. extra: 1240/1174,
  13331. bottom: 33/1273
  13332. }
  13333. },
  13334. hand: {
  13335. height: math.unit(0.6, "meters"),
  13336. name: "Hand",
  13337. image: {
  13338. source: "./media/characters/keset-vanrel/hand.svg"
  13339. }
  13340. },
  13341. foot: {
  13342. height: math.unit(0.94978, "meters"),
  13343. name: "Foot",
  13344. image: {
  13345. source: "./media/characters/keset-vanrel/foot.svg"
  13346. }
  13347. },
  13348. battle: {
  13349. height: math.unit(7.408, "feet"),
  13350. name: "Battle",
  13351. image: {
  13352. source: "./media/characters/keset-vanrel/battle.svg",
  13353. extra: 1890 / 1386,
  13354. bottom: 73.28 / 1970
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(8 + 5 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/neos/front.svg",
  13375. extra: 1696 / 992,
  13376. bottom: 0.14
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Normal",
  13383. height: math.unit(54, "cm"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(100, "m")
  13389. },
  13390. {
  13391. name: "Megamacro",
  13392. height: math.unit(10, "km")
  13393. },
  13394. {
  13395. name: "Megamacro+",
  13396. height: math.unit(100, "km")
  13397. },
  13398. {
  13399. name: "Gigamacro",
  13400. height: math.unit(100, "Mm")
  13401. },
  13402. {
  13403. name: "Teramacro",
  13404. height: math.unit(100, "Gm")
  13405. },
  13406. {
  13407. name: "Examacro",
  13408. height: math.unit(100, "Em")
  13409. },
  13410. {
  13411. name: "Godly",
  13412. height: math.unit(10000, "Ym")
  13413. },
  13414. {
  13415. name: "Beyond Godly",
  13416. height: math.unit(25, "multiverses")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13422. {
  13423. feminine: {
  13424. height: math.unit(5, "feet"),
  13425. weight: math.unit(100, "lb"),
  13426. name: "Feminine",
  13427. image: {
  13428. source: "./media/characters/sammy-mouse/feminine.svg",
  13429. extra: 2526 / 2425,
  13430. bottom: 0.123
  13431. }
  13432. },
  13433. masculine: {
  13434. height: math.unit(5, "feet"),
  13435. weight: math.unit(100, "lb"),
  13436. name: "Masculine",
  13437. image: {
  13438. source: "./media/characters/sammy-mouse/masculine.svg",
  13439. extra: 2526 / 2425,
  13440. bottom: 0.123
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Micro",
  13447. height: math.unit(5, "inches")
  13448. },
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(5, "feet"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(60, "feet")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(4, "feet"),
  13465. weight: math.unit(50, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/kole/front.svg",
  13469. extra: 1423 / 1303,
  13470. bottom: 0.025
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(4, "feet"),
  13475. weight: math.unit(50, "lb"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/kole/back.svg",
  13479. extra: 1426 / 1280,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(4, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(2.5, "feet"),
  13497. weight: math.unit(32, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/rufran/front.svg",
  13501. extra: 1313/885,
  13502. bottom: 94/1407
  13503. }
  13504. },
  13505. side: {
  13506. height: math.unit(2.5, "feet"),
  13507. weight: math.unit(32, "lb"),
  13508. name: "Side",
  13509. image: {
  13510. source: "./media/characters/rufran/side.svg",
  13511. extra: 1109/852,
  13512. bottom: 118/1227
  13513. }
  13514. },
  13515. back: {
  13516. height: math.unit(2.5, "feet"),
  13517. weight: math.unit(32, "lb"),
  13518. name: "Back",
  13519. image: {
  13520. source: "./media/characters/rufran/back.svg",
  13521. extra: 1280/878,
  13522. bottom: 131/1411
  13523. }
  13524. },
  13525. mouth: {
  13526. height: math.unit(1.13, "feet"),
  13527. name: "Mouth",
  13528. image: {
  13529. source: "./media/characters/rufran/mouth.svg"
  13530. }
  13531. },
  13532. foot: {
  13533. height: math.unit(1.33, "feet"),
  13534. name: "Foot",
  13535. image: {
  13536. source: "./media/characters/rufran/foot.svg"
  13537. }
  13538. },
  13539. koboldFront: {
  13540. height: math.unit(2 + 6 / 12, "feet"),
  13541. weight: math.unit(20, "lb"),
  13542. name: "Front (Kobold)",
  13543. image: {
  13544. source: "./media/characters/rufran/kobold-front.svg",
  13545. extra: 2041 / 1839,
  13546. bottom: 0.055
  13547. }
  13548. },
  13549. koboldBack: {
  13550. height: math.unit(2 + 6 / 12, "feet"),
  13551. weight: math.unit(20, "lb"),
  13552. name: "Back (Kobold)",
  13553. image: {
  13554. source: "./media/characters/rufran/kobold-back.svg",
  13555. extra: 2054 / 1839,
  13556. bottom: 0.01
  13557. }
  13558. },
  13559. koboldHand: {
  13560. height: math.unit(0.2166, "meters"),
  13561. name: "Hand (Kobold)",
  13562. image: {
  13563. source: "./media/characters/rufran/kobold-hand.svg"
  13564. }
  13565. },
  13566. koboldFoot: {
  13567. height: math.unit(0.185, "meters"),
  13568. name: "Foot (Kobold)",
  13569. image: {
  13570. source: "./media/characters/rufran/kobold-foot.svg"
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "inch")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(2 + 6 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Big",
  13586. height: math.unit(60, "feet")
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(325, "feet")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(0.3, "meters"),
  13599. weight: math.unit(3.5, "kg"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/chip/front.svg",
  13603. extra: 748 / 674
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Micro",
  13610. height: math.unit(1, "inch"),
  13611. default: true
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13617. {
  13618. side: {
  13619. height: math.unit(2.3, "meters"),
  13620. weight: math.unit(3500, "lb"),
  13621. name: "Side",
  13622. image: {
  13623. source: "./media/characters/torvid/side.svg",
  13624. extra: 1972 / 722,
  13625. bottom: 0.035
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(2.3, "meters"),
  13633. default: true
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(2, "meters"),
  13642. weight: math.unit(150.5, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/susan/front.svg",
  13646. extra: 693 / 635,
  13647. bottom: 0.05
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(505, "miles"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(6, "feet"),
  13664. weight: math.unit(150, "lb"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/raindrops/front.svg",
  13668. extra: 2655 / 2461,
  13669. bottom: 49 / 2705
  13670. }
  13671. },
  13672. back: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Back",
  13676. image: {
  13677. source: "./media/characters/raindrops/back.svg",
  13678. extra: 2574 / 2400,
  13679. bottom: 65 / 2634
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(6, "inches")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(6 + 2 / 12, "feet")
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(131, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(15, "miles")
  13700. },
  13701. {
  13702. name: "Gigamacro",
  13703. height: math.unit(4000, "miles")
  13704. },
  13705. {
  13706. name: "Teramacro",
  13707. height: math.unit(315000, "miles")
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(2.794, "meters"),
  13716. weight: math.unit(325, "kg"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/tezwa/front.svg",
  13720. extra: 2083 / 1906,
  13721. bottom: 0.031
  13722. }
  13723. },
  13724. foot: {
  13725. height: math.unit(0.687, "meters"),
  13726. name: "Foot",
  13727. image: {
  13728. source: "./media/characters/tezwa/foot.svg"
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(9 + 2 / 12, "feet"),
  13736. default: true
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(58, "feet"),
  13745. weight: math.unit(89000, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/typhus/front.svg",
  13749. extra: 816 / 800,
  13750. bottom: 0.065
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(58, "feet"),
  13758. default: true
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(12, "feet"),
  13767. weight: math.unit(6, "tonnes"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/lyra-von-wulf/front.svg",
  13771. extra: 1,
  13772. bottom: 0.10
  13773. }
  13774. },
  13775. frontMecha: {
  13776. height: math.unit(12, "feet"),
  13777. weight: math.unit(12, "tonnes"),
  13778. name: "Front (Mecha)",
  13779. image: {
  13780. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13781. extra: 1,
  13782. bottom: 0.042
  13783. }
  13784. },
  13785. maw: {
  13786. height: math.unit(2.2, "feet"),
  13787. name: "Maw",
  13788. image: {
  13789. source: "./media/characters/lyra-von-wulf/maw.svg"
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Classic",
  13801. height: math.unit(50, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(500, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro",
  13809. height: math.unit(1, "mile")
  13810. },
  13811. {
  13812. name: "Gigamacro",
  13813. height: math.unit(400, "miles")
  13814. },
  13815. {
  13816. name: "Teramacro",
  13817. height: math.unit(22000, "miles")
  13818. },
  13819. {
  13820. name: "Solarmacro",
  13821. height: math.unit(8600000, "miles")
  13822. },
  13823. {
  13824. name: "Galactic",
  13825. height: math.unit(1057000, "lightyears")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6 + 10 / 12, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/dixon/front.svg",
  13838. extra: 3361 / 3209,
  13839. bottom: 0.01
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6 + 10 / 12, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Big",
  13851. height: math.unit(12, "meters")
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(500, "meters")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(2, "km")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(185, "cm"),
  13868. weight: math.unit(68, "kg"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/kauko/front.svg",
  13872. extra: 1455 / 1421,
  13873. bottom: 0.03
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(185, "cm"),
  13878. weight: math.unit(68, "kg"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/kauko/back.svg",
  13882. extra: 1455 / 1421,
  13883. bottom: 0.004
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(185, "cm"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13897. {
  13898. frontSfw: {
  13899. height: math.unit(5, "meters"),
  13900. weight: math.unit(4250, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/varg/front-sfw.svg",
  13904. extra: 1103/1010,
  13905. bottom: 50/1153
  13906. },
  13907. form: "anthro",
  13908. default: true
  13909. },
  13910. backSfw: {
  13911. height: math.unit(5, "meters"),
  13912. weight: math.unit(4250, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/varg/back-sfw.svg",
  13916. extra: 1038/1022,
  13917. bottom: 36/1074
  13918. },
  13919. form: "anthro"
  13920. },
  13921. frontNsfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(4250, "lb"),
  13924. name: "Front (NSFW)",
  13925. image: {
  13926. source: "./media/characters/varg/front-nsfw.svg",
  13927. extra: 1103/1010,
  13928. bottom: 50/1153
  13929. },
  13930. form: "anthro"
  13931. },
  13932. sheath: {
  13933. height: math.unit(3.8, "feet"),
  13934. weight: math.unit(90, "kilograms"),
  13935. name: "Sheath",
  13936. image: {
  13937. source: "./media/characters/varg/sheath.svg"
  13938. },
  13939. form: "anthro"
  13940. },
  13941. dick: {
  13942. height: math.unit(4.6, "feet"),
  13943. weight: math.unit(451, "kilograms"),
  13944. name: "Dick",
  13945. image: {
  13946. source: "./media/characters/varg/dick.svg"
  13947. },
  13948. form: "anthro"
  13949. },
  13950. feralSfw: {
  13951. height: math.unit(5, "meters"),
  13952. weight: math.unit(100000, "lb"),
  13953. name: "Side",
  13954. image: {
  13955. source: "./media/characters/varg/feral-sfw.svg",
  13956. extra: 1065/511,
  13957. bottom: 211/1276
  13958. },
  13959. form: "feral",
  13960. default: true
  13961. },
  13962. feralNsfw: {
  13963. height: math.unit(5, "meters"),
  13964. weight: math.unit(100000, "lb"),
  13965. name: "Side (NSFW)",
  13966. image: {
  13967. source: "./media/characters/varg/feral-nsfw.svg",
  13968. extra: 1065/511,
  13969. bottom: 211/1276
  13970. },
  13971. form: "feral",
  13972. },
  13973. feralSheath: {
  13974. height: math.unit(9.8, "feet"),
  13975. weight: math.unit(2000, "kilograms"),
  13976. name: "Sheath",
  13977. image: {
  13978. source: "./media/characters/varg/sheath.svg"
  13979. },
  13980. form: "feral"
  13981. },
  13982. feralDick: {
  13983. height: math.unit(13.11, "feet"),
  13984. weight: math.unit(10440, "kilograms"),
  13985. name: "Dick",
  13986. image: {
  13987. source: "./media/characters/varg/dick.svg"
  13988. },
  13989. form: "feral"
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(5, "meters"),
  13996. form: "anthro"
  13997. },
  13998. {
  13999. name: "Macro",
  14000. height: math.unit(200, "meters"),
  14001. form: "anthro"
  14002. },
  14003. {
  14004. name: "Megamacro",
  14005. height: math.unit(20, "kilometers"),
  14006. form: "anthro"
  14007. },
  14008. {
  14009. name: "True Size",
  14010. height: math.unit(211, "km"),
  14011. form: "anthro",
  14012. default: true
  14013. },
  14014. {
  14015. name: "Gigamacro",
  14016. height: math.unit(1000, "km"),
  14017. form: "anthro"
  14018. },
  14019. {
  14020. name: "Gigamacro+",
  14021. height: math.unit(8000, "km"),
  14022. form: "anthro"
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(1000000, "km"),
  14027. form: "anthro"
  14028. },
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(5, "meters"),
  14032. form: "feral"
  14033. },
  14034. {
  14035. name: "Macro",
  14036. height: math.unit(200, "meters"),
  14037. form: "feral"
  14038. },
  14039. {
  14040. name: "Megamacro",
  14041. height: math.unit(20, "kilometers"),
  14042. form: "feral"
  14043. },
  14044. {
  14045. name: "True Size",
  14046. height: math.unit(211, "km"),
  14047. form: "feral",
  14048. default: true
  14049. },
  14050. {
  14051. name: "Gigamacro",
  14052. height: math.unit(1000, "km"),
  14053. form: "feral"
  14054. },
  14055. {
  14056. name: "Gigamacro+",
  14057. height: math.unit(8000, "km"),
  14058. form: "feral"
  14059. },
  14060. {
  14061. name: "Teramacro",
  14062. height: math.unit(1000000, "km"),
  14063. form: "feral"
  14064. },
  14065. ],
  14066. {
  14067. "anthro": {
  14068. name: "Anthro",
  14069. default: true
  14070. },
  14071. "feral": {
  14072. name: "Feral",
  14073. },
  14074. }
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(7 + 7 / 12, "feet"),
  14081. weight: math.unit(267, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/dayza/front.svg",
  14085. extra: 1262 / 1200,
  14086. bottom: 0.035
  14087. }
  14088. },
  14089. side: {
  14090. height: math.unit(7 + 7 / 12, "feet"),
  14091. weight: math.unit(267, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/dayza/side.svg",
  14095. extra: 1295 / 1245,
  14096. bottom: 0.05
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(7 + 7 / 12, "feet"),
  14101. weight: math.unit(267, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/dayza/back.svg",
  14105. extra: 1241 / 1170
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(7 + 7 / 12, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(155, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6 + 5 / 12, "feet"),
  14126. weight: math.unit(160, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/xanthos/front.svg",
  14130. extra: 1,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(6 + 5 / 12, "feet"),
  14136. weight: math.unit(160, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/xanthos/back.svg",
  14140. extra: 1,
  14141. bottom: 0.03
  14142. }
  14143. },
  14144. hand: {
  14145. height: math.unit(0.928, "feet"),
  14146. name: "Hand",
  14147. image: {
  14148. source: "./media/characters/xanthos/hand.svg"
  14149. }
  14150. },
  14151. foot: {
  14152. height: math.unit(1.286, "feet"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/xanthos/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Normal+",
  14167. height: math.unit(6, "meters")
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(40, "feet")
  14172. },
  14173. {
  14174. name: "Macro+",
  14175. height: math.unit(200, "meters")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(20, "km")
  14180. },
  14181. {
  14182. name: "Megamacro+",
  14183. height: math.unit(100, "km")
  14184. },
  14185. {
  14186. name: "Gigamacro",
  14187. height: math.unit(200, "megameters")
  14188. },
  14189. {
  14190. name: "Gigamacro+",
  14191. height: math.unit(1.5, "gigameters")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6 + 3 / 12, "feet"),
  14200. weight: math.unit(215, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/grynn/front.svg",
  14204. extra: 4627 / 4209,
  14205. bottom: 0.047
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Micro",
  14212. height: math.unit(6, "inches")
  14213. },
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(6 + 3 / 12, "feet"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Big",
  14221. height: math.unit(104, "feet")
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(944, "feet")
  14226. },
  14227. {
  14228. name: "Macro+",
  14229. height: math.unit(9480, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(78752, "feet")
  14234. },
  14235. {
  14236. name: "Megamacro+",
  14237. height: math.unit(630128, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro++",
  14241. height: math.unit(3150695, "feet")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(7 + 5 / 12, "feet"),
  14250. weight: math.unit(450, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/mocha-aura/front.svg",
  14254. extra: 1907 / 1817,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. back: {
  14259. height: math.unit(7 + 5 / 12, "feet"),
  14260. weight: math.unit(450, "lb"),
  14261. name: "Back",
  14262. image: {
  14263. source: "./media/characters/mocha-aura/back.svg",
  14264. extra: 1900 / 1825,
  14265. bottom: 0.045
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Nano",
  14272. height: math.unit(1, "nm")
  14273. },
  14274. {
  14275. name: "Megamicro",
  14276. height: math.unit(1, "mm")
  14277. },
  14278. {
  14279. name: "Micro",
  14280. height: math.unit(3, "inches")
  14281. },
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(7 + 5 / 12, "feet"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(30, "feet")
  14290. },
  14291. {
  14292. name: "Megamacro",
  14293. height: math.unit(3500, "feet")
  14294. },
  14295. {
  14296. name: "Teramacro",
  14297. height: math.unit(500000, "miles")
  14298. },
  14299. {
  14300. name: "Petamacro",
  14301. height: math.unit(50000000000000000, "parsecs")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/ilisha-devya/front.svg",
  14314. extra: 1053/1049,
  14315. bottom: 270/1323
  14316. }
  14317. },
  14318. back: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Back",
  14322. image: {
  14323. source: "./media/characters/ilisha-devya/back.svg",
  14324. extra: 1131/1128,
  14325. bottom: 39/1170
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(500, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(10, "miles")
  14338. },
  14339. {
  14340. name: "Gigamacro",
  14341. height: math.unit(100000, "miles")
  14342. },
  14343. {
  14344. name: "Examacro",
  14345. height: math.unit(1e9, "lightyears")
  14346. },
  14347. {
  14348. name: "Omniversal",
  14349. height: math.unit(1e33, "lightyears")
  14350. },
  14351. {
  14352. name: "Beyond Infinite",
  14353. height: math.unit(1e100, "lightyears")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14359. {
  14360. Side: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/mira/side.svg",
  14366. extra: 900 / 799,
  14367. bottom: 0.02
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Human Size",
  14374. height: math.unit(6, "feet")
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(100, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(10, "miles")
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(25000, "miles")
  14388. },
  14389. {
  14390. name: "Teramacro",
  14391. height: math.unit(300, "AU")
  14392. },
  14393. {
  14394. name: "Full Size",
  14395. height: math.unit(4.5e10, "lightyears")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/holly/front.svg",
  14408. extra: 639 / 606
  14409. }
  14410. },
  14411. back: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Back",
  14415. image: {
  14416. source: "./media/characters/holly/back.svg",
  14417. extra: 623 / 598
  14418. }
  14419. },
  14420. frontWorking: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(150, "lb"),
  14423. name: "Front (Working)",
  14424. image: {
  14425. source: "./media/characters/holly/front-working.svg",
  14426. extra: 607 / 577,
  14427. bottom: 0.048
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Normal",
  14434. height: math.unit(12 + 3 / 12, "feet"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/porter/front.svg",
  14448. extra: 1,
  14449. bottom: 0.01
  14450. }
  14451. },
  14452. frontRobes: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front (Robes)",
  14456. image: {
  14457. source: "./media/characters/porter/front-robes.svg",
  14458. extra: 1.01,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(11 + 9 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14473. {
  14474. legendary: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Legendary",
  14478. image: {
  14479. source: "./media/characters/lucy/legendary.svg",
  14480. extra: 1355 / 1100,
  14481. bottom: 0.045
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Legendary",
  14488. height: math.unit(86882 * 2, "miles"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(6, "feet"),
  14498. weight: math.unit(150, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/drusilla/front.svg",
  14502. extra: 678 / 635,
  14503. bottom: 0.03
  14504. }
  14505. },
  14506. back: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Back",
  14510. image: {
  14511. source: "./media/characters/drusilla/back.svg",
  14512. extra: 678 / 635,
  14513. bottom: 0.005
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Macro",
  14520. height: math.unit(100, "feet")
  14521. },
  14522. {
  14523. name: "Canon Height",
  14524. height: math.unit(2000, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(180, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/renard-thatch/front.svg",
  14538. extra: 2411 / 2275,
  14539. bottom: 0.01
  14540. }
  14541. },
  14542. frontPosing: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(180, "lb"),
  14545. name: "Front (Posing)",
  14546. image: {
  14547. source: "./media/characters/renard-thatch/front-posing.svg",
  14548. extra: 2381 / 2261,
  14549. bottom: 0.01
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(180, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/renard-thatch/back.svg",
  14558. extra: 2428 / 2288
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "inches")
  14566. },
  14567. {
  14568. name: "Default",
  14569. height: math.unit(6, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(75, "feet")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(1450, "feet"),
  14583. weight: math.unit(1.21e6, "tons"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/sekvra/front.svg",
  14587. extra: 1193/1190,
  14588. bottom: 78/1271
  14589. }
  14590. },
  14591. side: {
  14592. height: math.unit(1450, "feet"),
  14593. weight: math.unit(1.21e6, "tons"),
  14594. name: "Side",
  14595. image: {
  14596. source: "./media/characters/sekvra/side.svg",
  14597. extra: 1193/1190,
  14598. bottom: 52/1245
  14599. }
  14600. },
  14601. back: {
  14602. height: math.unit(1450, "feet"),
  14603. weight: math.unit(1.21e6, "tons"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/sekvra/back.svg",
  14607. extra: 1219/1216,
  14608. bottom: 21/1240
  14609. }
  14610. },
  14611. frontClothed: {
  14612. height: math.unit(1450, "feet"),
  14613. weight: math.unit(1.21e6, "tons"),
  14614. name: "Front (Clothed)",
  14615. image: {
  14616. source: "./media/characters/sekvra/front-clothed.svg",
  14617. extra: 1192/1189,
  14618. bottom: 79/1271
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(1450, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Megamacro",
  14630. height: math.unit(15000, "feet")
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/carmine/front.svg",
  14643. extra: 1,
  14644. bottom: 0.035
  14645. }
  14646. },
  14647. frontArmor: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front (Armor)",
  14651. image: {
  14652. source: "./media/characters/carmine/front-armor.svg",
  14653. extra: 1,
  14654. bottom: 0.035
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Large",
  14661. height: math.unit(1, "mile")
  14662. },
  14663. {
  14664. name: "Huge",
  14665. height: math.unit(40, "miles"),
  14666. default: true
  14667. },
  14668. {
  14669. name: "Colossal",
  14670. height: math.unit(2500, "miles")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(150, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/elyssia/front.svg",
  14683. extra: 2201 / 2035,
  14684. bottom: 0.05
  14685. }
  14686. },
  14687. frontClothed: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front (Clothed)",
  14691. image: {
  14692. source: "./media/characters/elyssia/front-clothed.svg",
  14693. extra: 2201 / 2035,
  14694. bottom: 0.05
  14695. }
  14696. },
  14697. back: {
  14698. height: math.unit(6, "feet"),
  14699. weight: math.unit(150, "lb"),
  14700. name: "Back",
  14701. image: {
  14702. source: "./media/characters/elyssia/back.svg",
  14703. extra: 2201 / 2035,
  14704. bottom: 0.013
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Smaller",
  14711. height: math.unit(150, "feet")
  14712. },
  14713. {
  14714. name: "Standard",
  14715. height: math.unit(1400, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Distracted",
  14720. height: math.unit(15000, "feet")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(690, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/geno-maxwell/front.svg",
  14733. extra: 984/856,
  14734. bottom: 87/1071
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(7 + 4/12, "feet"),
  14739. weight: math.unit(690, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/geno-maxwell/back.svg",
  14743. extra: 981/854,
  14744. bottom: 57/1038
  14745. }
  14746. },
  14747. frontCostume: {
  14748. height: math.unit(7 + 4/12, "feet"),
  14749. weight: math.unit(690, "lb"),
  14750. name: "Front (Costume)",
  14751. image: {
  14752. source: "./media/characters/geno-maxwell/front-costume.svg",
  14753. extra: 984/856,
  14754. bottom: 87/1071
  14755. }
  14756. },
  14757. backcostume: {
  14758. height: math.unit(7 + 4/12, "feet"),
  14759. weight: math.unit(690, "lb"),
  14760. name: "Back (Costume)",
  14761. image: {
  14762. source: "./media/characters/geno-maxwell/back-costume.svg",
  14763. extra: 981/854,
  14764. bottom: 57/1038
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(3, "inches")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(7 + 4 / 12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(220, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(11, "miles")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(7 + 4/12, "feet"),
  14793. weight: math.unit(750, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/regena-maxwell/front.svg",
  14797. extra: 984/856,
  14798. bottom: 87/1071
  14799. }
  14800. },
  14801. back: {
  14802. height: math.unit(7 + 4/12, "feet"),
  14803. weight: math.unit(750, "lb"),
  14804. name: "Back",
  14805. image: {
  14806. source: "./media/characters/regena-maxwell/back.svg",
  14807. extra: 981/854,
  14808. bottom: 57/1038
  14809. }
  14810. },
  14811. frontCostume: {
  14812. height: math.unit(7 + 4/12, "feet"),
  14813. weight: math.unit(750, "lb"),
  14814. name: "Front (Costume)",
  14815. image: {
  14816. source: "./media/characters/regena-maxwell/front-costume.svg",
  14817. extra: 984/856,
  14818. bottom: 87/1071
  14819. }
  14820. },
  14821. backcostume: {
  14822. height: math.unit(7 + 4/12, "feet"),
  14823. weight: math.unit(750, "lb"),
  14824. name: "Back (Costume)",
  14825. image: {
  14826. source: "./media/characters/regena-maxwell/back-costume.svg",
  14827. extra: 981/854,
  14828. bottom: 57/1038
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(7 + 4 / 12, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(220, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(11, "miles")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14857. extra: 860 / 690,
  14858. bottom: 0.03
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(1.7, "meters"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/quilly/front.svg",
  14879. extra: 890 / 776
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Gigamacro",
  14886. height: math.unit(404090, "miles"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(7 + 8 / 12, "feet"),
  14896. weight: math.unit(350, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/tempest/front.svg",
  14900. extra: 1175 / 1086,
  14901. bottom: 0.02
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(7 + 8 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14915. {
  14916. side: {
  14917. height: math.unit(4 + 5 / 12, "feet"),
  14918. weight: math.unit(80, "lb"),
  14919. name: "Side",
  14920. image: {
  14921. source: "./media/characters/rodger/side.svg",
  14922. extra: 1235 / 1118
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Micro",
  14929. height: math.unit(1, "inch")
  14930. },
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(4 + 5 / 12, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(120, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/danyel/front.svg",
  14951. extra: 1185 / 1123,
  14952. bottom: 0.05
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Shrunken",
  14959. height: math.unit(0.5, "mm")
  14960. },
  14961. {
  14962. name: "Micro",
  14963. height: math.unit(1, "mm"),
  14964. default: true
  14965. },
  14966. {
  14967. name: "Upsized",
  14968. height: math.unit(5 + 5 / 12, "feet")
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 6 / 12, "feet"),
  14977. weight: math.unit(200, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/vivian-bijoux/front.svg",
  14981. extra: 1217/1209,
  14982. bottom: 76/1293
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(5 + 6 / 12, "feet"),
  14987. weight: math.unit(200, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/vivian-bijoux/back.svg",
  14991. extra: 1214/1208,
  14992. bottom: 51/1265
  14993. }
  14994. },
  14995. dressed: {
  14996. height: math.unit(5 + 6 / 12, "feet"),
  14997. weight: math.unit(200, "lb"),
  14998. name: "Dressed",
  14999. image: {
  15000. source: "./media/characters/vivian-bijoux/dressed.svg",
  15001. extra: 1217/1209,
  15002. bottom: 76/1293
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 6 / 12, "feet"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Bad Dream",
  15014. height: math.unit(500, "feet")
  15015. },
  15016. {
  15017. name: "Nightmare",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6 + 1 / 12, "feet"),
  15027. weight: math.unit(260, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/zeta/front.svg",
  15031. extra: 1968 / 1889,
  15032. bottom: 0.06
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6 + 1 / 12, "feet"),
  15037. weight: math.unit(260, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/zeta/back.svg",
  15041. extra: 1944 / 1858,
  15042. bottom: 0.03
  15043. }
  15044. },
  15045. hand: {
  15046. height: math.unit(1.112, "feet"),
  15047. name: "Hand",
  15048. image: {
  15049. source: "./media/characters/zeta/hand.svg"
  15050. }
  15051. },
  15052. foot: {
  15053. height: math.unit(1.48, "feet"),
  15054. name: "Foot",
  15055. image: {
  15056. source: "./media/characters/zeta/foot.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Micro",
  15063. height: math.unit(6, "inches")
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(20, "feet")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(6, "feet"),
  15081. weight: math.unit(150, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/jamie-larsen/front.svg",
  15085. extra: 962 / 933,
  15086. bottom: 0.02
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/jamie-larsen/back.svg",
  15095. extra: 997 / 946
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(28 + 7 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro+",
  15107. height: math.unit(180, "feet")
  15108. },
  15109. {
  15110. name: "Megamacro",
  15111. height: math.unit(10, "miles")
  15112. },
  15113. {
  15114. name: "Gigamacro",
  15115. height: math.unit(200000, "miles")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(120, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/vance/front.svg",
  15128. extra: 1980 / 1890,
  15129. bottom: 0.09
  15130. }
  15131. },
  15132. back: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(120, "lb"),
  15135. name: "Back",
  15136. image: {
  15137. source: "./media/characters/vance/back.svg",
  15138. extra: 2081 / 1994,
  15139. bottom: 0.014
  15140. }
  15141. },
  15142. hand: {
  15143. height: math.unit(0.88, "feet"),
  15144. name: "Hand",
  15145. image: {
  15146. source: "./media/characters/vance/hand.svg"
  15147. }
  15148. },
  15149. foot: {
  15150. height: math.unit(0.64, "feet"),
  15151. name: "Foot",
  15152. image: {
  15153. source: "./media/characters/vance/foot.svg"
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Small",
  15160. height: math.unit(90, "feet"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(100, "meters")
  15166. },
  15167. {
  15168. name: "Megamacro",
  15169. height: math.unit(15, "miles")
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(180, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/xochitl/front.svg",
  15182. extra: 2297 / 2261,
  15183. bottom: 0.065
  15184. }
  15185. },
  15186. back: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(180, "lb"),
  15189. name: "Back",
  15190. image: {
  15191. source: "./media/characters/xochitl/back.svg",
  15192. extra: 2386 / 2354,
  15193. bottom: 0.01
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(6 / 5 * 1.15, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Foot",
  15200. image: {
  15201. source: "./media/characters/xochitl/foot.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(80, "feet")
  15209. },
  15210. {
  15211. name: "Macro+",
  15212. height: math.unit(400, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Gigamacro",
  15217. height: math.unit(80000, "miles")
  15218. },
  15219. {
  15220. name: "Gigamacro+",
  15221. height: math.unit(400000, "miles")
  15222. },
  15223. {
  15224. name: "Teramacro",
  15225. height: math.unit(300, "AU")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/vincent/front.svg",
  15238. extra: 1130 / 1080,
  15239. bottom: 0.055
  15240. }
  15241. },
  15242. beak: {
  15243. height: math.unit(6 * 0.1, "feet"),
  15244. name: "Beak",
  15245. image: {
  15246. source: "./media/characters/vincent/beak.svg"
  15247. }
  15248. },
  15249. hand: {
  15250. height: math.unit(6 * 0.85, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Hand",
  15253. image: {
  15254. source: "./media/characters/vincent/hand.svg"
  15255. }
  15256. },
  15257. foot: {
  15258. height: math.unit(6 * 0.19, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Foot",
  15261. image: {
  15262. source: "./media/characters/vincent/foot.svg"
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Base",
  15269. height: math.unit(6 + 5 / 12, "feet"),
  15270. default: true
  15271. },
  15272. {
  15273. name: "Macro",
  15274. height: math.unit(300, "feet")
  15275. },
  15276. {
  15277. name: "Megamacro",
  15278. height: math.unit(2, "miles")
  15279. },
  15280. {
  15281. name: "Gigamacro",
  15282. height: math.unit(1000, "miles")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(2, "meters"),
  15291. weight: math.unit(500, "kg"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/coatl/front.svg",
  15295. extra: 3948 / 3500,
  15296. bottom: 0.082
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Normal",
  15303. height: math.unit(4, "meters")
  15304. },
  15305. {
  15306. name: "Macro",
  15307. height: math.unit(100, "meters"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macro+",
  15312. height: math.unit(300, "meters")
  15313. },
  15314. {
  15315. name: "Megamacro",
  15316. height: math.unit(3, "gigameters")
  15317. },
  15318. {
  15319. name: "Megamacro+",
  15320. height: math.unit(300, "terameters")
  15321. },
  15322. {
  15323. name: "Megamacro++",
  15324. height: math.unit(3, "lightyears")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(50, "kg"),
  15334. name: "front",
  15335. image: {
  15336. source: "./media/characters/shiroryu/front.svg",
  15337. extra: 1990 / 1935
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Mortal Mingling",
  15344. height: math.unit(3, "meters")
  15345. },
  15346. {
  15347. name: "Kaiju-ish",
  15348. height: math.unit(250, "meters")
  15349. },
  15350. {
  15351. name: "Somewhat Godly",
  15352. height: math.unit(400, "km"),
  15353. default: true
  15354. },
  15355. {
  15356. name: "Planetary",
  15357. height: math.unit(300, "megameters")
  15358. },
  15359. {
  15360. name: "Galaxy-dwarfing",
  15361. height: math.unit(450, "kiloparsecs")
  15362. },
  15363. {
  15364. name: "Universe Eater",
  15365. height: math.unit(150, "gigaparsecs")
  15366. },
  15367. {
  15368. name: "Almost Immeasurable",
  15369. height: math.unit(1.3e266, "yottaparsecs")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/umeko/front.svg",
  15382. extra: 1,
  15383. bottom: 0.019
  15384. }
  15385. },
  15386. frontArmored: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front (Armored)",
  15390. image: {
  15391. source: "./media/characters/umeko/front-armored.svg",
  15392. extra: 1,
  15393. bottom: 0.021
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(220, "feet"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Guardian Dragon",
  15405. height: math.unit(50, "miles")
  15406. },
  15407. {
  15408. name: "Cosmic",
  15409. height: math.unit(800000, "miles")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/cassidy/front.svg",
  15422. extra: 810/808,
  15423. bottom: 41/851
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Canon Height",
  15430. height: math.unit(120, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro+",
  15435. height: math.unit(400, "feet")
  15436. },
  15437. {
  15438. name: "Macro++",
  15439. height: math.unit(4000, "feet")
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(3, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/isaac/front.svg",
  15456. extra: 896 / 815,
  15457. bottom: 0.11
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Human Size",
  15464. height: math.unit(8, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(400, "feet")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(50, "miles")
  15474. },
  15475. {
  15476. name: "Canon Height",
  15477. height: math.unit(200, "AU")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(72, "kg"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/sleekit/front.svg",
  15490. extra: 4693 / 4487,
  15491. bottom: 0.012
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Minimum Height",
  15498. height: math.unit(10, "meters")
  15499. },
  15500. {
  15501. name: "Smaller",
  15502. height: math.unit(25, "meters")
  15503. },
  15504. {
  15505. name: "Larger",
  15506. height: math.unit(38, "meters"),
  15507. default: true
  15508. },
  15509. {
  15510. name: "Maximum height",
  15511. height: math.unit(100, "meters")
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(150, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/nillia/front.svg",
  15524. extra: 2195 / 2037,
  15525. bottom: 0.005
  15526. }
  15527. },
  15528. back: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Back",
  15532. image: {
  15533. source: "./media/characters/nillia/back.svg",
  15534. extra: 2195 / 2037,
  15535. bottom: 0.005
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Canon Height",
  15542. height: math.unit(489, "feet"),
  15543. default: true
  15544. }
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/mesmyriza/front.svg",
  15556. extra: 2067 / 1784,
  15557. bottom: 0.035
  15558. }
  15559. },
  15560. foot: {
  15561. height: math.unit(6 / (250 / 35), "feet"),
  15562. name: "Foot",
  15563. image: {
  15564. source: "./media/characters/mesmyriza/foot.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Macro",
  15571. height: math.unit(457, "meters"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(8, "megameters")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(250, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/saudade/front.svg",
  15589. extra: 1172 / 1139,
  15590. bottom: 0.035
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(3, "inches")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(50, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(2800, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 4 / 12, "feet"),
  15619. weight: math.unit(100, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/keireer/front.svg",
  15623. extra: 716 / 666,
  15624. bottom: 0.05
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 4 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5.5, "feet"),
  15641. weight: math.unit(90, "kg"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/mirja/front.svg",
  15645. extra: 1452/1262,
  15646. bottom: 67/1519
  15647. }
  15648. },
  15649. frontDressed: {
  15650. height: math.unit(5.5, "feet"),
  15651. weight: math.unit(90, "lb"),
  15652. name: "Front (Dressed)",
  15653. image: {
  15654. source: "./media/characters/mirja/dressed.svg",
  15655. extra: 1452/1262,
  15656. bottom: 67/1519
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(90, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/mirja/back.svg",
  15665. extra: 1892/1795,
  15666. bottom: 48/1940
  15667. }
  15668. },
  15669. maw: {
  15670. height: math.unit(1.312, "feet"),
  15671. name: "Maw",
  15672. image: {
  15673. source: "./media/characters/mirja/maw.svg"
  15674. }
  15675. },
  15676. paw: {
  15677. height: math.unit(1.15, "feet"),
  15678. name: "Paw",
  15679. image: {
  15680. source: "./media/characters/mirja/paw.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "\"Incognito\"",
  15687. height: math.unit(3, "meters")
  15688. },
  15689. {
  15690. name: "Strolling Size",
  15691. height: math.unit(15, "km")
  15692. },
  15693. {
  15694. name: "Larger Strolling Size",
  15695. height: math.unit(400, "km")
  15696. },
  15697. {
  15698. name: "Preferred Size",
  15699. height: math.unit(5000, "km"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "True Size",
  15704. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(15, "feet"),
  15713. weight: math.unit(880, "kg"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/nightraver/front.svg",
  15717. extra: 2444 / 2160,
  15718. bottom: 0.027
  15719. }
  15720. },
  15721. back: {
  15722. height: math.unit(15, "feet"),
  15723. weight: math.unit(880, "kg"),
  15724. name: "Back",
  15725. image: {
  15726. source: "./media/characters/nightraver/back.svg",
  15727. extra: 2309 / 2180,
  15728. bottom: 0.005
  15729. }
  15730. },
  15731. sole: {
  15732. height: math.unit(2.878, "feet"),
  15733. name: "Sole",
  15734. image: {
  15735. source: "./media/characters/nightraver/sole.svg"
  15736. }
  15737. },
  15738. foot: {
  15739. height: math.unit(2.285, "feet"),
  15740. name: "Foot",
  15741. image: {
  15742. source: "./media/characters/nightraver/foot.svg"
  15743. }
  15744. },
  15745. maw: {
  15746. height: math.unit(2.67, "feet"),
  15747. name: "Maw",
  15748. image: {
  15749. source: "./media/characters/nightraver/maw.svg"
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Micro",
  15756. height: math.unit(1, "cm")
  15757. },
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(15, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(300, "feet")
  15766. },
  15767. {
  15768. name: "Megamacro",
  15769. height: math.unit(300, "miles")
  15770. },
  15771. {
  15772. name: "Gigamacro",
  15773. height: math.unit(10000, "miles")
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15779. {
  15780. side: {
  15781. height: math.unit(2, "inches"),
  15782. weight: math.unit(5, "grams"),
  15783. name: "Side",
  15784. image: {
  15785. source: "./media/characters/arc/side.svg"
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Micro",
  15792. height: math.unit(2, "inches"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(1.1938, "meters"),
  15802. weight: math.unit(54, "kg"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/nebula-shahar/front.svg",
  15806. extra: 1642 / 1436,
  15807. bottom: 0.06
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Megamicro",
  15814. height: math.unit(0.3, "mm")
  15815. },
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(3, "cm")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(138, "cm"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(30, "m")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5.24, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/shayla/front.svg",
  15840. extra: 1512 / 1414,
  15841. bottom: 0.01
  15842. }
  15843. },
  15844. back: {
  15845. height: math.unit(5.24, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Back",
  15848. image: {
  15849. source: "./media/characters/shayla/back.svg",
  15850. extra: 1512 / 1414
  15851. }
  15852. },
  15853. hand: {
  15854. height: math.unit(0.7781496062992126, "feet"),
  15855. name: "Hand",
  15856. image: {
  15857. source: "./media/characters/shayla/hand.svg"
  15858. }
  15859. },
  15860. foot: {
  15861. height: math.unit(1.4206036745406823, "feet"),
  15862. name: "Foot",
  15863. image: {
  15864. source: "./media/characters/shayla/foot.svg"
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(0.32, "feet")
  15872. },
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(5.24, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(492.12, "feet")
  15881. },
  15882. {
  15883. name: "Megamacro",
  15884. height: math.unit(186.41, "miles")
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15890. {
  15891. front: {
  15892. height: math.unit(2.2, "m"),
  15893. weight: math.unit(120, "kg"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/pia-jr/front.svg",
  15897. extra: 1000 / 970,
  15898. bottom: 0.035
  15899. }
  15900. },
  15901. hand: {
  15902. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15903. name: "Hand",
  15904. image: {
  15905. source: "./media/characters/pia-jr/hand.svg"
  15906. }
  15907. },
  15908. paw: {
  15909. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15910. name: "Paw",
  15911. image: {
  15912. source: "./media/characters/pia-jr/paw.svg"
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Micro",
  15919. height: math.unit(1.2, "cm")
  15920. },
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(2.2, "m"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(180, "m")
  15929. },
  15930. {
  15931. name: "Megamacro",
  15932. height: math.unit(420, "km")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(2, "m"),
  15941. weight: math.unit(115, "kg"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/pia-sr/front.svg",
  15945. extra: 760 / 730,
  15946. bottom: 0.015
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(2, "m"),
  15951. weight: math.unit(115, "kg"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/pia-sr/back.svg",
  15955. extra: 760 / 730,
  15956. bottom: 0.01
  15957. }
  15958. },
  15959. hand: {
  15960. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15961. name: "Hand",
  15962. image: {
  15963. source: "./media/characters/pia-sr/hand.svg"
  15964. }
  15965. },
  15966. foot: {
  15967. height: math.unit(1.83, "feet"),
  15968. name: "Foot",
  15969. image: {
  15970. source: "./media/characters/pia-sr/foot.svg"
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Micro",
  15977. height: math.unit(88, "mm")
  15978. },
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(2, "m"),
  15982. default: true
  15983. },
  15984. {
  15985. name: "Macro",
  15986. height: math.unit(200, "m")
  15987. },
  15988. {
  15989. name: "Megamacro",
  15990. height: math.unit(420, "km")
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(8 + 2 / 12, "feet"),
  15999. weight: math.unit(300, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/kibibyte/front.svg",
  16003. extra: 2221 / 2098,
  16004. bottom: 0.04
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(8 + 2 / 12, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Socialable Macro",
  16016. height: math.unit(50, "feet")
  16017. },
  16018. {
  16019. name: "Macro",
  16020. height: math.unit(300, "feet")
  16021. },
  16022. {
  16023. name: "Megamacro",
  16024. height: math.unit(500, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/felix/front.svg",
  16037. extra: 762 / 722,
  16038. bottom: 0.02
  16039. }
  16040. },
  16041. frontClothed: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front (Clothed)",
  16045. image: {
  16046. source: "./media/characters/felix/front-clothed.svg",
  16047. extra: 762 / 722,
  16048. bottom: 0.02
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 8 / 12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(2600, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(450, "miles")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6 + 1 / 12, "feet"),
  16073. weight: math.unit(250, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/tobo/front.svg",
  16077. extra: 608 / 586,
  16078. bottom: 0.023
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(6 + 1 / 12, "feet"),
  16083. weight: math.unit(250, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/tobo/back.svg",
  16087. extra: 608 / 586
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Nano",
  16094. height: math.unit(2, "nm")
  16095. },
  16096. {
  16097. name: "Megamicro",
  16098. height: math.unit(0.1, "mm")
  16099. },
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(1, "inch"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Human-sized",
  16107. height: math.unit(6 + 1 / 12, "feet")
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(250, "feet")
  16112. },
  16113. {
  16114. name: "Megamacro",
  16115. height: math.unit(75, "miles")
  16116. },
  16117. {
  16118. name: "Texas-sized",
  16119. height: math.unit(750, "miles")
  16120. },
  16121. {
  16122. name: "Teramacro",
  16123. height: math.unit(50000, "miles")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(269, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/danny-kapowsky/front.svg",
  16136. extra: 766 / 736,
  16137. bottom: 0.044
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(6, "feet"),
  16142. weight: math.unit(269, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/danny-kapowsky/back.svg",
  16146. extra: 797 / 760,
  16147. bottom: 0.025
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(150, "feet"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Macro+",
  16159. height: math.unit(200, "feet")
  16160. },
  16161. {
  16162. name: "Macro++",
  16163. height: math.unit(300, "feet")
  16164. },
  16165. {
  16166. name: "Macro+++",
  16167. height: math.unit(400, "feet")
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16173. {
  16174. side: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(170, "lb"),
  16177. name: "Side",
  16178. image: {
  16179. source: "./media/characters/finn/side.svg",
  16180. extra: 1953 / 1807,
  16181. bottom: 0.057
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(14445, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(5 + 6 / 12, "feet"),
  16198. weight: math.unit(125, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/roy/front.svg",
  16202. extra: 1,
  16203. bottom: 0.11
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(3, "inches"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 6 / 12, "feet")
  16216. },
  16217. {
  16218. name: "Lesser Macro",
  16219. height: math.unit(60, "feet")
  16220. },
  16221. {
  16222. name: "Greater Macro",
  16223. height: math.unit(120, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6, "feet"),
  16232. weight: math.unit(100, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/aevsivs/front.svg",
  16236. extra: 1,
  16237. bottom: 0.03
  16238. }
  16239. },
  16240. back: {
  16241. height: math.unit(6, "feet"),
  16242. weight: math.unit(100, "lb"),
  16243. name: "Back",
  16244. image: {
  16245. source: "./media/characters/aevsivs/back.svg"
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Micro",
  16252. height: math.unit(2, "inches"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(5, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(5 + 7 / 12, "feet"),
  16266. weight: math.unit(159, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/hildegard/front.svg",
  16270. extra: 289 / 269,
  16271. bottom: 7.63 / 297.8
  16272. }
  16273. },
  16274. back: {
  16275. height: math.unit(5 + 7 / 12, "feet"),
  16276. weight: math.unit(159, "lb"),
  16277. name: "Back",
  16278. image: {
  16279. source: "./media/characters/hildegard/back.svg",
  16280. extra: 280 / 260,
  16281. bottom: 2.3 / 282
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(5 + 7 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16295. {
  16296. bernard: {
  16297. height: math.unit(2 + 7 / 12, "feet"),
  16298. weight: math.unit(66, "lb"),
  16299. name: "Bernard",
  16300. rename: true,
  16301. image: {
  16302. source: "./media/characters/bernard-wilder/bernard.svg",
  16303. extra: 192 / 128,
  16304. bottom: 0.05
  16305. }
  16306. },
  16307. wilder: {
  16308. height: math.unit(5 + 8 / 12, "feet"),
  16309. weight: math.unit(143, "lb"),
  16310. name: "Wilder",
  16311. rename: true,
  16312. image: {
  16313. source: "./media/characters/bernard-wilder/wilder.svg",
  16314. extra: 361 / 312,
  16315. bottom: 0.02
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(2 + 7 / 12, "feet"),
  16323. default: true
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16329. {
  16330. anthro: {
  16331. height: math.unit(6 + 1 / 12, "feet"),
  16332. weight: math.unit(155, "lb"),
  16333. name: "Anthro",
  16334. image: {
  16335. source: "./media/characters/hearth/anthro.svg",
  16336. extra: 1178/1136,
  16337. bottom: 28/1206
  16338. }
  16339. },
  16340. feral: {
  16341. height: math.unit(3.78, "feet"),
  16342. weight: math.unit(35, "kg"),
  16343. name: "Feral",
  16344. image: {
  16345. source: "./media/characters/hearth/feral.svg",
  16346. extra: 153 / 135,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(6 + 1 / 12, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(182, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/ingrid/front.svg",
  16368. extra: 294 / 268,
  16369. bottom: 0.027
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(6, "feet"),
  16377. default: true
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16383. {
  16384. eevee: {
  16385. height: math.unit(2 + 10 / 12, "feet"),
  16386. weight: math.unit(86, "lb"),
  16387. name: "Malgam",
  16388. image: {
  16389. source: "./media/characters/malgam/eevee.svg",
  16390. extra: 952/784,
  16391. bottom: 38/990
  16392. }
  16393. },
  16394. sylveon: {
  16395. height: math.unit(4, "feet"),
  16396. weight: math.unit(101, "lb"),
  16397. name: "Future Malgam",
  16398. rename: true,
  16399. image: {
  16400. source: "./media/characters/malgam/sylveon.svg",
  16401. extra: 371 / 325,
  16402. bottom: 0.015
  16403. }
  16404. },
  16405. gigantamax: {
  16406. height: math.unit(50, "feet"),
  16407. name: "Gigantamax Malgam",
  16408. rename: true,
  16409. image: {
  16410. source: "./media/characters/malgam/gigantamax.svg"
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(2 + 10 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(5 + 11 / 12, "feet"),
  16427. weight: math.unit(188, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/fleur/front.svg",
  16431. extra: 309 / 283,
  16432. bottom: 0.007
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(5 + 11 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(5 + 4 / 12, "feet"),
  16449. weight: math.unit(122, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/jude/front.svg",
  16453. extra: 288 / 273,
  16454. bottom: 0.03
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(5 + 4 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(5 + 11 / 12, "feet"),
  16471. weight: math.unit(190, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/seara/front.svg",
  16475. extra: 1,
  16476. bottom: 0.05
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(5 + 11 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(16 + 5 / 12, "feet"),
  16493. weight: math.unit(524, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/caspian-lugia/front.svg",
  16497. extra: 1,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(16 + 5 / 12, "feet"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(5 + 7 / 12, "feet"),
  16515. weight: math.unit(170, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/mika/front.svg",
  16519. extra: 1,
  16520. bottom: 0.016
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(5 + 7 / 12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6 + 2 / 12, "feet"),
  16537. weight: math.unit(268, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/sol/front.svg",
  16541. extra: 247 / 231,
  16542. bottom: 0.05
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(6 + 2 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16556. {
  16557. buizel: {
  16558. height: math.unit(2 + 5 / 12, "feet"),
  16559. weight: math.unit(87, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/umiko/buizel.svg",
  16563. extra: 172 / 157,
  16564. bottom: 0.01
  16565. },
  16566. form: "buizel",
  16567. default: true
  16568. },
  16569. floatzel: {
  16570. height: math.unit(5 + 9 / 12, "feet"),
  16571. weight: math.unit(250, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/umiko/floatzel.svg",
  16575. extra: 1076/1006,
  16576. bottom: 15/1091
  16577. },
  16578. form: "floatzel",
  16579. default: true
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(2 + 5 / 12, "feet"),
  16586. form: "buizel",
  16587. default: true
  16588. },
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(5 + 9 / 12, "feet"),
  16592. form: "floatzel",
  16593. default: true
  16594. },
  16595. ],
  16596. {
  16597. "buizel": {
  16598. name: "Buizel"
  16599. },
  16600. "floatzel": {
  16601. name: "Floatzel",
  16602. default: true
  16603. }
  16604. }
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6 + 2 / 12, "feet"),
  16611. weight: math.unit(146, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/iliac/front.svg",
  16615. extra: 389 / 365,
  16616. bottom: 0.035
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(6, "feet"),
  16633. weight: math.unit(170, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/topaz/front.svg",
  16637. extra: 317 / 303,
  16638. bottom: 0.055
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(6, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(5 + 11 / 12, "feet"),
  16655. weight: math.unit(144, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/gabriel/front.svg",
  16659. extra: 285 / 262,
  16660. bottom: 0.004
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(5 + 11 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16674. {
  16675. side: {
  16676. height: math.unit(6 + 5 / 12, "feet"),
  16677. weight: math.unit(300, "lb"),
  16678. name: "Side",
  16679. image: {
  16680. source: "./media/characters/tempest-suicune/side.svg",
  16681. extra: 195 / 154,
  16682. bottom: 0.04
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(6 + 5 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(7 + 2 / 12, "feet"),
  16699. weight: math.unit(322, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/vulcan/front.svg",
  16703. extra: 154 / 147,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(7 + 2 / 12, "feet"),
  16712. default: true
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(5 + 10 / 12, "feet"),
  16721. weight: math.unit(264, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/gault/front.svg",
  16725. extra: 161 / 140,
  16726. bottom: 0.028
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(5 + 10 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/shard/front.svg",
  16747. extra: 273 / 238,
  16748. bottom: 0.02
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(3 + 6 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(5 + 11 / 12, "feet"),
  16765. weight: math.unit(146, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/ashe/front.svg",
  16769. extra: 400 / 373,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(5 + 11 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(5 + 5 / 12, "feet"),
  16787. weight: math.unit(135, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/beatrix/front.svg",
  16791. extra: 392 / 379,
  16792. bottom: 0.01
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(6, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6 + 2/12, "feet"),
  16809. weight: math.unit(135, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/ignatius/front.svg",
  16813. extra: 1380/1259,
  16814. bottom: 27/1407
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(6 + 2/12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. weight: math.unit(138, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/mei-li/front.svg",
  16835. extra: 237 / 229,
  16836. bottom: 0.03
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(6 + 2 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(2 + 4 / 12, "feet"),
  16853. weight: math.unit(62, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/puru/front.svg",
  16857. extra: 206 / 149,
  16858. bottom: 0.06
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(2 + 4 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16872. {
  16873. anthro: {
  16874. height: math.unit(5 + 8/12, "feet"),
  16875. weight: math.unit(200, "lb"),
  16876. energyNeed: math.unit(2000, "kcal"),
  16877. name: "Anthro",
  16878. image: {
  16879. source: "./media/characters/kee/anthro.svg",
  16880. extra: 3251/3184,
  16881. bottom: 250/3501
  16882. }
  16883. },
  16884. taur: {
  16885. height: math.unit(11, "feet"),
  16886. weight: math.unit(500, "lb"),
  16887. energyNeed: math.unit(5000, "kcal"),
  16888. name: "Taur",
  16889. image: {
  16890. source: "./media/characters/kee/taur.svg",
  16891. extra: 1362/1320,
  16892. bottom: 83/1445
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(5 + 8/12, "feet"),
  16900. default: true
  16901. },
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(35, "feet")
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16910. {
  16911. anthro: {
  16912. height: math.unit(7, "feet"),
  16913. weight: math.unit(190, "lb"),
  16914. name: "Anthro",
  16915. image: {
  16916. source: "./media/characters/cobalt-dracha/anthro.svg",
  16917. extra: 231 / 225,
  16918. bottom: 0.04
  16919. }
  16920. },
  16921. feral: {
  16922. height: math.unit(9 + 7 / 12, "feet"),
  16923. weight: math.unit(294, "lb"),
  16924. name: "Feral",
  16925. image: {
  16926. source: "./media/characters/cobalt-dracha/feral.svg",
  16927. extra: 692 / 633,
  16928. bottom: 0.05
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(7, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16942. {
  16943. fallen: {
  16944. height: math.unit(11 + 8 / 12, "feet"),
  16945. weight: math.unit(485, "lb"),
  16946. name: "Java (Fallen)",
  16947. rename: true,
  16948. image: {
  16949. source: "./media/characters/java/fallen.svg",
  16950. extra: 226 / 208,
  16951. bottom: 0.005
  16952. }
  16953. },
  16954. godkin: {
  16955. height: math.unit(10 + 6 / 12, "feet"),
  16956. weight: math.unit(328, "lb"),
  16957. name: "Java (Godkin)",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/java/godkin.svg",
  16961. extra: 1104/1068,
  16962. bottom: 36/1140
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(11 + 8 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(5 + 9 / 12, "feet"),
  16979. weight: math.unit(170, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/purna/front.svg",
  16983. extra: 239 / 229,
  16984. bottom: 0.01
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(5 + 9 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(5 + 9 / 12, "feet"),
  17001. weight: math.unit(142, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/kuva/front.svg",
  17005. extra: 281 / 271,
  17006. bottom: 0.006
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(5 + 9 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17020. {
  17021. anthro: {
  17022. height: math.unit(9 + 2 / 12, "feet"),
  17023. weight: math.unit(270, "lb"),
  17024. name: "Anthro",
  17025. image: {
  17026. source: "./media/characters/embra/anthro.svg",
  17027. extra: 200 / 187,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. feral: {
  17032. height: math.unit(18 + 8 / 12, "feet"),
  17033. weight: math.unit(576, "lb"),
  17034. name: "Feral",
  17035. image: {
  17036. source: "./media/characters/embra/feral.svg",
  17037. extra: 152 / 137,
  17038. bottom: 0.037
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(9 + 2 / 12, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17052. {
  17053. anthro: {
  17054. height: math.unit(10 + 9 / 12, "feet"),
  17055. weight: math.unit(224, "lb"),
  17056. name: "Anthro",
  17057. image: {
  17058. source: "./media/characters/grottos/anthro.svg",
  17059. extra: 350 / 332,
  17060. bottom: 0.045
  17061. }
  17062. },
  17063. feral: {
  17064. height: math.unit(20 + 7 / 12, "feet"),
  17065. weight: math.unit(629, "lb"),
  17066. name: "Feral",
  17067. image: {
  17068. source: "./media/characters/grottos/feral.svg",
  17069. extra: 207 / 190,
  17070. bottom: 0.05
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(10 + 9 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17084. {
  17085. anthro: {
  17086. height: math.unit(9 + 6 / 12, "feet"),
  17087. weight: math.unit(298, "lb"),
  17088. name: "Anthro",
  17089. image: {
  17090. source: "./media/characters/frifna/anthro.svg",
  17091. extra: 282 / 269,
  17092. bottom: 0.015
  17093. }
  17094. },
  17095. feral: {
  17096. height: math.unit(16 + 2 / 12, "feet"),
  17097. weight: math.unit(624, "lb"),
  17098. name: "Feral",
  17099. image: {
  17100. source: "./media/characters/frifna/feral.svg"
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(9 + 6 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6 + 2 / 12, "feet"),
  17117. weight: math.unit(168, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/elise/front.svg",
  17121. extra: 276 / 271
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(6 + 2 / 12, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(5 + 10 / 12, "feet"),
  17138. weight: math.unit(210, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/glade/front.svg",
  17142. extra: 258 / 247,
  17143. bottom: 0.008
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 10 / 12, "feet"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(5 + 10 / 12, "feet"),
  17160. weight: math.unit(129, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/rina/front.svg",
  17164. extra: 266 / 255,
  17165. bottom: 0.005
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(6 + 1 / 12, "feet"),
  17182. weight: math.unit(192, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/veronica/front.svg",
  17186. extra: 319 / 309,
  17187. bottom: 0.005
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(6 + 1 / 12, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(9 + 3 / 12, "feet"),
  17204. weight: math.unit(1100, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/braxton/front.svg",
  17208. extra: 1057 / 984,
  17209. bottom: 0.05
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(9 + 3 / 12, "feet")
  17217. },
  17218. {
  17219. name: "Giant",
  17220. height: math.unit(300, "feet"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(700, "feet")
  17226. },
  17227. {
  17228. name: "Megamacro",
  17229. height: math.unit(6000, "feet")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 7 / 12, "feet"),
  17238. weight: math.unit(150, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/blue-feyonics/front.svg",
  17242. extra: 1403 / 1306,
  17243. bottom: 0.047
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 7 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(1.8, "meters"),
  17260. weight: math.unit(60, "kg"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/maxwell/front.svg",
  17264. extra: 2060 / 1873
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Micro",
  17271. height: math.unit(1, "mm")
  17272. },
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(1.8, "meter"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Macro",
  17280. height: math.unit(30, "meters")
  17281. },
  17282. {
  17283. name: "Megamacro",
  17284. height: math.unit(10, "km")
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/jack/front.svg",
  17297. extra: 1754 / 1640,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(80000, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Max size",
  17310. height: math.unit(10, "lightyears")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17316. {
  17317. urban: {
  17318. height: math.unit(5, "feet"),
  17319. weight: math.unit(240, "lb"),
  17320. name: "Urban",
  17321. image: {
  17322. source: "./media/characters/cafat/urban.svg",
  17323. extra: 1223/1126,
  17324. bottom: 205/1428
  17325. }
  17326. },
  17327. summer: {
  17328. height: math.unit(5, "feet"),
  17329. weight: math.unit(240, "lb"),
  17330. name: "Summer",
  17331. image: {
  17332. source: "./media/characters/cafat/summer.svg",
  17333. extra: 1223/1126,
  17334. bottom: 205/1428
  17335. }
  17336. },
  17337. winter: {
  17338. height: math.unit(5, "feet"),
  17339. weight: math.unit(240, "lb"),
  17340. name: "Winter",
  17341. image: {
  17342. source: "./media/characters/cafat/winter.svg",
  17343. extra: 1223/1126,
  17344. bottom: 205/1428
  17345. }
  17346. },
  17347. lingerie: {
  17348. height: math.unit(5, "feet"),
  17349. weight: math.unit(240, "lb"),
  17350. name: "Lingerie",
  17351. image: {
  17352. source: "./media/characters/cafat/lingerie.svg",
  17353. extra: 1223/1126,
  17354. bottom: 205/1428
  17355. }
  17356. },
  17357. upright: {
  17358. height: math.unit(6.3, "feet"),
  17359. weight: math.unit(240, "lb"),
  17360. name: "Upright",
  17361. image: {
  17362. source: "./media/characters/cafat/upright.svg",
  17363. bottom: 0.01
  17364. }
  17365. },
  17366. uprightFull: {
  17367. height: math.unit(6.3, "feet"),
  17368. weight: math.unit(240, "lb"),
  17369. name: "Upright (Full)",
  17370. image: {
  17371. source: "./media/characters/cafat/upright-full.svg",
  17372. bottom: 0.01
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Small",
  17379. height: math.unit(5, "feet"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Large",
  17384. height: math.unit(13, "feet")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(150, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/verin-raharra/front.svg",
  17397. extra: 5019 / 4835,
  17398. bottom: 0.023
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(7 + 5 / 12, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Upsized",
  17410. height: math.unit(20, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(7, "feet"),
  17419. weight: math.unit(230, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/nakata/front.svg",
  17423. extra: 1.005,
  17424. bottom: 0.01
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7, "feet"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Big",
  17436. height: math.unit(14, "feet")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(400, "feet")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(4.91, "feet"),
  17449. weight: math.unit(100, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/lily/front.svg",
  17453. extra: 1585 / 1415,
  17454. bottom: 0.02
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(4.91, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17468. {
  17469. laying: {
  17470. height: math.unit(4 + 4 / 12, "feet"),
  17471. weight: math.unit(600, "lb"),
  17472. name: "Laying",
  17473. image: {
  17474. source: "./media/characters/sheila/laying.svg",
  17475. extra: 1333 / 1265,
  17476. bottom: 0.16
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(4 + 4 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6, "feet"),
  17493. weight: math.unit(190, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/sax/front.svg",
  17497. extra: 1187 / 973,
  17498. bottom: 0.042
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Micro",
  17505. height: math.unit(4, "inches"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(150, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/pandora/front.svg",
  17519. extra: 2720 / 2556,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/pandora/back.svg",
  17529. extra: 2720 / 2556,
  17530. bottom: 0.01
  17531. }
  17532. },
  17533. beans: {
  17534. height: math.unit(6 / 8, "feet"),
  17535. name: "Beans",
  17536. image: {
  17537. source: "./media/characters/pandora/beans.svg"
  17538. }
  17539. },
  17540. collar: {
  17541. height: math.unit(0.31, "feet"),
  17542. name: "Collar",
  17543. image: {
  17544. source: "./media/characters/pandora/collar.svg"
  17545. }
  17546. },
  17547. skirt: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Skirt",
  17551. image: {
  17552. source: "./media/characters/pandora/skirt.svg",
  17553. extra: 1622 / 1525,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. hoodie: {
  17558. height: math.unit(6, "feet"),
  17559. weight: math.unit(150, "lb"),
  17560. name: "Hoodie",
  17561. image: {
  17562. source: "./media/characters/pandora/hoodie.svg",
  17563. extra: 1622 / 1525,
  17564. bottom: 0.015
  17565. }
  17566. },
  17567. casual: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Casual",
  17571. image: {
  17572. source: "./media/characters/pandora/casual.svg",
  17573. extra: 1622 / 1525,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(6, "feet")
  17582. },
  17583. {
  17584. name: "Big Steppy",
  17585. height: math.unit(1, "km"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Galactic Steppy",
  17590. height: math.unit(2, "gigameters")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17596. {
  17597. side: {
  17598. height: math.unit(10, "feet"),
  17599. weight: math.unit(800, "kg"),
  17600. name: "Side",
  17601. image: {
  17602. source: "./media/characters/venio-darcony/side.svg",
  17603. extra: 1373 / 1003,
  17604. bottom: 0.037
  17605. }
  17606. },
  17607. front: {
  17608. height: math.unit(19, "feet"),
  17609. weight: math.unit(800, "kg"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/venio-darcony/front.svg"
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(19, "feet"),
  17617. weight: math.unit(800, "kg"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/venio-darcony/back.svg"
  17621. }
  17622. },
  17623. sideNsfw: {
  17624. height: math.unit(10, "feet"),
  17625. weight: math.unit(800, "kg"),
  17626. name: "Side (NSFW)",
  17627. image: {
  17628. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17629. extra: 1373 / 1003,
  17630. bottom: 0.037
  17631. }
  17632. },
  17633. frontNsfw: {
  17634. height: math.unit(19, "feet"),
  17635. weight: math.unit(800, "kg"),
  17636. name: "Front (NSFW)",
  17637. image: {
  17638. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17639. }
  17640. },
  17641. backNsfw: {
  17642. height: math.unit(19, "feet"),
  17643. weight: math.unit(800, "kg"),
  17644. name: "Back (NSFW)",
  17645. image: {
  17646. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17647. }
  17648. },
  17649. sideArmored: {
  17650. height: math.unit(10, "feet"),
  17651. weight: math.unit(800, "kg"),
  17652. name: "Side (Armored)",
  17653. image: {
  17654. source: "./media/characters/venio-darcony/side-armored.svg",
  17655. extra: 1373 / 1003,
  17656. bottom: 0.037
  17657. }
  17658. },
  17659. frontArmored: {
  17660. height: math.unit(19, "feet"),
  17661. weight: math.unit(900, "kg"),
  17662. name: "Front (Armored)",
  17663. image: {
  17664. source: "./media/characters/venio-darcony/front-armored.svg"
  17665. }
  17666. },
  17667. backArmored: {
  17668. height: math.unit(19, "feet"),
  17669. weight: math.unit(900, "kg"),
  17670. name: "Back (Armored)",
  17671. image: {
  17672. source: "./media/characters/venio-darcony/back-armored.svg"
  17673. }
  17674. },
  17675. sword: {
  17676. height: math.unit(10, "feet"),
  17677. weight: math.unit(50, "lb"),
  17678. name: "Sword",
  17679. image: {
  17680. source: "./media/characters/venio-darcony/sword.svg"
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(10, "feet")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(130, "feet"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro+",
  17696. height: math.unit(240, "feet")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(150, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/veski/front.svg",
  17709. extra: 1299 / 1225,
  17710. bottom: 0.04
  17711. }
  17712. },
  17713. back: {
  17714. height: math.unit(6, "feet"),
  17715. weight: math.unit(150, "lb"),
  17716. name: "Back",
  17717. image: {
  17718. source: "./media/characters/veski/back.svg",
  17719. extra: 1299 / 1225,
  17720. bottom: 0.008
  17721. }
  17722. },
  17723. maw: {
  17724. height: math.unit(1.5 * 1.21, "feet"),
  17725. name: "Maw",
  17726. image: {
  17727. source: "./media/characters/veski/maw.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(2, "km"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(5 + 7 / 12, "feet"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/isabelle/front.svg",
  17747. extra: 2130 / 1976,
  17748. bottom: 0.05
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Supermicro",
  17755. height: math.unit(10, "micrometers")
  17756. },
  17757. {
  17758. name: "Micro",
  17759. height: math.unit(1, "inch")
  17760. },
  17761. {
  17762. name: "Tiny",
  17763. height: math.unit(5, "inches")
  17764. },
  17765. {
  17766. name: "Standard",
  17767. height: math.unit(5 + 7 / 12, "inches")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(80, "meters"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Megamacro",
  17776. height: math.unit(250, "meters")
  17777. },
  17778. {
  17779. name: "Gigamacro",
  17780. height: math.unit(5, "km")
  17781. },
  17782. {
  17783. name: "Cosmic",
  17784. height: math.unit(2.5e6, "miles")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(6, "feet"),
  17793. weight: math.unit(150, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/hanzo/front.svg",
  17797. extra: 374 / 344,
  17798. bottom: 0.02
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(8, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(7, "feet"),
  17815. weight: math.unit(130, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/anna/front.svg",
  17819. extra: 169 / 145,
  17820. bottom: 0.06
  17821. }
  17822. },
  17823. full: {
  17824. height: math.unit(4.96, "feet"),
  17825. weight: math.unit(220, "lb"),
  17826. name: "Full",
  17827. image: {
  17828. source: "./media/characters/anna/full.svg",
  17829. extra: 138 / 114,
  17830. bottom: 0.15
  17831. }
  17832. },
  17833. tongue: {
  17834. height: math.unit(2.53, "feet"),
  17835. name: "Tongue",
  17836. image: {
  17837. source: "./media/characters/anna/tongue.svg"
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(7, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(7, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/ian-corvid/front.svg",
  17858. extra: 150 / 142,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(7, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/ian-corvid/back.svg",
  17868. extra: 150 / 143,
  17869. bottom: 0.01
  17870. }
  17871. },
  17872. stomping: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(150, "lb"),
  17875. name: "Stomping",
  17876. image: {
  17877. source: "./media/characters/ian-corvid/stomping.svg",
  17878. extra: 76 / 72
  17879. }
  17880. },
  17881. sitting: {
  17882. height: math.unit(7 / 1.8, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Sitting",
  17885. image: {
  17886. source: "./media/characters/ian-corvid/sitting.svg",
  17887. extra: 1400 / 1269,
  17888. bottom: 0.15
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Tiny Microw",
  17895. height: math.unit(1, "inch")
  17896. },
  17897. {
  17898. name: "Microw",
  17899. height: math.unit(6, "inches")
  17900. },
  17901. {
  17902. name: "Crow",
  17903. height: math.unit(7 + 1 / 12, "feet"),
  17904. default: true
  17905. },
  17906. {
  17907. name: "Macrow",
  17908. height: math.unit(176, "feet")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(5 + 7 / 12, "feet"),
  17917. weight: math.unit(147, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/natalie-kellon/front.svg",
  17921. extra: 1214 / 1141,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Micro",
  17929. height: math.unit(1 / 16, "inch")
  17930. },
  17931. {
  17932. name: "Tiny",
  17933. height: math.unit(4, "inches")
  17934. },
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(5 + 7 / 12, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Amazon",
  17942. height: math.unit(12, "feet")
  17943. },
  17944. {
  17945. name: "Giantess",
  17946. height: math.unit(160, "meters")
  17947. },
  17948. {
  17949. name: "Titaness",
  17950. height: math.unit(800, "meters")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(6, "feet"),
  17959. weight: math.unit(150, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/alluria/front.svg",
  17963. extra: 806 / 738,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. side: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/alluria/side.svg",
  17973. extra: 800 / 750,
  17974. }
  17975. },
  17976. back: {
  17977. height: math.unit(6, "feet"),
  17978. weight: math.unit(150, "lb"),
  17979. name: "Back",
  17980. image: {
  17981. source: "./media/characters/alluria/back.svg",
  17982. extra: 806 / 738,
  17983. }
  17984. },
  17985. frontMaid: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(150, "lb"),
  17988. name: "Front (Maid)",
  17989. image: {
  17990. source: "./media/characters/alluria/front-maid.svg",
  17991. extra: 806 / 738,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. sideMaid: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(150, "lb"),
  17998. name: "Side (Maid)",
  17999. image: {
  18000. source: "./media/characters/alluria/side-maid.svg",
  18001. extra: 800 / 750,
  18002. bottom: 0.005
  18003. }
  18004. },
  18005. backMaid: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Back (Maid)",
  18009. image: {
  18010. source: "./media/characters/alluria/back-maid.svg",
  18011. extra: 806 / 738,
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(6, "inches"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/kyle/front.svg",
  18032. extra: 1069 / 962,
  18033. bottom: 77.228 / 1727.45
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(150, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(300, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/duncan/front.svg",
  18054. extra: 1650 / 1482,
  18055. bottom: 0.05
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(100, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(5 + 4 / 12, "feet"),
  18072. weight: math.unit(220, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/memory/front.svg",
  18076. extra: 3641 / 3545,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. back: {
  18081. height: math.unit(5 + 4 / 12, "feet"),
  18082. weight: math.unit(220, "lb"),
  18083. name: "Back",
  18084. image: {
  18085. source: "./media/characters/memory/back.svg",
  18086. extra: 3641 / 3545,
  18087. bottom: 0.025
  18088. }
  18089. },
  18090. frontSkirt: {
  18091. height: math.unit(5 + 4 / 12, "feet"),
  18092. weight: math.unit(220, "lb"),
  18093. name: "Front (Skirt)",
  18094. image: {
  18095. source: "./media/characters/memory/front-skirt.svg",
  18096. extra: 3641 / 3545,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. frontDress: {
  18101. height: math.unit(5 + 4 / 12, "feet"),
  18102. weight: math.unit(220, "lb"),
  18103. name: "Front (Dress)",
  18104. image: {
  18105. source: "./media/characters/memory/front-dress.svg",
  18106. extra: 3641 / 3545,
  18107. bottom: 0.03
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Micro",
  18114. height: math.unit(6, "inches"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(5 + 4 / 12, "feet")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(4 + 11 / 12, "feet"),
  18128. weight: math.unit(100, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/luno/front.svg",
  18132. extra: 1535 / 1487,
  18133. bottom: 0.03
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(3, "inches")
  18141. },
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(4 + 11 / 12, "feet"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(300, "feet")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(700, "miles")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6 + 2 / 12, "feet"),
  18162. weight: math.unit(170, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/jamesy/front.svg",
  18166. extra: 440 / 382,
  18167. bottom: 0.005
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Micro",
  18174. height: math.unit(3, "inches")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(6 + 2 / 12, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(300, "feet")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(700, "miles")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(160, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/mark/front.svg",
  18200. extra: 3300 / 3100,
  18201. bottom: 136.42 / 3440.47
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(120, "meters")
  18209. },
  18210. {
  18211. name: "Bigger Macro",
  18212. height: math.unit(350, "meters")
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(8, "km"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Continental",
  18221. height: math.unit(4550, "km")
  18222. },
  18223. {
  18224. name: "Planetary",
  18225. height: math.unit(65000, "km")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(400, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/mac/front.svg",
  18238. extra: 1048 / 987.7,
  18239. bottom: 60 / 1107.6,
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(500, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(5 + 2 / 12, "feet"),
  18256. weight: math.unit(190, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/bari/front.svg",
  18260. extra: 3156 / 2880,
  18261. bottom: 0.03
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(5 + 2 / 12, "feet"),
  18266. weight: math.unit(190, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/bari/back.svg",
  18270. extra: 3260 / 2834,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. frontPlush: {
  18275. height: math.unit(5 + 2 / 12, "feet"),
  18276. weight: math.unit(190, "lb"),
  18277. name: "Front (Plush)",
  18278. image: {
  18279. source: "./media/characters/bari/front-plush.svg",
  18280. extra: 1112 / 1061,
  18281. bottom: 0.002
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Micro",
  18288. height: math.unit(3, "inches")
  18289. },
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Macro",
  18297. height: math.unit(20, "feet")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(6 + 1 / 12, "feet"),
  18306. weight: math.unit(275, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/hunter-misha-raven/front.svg"
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Mortal",
  18316. height: math.unit(6 + 1 / 12, "feet")
  18317. },
  18318. {
  18319. name: "Divine",
  18320. height: math.unit(1.12134e34, "parsecs"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6 + 3 / 12, "feet"),
  18330. weight: math.unit(220, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/max-calore/front.svg",
  18334. extra: 1700 / 1648,
  18335. bottom: 0.01
  18336. }
  18337. },
  18338. back: {
  18339. height: math.unit(6 + 3 / 12, "feet"),
  18340. weight: math.unit(220, "lb"),
  18341. name: "Back",
  18342. image: {
  18343. source: "./media/characters/max-calore/back.svg",
  18344. extra: 1700 / 1648,
  18345. bottom: 0.01
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6 + 3 / 12, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(2 + 8 / 12, "feet"),
  18362. weight: math.unit(99, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/aspen/side.svg",
  18366. extra: 152 / 138,
  18367. bottom: 0.032
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(2 + 8 / 12, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18381. {
  18382. side: {
  18383. height: math.unit(3 + 2 / 12, "feet"),
  18384. weight: math.unit(224, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/sheila-feral-wolf/side.svg",
  18388. extra: 179 / 166,
  18389. bottom: 0.03
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(3 + 2 / 12, "feet"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18403. {
  18404. side: {
  18405. height: math.unit(1 + 9 / 12, "feet"),
  18406. weight: math.unit(38, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/michelle/side.svg",
  18410. extra: 147 / 136.7,
  18411. bottom: 0.03
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(1 + 9 / 12, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(1.54, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/nino/front.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(1.54, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(1.49, "feet"),
  18448. weight: math.unit(45, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/viola/front.svg"
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(1.49, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 5 / 12, "feet"),
  18468. weight: math.unit(580, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/atlas/front.svg",
  18472. extra: 298.5 / 290,
  18473. bottom: 0.015
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(6 + 5 / 12, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18487. {
  18488. side: {
  18489. height: math.unit(15.6, "inches"),
  18490. weight: math.unit(10, "lb"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/davy/side.svg",
  18494. extra: 200 / 170,
  18495. bottom: 0.01
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(15.6, "inches"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18509. {
  18510. side: {
  18511. height: math.unit(4 + 8 / 12, "feet"),
  18512. weight: math.unit(166, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/fiona/side.svg",
  18516. extra: 232 / 220,
  18517. bottom: 0.03
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(4 + 8 / 12, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18531. {
  18532. front: {
  18533. height: math.unit(26, "inches"),
  18534. weight: math.unit(35, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/lyla/front.svg",
  18538. bottom: 0.1
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(3, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(1.8, "feet"),
  18555. weight: math.unit(44, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/perseus/side.svg",
  18559. bottom: 0.21
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(1.8, "feet"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18573. {
  18574. side: {
  18575. height: math.unit(4 + 2 / 12, "feet"),
  18576. weight: math.unit(20, "lb"),
  18577. name: "Side",
  18578. image: {
  18579. source: "./media/characters/remus/side.svg"
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(4 + 2 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(4 + 11 / 12, "feet"),
  18596. weight: math.unit(114, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/raf/front.svg",
  18600. extra: 1504/1339,
  18601. bottom: 26/1530
  18602. }
  18603. },
  18604. side: {
  18605. height: math.unit(4 + 11 / 12, "feet"),
  18606. weight: math.unit(114, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/raf/side.svg",
  18610. extra: 1466/1316,
  18611. bottom: 29/1495
  18612. }
  18613. },
  18614. paw: {
  18615. height: math.unit(1.45, "feet"),
  18616. name: "Paw",
  18617. image: {
  18618. source: "./media/characters/raf/paw.svg"
  18619. },
  18620. extraAttributes: {
  18621. "toeSize": {
  18622. name: "Toe Size",
  18623. power: 2,
  18624. type: "area",
  18625. base: math.unit(0.004, "m^2")
  18626. },
  18627. "padSize": {
  18628. name: "Pad Size",
  18629. power: 2,
  18630. type: "area",
  18631. base: math.unit(0.04, "m^2")
  18632. },
  18633. "footSize": {
  18634. name: "Foot Size",
  18635. power: 2,
  18636. type: "area",
  18637. base: math.unit(0.08, "m^2")
  18638. },
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(2, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(4 + 11 / 12, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(70, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(1.5, "meters"),
  18663. weight: math.unit(68, "kg"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/liam-einarr/front.svg",
  18667. extra: 2822 / 2666
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(1.5, "meters"),
  18672. weight: math.unit(68, "kg"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/liam-einarr/back.svg",
  18676. extra: 2822 / 2666,
  18677. bottom: 0.015
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(1.5, "meters"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(150, "meters")
  18690. },
  18691. {
  18692. name: "Megamacro",
  18693. height: math.unit(35, "km")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(75, "kg"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/linda/front.svg",
  18706. extra: 930 / 874,
  18707. bottom: 0.004
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(6, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6 + 8 / 12, "feet"),
  18724. weight: math.unit(220, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/caylex/front.svg",
  18728. extra: 821 / 772,
  18729. bottom: 0.07
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(6 + 8 / 12, "feet"),
  18734. weight: math.unit(220, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/caylex/back.svg",
  18738. extra: 821 / 772,
  18739. bottom: 0.022
  18740. }
  18741. },
  18742. hand: {
  18743. height: math.unit(1.25, "feet"),
  18744. name: "Hand",
  18745. image: {
  18746. source: "./media/characters/caylex/hand.svg"
  18747. }
  18748. },
  18749. foot: {
  18750. height: math.unit(1.6, "feet"),
  18751. name: "Foot",
  18752. image: {
  18753. source: "./media/characters/caylex/foot.svg"
  18754. }
  18755. },
  18756. armored: {
  18757. height: math.unit(6 + 8 / 12, "feet"),
  18758. weight: math.unit(250, "lb"),
  18759. name: "Armored",
  18760. image: {
  18761. source: "./media/characters/caylex/armored.svg",
  18762. extra: 1420 / 1310,
  18763. bottom: 0.045
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 8 / 12, "feet"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Normal+",
  18775. height: math.unit(12, "feet")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(7 + 6 / 12, "feet"),
  18784. weight: math.unit(288, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/alana/front.svg",
  18788. extra: 679 / 653,
  18789. bottom: 22.5 / 701
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(7 + 6 / 12, "feet")
  18797. },
  18798. {
  18799. name: "Large",
  18800. height: math.unit(50, "feet")
  18801. },
  18802. {
  18803. name: "Macro",
  18804. height: math.unit(100, "feet"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Macro+",
  18809. height: math.unit(200, "feet")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(210, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/hasani/front.svg",
  18822. extra: 244 / 232,
  18823. bottom: 0.01
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(6 + 1 / 12, "feet"),
  18828. weight: math.unit(210, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/hasani/back.svg",
  18832. extra: 244 / 232,
  18833. bottom: 0.01
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 1 / 12, "feet")
  18841. },
  18842. {
  18843. name: "Macro",
  18844. height: math.unit(175, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(1.82, "meters"),
  18854. weight: math.unit(140, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/nita/front.svg",
  18858. extra: 2473 / 2363,
  18859. bottom: 0.01
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(1.82, "m")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(300, "m")
  18871. },
  18872. {
  18873. name: "Mistake Canon",
  18874. height: math.unit(0.5, "miles"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Big Mistake",
  18879. height: math.unit(13, "miles")
  18880. },
  18881. {
  18882. name: "Playing God",
  18883. height: math.unit(2450, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(4, "feet"),
  18892. weight: math.unit(120, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/shiriko/front.svg",
  18896. extra: 970/934,
  18897. bottom: 5/975
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(4, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(6, "feet"),
  18914. name: "front",
  18915. image: {
  18916. source: "./media/characters/deja/front.svg",
  18917. extra: 926 / 840,
  18918. bottom: 0.07
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Planck Length",
  18925. height: math.unit(1.6e-35, "meters")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(30.48, "meters"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Universal",
  18934. height: math.unit(8.8e26, "meters")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18940. {
  18941. side: {
  18942. height: math.unit(8, "feet"),
  18943. weight: math.unit(6300, "lb"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/anima/side.svg",
  18947. bottom: 0.035
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(8, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(8, "feet"),
  18964. weight: math.unit(350, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/bianca/front.svg",
  18968. extra: 234 / 225,
  18969. bottom: 0.03
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(8, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(11 + 5/12, "feet"),
  18986. weight: math.unit(1200, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/adinia/front.svg",
  18990. extra: 1767/1641,
  18991. bottom: 44/1811
  18992. },
  18993. extraAttributes: {
  18994. "energyIntake": {
  18995. name: "Energy Intake",
  18996. power: 3,
  18997. type: "energy",
  18998. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18999. },
  19000. }
  19001. },
  19002. back: {
  19003. height: math.unit(11 + 5/12, "feet"),
  19004. weight: math.unit(1200, "lb"),
  19005. name: "Back",
  19006. image: {
  19007. source: "./media/characters/adinia/back.svg",
  19008. extra: 1834/1684,
  19009. bottom: 14/1848
  19010. },
  19011. extraAttributes: {
  19012. "energyIntake": {
  19013. name: "Energy Intake",
  19014. power: 3,
  19015. type: "energy",
  19016. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19017. },
  19018. }
  19019. },
  19020. maw: {
  19021. height: math.unit(3.79, "feet"),
  19022. name: "Maw",
  19023. image: {
  19024. source: "./media/characters/adinia/maw.svg"
  19025. }
  19026. },
  19027. rump: {
  19028. height: math.unit(4.6, "feet"),
  19029. name: "Rump",
  19030. image: {
  19031. source: "./media/characters/adinia/rump.svg"
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(11 + 5 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(3, "meters"),
  19048. weight: math.unit(200, "kg"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/lykasa/front.svg",
  19052. extra: 1076 / 976,
  19053. bottom: 0.06
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(3, "meters")
  19061. },
  19062. {
  19063. name: "Kaiju",
  19064. height: math.unit(120, "meters"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Mega Kaiju",
  19069. height: math.unit(240, "km")
  19070. },
  19071. {
  19072. name: "Giga Kaiju",
  19073. height: math.unit(400, "megameters")
  19074. },
  19075. {
  19076. name: "Tera Kaiju",
  19077. height: math.unit(800, "gigameters")
  19078. },
  19079. {
  19080. name: "Kaiju Dragon Goddess",
  19081. height: math.unit(26, "zettaparsecs")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19087. {
  19088. side: {
  19089. height: math.unit(283 / 124 * 6, "feet"),
  19090. weight: math.unit(35000, "lb"),
  19091. name: "Side",
  19092. image: {
  19093. source: "./media/characters/malfaren/side.svg",
  19094. extra: 1310/529,
  19095. bottom: 24/1334
  19096. }
  19097. },
  19098. front: {
  19099. height: math.unit(22.36, "feet"),
  19100. weight: math.unit(35000, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/malfaren/front.svg",
  19104. extra: 1237/1115,
  19105. bottom: 32/1269
  19106. }
  19107. },
  19108. maw: {
  19109. height: math.unit(6.9, "feet"),
  19110. name: "Maw",
  19111. image: {
  19112. source: "./media/characters/malfaren/maw.svg"
  19113. }
  19114. },
  19115. dick: {
  19116. height: math.unit(6.19, "feet"),
  19117. name: "Dick",
  19118. image: {
  19119. source: "./media/characters/malfaren/dick.svg"
  19120. }
  19121. },
  19122. eye: {
  19123. height: math.unit(0.69, "feet"),
  19124. name: "Eye",
  19125. image: {
  19126. source: "./media/characters/malfaren/eye.svg"
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Big",
  19133. height: math.unit(283 / 162 * 6, "feet"),
  19134. },
  19135. {
  19136. name: "Bigger",
  19137. height: math.unit(283 / 124 * 6, "feet")
  19138. },
  19139. {
  19140. name: "Massive",
  19141. height: math.unit(283 / 92 * 6, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "👀💦",
  19146. height: math.unit(283 / 73 * 6, "feet"),
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(1.7, "m"),
  19155. weight: math.unit(70, "kg"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/kernel/front.svg",
  19159. extra: 222 / 210,
  19160. bottom: 0.007
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Nano",
  19167. height: math.unit(17, "micrometers")
  19168. },
  19169. {
  19170. name: "Micro",
  19171. height: math.unit(1.7, "mm")
  19172. },
  19173. {
  19174. name: "Small",
  19175. height: math.unit(1.7, "cm")
  19176. },
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(1.7, "m"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(1.75, "meters"),
  19189. weight: math.unit(65, "kg"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/jayne-folest/front.svg",
  19193. extra: 2115 / 2007,
  19194. bottom: 0.02
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(1.75, "meters"),
  19199. weight: math.unit(65, "kg"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/jayne-folest/back.svg",
  19203. extra: 2115 / 2007,
  19204. bottom: 0.005
  19205. }
  19206. },
  19207. frontClothed: {
  19208. height: math.unit(1.75, "meters"),
  19209. weight: math.unit(65, "kg"),
  19210. name: "Front (Clothed)",
  19211. image: {
  19212. source: "./media/characters/jayne-folest/front-clothed.svg",
  19213. extra: 2115 / 2007,
  19214. bottom: 0.035
  19215. }
  19216. },
  19217. hand: {
  19218. height: math.unit(1 / 1.260, "feet"),
  19219. name: "Hand",
  19220. image: {
  19221. source: "./media/characters/jayne-folest/hand.svg"
  19222. }
  19223. },
  19224. foot: {
  19225. height: math.unit(1 / 0.918, "feet"),
  19226. name: "Foot",
  19227. image: {
  19228. source: "./media/characters/jayne-folest/foot.svg"
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Micro",
  19235. height: math.unit(4, "cm")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(1.75, "meters")
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(47.5, "meters"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(180, "cm"),
  19253. weight: math.unit(70, "kg"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/algier/front.svg",
  19257. extra: 596 / 572,
  19258. bottom: 0.04
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(180, "cm"),
  19263. weight: math.unit(70, "kg"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/algier/back.svg",
  19267. extra: 596 / 572,
  19268. bottom: 0.025
  19269. }
  19270. },
  19271. frontdressed: {
  19272. height: math.unit(180, "cm"),
  19273. weight: math.unit(150, "kg"),
  19274. name: "Front-dressed",
  19275. image: {
  19276. source: "./media/characters/algier/front-dressed.svg",
  19277. extra: 596 / 572,
  19278. bottom: 0.038
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Micro",
  19285. height: math.unit(5, "cm")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(180, "cm"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(64, "m")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19300. {
  19301. upright: {
  19302. height: math.unit(7, "feet"),
  19303. weight: math.unit(300, "lb"),
  19304. name: "Upright",
  19305. image: {
  19306. source: "./media/characters/pretzel/upright.svg",
  19307. extra: 534 / 522,
  19308. bottom: 0.065
  19309. }
  19310. },
  19311. sprawling: {
  19312. height: math.unit(3.75, "feet"),
  19313. weight: math.unit(300, "lb"),
  19314. name: "Sprawling",
  19315. image: {
  19316. source: "./media/characters/pretzel/sprawling.svg",
  19317. extra: 314 / 281,
  19318. bottom: 0.1
  19319. }
  19320. },
  19321. tongue: {
  19322. height: math.unit(2, "feet"),
  19323. name: "Tongue",
  19324. image: {
  19325. source: "./media/characters/pretzel/tongue.svg"
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(7, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Oversized",
  19337. height: math.unit(15, "feet")
  19338. },
  19339. {
  19340. name: "Huge",
  19341. height: math.unit(30, "feet")
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(250, "feet")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19351. {
  19352. sideFront: {
  19353. height: math.unit(5 + 2 / 12, "feet"),
  19354. weight: math.unit(120, "lb"),
  19355. name: "Front Side",
  19356. image: {
  19357. source: "./media/characters/roxi/side-front.svg",
  19358. extra: 2924 / 2717,
  19359. bottom: 0.08
  19360. }
  19361. },
  19362. sideBack: {
  19363. height: math.unit(5 + 2 / 12, "feet"),
  19364. weight: math.unit(120, "lb"),
  19365. name: "Back Side",
  19366. image: {
  19367. source: "./media/characters/roxi/side-back.svg",
  19368. extra: 2904 / 2693,
  19369. bottom: 0.06
  19370. }
  19371. },
  19372. front: {
  19373. height: math.unit(5 + 2 / 12, "feet"),
  19374. weight: math.unit(120, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/roxi/front.svg",
  19378. extra: 2028 / 1907,
  19379. bottom: 0.01
  19380. }
  19381. },
  19382. frontAlt: {
  19383. height: math.unit(5 + 2 / 12, "feet"),
  19384. weight: math.unit(120, "lb"),
  19385. name: "Front (Alt)",
  19386. image: {
  19387. source: "./media/characters/roxi/front-alt.svg",
  19388. extra: 1828 / 1798,
  19389. bottom: 0.01
  19390. }
  19391. },
  19392. sitting: {
  19393. height: math.unit(2.8, "feet"),
  19394. weight: math.unit(120, "lb"),
  19395. name: "Sitting",
  19396. image: {
  19397. source: "./media/characters/roxi/sitting.svg",
  19398. extra: 2660 / 2462,
  19399. bottom: 0.1
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(5 + 2 / 12, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19413. {
  19414. side: {
  19415. height: math.unit(55, "feet"),
  19416. weight: math.unit(153, "tons"),
  19417. name: "Side",
  19418. image: {
  19419. source: "./media/characters/shadow/side.svg",
  19420. extra: 701 / 628,
  19421. bottom: 0.02
  19422. }
  19423. },
  19424. flying: {
  19425. height: math.unit(145, "feet"),
  19426. weight: math.unit(153, "tons"),
  19427. name: "Flying",
  19428. image: {
  19429. source: "./media/characters/shadow/flying.svg"
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(55, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(200, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/marcie/front.svg",
  19450. extra: 960 / 876,
  19451. bottom: 58 / 1017.87
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(1, "mile"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(7, "feet"),
  19468. weight: math.unit(200, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/kachina/front.svg",
  19472. extra: 1290.68 / 1119,
  19473. bottom: 36.5 / 1327.18
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(7, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19487. {
  19488. looking: {
  19489. height: math.unit(2, "meters"),
  19490. weight: math.unit(300, "kg"),
  19491. name: "Looking",
  19492. image: {
  19493. source: "./media/characters/kash/looking.svg",
  19494. extra: 474 / 344,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. side: {
  19499. height: math.unit(2, "meters"),
  19500. weight: math.unit(300, "kg"),
  19501. name: "Side",
  19502. image: {
  19503. source: "./media/characters/kash/side.svg",
  19504. extra: 302 / 251,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. front: {
  19509. height: math.unit(2, "meters"),
  19510. weight: math.unit(300, "kg"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/kash/front.svg",
  19514. extra: 495 / 360,
  19515. bottom: 0.015
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(2, "meters"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Big",
  19527. height: math.unit(3, "meters")
  19528. },
  19529. {
  19530. name: "Large",
  19531. height: math.unit(5, "meters")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19537. {
  19538. feeding: {
  19539. height: math.unit(6.7, "feet"),
  19540. weight: math.unit(350, "lb"),
  19541. name: "Feeding",
  19542. image: {
  19543. source: "./media/characters/lalim/feeding.svg",
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(6.7, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(9.5, "feet"),
  19560. weight: math.unit(600, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/de'vout/front.svg",
  19564. extra: 1443 / 1328,
  19565. bottom: 0.025
  19566. }
  19567. },
  19568. back: {
  19569. height: math.unit(9.5, "feet"),
  19570. weight: math.unit(600, "lb"),
  19571. name: "Back",
  19572. image: {
  19573. source: "./media/characters/de'vout/back.svg",
  19574. extra: 1443 / 1328
  19575. }
  19576. },
  19577. frontDressed: {
  19578. height: math.unit(9.5, "feet"),
  19579. weight: math.unit(600, "lb"),
  19580. name: "Front (Dressed",
  19581. image: {
  19582. source: "./media/characters/de'vout/front-dressed.svg",
  19583. extra: 1443 / 1328,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. backDressed: {
  19588. height: math.unit(9.5, "feet"),
  19589. weight: math.unit(600, "lb"),
  19590. name: "Back (Dressed",
  19591. image: {
  19592. source: "./media/characters/de'vout/back-dressed.svg",
  19593. extra: 1443 / 1328
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(9.5, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(8, "feet"),
  19610. weight: math.unit(225, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/talana/front.svg",
  19614. extra: 1410 / 1300,
  19615. bottom: 0.015
  19616. }
  19617. },
  19618. frontDressed: {
  19619. height: math.unit(8, "feet"),
  19620. weight: math.unit(225, "lb"),
  19621. name: "Front (Dressed",
  19622. image: {
  19623. source: "./media/characters/talana/front-dressed.svg",
  19624. extra: 1410 / 1300,
  19625. bottom: 0.015
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(8, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19639. {
  19640. side: {
  19641. height: math.unit(7.2, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Side",
  19644. image: {
  19645. source: "./media/characters/xeauvok/side.svg",
  19646. extra: 1975 / 1523,
  19647. bottom: 0.07
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(7.2, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19661. {
  19662. side: {
  19663. height: math.unit(4, "meters"),
  19664. weight: math.unit(2200, "kg"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/zara/side.svg",
  19668. extra: 765/744,
  19669. bottom: 156/921
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(4, "meters"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19683. {
  19684. side: {
  19685. height: math.unit(6, "feet"),
  19686. weight: math.unit(150, "lb"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/richard-dragon/side.svg",
  19690. extra: 845 / 340,
  19691. bottom: 0.017
  19692. }
  19693. },
  19694. maw: {
  19695. height: math.unit(2.97, "feet"),
  19696. name: "Maw",
  19697. image: {
  19698. source: "./media/characters/richard-dragon/maw.svg"
  19699. }
  19700. },
  19701. },
  19702. [
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(4, "feet"),
  19710. weight: math.unit(100, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/richard-smeargle/front.svg",
  19714. extra: 2952 / 2820,
  19715. bottom: 0.028
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(4, "feet"),
  19723. default: true
  19724. },
  19725. {
  19726. name: "Dynamax",
  19727. height: math.unit(20, "meters")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(6, "feet"),
  19736. weight: math.unit(110, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/klay/front.svg",
  19740. extra: 962 / 883,
  19741. bottom: 0.04
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(6, "feet"),
  19746. weight: math.unit(110, "lb"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/klay/back.svg",
  19750. extra: 962 / 883
  19751. }
  19752. },
  19753. beans: {
  19754. height: math.unit(1.15, "feet"),
  19755. name: "Beans",
  19756. image: {
  19757. source: "./media/characters/klay/beans.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(6, "inches")
  19765. },
  19766. {
  19767. name: "Mini",
  19768. height: math.unit(3, "feet")
  19769. },
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(6, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Big",
  19777. height: math.unit(25, "feet")
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(100, "feet")
  19782. },
  19783. {
  19784. name: "Megamacro",
  19785. height: math.unit(400, "feet")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(160, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/marcus/front.svg",
  19798. extra: 734 / 676,
  19799. bottom: 0.03
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Little",
  19806. height: math.unit(6, "feet")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(110, "feet"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Macro",
  19815. height: math.unit(250, "feet")
  19816. },
  19817. {
  19818. name: "Megamacro",
  19819. height: math.unit(1000, "feet")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(275, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/claude-delroute/front.svg",
  19832. extra: 902/827,
  19833. bottom: 26/928
  19834. }
  19835. },
  19836. side: {
  19837. height: math.unit(7, "feet"),
  19838. weight: math.unit(275, "lb"),
  19839. name: "Side",
  19840. image: {
  19841. source: "./media/characters/claude-delroute/side.svg",
  19842. extra: 908/853,
  19843. bottom: 16/924
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(7, "feet"),
  19848. weight: math.unit(275, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/claude-delroute/back.svg",
  19852. extra: 911/829,
  19853. bottom: 18/929
  19854. }
  19855. },
  19856. maw: {
  19857. height: math.unit(0.6407, "meters"),
  19858. name: "Maw",
  19859. image: {
  19860. source: "./media/characters/claude-delroute/maw.svg"
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(7, "feet"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Lorge",
  19872. height: math.unit(20, "feet")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(8 + 4 / 12, "feet"),
  19881. weight: math.unit(600, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/dragonien/front.svg",
  19885. extra: 100 / 94,
  19886. bottom: 3.3 / 103.3445
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(8 + 4 / 12, "feet"),
  19891. weight: math.unit(600, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/dragonien/back.svg",
  19895. extra: 776 / 746,
  19896. bottom: 6.4 / 782.0616
  19897. }
  19898. },
  19899. foot: {
  19900. height: math.unit(1.54, "feet"),
  19901. name: "Foot",
  19902. image: {
  19903. source: "./media/characters/dragonien/foot.svg",
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(8 + 4 / 12, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Macro",
  19915. height: math.unit(200, "feet")
  19916. },
  19917. {
  19918. name: "Megamacro",
  19919. height: math.unit(1, "mile")
  19920. },
  19921. {
  19922. name: "Gigamacro",
  19923. height: math.unit(1000, "miles")
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. weight: math.unit(110, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/desta/front.svg",
  19936. extra: 767 / 726,
  19937. bottom: 11.7 / 779
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(5 + 2 / 12, "feet"),
  19942. weight: math.unit(110, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/desta/back.svg",
  19946. extra: 777 / 728,
  19947. bottom: 6 / 784
  19948. }
  19949. },
  19950. frontAlt: {
  19951. height: math.unit(5 + 2 / 12, "feet"),
  19952. weight: math.unit(110, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/desta/front-alt.svg",
  19956. extra: 1482 / 1417
  19957. }
  19958. },
  19959. side: {
  19960. height: math.unit(5 + 2 / 12, "feet"),
  19961. weight: math.unit(110, "lb"),
  19962. name: "Side",
  19963. image: {
  19964. source: "./media/characters/desta/side.svg",
  19965. extra: 2579 / 2491,
  19966. bottom: 0.053
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Micro",
  19973. height: math.unit(6, "inches")
  19974. },
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 2 / 12, "feet"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Macro",
  19982. height: math.unit(62, "feet")
  19983. },
  19984. {
  19985. name: "Megamacro",
  19986. height: math.unit(1800, "feet")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(10, "feet"),
  19995. weight: math.unit(700, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/storm-alystar/front.svg",
  19999. extra: 2112 / 1898,
  20000. bottom: 0.034
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Micro",
  20007. height: math.unit(3.5, "inches")
  20008. },
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(10, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(400, "feet")
  20017. },
  20018. {
  20019. name: "Deific",
  20020. height: math.unit(60, "miles")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(2.35, "meters"),
  20029. weight: math.unit(119, "kg"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/ilia/front.svg",
  20033. extra: 1285 / 1255,
  20034. bottom: 0.06
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(2.35, "meters")
  20042. },
  20043. {
  20044. name: "Macro",
  20045. height: math.unit(140, "meters"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Megamacro",
  20050. height: math.unit(100, "miles")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(6 + 5 / 12, "feet"),
  20059. weight: math.unit(190, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/kingdead/front.svg",
  20063. extra: 1228 / 1177
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Micro",
  20070. height: math.unit(7, "inches")
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 5 / 12, "feet")
  20075. },
  20076. {
  20077. name: "Macro",
  20078. height: math.unit(150, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Megamacro",
  20083. height: math.unit(200, "miles")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(8, "feet"),
  20092. weight: math.unit(600, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/kyrehx/front.svg",
  20096. extra: 1195 / 1095,
  20097. bottom: 0.034
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Micro",
  20104. height: math.unit(2, "inches")
  20105. },
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(8, "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(255, "feet")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20122. weight: math.unit(184, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/xang/front.svg",
  20126. extra: 845 / 755
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(0.935 * 146, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(0.935 * 3, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20148. {
  20149. frontDressed: {
  20150. height: math.unit(5 + 7 / 12, "feet"),
  20151. weight: math.unit(140, "lb"),
  20152. name: "Front (Dressed)",
  20153. image: {
  20154. source: "./media/characters/doc-weardno/front-dressed.svg",
  20155. extra: 263 / 234
  20156. }
  20157. },
  20158. backDressed: {
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. weight: math.unit(140, "lb"),
  20161. name: "Back (Dressed)",
  20162. image: {
  20163. source: "./media/characters/doc-weardno/back-dressed.svg",
  20164. extra: 266 / 238
  20165. }
  20166. },
  20167. front: {
  20168. height: math.unit(5 + 7 / 12, "feet"),
  20169. weight: math.unit(140, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/doc-weardno/front.svg",
  20173. extra: 254 / 233
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Micro",
  20180. height: math.unit(3, "inches")
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 7 / 12, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(25, "feet")
  20190. },
  20191. {
  20192. name: "Megamacro",
  20193. height: math.unit(2, "miles")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(6 + 2 / 12, "feet"),
  20202. weight: math.unit(153, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/seth-whilst/front.svg",
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Micro",
  20213. height: math.unit(5, "inches")
  20214. },
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(6 + 2 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(3, "inches"),
  20227. weight: math.unit(8, "grams"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/pocket-jabari/front.svg",
  20231. extra: 1024 / 974,
  20232. bottom: 0.039
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Minimicro",
  20239. height: math.unit(8, "mm")
  20240. },
  20241. {
  20242. name: "Micro",
  20243. height: math.unit(3, "inches"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(3, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20254. {
  20255. frontDressed: {
  20256. height: math.unit(15, "feet"),
  20257. weight: math.unit(3280, "lb"),
  20258. name: "Front (Dressed)",
  20259. image: {
  20260. source: "./media/characters/sapphy/front-dressed.svg",
  20261. extra: 1951/1654,
  20262. bottom: 194/2145
  20263. },
  20264. form: "anthro",
  20265. default: true
  20266. },
  20267. backDressed: {
  20268. height: math.unit(15, "feet"),
  20269. weight: math.unit(3280, "lb"),
  20270. name: "Back (Dressed)",
  20271. image: {
  20272. source: "./media/characters/sapphy/back-dressed.svg",
  20273. extra: 2058/1918,
  20274. bottom: 125/2183
  20275. },
  20276. form: "anthro"
  20277. },
  20278. frontNude: {
  20279. height: math.unit(15, "feet"),
  20280. weight: math.unit(3280, "lb"),
  20281. name: "Front (Nude)",
  20282. image: {
  20283. source: "./media/characters/sapphy/front-nude.svg",
  20284. extra: 1951/1654,
  20285. bottom: 194/2145
  20286. },
  20287. form: "anthro"
  20288. },
  20289. backNude: {
  20290. height: math.unit(15, "feet"),
  20291. weight: math.unit(3280, "lb"),
  20292. name: "Back (Nude)",
  20293. image: {
  20294. source: "./media/characters/sapphy/back-nude.svg",
  20295. extra: 2058/1918,
  20296. bottom: 125/2183
  20297. },
  20298. form: "anthro"
  20299. },
  20300. full: {
  20301. height: math.unit(15, "feet"),
  20302. weight: math.unit(3280, "lb"),
  20303. name: "Full",
  20304. image: {
  20305. source: "./media/characters/sapphy/full.svg",
  20306. extra: 1396/1317,
  20307. bottom: 44/1440
  20308. },
  20309. form: "anthro"
  20310. },
  20311. dick: {
  20312. height: math.unit(3.8, "feet"),
  20313. name: "Dick",
  20314. image: {
  20315. source: "./media/characters/sapphy/dick.svg"
  20316. },
  20317. form: "anthro"
  20318. },
  20319. feral: {
  20320. height: math.unit(35, "feet"),
  20321. weight: math.unit(160, "tons"),
  20322. name: "Feral",
  20323. image: {
  20324. source: "./media/characters/sapphy/feral.svg",
  20325. extra: 1050/573,
  20326. bottom: 60/1110
  20327. },
  20328. form: "feral",
  20329. default: true
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(15, "feet"),
  20336. form: "anthro"
  20337. },
  20338. {
  20339. name: "Casual Macro",
  20340. height: math.unit(120, "feet"),
  20341. form: "anthro"
  20342. },
  20343. {
  20344. name: "Macro",
  20345. height: math.unit(2150, "feet"),
  20346. default: true,
  20347. form: "anthro"
  20348. },
  20349. {
  20350. name: "Megamacro",
  20351. height: math.unit(8, "miles"),
  20352. form: "anthro"
  20353. },
  20354. {
  20355. name: "Galaxy Mom",
  20356. height: math.unit(6, "megalightyears"),
  20357. form: "anthro"
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(35, "feet"),
  20362. form: "feral",
  20363. default: true
  20364. },
  20365. {
  20366. name: "Macro",
  20367. height: math.unit(300, "feet"),
  20368. form: "feral"
  20369. },
  20370. {
  20371. name: "Galaxy Mom",
  20372. height: math.unit(10, "megalightyears"),
  20373. form: "feral"
  20374. },
  20375. ],
  20376. {
  20377. "anthro": {
  20378. name: "Anthro",
  20379. default: true
  20380. },
  20381. "feral": {
  20382. name: "Feral"
  20383. }
  20384. }
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20388. {
  20389. hyenaFront: {
  20390. height: math.unit(6, "feet"),
  20391. weight: math.unit(190, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/kiro/hyena-front.svg",
  20395. extra: 927/839,
  20396. bottom: 91/1018
  20397. },
  20398. form: "hyena",
  20399. default: true
  20400. },
  20401. front: {
  20402. height: math.unit(6, "feet"),
  20403. weight: math.unit(170, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/kiro/front.svg",
  20407. extra: 1064 / 1012,
  20408. bottom: 0.052
  20409. },
  20410. form: "folf",
  20411. default: true
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Micro",
  20417. height: math.unit(6, "inches"),
  20418. form: "folf"
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(6, "feet"),
  20423. form: "folf",
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(72, "feet"),
  20429. form: "folf"
  20430. },
  20431. {
  20432. name: "Micro",
  20433. height: math.unit(6, "inches"),
  20434. form: "hyena"
  20435. },
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(6, "feet"),
  20439. form: "hyena",
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(72, "feet"),
  20445. form: "hyena"
  20446. },
  20447. ],
  20448. {
  20449. "hyena": {
  20450. name: "Hyena",
  20451. default: true
  20452. },
  20453. "folf": {
  20454. name: "Folf",
  20455. },
  20456. }
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. weight: math.unit(175, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/irishfox/front.svg",
  20467. extra: 1912 / 1680,
  20468. bottom: 0.02
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Nano",
  20475. height: math.unit(1, "mm")
  20476. },
  20477. {
  20478. name: "Micro",
  20479. height: math.unit(2, "inches")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(5 + 9 / 12, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(45, "feet")
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(6 + 1 / 12, "feet"),
  20497. weight: math.unit(75, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/aronai-sieyes/front.svg",
  20501. extra: 1532/1450,
  20502. bottom: 42/1574
  20503. }
  20504. },
  20505. side: {
  20506. height: math.unit(6 + 1 / 12, "feet"),
  20507. weight: math.unit(75, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/aronai-sieyes/side.svg",
  20511. extra: 1422/1365,
  20512. bottom: 148/1570
  20513. }
  20514. },
  20515. back: {
  20516. height: math.unit(6 + 1 / 12, "feet"),
  20517. weight: math.unit(75, "lb"),
  20518. name: "Back",
  20519. image: {
  20520. source: "./media/characters/aronai-sieyes/back.svg",
  20521. extra: 1526/1464,
  20522. bottom: 51/1577
  20523. }
  20524. },
  20525. dressed: {
  20526. height: math.unit(6 + 1 / 12, "feet"),
  20527. weight: math.unit(75, "lb"),
  20528. name: "Dressed",
  20529. image: {
  20530. source: "./media/characters/aronai-sieyes/dressed.svg",
  20531. extra: 1559/1483,
  20532. bottom: 39/1598
  20533. }
  20534. },
  20535. slit: {
  20536. height: math.unit(1.3, "feet"),
  20537. name: "Slit",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/slit.svg"
  20540. }
  20541. },
  20542. slitSpread: {
  20543. height: math.unit(0.9, "feet"),
  20544. name: "Slit (Spread)",
  20545. image: {
  20546. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20547. }
  20548. },
  20549. rump: {
  20550. height: math.unit(1.3, "feet"),
  20551. name: "Rump",
  20552. image: {
  20553. source: "./media/characters/aronai-sieyes/rump.svg"
  20554. }
  20555. },
  20556. maw: {
  20557. height: math.unit(1.25, "feet"),
  20558. name: "Maw",
  20559. image: {
  20560. source: "./media/characters/aronai-sieyes/maw.svg"
  20561. }
  20562. },
  20563. feral: {
  20564. height: math.unit(18, "feet"),
  20565. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20566. name: "Feral",
  20567. image: {
  20568. source: "./media/characters/aronai-sieyes/feral.svg",
  20569. extra: 1530 / 1240,
  20570. bottom: 0.035
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(2, "inches")
  20578. },
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 1 / 12, "feet"),
  20582. default: true
  20583. }
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(12, "feet"),
  20591. weight: math.unit(410, "kg"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/xuna/front.svg",
  20595. extra: 2184 / 1980
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(12, "feet"),
  20600. weight: math.unit(410, "kg"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/xuna/side.svg",
  20604. extra: 2184 / 1980
  20605. }
  20606. },
  20607. back: {
  20608. height: math.unit(12, "feet"),
  20609. weight: math.unit(410, "kg"),
  20610. name: "Back",
  20611. image: {
  20612. source: "./media/characters/xuna/back.svg",
  20613. extra: 2184 / 1980
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Nano glow",
  20620. height: math.unit(10, "nm")
  20621. },
  20622. {
  20623. name: "Micro floof",
  20624. height: math.unit(0.3, "m")
  20625. },
  20626. {
  20627. name: "Huggable softy boi",
  20628. height: math.unit(3.6576, "m"),
  20629. default: true
  20630. },
  20631. {
  20632. name: "Admirable floof",
  20633. height: math.unit(80, "meters")
  20634. },
  20635. {
  20636. name: "Gentle macro",
  20637. height: math.unit(300, "meters")
  20638. },
  20639. {
  20640. name: "Very careful floof",
  20641. height: math.unit(3200, "meters")
  20642. },
  20643. {
  20644. name: "The mega floof",
  20645. height: math.unit(36000, "meters")
  20646. },
  20647. {
  20648. name: "Giga-fur-Wicker",
  20649. height: math.unit(4800000, "meters")
  20650. },
  20651. {
  20652. name: "Licky world",
  20653. height: math.unit(20000000, "meters")
  20654. },
  20655. {
  20656. name: "Floofy cyan sun",
  20657. height: math.unit(1500000000, "meters")
  20658. },
  20659. {
  20660. name: "Milky Wicker",
  20661. height: math.unit(1000000000000000000000, "meters")
  20662. },
  20663. {
  20664. name: "The observing Wicker",
  20665. height: math.unit(999999999999999999999999999, "meters")
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20671. {
  20672. front: {
  20673. height: math.unit(5 + 9 / 12, "feet"),
  20674. weight: math.unit(150, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/arokha-sieyes/front.svg",
  20678. extra: 1425 / 1284,
  20679. bottom: 0.05
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(5 + 9 / 12, "feet")
  20687. },
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(30, "meters"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(6, "feet"),
  20700. weight: math.unit(180, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/arokh-sieyes/front.svg",
  20704. extra: 1830 / 1769,
  20705. bottom: 0.01
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(6, "feet")
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(30, "meters"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20723. {
  20724. side: {
  20725. height: math.unit(13 + 1 / 12, "feet"),
  20726. weight: math.unit(8.5, "tonnes"),
  20727. preyCapacity: math.unit(36, "people"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/goldeneye/side.svg",
  20731. extra: 1139/741,
  20732. bottom: 98/1237
  20733. }
  20734. },
  20735. front: {
  20736. height: math.unit(5.1, "feet"),
  20737. weight: math.unit(8.5, "tonnes"),
  20738. preyCapacity: math.unit(36, "people"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/goldeneye/front.svg",
  20742. extra: 635/365,
  20743. bottom: 598/1233
  20744. }
  20745. },
  20746. maw: {
  20747. height: math.unit(6.6, "feet"),
  20748. name: "Maw",
  20749. image: {
  20750. source: "./media/characters/goldeneye/maw.svg"
  20751. }
  20752. },
  20753. headFront: {
  20754. height: math.unit(8, "feet"),
  20755. name: "Head (Front)",
  20756. image: {
  20757. source: "./media/characters/goldeneye/head-front.svg"
  20758. }
  20759. },
  20760. headSide: {
  20761. height: math.unit(6, "feet"),
  20762. name: "Head (Side)",
  20763. image: {
  20764. source: "./media/characters/goldeneye/head-side.svg"
  20765. }
  20766. },
  20767. headBack: {
  20768. height: math.unit(8, "feet"),
  20769. name: "Head (Back)",
  20770. image: {
  20771. source: "./media/characters/goldeneye/head-back.svg"
  20772. }
  20773. },
  20774. paw: {
  20775. height: math.unit(3.4, "feet"),
  20776. name: "Paw",
  20777. image: {
  20778. source: "./media/characters/goldeneye/paw.svg"
  20779. }
  20780. },
  20781. toering: {
  20782. height: math.unit(0.45, "feet"),
  20783. name: "Toering",
  20784. image: {
  20785. source: "./media/characters/goldeneye/toering.svg"
  20786. }
  20787. },
  20788. eyes: {
  20789. height: math.unit(0.5, "feet"),
  20790. name: "Eyes",
  20791. image: {
  20792. source: "./media/characters/goldeneye/eyes.svg"
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(13 + 1 / 12, "feet"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20806. {
  20807. front: {
  20808. height: math.unit(6 + 1 / 12, "feet"),
  20809. weight: math.unit(210, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/leonardo-lycheborne/front.svg",
  20813. extra: 776/723,
  20814. bottom: 34/810
  20815. }
  20816. },
  20817. side: {
  20818. height: math.unit(6 + 1 / 12, "feet"),
  20819. weight: math.unit(210, "lb"),
  20820. name: "Side",
  20821. image: {
  20822. source: "./media/characters/leonardo-lycheborne/side.svg",
  20823. extra: 780/728,
  20824. bottom: 12/792
  20825. }
  20826. },
  20827. back: {
  20828. height: math.unit(6 + 1 / 12, "feet"),
  20829. weight: math.unit(210, "lb"),
  20830. name: "Back",
  20831. image: {
  20832. source: "./media/characters/leonardo-lycheborne/back.svg",
  20833. extra: 775/721,
  20834. bottom: 17/792
  20835. }
  20836. },
  20837. hand: {
  20838. height: math.unit(1.08, "feet"),
  20839. name: "Hand",
  20840. image: {
  20841. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20842. }
  20843. },
  20844. foot: {
  20845. height: math.unit(1.32, "feet"),
  20846. name: "Foot",
  20847. image: {
  20848. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20849. }
  20850. },
  20851. maw: {
  20852. height: math.unit(1, "feet"),
  20853. name: "Maw",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20856. }
  20857. },
  20858. were: {
  20859. height: math.unit(20, "feet"),
  20860. weight: math.unit(7800, "lb"),
  20861. name: "Were",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/were.svg",
  20864. extra: 1224/1165,
  20865. bottom: 72/1296
  20866. }
  20867. },
  20868. feral: {
  20869. height: math.unit(7.5, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Feral",
  20872. image: {
  20873. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20874. extra: 797/702,
  20875. bottom: 139/936
  20876. }
  20877. },
  20878. taur: {
  20879. height: math.unit(11, "feet"),
  20880. weight: math.unit(3300, "lb"),
  20881. name: "Taur",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20884. extra: 1271/1197,
  20885. bottom: 47/1318
  20886. }
  20887. },
  20888. barghest: {
  20889. height: math.unit(11, "feet"),
  20890. weight: math.unit(1300, "lb"),
  20891. name: "Barghest",
  20892. image: {
  20893. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20894. extra: 1291/1204,
  20895. bottom: 37/1328
  20896. }
  20897. },
  20898. dick: {
  20899. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20900. name: "Dick",
  20901. image: {
  20902. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20903. }
  20904. },
  20905. dickWere: {
  20906. height: math.unit((20) / 3.8, "feet"),
  20907. name: "Dick (Were)",
  20908. image: {
  20909. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(6 + 1 / 12, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(10, "feet"),
  20926. weight: math.unit(350, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/jet/front.svg",
  20930. extra: 2050 / 1980,
  20931. bottom: 0.013
  20932. }
  20933. },
  20934. back: {
  20935. height: math.unit(10, "feet"),
  20936. weight: math.unit(350, "lb"),
  20937. name: "Back",
  20938. image: {
  20939. source: "./media/characters/jet/back.svg",
  20940. extra: 2050 / 1980,
  20941. bottom: 0.013
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Micro",
  20948. height: math.unit(6, "inches")
  20949. },
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(10, "feet"),
  20953. default: true
  20954. },
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(100, "feet")
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(15, "feet"),
  20966. weight: math.unit(2800, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/tanarath/front.svg",
  20970. extra: 2392 / 2220,
  20971. bottom: 0.03
  20972. }
  20973. },
  20974. back: {
  20975. height: math.unit(15, "feet"),
  20976. weight: math.unit(2800, "lb"),
  20977. name: "Back",
  20978. image: {
  20979. source: "./media/characters/tanarath/back.svg",
  20980. extra: 2392 / 2220,
  20981. bottom: 0.03
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(15, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(7 + 1 / 12, "feet"),
  20998. weight: math.unit(175, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/patty-cattybatty/front.svg",
  21002. extra: 908 / 874,
  21003. bottom: 0.025
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Micro",
  21010. height: math.unit(1, "inch")
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(7 + 1 / 12, "feet")
  21015. },
  21016. {
  21017. name: "Mini Macro",
  21018. height: math.unit(155, "feet")
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(1077, "feet")
  21023. },
  21024. {
  21025. name: "Mega Macro",
  21026. height: math.unit(47650, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Giga Macro",
  21031. height: math.unit(440, "miles")
  21032. },
  21033. {
  21034. name: "Tera Macro",
  21035. height: math.unit(8700, "miles")
  21036. },
  21037. {
  21038. name: "Planetary Macro",
  21039. height: math.unit(32700, "miles")
  21040. },
  21041. {
  21042. name: "Solar Macro",
  21043. height: math.unit(550000, "miles")
  21044. },
  21045. {
  21046. name: "Celestial Macro",
  21047. height: math.unit(2.5, "AU")
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(4 + 5 / 12, "feet"),
  21056. weight: math.unit(90, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/cappu/front.svg",
  21060. extra: 1247 / 1152,
  21061. bottom: 0.012
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(4 + 5 / 12, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21075. {
  21076. frontDressed: {
  21077. height: math.unit(70, "cm"),
  21078. weight: math.unit(6, "kg"),
  21079. name: "Front (Dressed)",
  21080. image: {
  21081. source: "./media/characters/sebi/front-dressed.svg",
  21082. extra: 713.5 / 686.5,
  21083. bottom: 0.003
  21084. }
  21085. },
  21086. front: {
  21087. height: math.unit(70, "cm"),
  21088. weight: math.unit(5, "kg"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/sebi/front.svg",
  21092. extra: 713.5 / 686.5,
  21093. bottom: 0.003
  21094. }
  21095. }
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(70, "cm"),
  21101. default: true
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(8, "meters")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(6, "feet"),
  21114. weight: math.unit(150, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/typhek/front.svg",
  21118. extra: 1948 / 1929,
  21119. bottom: 0.025
  21120. }
  21121. },
  21122. side: {
  21123. height: math.unit(6, "feet"),
  21124. weight: math.unit(150, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/typhek/side.svg",
  21128. extra: 2034 / 2010,
  21129. bottom: 0.003
  21130. }
  21131. },
  21132. back: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Back",
  21136. image: {
  21137. source: "./media/characters/typhek/back.svg",
  21138. extra: 2005 / 1978,
  21139. bottom: 0.004
  21140. }
  21141. },
  21142. palm: {
  21143. height: math.unit(1.2, "feet"),
  21144. name: "Palm",
  21145. image: {
  21146. source: "./media/characters/typhek/palm.svg"
  21147. }
  21148. },
  21149. fist: {
  21150. height: math.unit(1.1, "feet"),
  21151. name: "Fist",
  21152. image: {
  21153. source: "./media/characters/typhek/fist.svg"
  21154. }
  21155. },
  21156. foot: {
  21157. height: math.unit(1.57, "feet"),
  21158. name: "Foot",
  21159. image: {
  21160. source: "./media/characters/typhek/foot.svg"
  21161. }
  21162. },
  21163. sole: {
  21164. height: math.unit(2.05, "feet"),
  21165. name: "Sole",
  21166. image: {
  21167. source: "./media/characters/typhek/sole.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(40, "stories"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Megamacro",
  21179. height: math.unit(1, "mile")
  21180. },
  21181. {
  21182. name: "Gigamacro",
  21183. height: math.unit(4000, "solarradii")
  21184. },
  21185. {
  21186. name: "Universal",
  21187. height: math.unit(1.1, "universes")
  21188. }
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21193. {
  21194. side: {
  21195. height: math.unit(5 + 7 / 12, "feet"),
  21196. weight: math.unit(150, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/kassy/side.svg",
  21200. extra: 1280 / 1225,
  21201. bottom: 0.002
  21202. }
  21203. },
  21204. front: {
  21205. height: math.unit(5 + 7 / 12, "feet"),
  21206. weight: math.unit(150, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/kassy/front.svg",
  21210. extra: 1280 / 1225,
  21211. bottom: 0.025
  21212. }
  21213. },
  21214. back: {
  21215. height: math.unit(5 + 7 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Back",
  21218. image: {
  21219. source: "./media/characters/kassy/back.svg",
  21220. extra: 1280 / 1225,
  21221. bottom: 0.002
  21222. }
  21223. },
  21224. foot: {
  21225. height: math.unit(1.266, "feet"),
  21226. name: "Foot",
  21227. image: {
  21228. source: "./media/characters/kassy/foot.svg"
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Normal",
  21235. height: math.unit(5 + 7 / 12, "feet")
  21236. },
  21237. {
  21238. name: "Macro",
  21239. height: math.unit(137, "feet"),
  21240. default: true
  21241. },
  21242. {
  21243. name: "Megamacro",
  21244. height: math.unit(1, "mile")
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(6 + 1 / 12, "feet"),
  21253. weight: math.unit(200, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/neil/front.svg",
  21257. extra: 1326 / 1250,
  21258. bottom: 0.023
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(6 + 1 / 12, "feet"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(200, "feet")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5 + 9 / 12, "feet"),
  21279. weight: math.unit(190, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/atticus/front.svg",
  21283. extra: 2934 / 2785,
  21284. bottom: 0.025
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(5 + 9 / 12, "feet"),
  21292. default: true
  21293. },
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(180, "feet")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21302. {
  21303. side: {
  21304. height: math.unit(9, "feet"),
  21305. weight: math.unit(650, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/milo/side.svg",
  21309. extra: 2644 / 2310,
  21310. bottom: 0.032
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(9, "feet"),
  21318. default: true
  21319. },
  21320. {
  21321. name: "Macro",
  21322. height: math.unit(300, "feet")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21328. {
  21329. side: {
  21330. height: math.unit(8, "meters"),
  21331. weight: math.unit(90000, "kg"),
  21332. name: "Side",
  21333. image: {
  21334. source: "./media/characters/ijzer/side.svg",
  21335. extra: 2756 / 1600,
  21336. bottom: 0.01
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Small",
  21343. height: math.unit(3, "meters")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(8, "meters"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Normal+",
  21352. height: math.unit(10, "meters")
  21353. },
  21354. {
  21355. name: "Bigger",
  21356. height: math.unit(24, "meters")
  21357. },
  21358. {
  21359. name: "Huge",
  21360. height: math.unit(80, "meters")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(6 + 2 / 12, "feet"),
  21369. weight: math.unit(153, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/luca-cervicum/front.svg",
  21373. extra: 370 / 327,
  21374. bottom: 0.015
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(6 + 2 / 12, "feet"),
  21379. weight: math.unit(153, "lb"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/luca-cervicum/back.svg",
  21383. extra: 367 / 333,
  21384. bottom: 0.005
  21385. }
  21386. },
  21387. frontGear: {
  21388. height: math.unit(6 + 2 / 12, "feet"),
  21389. weight: math.unit(173, "lb"),
  21390. name: "Front (Gear)",
  21391. image: {
  21392. source: "./media/characters/luca-cervicum/front-gear.svg",
  21393. extra: 377 / 333,
  21394. bottom: 0.006
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(6 + 2 / 12, "feet"),
  21402. default: true
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21408. {
  21409. front: {
  21410. height: math.unit(6 + 1 / 12, "feet"),
  21411. weight: math.unit(304, "lb"),
  21412. name: "Front",
  21413. image: {
  21414. source: "./media/characters/oliver/front.svg",
  21415. extra: 157 / 143,
  21416. bottom: 0.08
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(6 + 1 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. weight: math.unit(140, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/shane/front.svg",
  21437. extra: 304 / 289,
  21438. bottom: 0.005
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 7 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 9 / 12, "feet"),
  21455. weight: math.unit(178, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/shin/front.svg",
  21459. extra: 159 / 151,
  21460. bottom: 0.015
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(5 + 9 / 12, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(5 + 10 / 12, "feet"),
  21477. weight: math.unit(168, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/xerxes/front.svg",
  21481. extra: 282 / 260,
  21482. bottom: 0.045
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(5 + 10 / 12, "feet"),
  21490. default: true
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(6 + 7 / 12, "feet"),
  21499. weight: math.unit(208, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/chaska/front.svg",
  21503. extra: 332 / 319,
  21504. bottom: 0.015
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(6 + 7 / 12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21518. {
  21519. front: {
  21520. height: math.unit(5 + 8 / 12, "feet"),
  21521. weight: math.unit(208, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/enuk/front.svg",
  21525. extra: 437 / 406,
  21526. bottom: 0.02
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(5 + 8 / 12, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(5 + 10 / 12, "feet"),
  21543. weight: math.unit(252, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/bruun/front.svg",
  21547. extra: 197 / 187,
  21548. bottom: 0.012
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Normal",
  21555. height: math.unit(5 + 10 / 12, "feet"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(6 + 10 / 12, "feet"),
  21565. weight: math.unit(255, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/alexeev/front.svg",
  21569. extra: 213 / 200,
  21570. bottom: 0.05
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(6 + 10 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(2 + 8 / 12, "feet"),
  21587. weight: math.unit(22, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/evelyn/front.svg",
  21591. extra: 208 / 180
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(2 + 8 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 9 / 12, "feet"),
  21608. weight: math.unit(139, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/inca/front.svg",
  21612. extra: 294 / 291,
  21613. bottom: 0.03
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 9 / 12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(6 + 3 / 12, "feet"),
  21630. weight: math.unit(185, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/mera/front.svg",
  21634. extra: 291 / 277,
  21635. bottom: 0.03
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(6 + 3 / 12, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(6 + 7 / 12, "feet"),
  21652. weight: math.unit(160, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/ceres/front.svg",
  21656. extra: 1023 / 950,
  21657. bottom: 0.027
  21658. }
  21659. },
  21660. back: {
  21661. height: math.unit(6 + 7 / 12, "feet"),
  21662. weight: math.unit(160, "lb"),
  21663. name: "Back",
  21664. image: {
  21665. source: "./media/characters/ceres/back.svg",
  21666. extra: 1023 / 950
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 7 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(5 + 10 / 12, "feet"),
  21683. weight: math.unit(150, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/kris/front.svg",
  21687. extra: 885 / 803,
  21688. bottom: 0.03
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 10 / 12, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(7, "feet"),
  21705. weight: math.unit(120, "kg"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/taluthus/front.svg",
  21709. extra: 903 / 833,
  21710. bottom: 0.015
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(7, "feet"),
  21718. default: true
  21719. },
  21720. {
  21721. name: "Macro",
  21722. height: math.unit(300, "feet")
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(5 + 9 / 12, "feet"),
  21731. weight: math.unit(145, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/dawn/front.svg",
  21735. extra: 2094 / 2016,
  21736. bottom: 0.025
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 9 / 12, "feet"),
  21741. weight: math.unit(160, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/dawn/back.svg",
  21745. extra: 2112 / 2080,
  21746. bottom: 0.005
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(6 + 7 / 12, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21760. {
  21761. anthro: {
  21762. height: math.unit(8 + 3 / 12, "feet"),
  21763. weight: math.unit(450, "lb"),
  21764. name: "Anthro",
  21765. image: {
  21766. source: "./media/characters/arador/anthro.svg",
  21767. extra: 1835 / 1718,
  21768. bottom: 0.025
  21769. }
  21770. },
  21771. feral: {
  21772. height: math.unit(4, "feet"),
  21773. weight: math.unit(200, "lb"),
  21774. name: "Feral",
  21775. image: {
  21776. source: "./media/characters/arador/feral.svg",
  21777. extra: 1683 / 1514,
  21778. bottom: 0.07
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(8 + 3 / 12, "feet")
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(82.5, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 10 / 12, "feet"),
  21799. weight: math.unit(125, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/dharsi/front.svg",
  21803. extra: 716 / 630,
  21804. bottom: 0.035
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Nano",
  21811. height: math.unit(100, "nm")
  21812. },
  21813. {
  21814. name: "Micro",
  21815. height: math.unit(2, "inches")
  21816. },
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 10 / 12, "feet"),
  21820. default: true
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(1000, "feet")
  21825. },
  21826. {
  21827. name: "Megamacro",
  21828. height: math.unit(10, "miles")
  21829. },
  21830. {
  21831. name: "Gigamacro",
  21832. height: math.unit(3000, "miles")
  21833. },
  21834. {
  21835. name: "Teramacro",
  21836. height: math.unit(500000, "miles")
  21837. },
  21838. {
  21839. name: "Teramacro+",
  21840. height: math.unit(30, "galaxies")
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(150, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/deathy/front.svg",
  21853. extra: 1552 / 1463,
  21854. bottom: 0.025
  21855. }
  21856. },
  21857. side: {
  21858. height: math.unit(6, "feet"),
  21859. weight: math.unit(150, "lb"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/deathy/side.svg",
  21863. extra: 1604 / 1455,
  21864. bottom: 0.025
  21865. }
  21866. },
  21867. back: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Back",
  21871. image: {
  21872. source: "./media/characters/deathy/back.svg",
  21873. extra: 1580 / 1463,
  21874. bottom: 0.005
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Micro",
  21881. height: math.unit(5, "millimeters")
  21882. },
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(6 + 5 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21892. {
  21893. front: {
  21894. height: math.unit(16, "feet"),
  21895. weight: math.unit(4000, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/juniper/front.svg",
  21899. bottom: 0.04
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(16, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(6, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/hipster/front.svg",
  21920. extra: 1312 / 1209,
  21921. bottom: 0.025
  21922. }
  21923. },
  21924. back: {
  21925. height: math.unit(6, "feet"),
  21926. weight: math.unit(150, "lb"),
  21927. name: "Back",
  21928. image: {
  21929. source: "./media/characters/hipster/back.svg",
  21930. extra: 1281 / 1196,
  21931. bottom: 0.01
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Micro",
  21938. height: math.unit(1, "mm")
  21939. },
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(4, "inches"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(500, "feet")
  21948. },
  21949. {
  21950. name: "Megamacro",
  21951. height: math.unit(1000, "miles")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(6, "feet"),
  21960. weight: math.unit(150, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/tendirmuldr/front.svg",
  21964. extra: 1878 / 1772,
  21965. bottom: 0.015
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(1500, "miles"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21979. {
  21980. front: {
  21981. height: math.unit(14, "feet"),
  21982. weight: math.unit(12000, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/mort/front.svg",
  21986. extra: 365 / 318,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. side: {
  21991. height: math.unit(14, "feet"),
  21992. weight: math.unit(12000, "lb"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/mort/side.svg",
  21996. extra: 365 / 318,
  21997. bottom: 0.052
  21998. },
  21999. default: true
  22000. },
  22001. back: {
  22002. height: math.unit(14, "feet"),
  22003. weight: math.unit(12000, "lb"),
  22004. name: "Back",
  22005. image: {
  22006. source: "./media/characters/mort/back.svg",
  22007. extra: 371 / 332,
  22008. bottom: 0.18
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(14, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22022. {
  22023. front: {
  22024. height: math.unit(8, "feet"),
  22025. weight: math.unit(1, "ton"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/lycoa/front.svg",
  22029. extra: 1836/1728,
  22030. bottom: 81/1917
  22031. }
  22032. },
  22033. back: {
  22034. height: math.unit(8, "feet"),
  22035. weight: math.unit(1, "ton"),
  22036. name: "Back",
  22037. image: {
  22038. source: "./media/characters/lycoa/back.svg",
  22039. extra: 1785/1720,
  22040. bottom: 91/1876
  22041. }
  22042. },
  22043. head: {
  22044. height: math.unit(1.6243, "feet"),
  22045. name: "Head",
  22046. image: {
  22047. source: "./media/characters/lycoa/head.svg",
  22048. extra: 1011/782,
  22049. bottom: 0/1011
  22050. }
  22051. },
  22052. tailmaw: {
  22053. height: math.unit(1.9, "feet"),
  22054. name: "Tailmaw",
  22055. image: {
  22056. source: "./media/characters/lycoa/tailmaw.svg"
  22057. }
  22058. },
  22059. tentacles: {
  22060. height: math.unit(2.1, "feet"),
  22061. name: "Tentacles",
  22062. image: {
  22063. source: "./media/characters/lycoa/tentacles.svg"
  22064. }
  22065. },
  22066. dick: {
  22067. height: math.unit(1.73, "feet"),
  22068. name: "Dick",
  22069. image: {
  22070. source: "./media/characters/lycoa/dick.svg"
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(8, "feet"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Macro",
  22082. height: math.unit(30, "feet")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22088. {
  22089. front: {
  22090. height: math.unit(4 + 2 / 12, "feet"),
  22091. weight: math.unit(70, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/naldara/front.svg",
  22095. extra: 1664/1387,
  22096. bottom: 81/1745
  22097. },
  22098. form: "anthro",
  22099. default: true
  22100. },
  22101. naga: {
  22102. height: math.unit(20, "feet"),
  22103. weight: math.unit(15000, "kg"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/naldara/naga.svg",
  22107. extra: 1590/1396,
  22108. bottom: 285/1875
  22109. },
  22110. form: "naga",
  22111. default: true
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(4 + 2 / 12, "feet"),
  22118. form: "anthro",
  22119. default: true
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(20, "feet"),
  22124. form: "naga",
  22125. default: true
  22126. },
  22127. ],
  22128. {
  22129. "anthro": {
  22130. name: "Anthro",
  22131. default: true
  22132. },
  22133. "naga": {
  22134. name: "Naga"
  22135. }
  22136. }
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(13 + 7 / 12, "feet"),
  22143. weight: math.unit(1500, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/briar/front.svg",
  22147. extra: 1223/1157,
  22148. bottom: 123/1346
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(13 + 7 / 12, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22162. {
  22163. side: {
  22164. height: math.unit(16, "feet"),
  22165. weight: math.unit(500, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/vanguard/side.svg",
  22169. extra: 1022/914,
  22170. bottom: 30/1052
  22171. }
  22172. },
  22173. sideAlt: {
  22174. height: math.unit(10, "feet"),
  22175. weight: math.unit(500, "lb"),
  22176. name: "Side (Alt)",
  22177. image: {
  22178. source: "./media/characters/vanguard/side-alt.svg",
  22179. extra: 502 / 425,
  22180. bottom: 0.087
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Normal",
  22187. height: math.unit(17.71, "feet"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(7.5, "feet"),
  22197. weight: math.unit(2, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/artemis/work-safe-front.svg",
  22201. extra: 1192 / 1075,
  22202. bottom: 0.07
  22203. },
  22204. form: "work-safe",
  22205. default: true
  22206. },
  22207. frontNsfw: {
  22208. height: math.unit(7.5, "feet"),
  22209. weight: math.unit(2, "lb"),
  22210. name: "Front",
  22211. image: {
  22212. source: "./media/characters/artemis/calibrating-front.svg",
  22213. extra: 1192 / 1075,
  22214. bottom: 0.07
  22215. },
  22216. form: "calibrating",
  22217. default: true
  22218. },
  22219. frontNsfwer: {
  22220. height: math.unit(7.5, "feet"),
  22221. weight: math.unit(2, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/artemis/oversize-load-front.svg",
  22225. extra: 1192 / 1075,
  22226. bottom: 0.07
  22227. },
  22228. form: "oversize-load",
  22229. default: true
  22230. },
  22231. side: {
  22232. height: math.unit(7.5, "feet"),
  22233. weight: math.unit(2, "lb"),
  22234. name: "Side",
  22235. image: {
  22236. source: "./media/characters/artemis/work-safe-side.svg",
  22237. extra: 1192 / 1075,
  22238. bottom: 0.07
  22239. },
  22240. form: "work-safe"
  22241. },
  22242. sideNsfw: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/artemis/calibrating-side.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "calibrating"
  22252. },
  22253. sideNsfwer: {
  22254. height: math.unit(7.5, "feet"),
  22255. weight: math.unit(2, "lb"),
  22256. name: "Side",
  22257. image: {
  22258. source: "./media/characters/artemis/oversize-load-side.svg",
  22259. extra: 1192 / 1075,
  22260. bottom: 0.07
  22261. },
  22262. form: "oversize-load"
  22263. },
  22264. maw: {
  22265. height: math.unit(1.1, "feet"),
  22266. name: "Maw",
  22267. image: {
  22268. source: "./media/characters/artemis/maw.svg"
  22269. },
  22270. form: "work-safe"
  22271. },
  22272. stomach: {
  22273. height: math.unit(0.95, "feet"),
  22274. name: "Stomach",
  22275. image: {
  22276. source: "./media/characters/artemis/stomach.svg"
  22277. },
  22278. form: "work-safe"
  22279. },
  22280. dickCanine: {
  22281. height: math.unit(1, "feet"),
  22282. name: "Dick (Canine)",
  22283. image: {
  22284. source: "./media/characters/artemis/dick-canine.svg"
  22285. },
  22286. form: "calibrating"
  22287. },
  22288. dickEquine: {
  22289. height: math.unit(0.85, "feet"),
  22290. name: "Dick (Equine)",
  22291. image: {
  22292. source: "./media/characters/artemis/dick-equine.svg"
  22293. },
  22294. form: "calibrating"
  22295. },
  22296. dickExotic: {
  22297. height: math.unit(0.85, "feet"),
  22298. name: "Dick (Exotic)",
  22299. image: {
  22300. source: "./media/characters/artemis/dick-exotic.svg"
  22301. },
  22302. form: "calibrating"
  22303. },
  22304. dickCanineBigger: {
  22305. height: math.unit(1 * 1.33, "feet"),
  22306. name: "Dick (Canine)",
  22307. image: {
  22308. source: "./media/characters/artemis/dick-canine.svg"
  22309. },
  22310. form: "oversize-load"
  22311. },
  22312. dickEquineBigger: {
  22313. height: math.unit(0.85 * 1.33, "feet"),
  22314. name: "Dick (Equine)",
  22315. image: {
  22316. source: "./media/characters/artemis/dick-equine.svg"
  22317. },
  22318. form: "oversize-load"
  22319. },
  22320. dickExoticBigger: {
  22321. height: math.unit(0.85 * 1.33, "feet"),
  22322. name: "Dick (Exotic)",
  22323. image: {
  22324. source: "./media/characters/artemis/dick-exotic.svg"
  22325. },
  22326. form: "oversize-load"
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(7.5, "feet"),
  22333. form: "work-safe",
  22334. default: true
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(7.5, "feet"),
  22339. form: "calibrating",
  22340. default: true
  22341. },
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(7.5, "feet"),
  22345. form: "oversize-load",
  22346. default: true
  22347. },
  22348. {
  22349. name: "Enlarged",
  22350. height: math.unit(12, "feet"),
  22351. form: "work-safe",
  22352. },
  22353. {
  22354. name: "Enlarged",
  22355. height: math.unit(12, "feet"),
  22356. form: "calibrating",
  22357. },
  22358. {
  22359. name: "Enlarged",
  22360. height: math.unit(12, "feet"),
  22361. form: "oversize-load",
  22362. },
  22363. ],
  22364. {
  22365. "work-safe": {
  22366. name: "Work-Safe",
  22367. default: true
  22368. },
  22369. "calibrating": {
  22370. name: "Calibrating"
  22371. },
  22372. "oversize-load": {
  22373. name: "Oversize Load"
  22374. }
  22375. }
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 3 / 12, "feet"),
  22382. weight: math.unit(160, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/kira/front.svg",
  22386. extra: 906 / 786,
  22387. bottom: 0.01
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(5 + 3 / 12, "feet"),
  22392. weight: math.unit(160, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/kira/back.svg",
  22396. extra: 882 / 757,
  22397. bottom: 0.005
  22398. }
  22399. },
  22400. frontDressed: {
  22401. height: math.unit(5 + 3 / 12, "feet"),
  22402. weight: math.unit(160, "lb"),
  22403. name: "Front (Dressed)",
  22404. image: {
  22405. source: "./media/characters/kira/front-dressed.svg",
  22406. extra: 906 / 786,
  22407. bottom: 0.01
  22408. }
  22409. },
  22410. beans: {
  22411. height: math.unit(0.92, "feet"),
  22412. name: "Beans",
  22413. image: {
  22414. source: "./media/characters/kira/beans.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(5 + 3 / 12, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(5 + 4 / 12, "feet"),
  22431. weight: math.unit(145, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/scramble/front.svg",
  22435. extra: 763 / 727,
  22436. bottom: 0.05
  22437. }
  22438. },
  22439. back: {
  22440. height: math.unit(5 + 4 / 12, "feet"),
  22441. weight: math.unit(145, "lb"),
  22442. name: "Back",
  22443. image: {
  22444. source: "./media/characters/scramble/back.svg",
  22445. extra: 826 / 737,
  22446. bottom: 0.002
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(5 + 4 / 12, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22460. {
  22461. side: {
  22462. height: math.unit(6 + 2 / 12, "feet"),
  22463. weight: math.unit(190, "lb"),
  22464. name: "Side",
  22465. image: {
  22466. source: "./media/characters/biscuit/side.svg",
  22467. extra: 858 / 791,
  22468. bottom: 0.044
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(6 + 2 / 12, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(5 + 2 / 12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/poffin/front.svg",
  22489. extra: 786 / 680,
  22490. bottom: 0.005
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(5 + 2 / 12, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(6 + 3 / 12, "feet"),
  22507. weight: math.unit(519, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/dhari/front.svg",
  22511. extra: 1048 / 946,
  22512. bottom: 0.015
  22513. }
  22514. },
  22515. back: {
  22516. height: math.unit(6 + 3 / 12, "feet"),
  22517. weight: math.unit(519, "lb"),
  22518. name: "Back",
  22519. image: {
  22520. source: "./media/characters/dhari/back.svg",
  22521. extra: 1048 / 931,
  22522. bottom: 0.005
  22523. }
  22524. },
  22525. frontDressed: {
  22526. height: math.unit(6 + 3 / 12, "feet"),
  22527. weight: math.unit(519, "lb"),
  22528. name: "Front (Dressed)",
  22529. image: {
  22530. source: "./media/characters/dhari/front-dressed.svg",
  22531. extra: 1713 / 1546,
  22532. bottom: 0.02
  22533. }
  22534. },
  22535. backDressed: {
  22536. height: math.unit(6 + 3 / 12, "feet"),
  22537. weight: math.unit(519, "lb"),
  22538. name: "Back (Dressed)",
  22539. image: {
  22540. source: "./media/characters/dhari/back-dressed.svg",
  22541. extra: 1699 / 1537,
  22542. bottom: 0.01
  22543. }
  22544. },
  22545. maw: {
  22546. height: math.unit(0.95, "feet"),
  22547. name: "Maw",
  22548. image: {
  22549. source: "./media/characters/dhari/maw.svg"
  22550. }
  22551. },
  22552. wereFront: {
  22553. height: math.unit(12 + 8 / 12, "feet"),
  22554. weight: math.unit(4000, "lb"),
  22555. name: "Front (Were)",
  22556. image: {
  22557. source: "./media/characters/dhari/were-front.svg",
  22558. extra: 1065 / 969,
  22559. bottom: 0.015
  22560. }
  22561. },
  22562. wereBack: {
  22563. height: math.unit(12 + 8 / 12, "feet"),
  22564. weight: math.unit(4000, "lb"),
  22565. name: "Back (Were)",
  22566. image: {
  22567. source: "./media/characters/dhari/were-back.svg",
  22568. extra: 1065 / 969,
  22569. bottom: 0.012
  22570. }
  22571. },
  22572. wereMaw: {
  22573. height: math.unit(0.625, "meters"),
  22574. name: "Maw (Were)",
  22575. image: {
  22576. source: "./media/characters/dhari/were-maw.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(6 + 3 / 12, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22590. {
  22591. anthro: {
  22592. height: math.unit(5 + 7 / 12, "feet"),
  22593. weight: math.unit(175, "lb"),
  22594. name: "Anthro",
  22595. image: {
  22596. source: "./media/characters/rena-dyne/anthro.svg",
  22597. extra: 1849 / 1785,
  22598. bottom: 0.005
  22599. }
  22600. },
  22601. taur: {
  22602. height: math.unit(15 + 6 / 12, "feet"),
  22603. weight: math.unit(8000, "lb"),
  22604. name: "Taur",
  22605. image: {
  22606. source: "./media/characters/rena-dyne/taur.svg",
  22607. extra: 2315 / 2234,
  22608. bottom: 0.033
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(5 + 7 / 12, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(8, "feet"),
  22625. weight: math.unit(600, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/weremeep/front.svg",
  22629. extra: 970/849,
  22630. bottom: 7/977
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Lorg",
  22642. height: math.unit(12, "feet")
  22643. },
  22644. {
  22645. name: "Oh Lawd She Comin'",
  22646. height: math.unit(20, "feet")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22652. {
  22653. front: {
  22654. height: math.unit(4, "feet"),
  22655. weight: math.unit(90, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/reza/front.svg",
  22659. extra: 1183 / 1111,
  22660. bottom: 0.017
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(4, "feet"),
  22665. weight: math.unit(90, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/reza/back.svg",
  22669. extra: 1183 / 1111,
  22670. bottom: 0.01
  22671. }
  22672. },
  22673. drake: {
  22674. height: math.unit(30, "feet"),
  22675. weight: math.unit(246960, "lb"),
  22676. name: "Drake",
  22677. image: {
  22678. source: "./media/characters/reza/drake.svg",
  22679. extra: 2350 / 2024,
  22680. bottom: 60.7 / 2403
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(4, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22694. {
  22695. side: {
  22696. height: math.unit(15, "feet"),
  22697. weight: math.unit(14, "tons"),
  22698. name: "Side",
  22699. image: {
  22700. source: "./media/characters/athea/side.svg",
  22701. extra: 960 / 540,
  22702. bottom: 0.003
  22703. }
  22704. },
  22705. sitting: {
  22706. height: math.unit(6 * 2.85, "feet"),
  22707. weight: math.unit(14, "tons"),
  22708. name: "Sitting",
  22709. image: {
  22710. source: "./media/characters/athea/sitting.svg",
  22711. extra: 621 / 581,
  22712. bottom: 0.075
  22713. }
  22714. },
  22715. maw: {
  22716. height: math.unit(7.59498031496063, "feet"),
  22717. name: "Maw",
  22718. image: {
  22719. source: "./media/characters/athea/maw.svg"
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Lap Cat",
  22726. height: math.unit(2.5, "feet")
  22727. },
  22728. {
  22729. name: "Minimacro",
  22730. height: math.unit(15, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(120, "feet")
  22736. },
  22737. {
  22738. name: "Macro+",
  22739. height: math.unit(640, "feet")
  22740. },
  22741. {
  22742. name: "Colossus",
  22743. height: math.unit(2.2, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(8 + 8 / 12, "feet"),
  22752. weight: math.unit(130, "kg"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/seroko/front.svg",
  22756. extra: 1385 / 1280,
  22757. bottom: 0.025
  22758. }
  22759. },
  22760. back: {
  22761. height: math.unit(8 + 8 / 12, "feet"),
  22762. weight: math.unit(130, "kg"),
  22763. name: "Back",
  22764. image: {
  22765. source: "./media/characters/seroko/back.svg",
  22766. extra: 1369 / 1238,
  22767. bottom: 0.018
  22768. }
  22769. },
  22770. frontDressed: {
  22771. height: math.unit(8 + 8 / 12, "feet"),
  22772. weight: math.unit(130, "kg"),
  22773. name: "Front (Dressed)",
  22774. image: {
  22775. source: "./media/characters/seroko/front-dressed.svg",
  22776. extra: 1366 / 1275,
  22777. bottom: 0.03
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(8 + 8 / 12, "feet"),
  22785. default: true
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(5.5, "feet"),
  22794. weight: math.unit(160, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/quatzi/front.svg",
  22798. extra: 2346 / 2242,
  22799. bottom: 0.015
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(5.5, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Big",
  22811. height: math.unit(7.7, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(5 + 11 / 12, "feet"),
  22820. weight: math.unit(180, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/sen/front.svg",
  22824. extra: 1321 / 1254,
  22825. bottom: 0.015
  22826. }
  22827. },
  22828. side: {
  22829. height: math.unit(5 + 11 / 12, "feet"),
  22830. weight: math.unit(180, "lb"),
  22831. name: "Side",
  22832. image: {
  22833. source: "./media/characters/sen/side.svg",
  22834. extra: 1321 / 1254,
  22835. bottom: 0.007
  22836. }
  22837. },
  22838. back: {
  22839. height: math.unit(5 + 11 / 12, "feet"),
  22840. weight: math.unit(180, "lb"),
  22841. name: "Back",
  22842. image: {
  22843. source: "./media/characters/sen/back.svg",
  22844. extra: 1321 / 1254
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(5 + 11 / 12, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(166.6, "cm"),
  22861. weight: math.unit(66.6, "kg"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/fruity/front.svg",
  22865. extra: 1510 / 1386,
  22866. bottom: 0.04
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(166.6, "cm"),
  22871. weight: math.unit(66.6, "lb"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/fruity/back.svg",
  22875. extra: 1563 / 1435,
  22876. bottom: 0.005
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(166.6, "cm"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Demonic",
  22888. height: math.unit(166.6, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22894. {
  22895. side: {
  22896. height: math.unit(10, "feet"),
  22897. weight: math.unit(500, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/zost/side.svg",
  22901. extra: 2870/2533,
  22902. bottom: 252/3122
  22903. }
  22904. },
  22905. mawFront: {
  22906. height: math.unit(1.08, "meters"),
  22907. name: "Maw (Front)",
  22908. image: {
  22909. source: "./media/characters/zost/maw-front.svg"
  22910. }
  22911. },
  22912. mawSide: {
  22913. height: math.unit(2.66, "feet"),
  22914. name: "Maw (Side)",
  22915. image: {
  22916. source: "./media/characters/zost/maw-side.svg"
  22917. }
  22918. },
  22919. wingspan: {
  22920. height: math.unit(7.4, "feet"),
  22921. name: "Wingspan",
  22922. image: {
  22923. source: "./media/characters/zost/wingspan.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(10, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(120, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/luci/front.svg",
  22944. extra: 1985 / 1884,
  22945. bottom: 0.04
  22946. }
  22947. },
  22948. back: {
  22949. height: math.unit(5 + 4 / 12, "feet"),
  22950. weight: math.unit(120, "lb"),
  22951. name: "Back",
  22952. image: {
  22953. source: "./media/characters/luci/back.svg",
  22954. extra: 1892 / 1791,
  22955. bottom: 0.002
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(5 + 4 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(1500, "feet"),
  22972. weight: math.unit(3.8e6, "tons"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/2th/front.svg",
  22976. extra: 3489 / 3350,
  22977. bottom: 0.1
  22978. }
  22979. },
  22980. foot: {
  22981. height: math.unit(461, "feet"),
  22982. name: "Foot",
  22983. image: {
  22984. source: "./media/characters/2th/foot.svg"
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "\"Micro\"",
  22991. height: math.unit(15 + 7 / 12, "feet")
  22992. },
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(1500, "feet"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Macro",
  23000. height: math.unit(5000, "feet")
  23001. },
  23002. {
  23003. name: "Megamacro",
  23004. height: math.unit(15, "miles")
  23005. },
  23006. {
  23007. name: "Gigamacro",
  23008. height: math.unit(4000, "miles")
  23009. },
  23010. {
  23011. name: "Galactic",
  23012. height: math.unit(50, "AU")
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(5 + 6 / 12, "feet"),
  23021. weight: math.unit(220, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/amethyst/front.svg",
  23025. extra: 2078 / 2040,
  23026. bottom: 0.045
  23027. }
  23028. },
  23029. back: {
  23030. height: math.unit(5 + 6 / 12, "feet"),
  23031. weight: math.unit(220, "lb"),
  23032. name: "Back",
  23033. image: {
  23034. source: "./media/characters/amethyst/back.svg",
  23035. extra: 2021 / 1989,
  23036. bottom: 0.02
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(5 + 6 / 12, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(4 + 11 / 12, "feet"),
  23053. weight: math.unit(120, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/yumi-akiyama/front.svg",
  23057. extra: 1327 / 1235,
  23058. bottom: 0.02
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(4 + 11 / 12, "feet"),
  23063. weight: math.unit(120, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/yumi-akiyama/back.svg",
  23067. extra: 1287 / 1245,
  23068. bottom: 0.002
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Galactic",
  23075. height: math.unit(50, "galaxies"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Universal",
  23080. height: math.unit(100, "universes")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23086. {
  23087. front: {
  23088. height: math.unit(8, "feet"),
  23089. weight: math.unit(500, "lb"),
  23090. name: "Front",
  23091. image: {
  23092. source: "./media/characters/rifter-yrmori/front.svg",
  23093. extra: 1180 / 1125,
  23094. bottom: 0.02
  23095. }
  23096. },
  23097. back: {
  23098. height: math.unit(8, "feet"),
  23099. weight: math.unit(500, "lb"),
  23100. name: "Back",
  23101. image: {
  23102. source: "./media/characters/rifter-yrmori/back.svg",
  23103. extra: 1190 / 1145,
  23104. bottom: 0.001
  23105. }
  23106. },
  23107. wings: {
  23108. height: math.unit(7.75, "feet"),
  23109. weight: math.unit(500, "lb"),
  23110. name: "Wings",
  23111. image: {
  23112. source: "./media/characters/rifter-yrmori/wings.svg",
  23113. extra: 1357 / 1285
  23114. }
  23115. },
  23116. maw: {
  23117. height: math.unit(0.8, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/rifter-yrmori/maw.svg"
  23121. }
  23122. },
  23123. mawfront: {
  23124. height: math.unit(1.45, "feet"),
  23125. name: "Maw (Front)",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(8, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(42, "meters")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23145. {
  23146. were: {
  23147. height: math.unit(25 + 6 / 12, "feet"),
  23148. weight: math.unit(10000, "lb"),
  23149. name: "Were",
  23150. image: {
  23151. source: "./media/characters/tahajin/were.svg",
  23152. extra: 801 / 770,
  23153. bottom: 0.042
  23154. }
  23155. },
  23156. aquatic: {
  23157. height: math.unit(6 + 4 / 12, "feet"),
  23158. weight: math.unit(160, "lb"),
  23159. name: "Aquatic",
  23160. image: {
  23161. source: "./media/characters/tahajin/aquatic.svg",
  23162. extra: 572 / 542,
  23163. bottom: 0.04
  23164. }
  23165. },
  23166. chow: {
  23167. height: math.unit(8 + 11 / 12, "feet"),
  23168. weight: math.unit(450, "lb"),
  23169. name: "Chow",
  23170. image: {
  23171. source: "./media/characters/tahajin/chow.svg",
  23172. extra: 660 / 640,
  23173. bottom: 0.015
  23174. }
  23175. },
  23176. demiNaga: {
  23177. height: math.unit(6 + 8 / 12, "feet"),
  23178. weight: math.unit(300, "lb"),
  23179. name: "Demi Naga",
  23180. image: {
  23181. source: "./media/characters/tahajin/demi-naga.svg",
  23182. extra: 643 / 615,
  23183. bottom: 0.1
  23184. }
  23185. },
  23186. data: {
  23187. height: math.unit(5, "inches"),
  23188. weight: math.unit(0.1, "lb"),
  23189. name: "Data",
  23190. image: {
  23191. source: "./media/characters/tahajin/data.svg"
  23192. }
  23193. },
  23194. fluu: {
  23195. height: math.unit(5 + 7 / 12, "feet"),
  23196. weight: math.unit(140, "lb"),
  23197. name: "Fluu",
  23198. image: {
  23199. source: "./media/characters/tahajin/fluu.svg",
  23200. extra: 628 / 592,
  23201. bottom: 0.02
  23202. }
  23203. },
  23204. starWarrior: {
  23205. height: math.unit(4 + 5 / 12, "feet"),
  23206. weight: math.unit(50, "lb"),
  23207. name: "Star Warrior",
  23208. image: {
  23209. source: "./media/characters/tahajin/star-warrior.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(25 + 6 / 12, "feet"),
  23217. default: true
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(8, "feet"),
  23226. weight: math.unit(350, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/gabira/front.svg",
  23230. extra: 1261/1154,
  23231. bottom: 51/1312
  23232. }
  23233. },
  23234. back: {
  23235. height: math.unit(8, "feet"),
  23236. weight: math.unit(350, "lb"),
  23237. name: "Back",
  23238. image: {
  23239. source: "./media/characters/gabira/back.svg",
  23240. extra: 1265/1163,
  23241. bottom: 46/1311
  23242. }
  23243. },
  23244. head: {
  23245. height: math.unit(2.85, "feet"),
  23246. name: "Head",
  23247. image: {
  23248. source: "./media/characters/gabira/head.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(8, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 3 / 12, "feet"),
  23265. weight: math.unit(137, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/sasha-katraine/front.svg",
  23269. extra: 1745/1694,
  23270. bottom: 37/1782
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 3 / 12, "feet"),
  23275. weight: math.unit(137, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/sasha-katraine/back.svg",
  23279. extra: 1776/1699,
  23280. bottom: 26/1802
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Micro",
  23287. height: math.unit(5, "inches")
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(5 + 3 / 12, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23298. {
  23299. side: {
  23300. height: math.unit(4, "inches"),
  23301. weight: math.unit(200, "grams"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/der/side.svg",
  23305. extra: 719 / 400,
  23306. bottom: 30.6 / 749.9187
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Micro",
  23313. height: math.unit(4, "inches"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23320. {
  23321. side: {
  23322. height: math.unit(30, "meters"),
  23323. weight: math.unit(700, "tonnes"),
  23324. name: "Side",
  23325. image: {
  23326. source: "./media/characters/fixerdragon/side.svg",
  23327. extra: (1293.0514 - 116.03) / 1106.86,
  23328. bottom: 116.03 / 1293.0514
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Planck",
  23335. height: math.unit(1.6e-35, "meters")
  23336. },
  23337. {
  23338. name: "Micro",
  23339. height: math.unit(0.4, "meters")
  23340. },
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(30, "meters"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Megamacro",
  23348. height: math.unit(1.2, "megameters")
  23349. },
  23350. {
  23351. name: "Teramacro",
  23352. height: math.unit(130, "terameters")
  23353. },
  23354. {
  23355. name: "Yottamacro",
  23356. height: math.unit(6200, "yottameters")
  23357. },
  23358. ]
  23359. ));
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(8, "feet"),
  23365. weight: math.unit(250, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/kite/front.svg",
  23369. extra: 2796 / 2659,
  23370. bottom: 0.002
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(8, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(360, "feet")
  23383. },
  23384. {
  23385. name: "Megamacro",
  23386. height: math.unit(1500, "feet")
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(5 + 11/12, "feet"),
  23395. weight: math.unit(170, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/poojawa-vynar/front.svg",
  23399. extra: 1735/1585,
  23400. bottom: 96/1831
  23401. }
  23402. },
  23403. back: {
  23404. height: math.unit(5 + 11/12, "feet"),
  23405. weight: math.unit(170, "lb"),
  23406. name: "Back",
  23407. image: {
  23408. source: "./media/characters/poojawa-vynar/back.svg",
  23409. extra: 1749/1607,
  23410. bottom: 28/1777
  23411. }
  23412. },
  23413. male: {
  23414. height: math.unit(5 + 11/12, "feet"),
  23415. weight: math.unit(170, "lb"),
  23416. name: "Male",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/male.svg",
  23419. extra: 1855/1713,
  23420. bottom: 63/1918
  23421. }
  23422. },
  23423. taur: {
  23424. height: math.unit(5 + 11/12, "feet"),
  23425. weight: math.unit(170, "lb"),
  23426. name: "Taur",
  23427. image: {
  23428. source: "./media/characters/poojawa-vynar/taur.svg",
  23429. extra: 1151/1059,
  23430. bottom: 356/1507
  23431. }
  23432. },
  23433. frontDressed: {
  23434. height: math.unit(5 + 11/12, "feet"),
  23435. weight: math.unit(170, "lb"),
  23436. name: "Front (Dressed)",
  23437. image: {
  23438. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23439. extra: 1735/1585,
  23440. bottom: 96/1831
  23441. }
  23442. },
  23443. backDressed: {
  23444. height: math.unit(5 + 11/12, "feet"),
  23445. weight: math.unit(170, "lb"),
  23446. name: "Back (Dressed)",
  23447. image: {
  23448. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23449. extra: 1749/1607,
  23450. bottom: 28/1777
  23451. }
  23452. },
  23453. maleDressed: {
  23454. height: math.unit(5 + 11/12, "feet"),
  23455. weight: math.unit(170, "lb"),
  23456. name: "Male (Dressed)",
  23457. image: {
  23458. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23459. extra: 1855/1713,
  23460. bottom: 63/1918
  23461. }
  23462. },
  23463. taurDressed: {
  23464. height: math.unit(5 + 11/12, "feet"),
  23465. weight: math.unit(170, "lb"),
  23466. name: "Taur (Dressed)",
  23467. image: {
  23468. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23469. extra: 1151/1059,
  23470. bottom: 356/1507
  23471. }
  23472. },
  23473. maw: {
  23474. height: math.unit(1.46, "feet"),
  23475. name: "Maw",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/maw.svg"
  23478. }
  23479. },
  23480. head: {
  23481. height: math.unit(2.34, "feet"),
  23482. name: "Head",
  23483. image: {
  23484. source: "./media/characters/poojawa-vynar/head.svg"
  23485. }
  23486. },
  23487. paw: {
  23488. height: math.unit(1.61, "feet"),
  23489. name: "Paw",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/paw.svg"
  23492. }
  23493. },
  23494. pawToering: {
  23495. height: math.unit(1.72, "feet"),
  23496. name: "Paw (Toering)",
  23497. image: {
  23498. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23499. }
  23500. },
  23501. toering: {
  23502. height: math.unit(2.9, "inches"),
  23503. name: "Toering",
  23504. image: {
  23505. source: "./media/characters/poojawa-vynar/toering.svg"
  23506. }
  23507. },
  23508. shaft: {
  23509. height: math.unit(0.625, "feet"),
  23510. name: "Shaft",
  23511. image: {
  23512. source: "./media/characters/poojawa-vynar/shaft.svg"
  23513. }
  23514. },
  23515. spade: {
  23516. height: math.unit(0.42, "feet"),
  23517. name: "Spade",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/spade.svg"
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Shortstack",
  23526. height: math.unit(4, "feet")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(5 + 11 / 12, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Tauric",
  23535. height: math.unit(4, "meters")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(293, "meters"),
  23544. weight: math.unit(70400, "tons"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/violette/front.svg",
  23548. extra: 1227 / 1180,
  23549. bottom: 0.005
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(293, "meters"),
  23554. weight: math.unit(70400, "tons"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/violette/back.svg",
  23558. extra: 1227 / 1180,
  23559. bottom: 0.005
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(293, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(1050, "feet"),
  23576. weight: math.unit(200000, "tons"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/alessandra/front.svg",
  23580. extra: 960 / 912,
  23581. bottom: 0.06
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Macro",
  23588. height: math.unit(1050, "feet")
  23589. },
  23590. {
  23591. name: "Macro+",
  23592. height: math.unit(900, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(5, "feet"),
  23602. weight: math.unit(187, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/person/front.svg",
  23606. extra: 3087 / 2945,
  23607. bottom: 91 / 3181
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(3, "inches")
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(5, "feet"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(90, "feet")
  23624. },
  23625. {
  23626. name: "Max Size",
  23627. height: math.unit(280, "feet")
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(4.5, "meters"),
  23636. weight: math.unit(3200, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/ty/front.svg",
  23640. extra: 1038 / 960,
  23641. bottom: 31.156 / 1068
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(4.5, "meters"),
  23646. weight: math.unit(3200, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/ty/back.svg",
  23650. extra: 1044 / 966,
  23651. bottom: 7.48 / 1049
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(4.5, "meters"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(5 + 4 / 12, "feet"),
  23668. weight: math.unit(115, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/rocky/front.svg",
  23672. extra: 1012 / 975,
  23673. bottom: 54 / 1066
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(5 + 4 / 12, "feet"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23687. {
  23688. upright: {
  23689. height: math.unit(6, "meters"),
  23690. weight: math.unit(4000, "kg"),
  23691. name: "Upright",
  23692. image: {
  23693. source: "./media/characters/ruin/upright.svg",
  23694. extra: 668 / 661,
  23695. bottom: 42 / 799.8396
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(6, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(5, "feet"),
  23712. weight: math.unit(106, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/robin/front.svg",
  23716. extra: 862 / 799,
  23717. bottom: 42.4 / 914.8856
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(5, "feet"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(3, "feet"),
  23734. weight: math.unit(225, "lb"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/saian/side.svg",
  23738. extra: 566 / 356,
  23739. bottom: 79.7 / 643
  23740. }
  23741. },
  23742. maw: {
  23743. height: math.unit(2.85, "feet"),
  23744. name: "Maw",
  23745. image: {
  23746. source: "./media/characters/saian/maw.svg"
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(3, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23760. {
  23761. side: {
  23762. height: math.unit(8, "feet"),
  23763. weight: math.unit(300, "lb"),
  23764. name: "Side",
  23765. image: {
  23766. source: "./media/characters/equus-silvermane/side.svg",
  23767. extra: 2176 / 2050,
  23768. bottom: 65.7 / 2245
  23769. }
  23770. },
  23771. front: {
  23772. height: math.unit(8, "feet"),
  23773. weight: math.unit(300, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/equus-silvermane/front.svg",
  23777. extra: 4633 / 4400,
  23778. bottom: 71.3 / 4706.915
  23779. }
  23780. },
  23781. sideStepping: {
  23782. height: math.unit(8, "feet"),
  23783. weight: math.unit(300, "lb"),
  23784. name: "Side (Stepping)",
  23785. image: {
  23786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23787. extra: 1968 / 1860,
  23788. bottom: 16.4 / 1989
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(8, "feet")
  23796. },
  23797. {
  23798. name: "Minimacro",
  23799. height: math.unit(75, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(150, "feet")
  23805. },
  23806. {
  23807. name: "Macro+",
  23808. height: math.unit(1000, "feet")
  23809. },
  23810. {
  23811. name: "Megamacro",
  23812. height: math.unit(1, "mile")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23818. {
  23819. side: {
  23820. height: math.unit(20, "feet"),
  23821. weight: math.unit(30000, "kg"),
  23822. name: "Side",
  23823. image: {
  23824. source: "./media/characters/windar/side.svg",
  23825. extra: 1491 / 1248,
  23826. bottom: 82.56 / 1568
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(20, "feet"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23840. {
  23841. side: {
  23842. height: math.unit(15.66, "feet"),
  23843. weight: math.unit(150, "lb"),
  23844. name: "Side",
  23845. image: {
  23846. source: "./media/characters/melody/side.svg",
  23847. extra: 1097 / 944,
  23848. bottom: 11.8 / 1109
  23849. }
  23850. },
  23851. sideOutfit: {
  23852. height: math.unit(15.66, "feet"),
  23853. weight: math.unit(150, "lb"),
  23854. name: "Side (Outfit)",
  23855. image: {
  23856. source: "./media/characters/melody/side-outfit.svg",
  23857. extra: 1097 / 944,
  23858. bottom: 11.8 / 1109
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(15.66, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23872. {
  23873. armoredFront: {
  23874. height: math.unit(8, "feet"),
  23875. weight: math.unit(325, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/windera/armored-front.svg",
  23879. extra: 1830/1598,
  23880. bottom: 151/1981
  23881. },
  23882. form: "armored",
  23883. default: true
  23884. },
  23885. macroFront: {
  23886. height: math.unit(70, "feet"),
  23887. weight: math.unit(315453, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/windera/macro-front.svg",
  23891. extra: 963/883,
  23892. bottom: 23/986
  23893. },
  23894. form: "macro",
  23895. default: true
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(8, "feet"),
  23902. default: true,
  23903. form: "armored"
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(70, "feet"),
  23908. default: true,
  23909. form: "macro"
  23910. },
  23911. ],
  23912. {
  23913. "armored": {
  23914. name: "Armored",
  23915. default: true
  23916. },
  23917. "macro": {
  23918. name: "Macro",
  23919. },
  23920. }
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23924. {
  23925. front: {
  23926. height: math.unit(28.75, "feet"),
  23927. weight: math.unit(2000, "kg"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/sonear/front.svg",
  23931. extra: 1041.1 / 964.9,
  23932. bottom: 53.7 / 1096.6
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(28.75, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23946. {
  23947. side: {
  23948. height: math.unit(25.5, "feet"),
  23949. weight: math.unit(23000, "kg"),
  23950. name: "Side",
  23951. image: {
  23952. source: "./media/characters/kanara/side.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(25.5, "feet"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23966. {
  23967. side: {
  23968. height: math.unit(10, "feet"),
  23969. weight: math.unit(1000, "kg"),
  23970. name: "Side",
  23971. image: {
  23972. source: "./media/characters/ereus/side.svg",
  23973. extra: 1157 / 959,
  23974. bottom: 153 / 1312.5
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(10, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23988. {
  23989. side: {
  23990. height: math.unit(4.5, "feet"),
  23991. weight: math.unit(500, "lb"),
  23992. name: "Side",
  23993. image: {
  23994. source: "./media/characters/e-ter/side.svg",
  23995. extra: 1550 / 1248,
  23996. bottom: 146 / 1694
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(4.5, "feet"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24010. {
  24011. side: {
  24012. height: math.unit(9.7, "feet"),
  24013. weight: math.unit(4000, "kg"),
  24014. name: "Side",
  24015. image: {
  24016. source: "./media/characters/yamie/side.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(9.7, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(50, "feet"),
  24033. weight: math.unit(50000, "kg"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/anders/front.svg",
  24037. extra: 570 / 539,
  24038. bottom: 14.7 / 586.7
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Large",
  24045. height: math.unit(50, "feet")
  24046. },
  24047. {
  24048. name: "Macro",
  24049. height: math.unit(2000, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Megamacro",
  24054. height: math.unit(12, "miles")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(7 + 2 / 12, "feet"),
  24063. weight: math.unit(300, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/reban/front.svg",
  24067. extra: 1287/1212,
  24068. bottom: 148/1435
  24069. }
  24070. },
  24071. head: {
  24072. height: math.unit(1.95, "feet"),
  24073. name: "Head",
  24074. image: {
  24075. source: "./media/characters/reban/head.svg"
  24076. }
  24077. },
  24078. maw: {
  24079. height: math.unit(0.95, "feet"),
  24080. name: "Maw",
  24081. image: {
  24082. source: "./media/characters/reban/maw.svg"
  24083. }
  24084. },
  24085. foot: {
  24086. height: math.unit(1.65, "feet"),
  24087. name: "Foot",
  24088. image: {
  24089. source: "./media/characters/reban/foot.svg"
  24090. }
  24091. },
  24092. dick: {
  24093. height: math.unit(7 / 5, "feet"),
  24094. name: "Dick",
  24095. image: {
  24096. source: "./media/characters/reban/dick.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Natural Height",
  24103. height: math.unit(7 + 2 / 12, "feet")
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(500, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Canon Height",
  24112. height: math.unit(50, "AU")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(6, "feet"),
  24121. weight: math.unit(150, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/terrance-keayes/front.svg",
  24125. extra: 1.005,
  24126. bottom: 151 / 1615
  24127. }
  24128. },
  24129. side: {
  24130. height: math.unit(6, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/terrance-keayes/side.svg",
  24135. extra: 1.005,
  24136. bottom: 129.4 / 1544
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(6, "feet"),
  24141. weight: math.unit(150, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/terrance-keayes/back.svg",
  24145. extra: 1.005,
  24146. bottom: 58.4 / 1557.3
  24147. }
  24148. },
  24149. dick: {
  24150. height: math.unit(6 * 0.208, "feet"),
  24151. name: "Dick",
  24152. image: {
  24153. source: "./media/characters/terrance-keayes/dick.svg"
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Canon Height",
  24160. height: math.unit(35, "miles"),
  24161. default: true
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(6, "feet"),
  24170. weight: math.unit(150, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/ofelia/front.svg",
  24174. extra: 1130/1117,
  24175. bottom: 91/1221
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/ofelia/back.svg",
  24184. extra: 1172/1159,
  24185. bottom: 28/1200
  24186. }
  24187. },
  24188. maw: {
  24189. height: math.unit(1, "feet"),
  24190. name: "Maw",
  24191. image: {
  24192. source: "./media/characters/ofelia/maw.svg"
  24193. }
  24194. },
  24195. foot: {
  24196. height: math.unit(1.949, "feet"),
  24197. name: "Foot",
  24198. image: {
  24199. source: "./media/characters/ofelia/foot.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Canon Height",
  24206. height: math.unit(2000, "miles"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6, "feet"),
  24216. weight: math.unit(150, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/samuel/front.svg",
  24220. extra: 265 / 258,
  24221. bottom: 2 / 266.1566
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(100, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Full Size",
  24233. height: math.unit(1000, "miles")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(6, "feet"),
  24242. weight: math.unit(300, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/beishir-kiel/front.svg",
  24246. extra: 569 / 547,
  24247. bottom: 41.9 / 609
  24248. }
  24249. },
  24250. maw: {
  24251. height: math.unit(6 * 0.202, "feet"),
  24252. name: "Maw",
  24253. image: {
  24254. source: "./media/characters/beishir-kiel/maw.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(300, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(5 + 7/12, "feet"),
  24271. weight: math.unit(120, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/logan-grey/front.svg",
  24275. extra: 1836/1738,
  24276. bottom: 108/1944
  24277. }
  24278. },
  24279. back: {
  24280. height: math.unit(5 + 7/12, "feet"),
  24281. weight: math.unit(120, "lb"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/logan-grey/back.svg",
  24285. extra: 1880/1794,
  24286. bottom: 24/1904
  24287. }
  24288. },
  24289. frontSfw: {
  24290. height: math.unit(5 + 7/12, "feet"),
  24291. weight: math.unit(120, "lb"),
  24292. name: "Front (SFW)",
  24293. image: {
  24294. source: "./media/characters/logan-grey/front-sfw.svg",
  24295. extra: 1836/1738,
  24296. bottom: 108/1944
  24297. }
  24298. },
  24299. backSfw: {
  24300. height: math.unit(5 + 7/12, "feet"),
  24301. weight: math.unit(120, "lb"),
  24302. name: "Back (SFW)",
  24303. image: {
  24304. source: "./media/characters/logan-grey/back-sfw.svg",
  24305. extra: 1880/1794,
  24306. bottom: 24/1904
  24307. }
  24308. },
  24309. hands: {
  24310. height: math.unit(0.84, "feet"),
  24311. name: "Hands",
  24312. image: {
  24313. source: "./media/characters/logan-grey/hands.svg"
  24314. }
  24315. },
  24316. paws: {
  24317. height: math.unit(0.72, "feet"),
  24318. name: "Paws",
  24319. image: {
  24320. source: "./media/characters/logan-grey/paws.svg"
  24321. }
  24322. },
  24323. cock: {
  24324. height: math.unit(1.45, "feet"),
  24325. name: "Cock",
  24326. image: {
  24327. source: "./media/characters/logan-grey/cock.svg"
  24328. }
  24329. },
  24330. cockAlt: {
  24331. height: math.unit(1.437, "feet"),
  24332. name: "Cock (alt)",
  24333. image: {
  24334. source: "./media/characters/logan-grey/cock-alt.svg"
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(5 + 8 / 12, "feet")
  24342. },
  24343. {
  24344. name: "The 500 Foot Femboy",
  24345. height: math.unit(500, "feet"),
  24346. default: true
  24347. },
  24348. {
  24349. name: "Megmacro",
  24350. height: math.unit(20, "miles")
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(8 + 2 / 12, "feet"),
  24359. weight: math.unit(275, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/draganta/front.svg",
  24363. extra: 1177 / 1135,
  24364. bottom: 33.46 / 1212.1
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(8 + 6 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(150, "feet")
  24377. },
  24378. {
  24379. name: "Megamacro",
  24380. height: math.unit(1000, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(1.72, "m"),
  24389. weight: math.unit(80, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/voski/front.svg",
  24393. extra: 2076.22 / 2022.4,
  24394. bottom: 102.7 / 2177.3866
  24395. }
  24396. },
  24397. frontFlaccid: {
  24398. height: math.unit(1.72, "m"),
  24399. weight: math.unit(80, "lb"),
  24400. name: "Front (Flaccid)",
  24401. image: {
  24402. source: "./media/characters/voski/front-flaccid.svg",
  24403. extra: 2076.22 / 2022.4,
  24404. bottom: 102.7 / 2177.3866
  24405. }
  24406. },
  24407. frontErect: {
  24408. height: math.unit(1.72, "m"),
  24409. weight: math.unit(80, "lb"),
  24410. name: "Front (Erect)",
  24411. image: {
  24412. source: "./media/characters/voski/front-erect.svg",
  24413. extra: 2076.22 / 2022.4,
  24414. bottom: 102.7 / 2177.3866
  24415. }
  24416. },
  24417. back: {
  24418. height: math.unit(1.72, "m"),
  24419. weight: math.unit(80, "lb"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/voski/back.svg",
  24423. extra: 2104 / 2051,
  24424. bottom: 10.45 / 2113.63
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(1.72, "m")
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(55, "m"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Macro+",
  24440. height: math.unit(300, "m")
  24441. },
  24442. {
  24443. name: "Macro++",
  24444. height: math.unit(700, "m")
  24445. },
  24446. {
  24447. name: "Macro+++",
  24448. height: math.unit(4500, "m")
  24449. },
  24450. {
  24451. name: "Macro++++",
  24452. height: math.unit(45, "km")
  24453. },
  24454. {
  24455. name: "Macro+++++",
  24456. height: math.unit(1220, "km")
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(2.3, "m"),
  24465. weight: math.unit(304, "kg"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/icowom-lee/front.svg",
  24469. extra: 985 / 955,
  24470. bottom: 25.4 / 1012
  24471. }
  24472. },
  24473. fronttentacles: {
  24474. height: math.unit(2.3, "m"),
  24475. weight: math.unit(304, "kg"),
  24476. name: "Front-tentacles",
  24477. image: {
  24478. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24479. extra: 985 / 955,
  24480. bottom: 25.4 / 1012
  24481. }
  24482. },
  24483. back: {
  24484. height: math.unit(2.3, "m"),
  24485. weight: math.unit(304, "kg"),
  24486. name: "Back",
  24487. image: {
  24488. source: "./media/characters/icowom-lee/back.svg",
  24489. extra: 975 / 954,
  24490. bottom: 9.5 / 985
  24491. }
  24492. },
  24493. backtentacles: {
  24494. height: math.unit(2.3, "m"),
  24495. weight: math.unit(304, "kg"),
  24496. name: "Back-tentacles",
  24497. image: {
  24498. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24499. extra: 975 / 954,
  24500. bottom: 9.5 / 985
  24501. }
  24502. },
  24503. frontDressed: {
  24504. height: math.unit(2.3, "m"),
  24505. weight: math.unit(304, "kg"),
  24506. name: "Front (Dressed)",
  24507. image: {
  24508. source: "./media/characters/icowom-lee/front-dressed.svg",
  24509. extra: 3076 / 2933,
  24510. bottom: 51.4 / 3125.1889
  24511. }
  24512. },
  24513. rump: {
  24514. height: math.unit(0.776, "meters"),
  24515. name: "Rump",
  24516. image: {
  24517. source: "./media/characters/icowom-lee/rump.svg"
  24518. }
  24519. },
  24520. genitals: {
  24521. height: math.unit(0.78, "meters"),
  24522. name: "Genitals",
  24523. image: {
  24524. source: "./media/characters/icowom-lee/genitals.svg"
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(2.3, "meters"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(94, "meters"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(22, "meters"),
  24546. weight: math.unit(21000, "kg"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/shock-diamond/front.svg",
  24550. extra: 2204 / 2053,
  24551. bottom: 65 / 2239.47
  24552. }
  24553. },
  24554. frontNude: {
  24555. height: math.unit(22, "meters"),
  24556. weight: math.unit(21000, "kg"),
  24557. name: "Front (Nude)",
  24558. image: {
  24559. source: "./media/characters/shock-diamond/front-nude.svg",
  24560. extra: 2514 / 2285,
  24561. bottom: 13 / 2527.56
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(3, "meters")
  24569. },
  24570. {
  24571. name: "Macro",
  24572. height: math.unit(22, "meters"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24579. {
  24580. frontNsfw: {
  24581. height: math.unit(5 + 4/12, "feet"),
  24582. weight: math.unit(195, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/rory/front.svg",
  24586. extra: 1220/1100,
  24587. bottom: 103/1323
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(5 + 4/12, "feet"),
  24592. weight: math.unit(195, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/rory/back.svg",
  24596. extra: 1166/1086,
  24597. bottom: 35/1201
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Micro",
  24604. height: math.unit(3, "inches")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5 + 4/12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(90, "feet")
  24614. },
  24615. {
  24616. name: "Supercharged",
  24617. height: math.unit(270, "feet")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(5 + 9 / 12, "feet"),
  24626. weight: math.unit(190, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/sprisk/front.svg",
  24630. extra: 1225 / 1180,
  24631. bottom: 42.7 / 1266.4
  24632. }
  24633. },
  24634. frontNsfw: {
  24635. height: math.unit(5 + 9 / 12, "feet"),
  24636. weight: math.unit(190, "lb"),
  24637. name: "Front (NSFW)",
  24638. image: {
  24639. source: "./media/characters/sprisk/front-nsfw.svg",
  24640. extra: 1225 / 1180,
  24641. bottom: 42.7 / 1266.4
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(5 + 9 / 12, "feet"),
  24646. weight: math.unit(190, "lb"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/sprisk/back.svg",
  24650. extra: 1247 / 1200,
  24651. bottom: 5.6 / 1253.04
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Tiny",
  24658. height: math.unit(2, "inches")
  24659. },
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(5 + 9 / 12, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Mini Macro",
  24667. height: math.unit(18, "feet")
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(100, "feet")
  24672. },
  24673. {
  24674. name: "MACRO",
  24675. height: math.unit(50, "miles")
  24676. },
  24677. {
  24678. name: "M A C R O",
  24679. height: math.unit(300, "miles")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(15.6, "meters"),
  24688. weight: math.unit(700000, "kg"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/bunsen/side.svg",
  24692. extra: 1644 / 358
  24693. }
  24694. },
  24695. foot: {
  24696. height: math.unit(1.611 * 1644 / 358, "meter"),
  24697. name: "Foot",
  24698. image: {
  24699. source: "./media/characters/bunsen/foot.svg"
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Small",
  24706. height: math.unit(10, "feet")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(15.6, "meters"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(4 + 11 / 12, "feet"),
  24720. weight: math.unit(140, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/sesh/front.svg",
  24724. extra: 3420 / 3231,
  24725. bottom: 72 / 3949.5
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(4 + 11 / 12, "feet")
  24733. },
  24734. {
  24735. name: "Grown",
  24736. height: math.unit(15, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(1500, "feet")
  24742. },
  24743. {
  24744. name: "Megamacro",
  24745. height: math.unit(30, "miles")
  24746. },
  24747. {
  24748. name: "Continental",
  24749. height: math.unit(3000, "miles")
  24750. },
  24751. {
  24752. name: "Gravity Mass",
  24753. height: math.unit(300000, "miles")
  24754. },
  24755. {
  24756. name: "Planet Buster",
  24757. height: math.unit(30000000, "miles")
  24758. },
  24759. {
  24760. name: "Big",
  24761. height: math.unit(3000000000, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(9, "feet"),
  24770. weight: math.unit(350, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/pepper/front.svg",
  24774. extra: 1448 / 1312,
  24775. bottom: 9.4 / 1457.88
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(9, "feet"),
  24780. weight: math.unit(350, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/pepper/back.svg",
  24784. extra: 1423 / 1300,
  24785. bottom: 4.6 / 1429
  24786. }
  24787. },
  24788. maw: {
  24789. height: math.unit(0.932, "feet"),
  24790. name: "Maw",
  24791. image: {
  24792. source: "./media/characters/pepper/maw.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(9, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(6, "feet"),
  24809. weight: math.unit(150, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/maelstrom/front.svg",
  24813. extra: 2100 / 1883,
  24814. bottom: 94 / 2196.7
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Less Kaiju",
  24821. height: math.unit(200, "feet")
  24822. },
  24823. {
  24824. name: "Kaiju",
  24825. height: math.unit(400, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Kaiju-er",
  24830. height: math.unit(600, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6 + 5 / 12, "feet"),
  24839. weight: math.unit(180, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/lexir/front.svg",
  24843. extra: 180 / 172,
  24844. bottom: 12 / 192
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(6 + 5 / 12, "feet"),
  24849. weight: math.unit(180, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/lexir/back.svg",
  24853. extra: 1273/1201,
  24854. bottom: 39/1312
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Very Smal",
  24861. height: math.unit(1, "nm")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(6 + 5 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(1, "mile")
  24871. },
  24872. {
  24873. name: "Megamacro",
  24874. height: math.unit(50, "miles")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(1.5, "meters"),
  24883. weight: math.unit(100, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/maksio/front.svg",
  24887. extra: 1549 / 1531,
  24888. bottom: 123.7 / 1674.5429
  24889. }
  24890. },
  24891. back: {
  24892. height: math.unit(1.5, "meters"),
  24893. weight: math.unit(100, "lb"),
  24894. name: "Back",
  24895. image: {
  24896. source: "./media/characters/maksio/back.svg",
  24897. extra: 1541 / 1509,
  24898. bottom: 97 / 1639
  24899. }
  24900. },
  24901. hand: {
  24902. height: math.unit(0.621, "feet"),
  24903. name: "Hand",
  24904. image: {
  24905. source: "./media/characters/maksio/hand.svg"
  24906. }
  24907. },
  24908. foot: {
  24909. height: math.unit(1.611, "feet"),
  24910. name: "Foot",
  24911. image: {
  24912. source: "./media/characters/maksio/foot.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Shrunken",
  24919. height: math.unit(10, "cm")
  24920. },
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(150, "cm"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(100, "feet"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/erza-bear/front.svg",
  24936. extra: 2449 / 2390,
  24937. bottom: 46 / 2494
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(100, "feet"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/erza-bear/back.svg",
  24945. extra: 2489 / 2430,
  24946. bottom: 85.4 / 2480
  24947. }
  24948. },
  24949. tail: {
  24950. height: math.unit(42, "feet"),
  24951. name: "Tail",
  24952. image: {
  24953. source: "./media/characters/erza-bear/tail.svg"
  24954. }
  24955. },
  24956. tongue: {
  24957. height: math.unit(8, "feet"),
  24958. name: "Tongue",
  24959. image: {
  24960. source: "./media/characters/erza-bear/tongue.svg"
  24961. }
  24962. },
  24963. dick: {
  24964. height: math.unit(10.5, "feet"),
  24965. name: "Dick",
  24966. image: {
  24967. source: "./media/characters/erza-bear/dick.svg"
  24968. }
  24969. },
  24970. dickVertical: {
  24971. height: math.unit(16.9, "feet"),
  24972. name: "Dick (Vertical)",
  24973. image: {
  24974. source: "./media/characters/erza-bear/dick-vertical.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(100, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(172, "cm"),
  24991. weight: math.unit(73, "kg"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/violet-flor/front.svg",
  24995. extra: 1530 / 1442,
  24996. bottom: 61.9 / 1588.8
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(180, "cm"),
  25001. weight: math.unit(73, "kg"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/violet-flor/back.svg",
  25005. extra: 1692 / 1630,
  25006. bottom: 20 / 1712
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(172, "cm"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(6, "feet"),
  25023. weight: math.unit(220, "lb"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/lynn-rhea/front.svg",
  25027. extra: 310 / 273
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(6, "feet"),
  25032. weight: math.unit(220, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/lynn-rhea/back.svg",
  25036. extra: 310 / 273
  25037. }
  25038. },
  25039. dicks: {
  25040. height: math.unit(0.9, "feet"),
  25041. name: "Dicks",
  25042. image: {
  25043. source: "./media/characters/lynn-rhea/dicks.svg"
  25044. }
  25045. },
  25046. slit: {
  25047. height: math.unit(0.4, "feet"),
  25048. name: "Slit",
  25049. image: {
  25050. source: "./media/characters/lynn-rhea/slit.svg"
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Micro",
  25057. height: math.unit(1, "inch")
  25058. },
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(60, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Megamacro",
  25066. height: math.unit(2, "miles")
  25067. },
  25068. {
  25069. name: "Gigamacro",
  25070. height: math.unit(3, "earths")
  25071. },
  25072. {
  25073. name: "Galactic",
  25074. height: math.unit(0.8, "galaxies")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25080. {
  25081. front: {
  25082. height: math.unit(1600, "feet"),
  25083. weight: math.unit(85758785169, "kg"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/valathos/front.svg",
  25087. extra: 1451 / 1339
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(1600, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(7 + 5 / 12, "feet"),
  25104. weight: math.unit(300, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/azula/front.svg",
  25108. extra: 3208 / 2880,
  25109. bottom: 80.2 / 3277
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. weight: math.unit(300, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/azula/back.svg",
  25118. extra: 3169 / 2822,
  25119. bottom: 150.6 / 3321
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(7 + 5 / 12, "feet"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Big",
  25131. height: math.unit(20, "feet")
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. weight: math.unit(110, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/rupert/front.svg",
  25144. extra: 1549 / 1495,
  25145. bottom: 54.2 / 1604.4
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5 + 1 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25159. {
  25160. front: {
  25161. height: math.unit(8 + 4 / 12, "feet"),
  25162. weight: math.unit(350, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/sheera-castellar/front.svg",
  25166. extra: 1957 / 1894,
  25167. bottom: 26.97 / 1975.017
  25168. }
  25169. },
  25170. side: {
  25171. height: math.unit(8 + 4 / 12, "feet"),
  25172. weight: math.unit(350, "lb"),
  25173. name: "Side",
  25174. image: {
  25175. source: "./media/characters/sheera-castellar/side.svg",
  25176. extra: 1957 / 1894
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(8 + 4 / 12, "feet"),
  25181. weight: math.unit(350, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/back.svg",
  25185. extra: 1957 / 1894
  25186. }
  25187. },
  25188. angled: {
  25189. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25190. weight: math.unit(350, "lb"),
  25191. name: "Angled",
  25192. image: {
  25193. source: "./media/characters/sheera-castellar/angled.svg",
  25194. extra: 1807 / 1707,
  25195. bottom: 68 / 1875
  25196. }
  25197. },
  25198. genitals: {
  25199. height: math.unit(2.2, "feet"),
  25200. name: "Genitals",
  25201. image: {
  25202. source: "./media/characters/sheera-castellar/genitals.svg"
  25203. }
  25204. },
  25205. taur: {
  25206. height: math.unit(10 + 6/12, "feet"),
  25207. name: "Taur",
  25208. image: {
  25209. source: "./media/characters/sheera-castellar/taur.svg",
  25210. extra: 2017/1909,
  25211. bottom: 185/2202
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(8 + 4 / 12, "feet")
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(150, "feet"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Macro+",
  25227. height: math.unit(800, "feet")
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(6, "feet"),
  25236. weight: math.unit(150, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/jaipur/front.svg",
  25240. extra: 3860 / 3731,
  25241. bottom: 287 / 4140
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(150, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/jaipur/back.svg",
  25250. extra: 1637/1561,
  25251. bottom: 154/1791
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(1.85, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Macro",
  25263. height: math.unit(150, "meters")
  25264. },
  25265. {
  25266. name: "Macro+",
  25267. height: math.unit(0.5, "miles")
  25268. },
  25269. {
  25270. name: "Macro++",
  25271. height: math.unit(2.5, "miles")
  25272. },
  25273. {
  25274. name: "Macro+++",
  25275. height: math.unit(12, "miles")
  25276. },
  25277. {
  25278. name: "Macro++++",
  25279. height: math.unit(120, "miles")
  25280. },
  25281. {
  25282. name: "Macro+++++",
  25283. height: math.unit(1200, "miles")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/sheila-wolf/front.svg",
  25296. extra: 1931 / 1808,
  25297. bottom: 29.5 / 1960
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(1.464, "feet"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/sheila-wolf/dick.svg"
  25305. }
  25306. },
  25307. muzzle: {
  25308. height: math.unit(0.513, "feet"),
  25309. name: "Muzzle",
  25310. image: {
  25311. source: "./media/characters/sheila-wolf/muzzle.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(70, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(32, "meters"),
  25328. weight: math.unit(300000, "kg"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/almor/front.svg",
  25332. extra: 1408 / 1322,
  25333. bottom: 94.6 / 1506.5
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(32, "meters"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(7, "feet"),
  25350. weight: math.unit(200, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/silver/front.svg",
  25354. extra: 472.1 / 450.5,
  25355. bottom: 26.5 / 499.424
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(7, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(800, "feet")
  25368. },
  25369. {
  25370. name: "Megamacro",
  25371. height: math.unit(250, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(6, "feet"),
  25380. weight: math.unit(150, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/pliskin/front.svg",
  25384. extra: 1469 / 1359,
  25385. bottom: 70 / 1540
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Micro",
  25392. height: math.unit(3, "inches")
  25393. },
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(5 + 11 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(120, "feet")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(6, "feet"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/sammy/front.svg",
  25414. extra: 1193 / 1089,
  25415. bottom: 30.5 / 1226
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1700, "feet"),
  25423. default: true
  25424. },
  25425. {
  25426. name: "Examacro",
  25427. height: math.unit(2.5e9, "lightyears")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(21, "meters"),
  25436. weight: math.unit(12, "tonnes"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/kuru/front.svg",
  25440. extra: 4301 / 3785,
  25441. bottom: 371.3 / 4691
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(21, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(23, "meters"),
  25458. weight: math.unit(12.2, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/rakka/front.svg",
  25462. extra: 4670 / 4169,
  25463. bottom: 301 / 4968.7
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(23, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(6, "feet"),
  25480. weight: math.unit(150, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/rhys-feline/front.svg",
  25484. extra: 2488 / 2308,
  25485. bottom: 35.67 / 2519.19
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Really Small",
  25492. height: math.unit(1, "nm")
  25493. },
  25494. {
  25495. name: "Micro",
  25496. height: math.unit(4, "inches")
  25497. },
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(4 + 10 / 12, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(100, "feet")
  25506. },
  25507. {
  25508. name: "Megamacto",
  25509. height: math.unit(50, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25515. {
  25516. side: {
  25517. height: math.unit(30, "feet"),
  25518. weight: math.unit(35000, "kg"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/alydar/side.svg",
  25522. extra: 234 / 222,
  25523. bottom: 6.5 / 241
  25524. }
  25525. },
  25526. front: {
  25527. height: math.unit(30, "feet"),
  25528. weight: math.unit(35000, "kg"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/alydar/front.svg",
  25532. extra: 223.37 / 210.2,
  25533. bottom: 22.3 / 246.76
  25534. }
  25535. },
  25536. top: {
  25537. height: math.unit(64.54, "feet"),
  25538. weight: math.unit(35000, "kg"),
  25539. name: "Top",
  25540. image: {
  25541. source: "./media/characters/alydar/top.svg"
  25542. }
  25543. },
  25544. anthro: {
  25545. height: math.unit(30, "feet"),
  25546. weight: math.unit(9000, "kg"),
  25547. name: "Anthro",
  25548. image: {
  25549. source: "./media/characters/alydar/anthro.svg",
  25550. extra: 432 / 421,
  25551. bottom: 7.18 / 440
  25552. }
  25553. },
  25554. maw: {
  25555. height: math.unit(11.693, "feet"),
  25556. name: "Maw",
  25557. image: {
  25558. source: "./media/characters/alydar/maw.svg"
  25559. }
  25560. },
  25561. head: {
  25562. height: math.unit(11.693, "feet"),
  25563. name: "Head",
  25564. image: {
  25565. source: "./media/characters/alydar/head.svg"
  25566. }
  25567. },
  25568. headAlt: {
  25569. height: math.unit(12.861, "feet"),
  25570. name: "Head (Alt)",
  25571. image: {
  25572. source: "./media/characters/alydar/head-alt.svg"
  25573. }
  25574. },
  25575. wing: {
  25576. height: math.unit(20.712, "feet"),
  25577. name: "Wing",
  25578. image: {
  25579. source: "./media/characters/alydar/wing.svg"
  25580. }
  25581. },
  25582. wingFeather: {
  25583. height: math.unit(9.662, "feet"),
  25584. name: "Wing Feather",
  25585. image: {
  25586. source: "./media/characters/alydar/wing-feather.svg"
  25587. }
  25588. },
  25589. countourFeather: {
  25590. height: math.unit(4.154, "feet"),
  25591. name: "Contour Feather",
  25592. image: {
  25593. source: "./media/characters/alydar/contour-feather.svg"
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Diplomatic",
  25600. height: math.unit(13, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Small",
  25605. height: math.unit(30, "feet")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(95, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Large",
  25614. height: math.unit(285, "feet")
  25615. },
  25616. {
  25617. name: "Incomprehensible",
  25618. height: math.unit(450, "megameters")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25624. {
  25625. side: {
  25626. height: math.unit(11, "feet"),
  25627. weight: math.unit(1750, "kg"),
  25628. name: "Side",
  25629. image: {
  25630. source: "./media/characters/selicia/side.svg",
  25631. extra: 440 / 396,
  25632. bottom: 24.8 / 465.979
  25633. }
  25634. },
  25635. maw: {
  25636. height: math.unit(4.665, "feet"),
  25637. name: "Maw",
  25638. image: {
  25639. source: "./media/characters/selicia/maw.svg"
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(11, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25653. {
  25654. side: {
  25655. height: math.unit(2 + 6 / 12, "feet"),
  25656. weight: math.unit(30, "lb"),
  25657. name: "Side",
  25658. image: {
  25659. source: "./media/characters/layla/side.svg",
  25660. extra: 244 / 188,
  25661. bottom: 18.2 / 262.1
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(2 + 6 / 12, "feet"),
  25666. weight: math.unit(30, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/layla/back.svg",
  25670. extra: 308 / 241.5,
  25671. bottom: 8.9 / 316.8
  25672. }
  25673. },
  25674. cumming: {
  25675. height: math.unit(2 + 6 / 12, "feet"),
  25676. weight: math.unit(30, "lb"),
  25677. name: "Cumming",
  25678. image: {
  25679. source: "./media/characters/layla/cumming.svg",
  25680. extra: 342 / 279,
  25681. bottom: 595 / 938
  25682. }
  25683. },
  25684. dickFlaccid: {
  25685. height: math.unit(2.595, "feet"),
  25686. name: "Flaccid Genitals",
  25687. image: {
  25688. source: "./media/characters/layla/dick-flaccid.svg"
  25689. }
  25690. },
  25691. dickErect: {
  25692. height: math.unit(2.359, "feet"),
  25693. name: "Erect Genitals",
  25694. image: {
  25695. source: "./media/characters/layla/dick-erect.svg"
  25696. }
  25697. },
  25698. dragon: {
  25699. height: math.unit(40, "feet"),
  25700. name: "Dragon",
  25701. image: {
  25702. source: "./media/characters/layla/dragon.svg",
  25703. extra: 610/535,
  25704. bottom: 367/977
  25705. }
  25706. },
  25707. taur: {
  25708. height: math.unit(30, "feet"),
  25709. name: "Taur",
  25710. image: {
  25711. source: "./media/characters/layla/taur.svg",
  25712. extra: 1268/1199,
  25713. bottom: 112/1380
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(1, "inch")
  25721. },
  25722. {
  25723. name: "Small",
  25724. height: math.unit(1, "foot")
  25725. },
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(2 + 6 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(200, "feet")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(1000, "miles")
  25738. },
  25739. {
  25740. name: "Planetary",
  25741. height: math.unit(8000, "miles")
  25742. },
  25743. {
  25744. name: "True Layla",
  25745. height: math.unit(200000 * 7, "multiverses")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25751. {
  25752. back: {
  25753. height: math.unit(10.5, "feet"),
  25754. weight: math.unit(800, "lb"),
  25755. name: "Back",
  25756. image: {
  25757. source: "./media/characters/knox/back.svg",
  25758. extra: 1486 / 1089,
  25759. bottom: 107 / 1601.4
  25760. }
  25761. },
  25762. side: {
  25763. height: math.unit(10.5, "feet"),
  25764. weight: math.unit(800, "lb"),
  25765. name: "Side",
  25766. image: {
  25767. source: "./media/characters/knox/side.svg",
  25768. extra: 244 / 218,
  25769. bottom: 14 / 260
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Compact",
  25776. height: math.unit(10.5, "feet"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Dynamax",
  25781. height: math.unit(210, "feet")
  25782. },
  25783. {
  25784. name: "Full Macro",
  25785. height: math.unit(850, "feet")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(28, "feet"),
  25794. weight: math.unit(10500, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/kayda/front.svg",
  25798. extra: 1536 / 1428,
  25799. bottom: 68.7 / 1603
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(28, "feet"),
  25804. weight: math.unit(10500, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/kayda/back.svg",
  25808. extra: 1557 / 1464,
  25809. bottom: 39.5 / 1597.49
  25810. }
  25811. },
  25812. dick: {
  25813. height: math.unit(3.858, "feet"),
  25814. name: "Dick",
  25815. image: {
  25816. source: "./media/characters/kayda/dick.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(28, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. weight: math.unit(1400, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/brian/front.svg",
  25837. extra: 737 / 692,
  25838. bottom: 55.4 / 785
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Normal",
  25845. height: math.unit(10 + 11 / 12, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(5 + 8 / 12, "feet"),
  25855. weight: math.unit(140, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/khemri/front.svg",
  25859. extra: 4780 / 4059,
  25860. bottom: 80.1 / 4859.25
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Micro",
  25867. height: math.unit(6, "inches")
  25868. },
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(5 + 8 / 12, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25878. {
  25879. front: {
  25880. height: math.unit(13, "feet"),
  25881. weight: math.unit(1700, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/felix-braveheart/front.svg",
  25885. extra: 1222 / 1157,
  25886. bottom: 53.2 / 1280
  25887. }
  25888. },
  25889. back: {
  25890. height: math.unit(13, "feet"),
  25891. weight: math.unit(1700, "lb"),
  25892. name: "Back",
  25893. image: {
  25894. source: "./media/characters/felix-braveheart/back.svg",
  25895. extra: 1277 / 1203,
  25896. bottom: 50.2 / 1327
  25897. }
  25898. },
  25899. feral: {
  25900. height: math.unit(6, "feet"),
  25901. weight: math.unit(400, "lb"),
  25902. name: "Feral",
  25903. image: {
  25904. source: "./media/characters/felix-braveheart/feral.svg",
  25905. extra: 682 / 625,
  25906. bottom: 6.9 / 688
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(13, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25920. {
  25921. side: {
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. weight: math.unit(1400, "lb"),
  25924. name: "Side",
  25925. image: {
  25926. source: "./media/characters/shadow-blade/side.svg",
  25927. extra: 1726 / 1267,
  25928. bottom: 58.4 / 1785
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 11 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. weight: math.unit(25, "lb"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/karla-halldor/front.svg",
  25949. extra: 1459 / 1383,
  25950. bottom: 12 / 1472
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(1 + 6 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(6 + 2 / 12, "feet"),
  25967. weight: math.unit(160, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/ariam/front.svg",
  25971. extra: 1073/976,
  25972. bottom: 52/1125
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(6 + 2/12, "feet"),
  25977. weight: math.unit(160, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/ariam/back.svg",
  25981. extra: 1103/1023,
  25982. bottom: 9/1112
  25983. }
  25984. },
  25985. dressed: {
  25986. height: math.unit(6 + 2/12, "feet"),
  25987. weight: math.unit(160, "lb"),
  25988. name: "Dressed",
  25989. image: {
  25990. source: "./media/characters/ariam/dressed.svg",
  25991. extra: 1099/1009,
  25992. bottom: 25/1124
  25993. }
  25994. },
  25995. squatting: {
  25996. height: math.unit(4.1, "feet"),
  25997. weight: math.unit(160, "lb"),
  25998. name: "Squatting",
  25999. image: {
  26000. source: "./media/characters/ariam/squatting.svg",
  26001. extra: 2617 / 2112,
  26002. bottom: 61.2 / 2681,
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(6 + 2 / 12, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Normal+",
  26014. height: math.unit(4, "meters")
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(50, "meters")
  26019. },
  26020. {
  26021. name: "Macro+",
  26022. height: math.unit(100, "meters")
  26023. },
  26024. {
  26025. name: "Megamacro",
  26026. height: math.unit(20, "km")
  26027. },
  26028. {
  26029. name: "Caretaker",
  26030. height: math.unit(444, "megameters")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(1.67, "meters"),
  26039. weight: math.unit(140, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26043. extra: 438 / 410,
  26044. bottom: 0.75 / 439
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Shrunken",
  26051. height: math.unit(7.6, "cm")
  26052. },
  26053. {
  26054. name: "Human Scale",
  26055. height: math.unit(1.67, "meters")
  26056. },
  26057. {
  26058. name: "Wolxi Scale",
  26059. height: math.unit(36.7, "meters"),
  26060. default: true
  26061. },
  26062. ]
  26063. ))
  26064. characterMakers.push(() => makeCharacter(
  26065. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26066. {
  26067. front: {
  26068. height: math.unit(1.73, "meters"),
  26069. weight: math.unit(240, "lb"),
  26070. name: "Front",
  26071. image: {
  26072. source: "./media/characters/izue-two-mothers/front.svg",
  26073. extra: 469 / 437,
  26074. bottom: 1.24 / 470.6
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Shrunken",
  26081. height: math.unit(7.86, "cm")
  26082. },
  26083. {
  26084. name: "Human Scale",
  26085. height: math.unit(1.73, "meters")
  26086. },
  26087. {
  26088. name: "Wolxi Scale",
  26089. height: math.unit(38, "meters"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1.55, "meters"),
  26099. weight: math.unit(120, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/teeku-love-shack/front.svg",
  26103. extra: 387 / 362,
  26104. bottom: 1.51 / 388
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Shrunken",
  26111. height: math.unit(7, "cm")
  26112. },
  26113. {
  26114. name: "Human Scale",
  26115. height: math.unit(1.55, "meters")
  26116. },
  26117. {
  26118. name: "Wolxi Scale",
  26119. height: math.unit(34.1, "meters"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(1.83, "meters"),
  26129. weight: math.unit(135, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/dejma-the-red/front.svg",
  26133. extra: 480 / 458,
  26134. bottom: 1.8 / 482
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Shrunken",
  26141. height: math.unit(8.3, "cm")
  26142. },
  26143. {
  26144. name: "Human Scale",
  26145. height: math.unit(1.83, "meters")
  26146. },
  26147. {
  26148. name: "Wolxi Scale",
  26149. height: math.unit(40, "meters"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(1.78, "meters"),
  26159. weight: math.unit(65, "kg"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/aki/front.svg",
  26163. extra: 452 / 415
  26164. }
  26165. },
  26166. frontNsfw: {
  26167. height: math.unit(1.78, "meters"),
  26168. weight: math.unit(65, "kg"),
  26169. name: "Front (NSFW)",
  26170. image: {
  26171. source: "./media/characters/aki/front-nsfw.svg",
  26172. extra: 452 / 415
  26173. }
  26174. },
  26175. back: {
  26176. height: math.unit(1.78, "meters"),
  26177. weight: math.unit(65, "kg"),
  26178. name: "Back",
  26179. image: {
  26180. source: "./media/characters/aki/back.svg",
  26181. extra: 452 / 415
  26182. }
  26183. },
  26184. rump: {
  26185. height: math.unit(2.05, "feet"),
  26186. name: "Rump",
  26187. image: {
  26188. source: "./media/characters/aki/rump.svg"
  26189. }
  26190. },
  26191. dick: {
  26192. height: math.unit(0.95, "feet"),
  26193. name: "Dick",
  26194. image: {
  26195. source: "./media/characters/aki/dick.svg"
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Micro",
  26202. height: math.unit(15, "cm")
  26203. },
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(178, "cm"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(214, "m")
  26212. },
  26213. {
  26214. name: "Macro+",
  26215. height: math.unit(534, "m")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 5 / 12, "feet"),
  26224. weight: math.unit(120, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/ari/front.svg",
  26228. extra: 1550/1471,
  26229. bottom: 39/1589
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 5 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(100, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Megamacro",
  26245. height: math.unit(100, "miles")
  26246. },
  26247. {
  26248. name: "Gigamacro",
  26249. height: math.unit(80000, "miles")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26255. {
  26256. side: {
  26257. height: math.unit(9, "feet"),
  26258. weight: math.unit(400, "kg"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/bolt/side.svg",
  26262. extra: 1126 / 896,
  26263. bottom: 60 / 1187.3,
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(5, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(9, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Macro",
  26279. height: math.unit(700, "feet")
  26280. },
  26281. {
  26282. name: "Max Size",
  26283. height: math.unit(1.52e22, "yottameters")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(4.3, "meters"),
  26292. weight: math.unit(3, "tons"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/draekon-sylviar/front.svg",
  26296. extra: 2072/1512,
  26297. bottom: 74/2146
  26298. }
  26299. },
  26300. back: {
  26301. height: math.unit(4.3, "meters"),
  26302. weight: math.unit(3, "tons"),
  26303. name: "Back",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/back.svg",
  26306. extra: 1639/1483,
  26307. bottom: 41/1680
  26308. }
  26309. },
  26310. feral: {
  26311. height: math.unit(1.15, "meters"),
  26312. weight: math.unit(3, "tons"),
  26313. name: "Feral",
  26314. image: {
  26315. source: "./media/characters/draekon-sylviar/feral.svg",
  26316. extra: 1033/395,
  26317. bottom: 130/1163
  26318. }
  26319. },
  26320. maw: {
  26321. height: math.unit(1.3, "meters"),
  26322. name: "Maw",
  26323. image: {
  26324. source: "./media/characters/draekon-sylviar/maw.svg"
  26325. }
  26326. },
  26327. mawSeparated: {
  26328. height: math.unit(1.53, "meters"),
  26329. name: "Separated Maw",
  26330. image: {
  26331. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26332. }
  26333. },
  26334. tail: {
  26335. height: math.unit(1.15, "meters"),
  26336. name: "Tail",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/tail.svg"
  26339. }
  26340. },
  26341. tailDick: {
  26342. height: math.unit(1.15, "meters"),
  26343. name: "Tail (Dick)",
  26344. image: {
  26345. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26346. }
  26347. },
  26348. tailDickSeparated: {
  26349. height: math.unit(1.19, "meters"),
  26350. name: "Tail (Separated Dick)",
  26351. image: {
  26352. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26353. }
  26354. },
  26355. slit: {
  26356. height: math.unit(1, "meters"),
  26357. name: "Slit",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/slit.svg"
  26360. }
  26361. },
  26362. dick: {
  26363. height: math.unit(1.15, "meters"),
  26364. name: "Dick",
  26365. image: {
  26366. source: "./media/characters/draekon-sylviar/dick.svg"
  26367. }
  26368. },
  26369. dickSeparated: {
  26370. height: math.unit(1.1, "meters"),
  26371. name: "Separated Dick",
  26372. image: {
  26373. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26374. }
  26375. },
  26376. sheath: {
  26377. height: math.unit(1.15, "meters"),
  26378. name: "Sheath",
  26379. image: {
  26380. source: "./media/characters/draekon-sylviar/sheath.svg"
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Small",
  26387. height: math.unit(4.53 / 2, "meters"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(4.53, "meters"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Large",
  26397. height: math.unit(4.53 * 2, "meters"),
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. weight: math.unit(180, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/brawler/front.svg",
  26410. extra: 3301 / 3027,
  26411. bottom: 138 / 3439
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6 + 2 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(11, "feet"),
  26428. weight: math.unit(1000, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/alex/front.svg",
  26432. bottom: 44.5 / 620
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Micro",
  26439. height: math.unit(5, "inches")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(11, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(9.5e9, "feet")
  26449. },
  26450. {
  26451. name: "Max Size",
  26452. height: math.unit(1.4e283, "yottameters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26458. {
  26459. female: {
  26460. height: math.unit(29.9, "m"),
  26461. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26462. name: "Female",
  26463. image: {
  26464. source: "./media/characters/zenari/female.svg",
  26465. extra: 3281.6 / 3217,
  26466. bottom: 72.2 / 3353
  26467. }
  26468. },
  26469. male: {
  26470. height: math.unit(27.7, "m"),
  26471. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26472. name: "Male",
  26473. image: {
  26474. source: "./media/characters/zenari/male.svg",
  26475. extra: 3008 / 2991,
  26476. bottom: 54.6 / 3069
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(29.7, "meters"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26490. {
  26491. female: {
  26492. height: math.unit(23.8, "m"),
  26493. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26494. name: "Female",
  26495. image: {
  26496. source: "./media/characters/mactarian/female.svg",
  26497. extra: 2662 / 2569,
  26498. bottom: 73 / 2736
  26499. }
  26500. },
  26501. male: {
  26502. height: math.unit(23.8, "m"),
  26503. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26504. name: "Male",
  26505. image: {
  26506. source: "./media/characters/mactarian/male.svg",
  26507. extra: 2673 / 2600,
  26508. bottom: 76 / 2750
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(23.8, "meters"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26522. {
  26523. female: {
  26524. height: math.unit(19.3, "m"),
  26525. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26526. name: "Female",
  26527. image: {
  26528. source: "./media/characters/umok/female.svg",
  26529. extra: 2186 / 2078,
  26530. bottom: 87 / 2277
  26531. }
  26532. },
  26533. male: {
  26534. height: math.unit(19.5, "m"),
  26535. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26536. name: "Male",
  26537. image: {
  26538. source: "./media/characters/umok/male.svg",
  26539. extra: 2233 / 2140,
  26540. bottom: 24.4 / 2258
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Macro",
  26547. height: math.unit(19.3, "meters"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26554. {
  26555. female: {
  26556. height: math.unit(26.15, "m"),
  26557. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26558. name: "Female",
  26559. image: {
  26560. source: "./media/characters/joraxian/female.svg",
  26561. extra: 2912 / 2824,
  26562. bottom: 36 / 2956
  26563. }
  26564. },
  26565. male: {
  26566. height: math.unit(25.4, "m"),
  26567. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26568. name: "Male",
  26569. image: {
  26570. source: "./media/characters/joraxian/male.svg",
  26571. extra: 2877 / 2721,
  26572. bottom: 82 / 2967
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(26.15, "meters"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26586. {
  26587. female: {
  26588. height: math.unit(21.6, "m"),
  26589. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26590. name: "Female",
  26591. image: {
  26592. source: "./media/characters/sthara/female.svg",
  26593. extra: 2516 / 2347,
  26594. bottom: 21.5 / 2537
  26595. }
  26596. },
  26597. male: {
  26598. height: math.unit(24, "m"),
  26599. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26600. name: "Male",
  26601. image: {
  26602. source: "./media/characters/sthara/male.svg",
  26603. extra: 2732 / 2607,
  26604. bottom: 23 / 2732
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(21.6, "meters"),
  26612. default: true
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(6 + 4 / 12, "feet"),
  26621. weight: math.unit(175, "lb"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/luka-bryzant/front.svg",
  26625. extra: 311 / 289,
  26626. bottom: 4 / 315
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(6 + 4 / 12, "feet"),
  26631. weight: math.unit(175, "lb"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/luka-bryzant/back.svg",
  26635. extra: 311 / 289,
  26636. bottom: 3.8 / 313.7
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Micro",
  26643. height: math.unit(10, "inches")
  26644. },
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(6 + 4 / 12, "feet"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Large",
  26652. height: math.unit(12, "feet")
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(5 + 7 / 12, "feet"),
  26661. weight: math.unit(185, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/aman-aquila/front.svg",
  26665. extra: 1013 / 976,
  26666. bottom: 45.6 / 1057
  26667. }
  26668. },
  26669. side: {
  26670. height: math.unit(5 + 7 / 12, "feet"),
  26671. weight: math.unit(185, "lb"),
  26672. name: "Side",
  26673. image: {
  26674. source: "./media/characters/aman-aquila/side.svg",
  26675. extra: 1054 / 1011,
  26676. bottom: 15 / 1070
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(5 + 7 / 12, "feet"),
  26681. weight: math.unit(185, "lb"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/aman-aquila/back.svg",
  26685. extra: 1026 / 970,
  26686. bottom: 12 / 1039
  26687. }
  26688. },
  26689. head: {
  26690. height: math.unit(1.211, "feet"),
  26691. name: "Head",
  26692. image: {
  26693. source: "./media/characters/aman-aquila/head.svg",
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Minimicro",
  26700. height: math.unit(0.057, "inches")
  26701. },
  26702. {
  26703. name: "Micro",
  26704. height: math.unit(7, "inches")
  26705. },
  26706. {
  26707. name: "Mini",
  26708. height: math.unit(3 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(5 + 7 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(157 + 7 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(1557 + 7 / 12, "feet")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(15557 + 7 / 12, "feet")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(3 + 2 / 12, "inches"),
  26734. weight: math.unit(0.3, "ounces"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/hiphae/front.svg",
  26738. extra: 1931 / 1683,
  26739. bottom: 24 / 1955
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(3 + 1 / 2, "inches"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 10 / 12, "feet"),
  26756. weight: math.unit(165, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/nicky/front.svg",
  26760. extra: 3144 / 2886,
  26761. bottom: 45.6 / 3192
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 10 / 12, "feet"),
  26766. weight: math.unit(165, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/nicky/back.svg",
  26770. extra: 3055 / 2804,
  26771. bottom: 28.4 / 3087
  26772. }
  26773. },
  26774. frontclothed: {
  26775. height: math.unit(5 + 10 / 12, "feet"),
  26776. weight: math.unit(165, "lb"),
  26777. name: "Front-clothed",
  26778. image: {
  26779. source: "./media/characters/nicky/front-clothed.svg",
  26780. extra: 3184.9 / 2926.9,
  26781. bottom: 86.5 / 3239.9
  26782. }
  26783. },
  26784. foot: {
  26785. height: math.unit(1.16, "feet"),
  26786. name: "Foot",
  26787. image: {
  26788. source: "./media/characters/nicky/foot.svg"
  26789. }
  26790. },
  26791. feet: {
  26792. height: math.unit(1.34, "feet"),
  26793. name: "Feet",
  26794. image: {
  26795. source: "./media/characters/nicky/feet.svg"
  26796. }
  26797. },
  26798. maw: {
  26799. height: math.unit(0.9, "feet"),
  26800. name: "Maw",
  26801. image: {
  26802. source: "./media/characters/nicky/maw.svg"
  26803. }
  26804. },
  26805. },
  26806. [
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(5 + 10 / 12, "feet"),
  26810. default: true
  26811. },
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(60, "feet")
  26815. },
  26816. {
  26817. name: "Megamacro",
  26818. height: math.unit(1, "mile")
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26824. {
  26825. side: {
  26826. height: math.unit(10, "feet"),
  26827. weight: math.unit(600, "lb"),
  26828. name: "Side",
  26829. image: {
  26830. source: "./media/characters/blair/side.svg",
  26831. bottom: 16.6 / 475,
  26832. extra: 458 / 431
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Micro",
  26839. height: math.unit(8, "inches")
  26840. },
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(10, "feet"),
  26844. default: true
  26845. },
  26846. {
  26847. name: "Macro",
  26848. height: math.unit(180, "feet")
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 4 / 12, "feet"),
  26857. weight: math.unit(125, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/fisher/front.svg",
  26861. extra: 444 / 390,
  26862. bottom: 2 / 444.8
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Micro",
  26869. height: math.unit(4, "inches")
  26870. },
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(5 + 4 / 12, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(100, "feet")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6.71, "feet"),
  26887. weight: math.unit(200, "lb"),
  26888. preyCapacity: math.unit(1000000, "people"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/gliss/front.svg",
  26892. extra: 2347 / 2231,
  26893. bottom: 113 / 2462
  26894. }
  26895. },
  26896. hammerspaceSize: {
  26897. height: math.unit(6.71 * 717, "feet"),
  26898. weight: math.unit(200, "lb"),
  26899. preyCapacity: math.unit(1000000, "people"),
  26900. name: "Hammerspace Size",
  26901. image: {
  26902. source: "./media/characters/gliss/front.svg",
  26903. extra: 2347 / 2231,
  26904. bottom: 113 / 2462
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(6.71, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26918. {
  26919. side: {
  26920. height: math.unit(1.44, "m"),
  26921. weight: math.unit(80, "kg"),
  26922. name: "Side",
  26923. image: {
  26924. source: "./media/characters/dune-anderson/side.svg",
  26925. bottom: 49 / 1426
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Wolf-sized",
  26932. height: math.unit(1.44, "meters")
  26933. },
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5.05, "meters"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Big",
  26941. height: math.unit(14.4, "meters")
  26942. },
  26943. {
  26944. name: "Huge",
  26945. height: math.unit(144, "meters")
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(7, "feet"),
  26954. weight: math.unit(425, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/hind/front.svg",
  26958. extra: 2091 / 1860,
  26959. bottom: 129 / 2220
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(7, "feet"),
  26964. weight: math.unit(425, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/hind/back.svg",
  26968. extra: 2091 / 1860,
  26969. bottom: 24.6 / 2309
  26970. }
  26971. },
  26972. tail: {
  26973. height: math.unit(2.8, "feet"),
  26974. name: "Tail",
  26975. image: {
  26976. source: "./media/characters/hind/tail.svg"
  26977. }
  26978. },
  26979. head: {
  26980. height: math.unit(2.55, "feet"),
  26981. name: "Head",
  26982. image: {
  26983. source: "./media/characters/hind/head.svg"
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "XS",
  26990. height: math.unit(0.7, "feet")
  26991. },
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "XL",
  26999. height: math.unit(70, "feet")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(2.1, "meters"),
  27008. weight: math.unit(150, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/tharquench-sizestealer/front.svg",
  27012. extra: 1605/1470,
  27013. bottom: 36/1641
  27014. }
  27015. },
  27016. frontAlt: {
  27017. height: math.unit(2.1, "meters"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front (Alt)",
  27020. image: {
  27021. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27022. extra: 2318 / 2063,
  27023. bottom: 93.4 / 2410
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Nano",
  27030. height: math.unit(1, "mm")
  27031. },
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(1, "cm")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(2.1, "meters"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. weight: math.unit(357, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/solex-draconov/front.svg",
  27052. extra: 1993 / 1865,
  27053. bottom: 117 / 2111
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Natural Height",
  27060. height: math.unit(7 + 5 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(350, "feet")
  27066. },
  27067. {
  27068. name: "Macro+",
  27069. height: math.unit(1000, "feet")
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(20, "km")
  27074. },
  27075. {
  27076. name: "Megamacro+",
  27077. height: math.unit(1000, "km")
  27078. },
  27079. {
  27080. name: "Gigamacro",
  27081. height: math.unit(2.5, "Gm")
  27082. },
  27083. {
  27084. name: "Teramacro",
  27085. height: math.unit(15, "Tm")
  27086. },
  27087. {
  27088. name: "Galactic",
  27089. height: math.unit(30, "Zm")
  27090. },
  27091. {
  27092. name: "Universal",
  27093. height: math.unit(21000, "Ym")
  27094. },
  27095. {
  27096. name: "Omniversal",
  27097. height: math.unit(9.861e50, "Ym")
  27098. },
  27099. {
  27100. name: "Existential",
  27101. height: math.unit(1e300, "meters")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27107. {
  27108. side: {
  27109. height: math.unit(25, "feet"),
  27110. weight: math.unit(90000, "lb"),
  27111. name: "Side",
  27112. image: {
  27113. source: "./media/characters/mandarax/side.svg",
  27114. extra: 614 / 332,
  27115. bottom: 55 / 630
  27116. }
  27117. },
  27118. lounging: {
  27119. height: math.unit(15.4, "feet"),
  27120. weight: math.unit(90000, "lb"),
  27121. name: "Lounging",
  27122. image: {
  27123. source: "./media/characters/mandarax/lounging.svg",
  27124. extra: 817/609,
  27125. bottom: 685/1502
  27126. }
  27127. },
  27128. head: {
  27129. height: math.unit(11.4, "feet"),
  27130. name: "Head",
  27131. image: {
  27132. source: "./media/characters/mandarax/head.svg"
  27133. }
  27134. },
  27135. belly: {
  27136. height: math.unit(33, "feet"),
  27137. name: "Belly",
  27138. preyCapacity: math.unit(500, "people"),
  27139. image: {
  27140. source: "./media/characters/mandarax/belly.svg"
  27141. }
  27142. },
  27143. dick: {
  27144. height: math.unit(8.46, "feet"),
  27145. name: "Dick",
  27146. image: {
  27147. source: "./media/characters/mandarax/dick.svg"
  27148. }
  27149. },
  27150. top: {
  27151. height: math.unit(28, "meters"),
  27152. name: "Top",
  27153. image: {
  27154. source: "./media/characters/mandarax/top.svg"
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(25, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5, "feet"),
  27171. weight: math.unit(90, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/pixil/front.svg",
  27175. extra: 2000 / 1618,
  27176. bottom: 12.3 / 2011
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(10, "miles"),
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. weight: math.unit(200, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/angel/front.svg",
  27201. extra: 1830 / 1737,
  27202. bottom: 22.6 / 1854,
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(7 + 2 / 12, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Macro",
  27214. height: math.unit(1000, "feet")
  27215. },
  27216. {
  27217. name: "Megamacro",
  27218. height: math.unit(2, "miles")
  27219. },
  27220. {
  27221. name: "Gigamacro",
  27222. height: math.unit(20, "earths")
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5, "feet"),
  27231. weight: math.unit(180, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/mekana/front.svg",
  27235. extra: 1671 / 1605,
  27236. bottom: 3.5 / 1691
  27237. }
  27238. },
  27239. side: {
  27240. height: math.unit(5, "feet"),
  27241. weight: math.unit(180, "lb"),
  27242. name: "Side",
  27243. image: {
  27244. source: "./media/characters/mekana/side.svg",
  27245. extra: 1671 / 1605,
  27246. bottom: 3.5 / 1691
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(5, "feet"),
  27251. weight: math.unit(180, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/mekana/back.svg",
  27255. extra: 1671 / 1605,
  27256. bottom: 3.5 / 1691
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(5, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. weight: math.unit(80, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/pixie/front.svg",
  27277. extra: 1924 / 1825,
  27278. bottom: 22.4 / 1946
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(4 + 6 / 12, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(40, "feet")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(2.1, "meters"),
  27299. weight: math.unit(200, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/the-lascivious/front.svg",
  27303. extra: 1 / 0.893,
  27304. bottom: 3.5 / 573.7
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Human Scale",
  27311. height: math.unit(2.1, "meters")
  27312. },
  27313. {
  27314. name: "Wolxi Scale",
  27315. height: math.unit(46.2, "m"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Boinker of Buildings",
  27320. height: math.unit(10, "km")
  27321. },
  27322. {
  27323. name: "Shagger of Skyscrapers",
  27324. height: math.unit(40, "km")
  27325. },
  27326. {
  27327. name: "Banger of Boroughs",
  27328. height: math.unit(4000, "km")
  27329. },
  27330. {
  27331. name: "Screwer of States",
  27332. height: math.unit(100000, "km")
  27333. },
  27334. {
  27335. name: "Pounder of Planets",
  27336. height: math.unit(2000000, "km")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6, "feet"),
  27345. weight: math.unit(150, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/aj/front.svg",
  27349. extra: 2039 / 1562,
  27350. bottom: 40 / 2079
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(11 + 6 / 12, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Megamacro",
  27362. height: math.unit(60, "megameters")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27368. {
  27369. side: {
  27370. height: math.unit(31 + 8 / 12, "feet"),
  27371. weight: math.unit(75000, "kg"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/koros/side.svg",
  27375. extra: 1442 / 1297,
  27376. bottom: 122.7 / 1562
  27377. }
  27378. },
  27379. dicksKingsCrown: {
  27380. height: math.unit(6, "feet"),
  27381. name: "Dicks (King's Crown)",
  27382. image: {
  27383. source: "./media/characters/koros/dicks-kings-crown.svg"
  27384. }
  27385. },
  27386. dicksTailSet: {
  27387. height: math.unit(3, "feet"),
  27388. name: "Dicks (Tail Set)",
  27389. image: {
  27390. source: "./media/characters/koros/dicks-tail-set.svg"
  27391. }
  27392. },
  27393. dickCumming: {
  27394. height: math.unit(7.98, "feet"),
  27395. name: "Dick (Cumming)",
  27396. image: {
  27397. source: "./media/characters/koros/dick-cumming.svg"
  27398. }
  27399. },
  27400. dicksBack: {
  27401. height: math.unit(5.9, "feet"),
  27402. name: "Dicks (Back)",
  27403. image: {
  27404. source: "./media/characters/koros/dicks-back.svg"
  27405. }
  27406. },
  27407. dicksFront: {
  27408. height: math.unit(3.72, "feet"),
  27409. name: "Dicks (Front)",
  27410. image: {
  27411. source: "./media/characters/koros/dicks-front.svg"
  27412. }
  27413. },
  27414. dicksPeeking: {
  27415. height: math.unit(3.0, "feet"),
  27416. name: "Dicks (Peeking)",
  27417. image: {
  27418. source: "./media/characters/koros/dicks-peeking.svg"
  27419. }
  27420. },
  27421. eye: {
  27422. height: math.unit(1.7, "feet"),
  27423. name: "Eye",
  27424. image: {
  27425. source: "./media/characters/koros/eye.svg"
  27426. }
  27427. },
  27428. headFront: {
  27429. height: math.unit(11.69, "feet"),
  27430. name: "Head (Front)",
  27431. image: {
  27432. source: "./media/characters/koros/head-front.svg"
  27433. }
  27434. },
  27435. headSide: {
  27436. height: math.unit(14, "feet"),
  27437. name: "Head (Side)",
  27438. image: {
  27439. source: "./media/characters/koros/head-side.svg"
  27440. }
  27441. },
  27442. leg: {
  27443. height: math.unit(17, "feet"),
  27444. name: "Leg",
  27445. image: {
  27446. source: "./media/characters/koros/leg.svg"
  27447. }
  27448. },
  27449. mawSide: {
  27450. height: math.unit(12.8, "feet"),
  27451. name: "Maw (Side)",
  27452. image: {
  27453. source: "./media/characters/koros/maw-side.svg"
  27454. }
  27455. },
  27456. mawSpitting: {
  27457. height: math.unit(17, "feet"),
  27458. name: "Maw (Spitting)",
  27459. image: {
  27460. source: "./media/characters/koros/maw-spitting.svg"
  27461. }
  27462. },
  27463. slit: {
  27464. height: math.unit(2.8, "feet"),
  27465. name: "Slit",
  27466. image: {
  27467. source: "./media/characters/koros/slit.svg"
  27468. }
  27469. },
  27470. stomach: {
  27471. height: math.unit(6.8, "feet"),
  27472. preyCapacity: math.unit(20, "people"),
  27473. name: "Stomach",
  27474. image: {
  27475. source: "./media/characters/koros/stomach.svg"
  27476. }
  27477. },
  27478. wingspanBottom: {
  27479. height: math.unit(114, "feet"),
  27480. name: "Wingspan (Bottom)",
  27481. image: {
  27482. source: "./media/characters/koros/wingspan-bottom.svg"
  27483. }
  27484. },
  27485. wingspanTop: {
  27486. height: math.unit(104, "feet"),
  27487. name: "Wingspan (Top)",
  27488. image: {
  27489. source: "./media/characters/koros/wingspan-top.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(31 + 8 / 12, "feet"),
  27497. default: true
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(18 + 5 / 12, "feet"),
  27506. weight: math.unit(3750, "kg"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/vexx/front.svg",
  27510. extra: 426 / 396,
  27511. bottom: 31.5 / 458
  27512. }
  27513. },
  27514. maw: {
  27515. height: math.unit(6, "feet"),
  27516. name: "Maw",
  27517. image: {
  27518. source: "./media/characters/vexx/maw.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(18 + 5 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(17 + 6 / 12, "feet"),
  27535. weight: math.unit(150, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/baadra/front.svg",
  27539. extra: 1694/1553,
  27540. bottom: 179/1873
  27541. }
  27542. },
  27543. frontAlt: {
  27544. height: math.unit(17 + 6 / 12, "feet"),
  27545. weight: math.unit(150, "lb"),
  27546. name: "Front (Alt)",
  27547. image: {
  27548. source: "./media/characters/baadra/front-alt.svg",
  27549. extra: 3137 / 2890,
  27550. bottom: 168.4 / 3305
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(17 + 6 / 12, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/baadra/back.svg",
  27559. extra: 3142 / 2890,
  27560. bottom: 220 / 3371
  27561. }
  27562. },
  27563. head: {
  27564. height: math.unit(5.45, "feet"),
  27565. name: "Head",
  27566. image: {
  27567. source: "./media/characters/baadra/head.svg"
  27568. }
  27569. },
  27570. headAngry: {
  27571. height: math.unit(4.95, "feet"),
  27572. name: "Head (Angry)",
  27573. image: {
  27574. source: "./media/characters/baadra/head-angry.svg"
  27575. }
  27576. },
  27577. headOpen: {
  27578. height: math.unit(6, "feet"),
  27579. name: "Head (Open)",
  27580. image: {
  27581. source: "./media/characters/baadra/head-open.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(17 + 6 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(7 + 3 / 12, "feet"),
  27598. weight: math.unit(180, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/juri/front.svg",
  27602. extra: 1401 / 1237,
  27603. bottom: 18.5 / 1418
  27604. }
  27605. },
  27606. side: {
  27607. height: math.unit(7 + 3 / 12, "feet"),
  27608. weight: math.unit(180, "lb"),
  27609. name: "Side",
  27610. image: {
  27611. source: "./media/characters/juri/side.svg",
  27612. extra: 1424 / 1242,
  27613. bottom: 18.5 / 1447
  27614. }
  27615. },
  27616. sitting: {
  27617. height: math.unit(6, "feet"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Sitting",
  27620. image: {
  27621. source: "./media/characters/juri/sitting.svg",
  27622. extra: 1270 / 1143,
  27623. bottom: 100 / 1343
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(7 + 3 / 12, "feet"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/juri/back.svg",
  27632. extra: 1377 / 1240,
  27633. bottom: 23.7 / 1405
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(2.8, "feet"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/juri/maw.svg"
  27641. }
  27642. },
  27643. stomach: {
  27644. height: math.unit(0.89, "feet"),
  27645. preyCapacity: math.unit(4, "liters"),
  27646. name: "Stomach",
  27647. image: {
  27648. source: "./media/characters/juri/stomach.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 3 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27662. {
  27663. fox: {
  27664. height: math.unit(5 + 6 / 12, "feet"),
  27665. weight: math.unit(140, "lb"),
  27666. name: "Fox",
  27667. image: {
  27668. source: "./media/characters/maxene-sita/fox.svg",
  27669. extra: 146 / 138,
  27670. bottom: 2.1 / 148.19
  27671. }
  27672. },
  27673. foxLaying: {
  27674. height: math.unit(1.70, "feet"),
  27675. weight: math.unit(140, "lb"),
  27676. name: "Fox (Laying)",
  27677. image: {
  27678. source: "./media/characters/maxene-sita/fox-laying.svg",
  27679. extra: 910 / 572,
  27680. bottom: 71 / 981
  27681. }
  27682. },
  27683. kitsune: {
  27684. height: math.unit(10, "feet"),
  27685. weight: math.unit(800, "lb"),
  27686. name: "Kitsune",
  27687. image: {
  27688. source: "./media/characters/maxene-sita/kitsune.svg",
  27689. extra: 185 / 176,
  27690. bottom: 4.7 / 189.9
  27691. }
  27692. },
  27693. hellhound: {
  27694. height: math.unit(10, "feet"),
  27695. weight: math.unit(700, "lb"),
  27696. name: "Hellhound",
  27697. image: {
  27698. source: "./media/characters/maxene-sita/hellhound.svg",
  27699. extra: 1600 / 1545,
  27700. bottom: 81 / 1681
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(5 + 6 / 12, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27714. {
  27715. front: {
  27716. height: math.unit(3 + 4 / 12, "feet"),
  27717. weight: math.unit(70, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/maia/front.svg",
  27721. extra: 227 / 219.5,
  27722. bottom: 40 / 267
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(3 + 4 / 12, "feet"),
  27727. weight: math.unit(70, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/maia/back.svg",
  27731. extra: 237 / 225
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(3 + 4 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(5 + 10 / 12, "feet"),
  27748. weight: math.unit(197, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/jabaro/front.svg",
  27752. extra: 225 / 216,
  27753. bottom: 5.06 / 230
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. weight: math.unit(197, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/jabaro/back.svg",
  27762. extra: 225 / 219,
  27763. bottom: 1.9 / 227
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(5 + 10 / 12, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(5 + 8 / 12, "feet"),
  27780. weight: math.unit(139, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/risa/front.svg",
  27784. extra: 270 / 260,
  27785. bottom: 11.2 / 282
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. weight: math.unit(139, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/risa/back.svg",
  27794. extra: 264 / 255,
  27795. bottom: 4 / 268
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5 + 8 / 12, "feet"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(2 + 11 / 12, "feet"),
  27812. weight: math.unit(30, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/weatley/front.svg",
  27816. bottom: 10.7 / 414,
  27817. extra: 403.5 / 362
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. weight: math.unit(30, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/weatley/back.svg",
  27826. bottom: 10.7 / 414,
  27827. extra: 403.5 / 362
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(2 + 11 / 12, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. weight: math.unit(50, "kg"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/mercury-crescent/front.svg",
  27848. extra: 1088 / 1033,
  27849. bottom: 18.9 / 1109
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5 + 2 / 12, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(2, "feet"),
  27866. weight: math.unit(15, "kg"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/diamond-jones/front.svg",
  27870. extra: 727/723,
  27871. bottom: 46/773
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(2, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(3, "feet"),
  27888. weight: math.unit(30, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/sweet-bit/front.svg",
  27892. extra: 675 / 567,
  27893. bottom: 27.7 / 703
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(3, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27907. {
  27908. side: {
  27909. height: math.unit(9.178, "feet"),
  27910. weight: math.unit(500, "lb"),
  27911. name: "Side",
  27912. image: {
  27913. source: "./media/characters/umbrazen/side.svg",
  27914. extra: 1730 / 1473,
  27915. bottom: 34.6 / 1765
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(9.178, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(10, "feet"),
  27932. weight: math.unit(750, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/arlist/front.svg",
  27936. extra: 961 / 778,
  27937. bottom: 6.2 / 986
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(10, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. weight: math.unit(110, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/aradel/front.svg",
  27958. extra: 324 / 303,
  27959. bottom: 3.6 / 329.4
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 1 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27973. {
  27974. dressed: {
  27975. height: math.unit(3 + 8 / 12, "feet"),
  27976. weight: math.unit(50, "lb"),
  27977. name: "Dressed",
  27978. image: {
  27979. source: "./media/characters/serryn/dressed.svg",
  27980. extra: 1792 / 1656,
  27981. bottom: 43.5 / 1840
  27982. }
  27983. },
  27984. nude: {
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. weight: math.unit(50, "lb"),
  27987. name: "Nude",
  27988. image: {
  27989. source: "./media/characters/serryn/nude.svg",
  27990. extra: 1792 / 1656,
  27991. bottom: 43.5 / 1840
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(3 + 8 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(7 + 10 / 12, "feet"),
  28008. weight: math.unit(255, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/xavier-thyme/front.svg",
  28012. extra: 3733 / 3642,
  28013. bottom: 131 / 3869
  28014. }
  28015. },
  28016. frontRaven: {
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. weight: math.unit(255, "lb"),
  28019. name: "Front (Raven)",
  28020. image: {
  28021. source: "./media/characters/xavier-thyme/front-raven.svg",
  28022. extra: 4385 / 3642,
  28023. bottom: 131 / 4517
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(7 + 10 / 12, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28037. {
  28038. front: {
  28039. height: math.unit(1.6, "m"),
  28040. weight: math.unit(50, "kg"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/kiki/front.svg",
  28044. extra: 4682 / 3610,
  28045. bottom: 115 / 4777
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(1.6, "meters"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(50, "m"),
  28062. weight: math.unit(500, "tonnes"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/ryoko/front.svg",
  28066. extra: 4632 / 3926,
  28067. bottom: 193 / 4823
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(50, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(30, "m"),
  28084. weight: math.unit(22, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/elio/front.svg",
  28088. extra: 4582 / 3720,
  28089. bottom: 236 / 4828
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(30, "meters"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(6 + 3 / 12, "feet"),
  28106. weight: math.unit(120, "lb"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/azura/front.svg",
  28110. extra: 1149 / 1135,
  28111. bottom: 45 / 1194
  28112. }
  28113. },
  28114. frontClothed: {
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. weight: math.unit(120, "lb"),
  28117. name: "Front (Clothed)",
  28118. image: {
  28119. source: "./media/characters/azura/front-clothed.svg",
  28120. extra: 1149 / 1135,
  28121. bottom: 45 / 1194
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(6 + 3 / 12, "feet"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Macro",
  28133. height: math.unit(20 + 6 / 12, "feet")
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(12, "miles")
  28138. },
  28139. {
  28140. name: "Gigamacro",
  28141. height: math.unit(10000, "miles")
  28142. },
  28143. {
  28144. name: "Teramacro",
  28145. height: math.unit(900000, "miles")
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(12, "feet"),
  28154. weight: math.unit(1, "ton"),
  28155. capacity: math.unit(660000, "gallons"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/zeus/front.svg",
  28159. extra: 5005 / 4717,
  28160. bottom: 363 / 5388
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(12, "feet")
  28168. },
  28169. {
  28170. name: "Preferred Size",
  28171. height: math.unit(0.5, "miles"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Giga Horse",
  28176. height: math.unit(300, "miles")
  28177. },
  28178. {
  28179. name: "Riding Planets",
  28180. height: math.unit(30, "megameters")
  28181. },
  28182. {
  28183. name: "Cosmic Giant",
  28184. height: math.unit(3, "zettameters")
  28185. },
  28186. {
  28187. name: "Breeding God",
  28188. height: math.unit(9.92e22, "yottameters")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28194. {
  28195. side: {
  28196. height: math.unit(9, "feet"),
  28197. weight: math.unit(1500, "kg"),
  28198. name: "Side",
  28199. image: {
  28200. source: "./media/characters/fang/side.svg",
  28201. extra: 924 / 866,
  28202. bottom: 47.5 / 972.3
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(9, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro",
  28214. height: math.unit(75 + 6 / 12, "feet")
  28215. },
  28216. {
  28217. name: "Teramacro",
  28218. height: math.unit(50000, "miles")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(10, "feet"),
  28227. weight: math.unit(2, "tons"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/rekhit/front.svg",
  28231. extra: 2796 / 2590,
  28232. bottom: 225 / 3022
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(10, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(500, "feet")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(7 + 6.451 / 12, "feet"),
  28253. weight: math.unit(310, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/dahlia-verrick/front.svg",
  28257. extra: 1488 / 1365,
  28258. bottom: 6.2 / 1495
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(7 + 6.451 / 12, "feet"),
  28263. weight: math.unit(310, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/dahlia-verrick/back.svg",
  28267. extra: 1472 / 1351,
  28268. bottom: 5.28 / 1477
  28269. }
  28270. },
  28271. frontBusiness: {
  28272. height: math.unit(7 + 6.451 / 12, "feet"),
  28273. weight: math.unit(200, "lb"),
  28274. name: "Front (Business)",
  28275. image: {
  28276. source: "./media/characters/dahlia-verrick/front-business.svg",
  28277. extra: 1478 / 1381,
  28278. bottom: 5.5 / 1484
  28279. }
  28280. },
  28281. frontCasual: {
  28282. height: math.unit(7 + 6.451 / 12, "feet"),
  28283. weight: math.unit(200, "lb"),
  28284. name: "Front (Casual)",
  28285. image: {
  28286. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28287. extra: 1478 / 1381,
  28288. bottom: 5.5 / 1484
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Travel-Sized",
  28295. height: math.unit(7.45, "inches")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(7 + 6.451 / 12, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Hitting the Town",
  28304. height: math.unit(37 + 8 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Stomp in the Suburbs",
  28308. height: math.unit(964 + 9.728 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Sit on the City",
  28312. height: math.unit(61747 + 10.592 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Glomp the Globe",
  28316. height: math.unit(252919327 + 4.832 / 12, "feet")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(6 + 4 / 12, "feet"),
  28325. weight: math.unit(320, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/front.svg",
  28329. extra: 447 / 428,
  28330. bottom: 18 / 466
  28331. }
  28332. },
  28333. back: {
  28334. height: math.unit(6 + 4 / 12, "feet"),
  28335. weight: math.unit(320, "lb"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/balina-mahigan/back.svg",
  28339. extra: 445 / 428,
  28340. bottom: 4.07 / 448
  28341. }
  28342. },
  28343. arm: {
  28344. height: math.unit(1.88, "feet"),
  28345. name: "Arm",
  28346. image: {
  28347. source: "./media/characters/balina-mahigan/arm.svg"
  28348. }
  28349. },
  28350. backPort: {
  28351. height: math.unit(0.685, "feet"),
  28352. name: "Back Port",
  28353. image: {
  28354. source: "./media/characters/balina-mahigan/back-port.svg"
  28355. }
  28356. },
  28357. hoofpaw: {
  28358. height: math.unit(1.41, "feet"),
  28359. name: "Hoofpaw",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28362. }
  28363. },
  28364. leftHandBack: {
  28365. height: math.unit(0.938, "feet"),
  28366. name: "Left Hand (Back)",
  28367. image: {
  28368. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28369. }
  28370. },
  28371. leftHandFront: {
  28372. height: math.unit(0.938, "feet"),
  28373. name: "Left Hand (Front)",
  28374. image: {
  28375. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28376. }
  28377. },
  28378. rightHandBack: {
  28379. height: math.unit(0.95, "feet"),
  28380. name: "Right Hand (Back)",
  28381. image: {
  28382. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28383. }
  28384. },
  28385. rightHandFront: {
  28386. height: math.unit(0.95, "feet"),
  28387. name: "Right Hand (Front)",
  28388. image: {
  28389. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(6 + 4 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(320, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/balina-mejeri/front.svg",
  28410. extra: 517 / 488,
  28411. bottom: 44.2 / 561
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6 + 4 / 12, "feet")
  28419. },
  28420. {
  28421. name: "Business",
  28422. height: math.unit(155, "feet"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28429. {
  28430. kneeling: {
  28431. height: math.unit(6 + 4 / 12, "feet"),
  28432. weight: math.unit(300 * 20, "lb"),
  28433. name: "Kneeling",
  28434. image: {
  28435. source: "./media/characters/balbarian/kneeling.svg",
  28436. extra: 922 / 862,
  28437. bottom: 42.4 / 965
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(6 + 4 / 12, "feet")
  28445. },
  28446. {
  28447. name: "Treasured",
  28448. height: math.unit(18 + 9 / 12, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(900, "feet")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 4 / 12, "feet"),
  28462. weight: math.unit(325, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/balina-amarini/front.svg",
  28466. extra: 415 / 403,
  28467. bottom: 19 / 433.4
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 4 / 12, "feet"),
  28472. weight: math.unit(325, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/balina-amarini/back.svg",
  28476. extra: 415 / 403,
  28477. bottom: 13.5 / 432
  28478. }
  28479. },
  28480. overdrive: {
  28481. height: math.unit(6 + 4 / 12, "feet"),
  28482. weight: math.unit(400, "lb"),
  28483. name: "Overdrive",
  28484. image: {
  28485. source: "./media/characters/balina-amarini/overdrive.svg",
  28486. extra: 269 / 259,
  28487. bottom: 12 / 282
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Boom",
  28494. height: math.unit(9 + 10 / 12, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(280, "feet")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28505. {
  28506. goddess: {
  28507. height: math.unit(600, "feet"),
  28508. weight: math.unit(2000000, "tons"),
  28509. name: "Goddess",
  28510. image: {
  28511. source: "./media/characters/lady-kubwa/goddess.svg",
  28512. extra: 1240.5 / 1223,
  28513. bottom: 22 / 1263
  28514. }
  28515. },
  28516. goddesser: {
  28517. height: math.unit(900, "feet"),
  28518. weight: math.unit(20000000, "lb"),
  28519. name: "Goddess-er",
  28520. image: {
  28521. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28522. extra: 899 / 888,
  28523. bottom: 12.6 / 912
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(600, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Megamacro",
  28535. height: math.unit(250, "miles")
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(7 + 7 / 12, "feet"),
  28544. weight: math.unit(250, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/tala-grovehorn/front.svg",
  28548. extra: 2636 / 2525,
  28549. bottom: 147 / 2781
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(7 + 7 / 12, "feet"),
  28554. weight: math.unit(250, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/tala-grovehorn/back.svg",
  28558. extra: 2635 / 2539,
  28559. bottom: 100 / 2732.8
  28560. }
  28561. },
  28562. mouth: {
  28563. height: math.unit(1.15, "feet"),
  28564. name: "Mouth",
  28565. image: {
  28566. source: "./media/characters/tala-grovehorn/mouth.svg"
  28567. }
  28568. },
  28569. dick: {
  28570. height: math.unit(2.36, "feet"),
  28571. name: "Dick",
  28572. image: {
  28573. source: "./media/characters/tala-grovehorn/dick.svg"
  28574. }
  28575. },
  28576. slit: {
  28577. height: math.unit(0.61, "feet"),
  28578. name: "Slit",
  28579. image: {
  28580. source: "./media/characters/tala-grovehorn/slit.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(7 + 7 / 12, "feet"),
  28592. weight: math.unit(225, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/epona/front.svg",
  28596. extra: 2445 / 2290,
  28597. bottom: 251 / 2696
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(7 + 7 / 12, "feet"),
  28602. weight: math.unit(225, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/epona/back.svg",
  28606. extra: 2546 / 2408,
  28607. bottom: 44 / 2589
  28608. }
  28609. },
  28610. genitals: {
  28611. height: math.unit(1.5, "feet"),
  28612. name: "Genitals",
  28613. image: {
  28614. source: "./media/characters/epona/genitals.svg"
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(7 + 7 / 12, "feet"),
  28622. default: true
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(7, "feet"),
  28631. weight: math.unit(518, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/avia-bloodbourn/front.svg",
  28635. extra: 1466 / 1350,
  28636. bottom: 65 / 1527
  28637. }
  28638. },
  28639. },
  28640. [
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9.35, "feet"),
  28648. weight: math.unit(600, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/amera/front.svg",
  28652. extra: 891 / 818,
  28653. bottom: 30 / 922.7
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(9.35, "feet"),
  28658. weight: math.unit(600, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/amera/back.svg",
  28662. extra: 876 / 824,
  28663. bottom: 6.8 / 884
  28664. }
  28665. },
  28666. dick: {
  28667. height: math.unit(2.14, "feet"),
  28668. name: "Dick",
  28669. image: {
  28670. source: "./media/characters/amera/dick.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(9.35, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28684. {
  28685. kneeling: {
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. weight: math.unit(90, "lb"),
  28688. name: "Kneeling",
  28689. image: {
  28690. source: "./media/characters/rosewen/kneeling.svg",
  28691. extra: 1835 / 1571,
  28692. bottom: 27.7 / 1862
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(3 + 4 / 12, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. weight: math.unit(200, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/sabah/front.svg",
  28713. extra: 849 / 763,
  28714. bottom: 33.9 / 881
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(5 + 10 / 12, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28728. {
  28729. front: {
  28730. height: math.unit(3 + 5 / 12, "feet"),
  28731. weight: math.unit(40, "kg"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/purple-flame/front.svg",
  28735. extra: 1577 / 1412,
  28736. bottom: 97 / 1694
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(3 + 5 / 12, "feet"),
  28741. weight: math.unit(40, "kg"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/purple-flame/front-dressed.svg",
  28745. extra: 1577 / 1412,
  28746. bottom: 97 / 1694
  28747. }
  28748. },
  28749. headphones: {
  28750. height: math.unit(0.85, "feet"),
  28751. name: "Headphones",
  28752. image: {
  28753. source: "./media/characters/purple-flame/headphones.svg"
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Really Small",
  28760. height: math.unit(5, "cm")
  28761. },
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(1 + 5 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(3 + 5 / 12, "feet"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Minimacro",
  28773. height: math.unit(125, "feet")
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(0.5, "miles")
  28778. },
  28779. {
  28780. name: "Megamacro",
  28781. height: math.unit(50, "miles")
  28782. },
  28783. {
  28784. name: "Gigantic",
  28785. height: math.unit(750, "miles")
  28786. },
  28787. {
  28788. name: "Planetary",
  28789. height: math.unit(15000, "miles")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(14, "feet"),
  28798. weight: math.unit(959, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/arsenal/front.svg",
  28802. extra: 2357 / 2157,
  28803. bottom: 93 / 2458
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(14, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/adira/front.svg",
  28824. extra: 1078 / 1029,
  28825. bottom: 87 / 1166
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Micro",
  28832. height: math.unit(4, "inches"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(50, "feet")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(16, "feet"),
  28846. weight: math.unit(1000, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/grim/front.svg",
  28850. extra: 622 / 614,
  28851. bottom: 18.1 / 642
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(16, "feet"),
  28856. weight: math.unit(1000, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/grim/back.svg",
  28860. extra: 610.6 / 602,
  28861. bottom: 40.8 / 652
  28862. }
  28863. },
  28864. hunched: {
  28865. height: math.unit(9.75, "feet"),
  28866. weight: math.unit(1000, "lb"),
  28867. name: "Hunched",
  28868. image: {
  28869. source: "./media/characters/grim/hunched.svg",
  28870. extra: 304 / 297,
  28871. bottom: 35.4 / 394
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(16, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(2.3, "meters"),
  28888. weight: math.unit(300, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/sinja/front-sfw.svg",
  28892. extra: 1393 / 1294,
  28893. bottom: 70 / 1463
  28894. }
  28895. },
  28896. frontNsfw: {
  28897. height: math.unit(2.3, "meters"),
  28898. weight: math.unit(300, "lb"),
  28899. name: "Front (NSFW)",
  28900. image: {
  28901. source: "./media/characters/sinja/front-nsfw.svg",
  28902. extra: 1393 / 1294,
  28903. bottom: 70 / 1463
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(2.3, "meters"),
  28908. weight: math.unit(300, "lb"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/sinja/back.svg",
  28912. extra: 1393 / 1294,
  28913. bottom: 70 / 1463
  28914. }
  28915. },
  28916. head: {
  28917. height: math.unit(1.771, "feet"),
  28918. name: "Head",
  28919. image: {
  28920. source: "./media/characters/sinja/head.svg"
  28921. }
  28922. },
  28923. slit: {
  28924. height: math.unit(0.8, "feet"),
  28925. name: "Slit",
  28926. image: {
  28927. source: "./media/characters/sinja/slit.svg"
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(2.3, "meters")
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(91, "meters"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(91440, "meters")
  28944. },
  28945. {
  28946. name: "Gigamacro",
  28947. height: math.unit(60960000, "meters")
  28948. },
  28949. {
  28950. name: "Teramacro",
  28951. height: math.unit(9144000000, "meters")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(1.7, "meters"),
  28960. weight: math.unit(130, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/kyu/front.svg",
  28964. extra: 415 / 395,
  28965. bottom: 5 / 420
  28966. }
  28967. },
  28968. head: {
  28969. height: math.unit(1.75, "feet"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/kyu/head.svg"
  28973. }
  28974. },
  28975. foot: {
  28976. height: math.unit(0.81, "feet"),
  28977. name: "Foot",
  28978. image: {
  28979. source: "./media/characters/kyu/foot.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(1.7, "meters")
  28987. },
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(131, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Megamacro",
  28995. height: math.unit(91440, "meters")
  28996. },
  28997. {
  28998. name: "Gigamacro",
  28999. height: math.unit(60960000, "meters")
  29000. },
  29001. {
  29002. name: "Teramacro",
  29003. height: math.unit(9144000000, "meters")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(7 + 1 / 12, "feet"),
  29012. weight: math.unit(250, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/joey/front.svg",
  29016. extra: 1791 / 1537,
  29017. bottom: 28 / 1816
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit(3, "inches")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(7 + 1 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(165, "cm"),
  29038. weight: math.unit(140, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sam-evans/front.svg",
  29042. extra: 3417 / 3230,
  29043. bottom: 41.3 / 3417
  29044. }
  29045. },
  29046. frontSixTails: {
  29047. height: math.unit(165, "cm"),
  29048. weight: math.unit(140, "lb"),
  29049. name: "Front-six-tails",
  29050. image: {
  29051. source: "./media/characters/sam-evans/front-six-tails.svg",
  29052. extra: 3417 / 3230,
  29053. bottom: 41.3 / 3417
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(165, "cm"),
  29058. weight: math.unit(140, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/sam-evans/back.svg",
  29062. extra: 3227 / 3032,
  29063. bottom: 6.8 / 3234
  29064. }
  29065. },
  29066. face: {
  29067. height: math.unit(0.68, "feet"),
  29068. name: "Face",
  29069. image: {
  29070. source: "./media/characters/sam-evans/face.svg"
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(165, "cm"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(100, "meters")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(800, "meters")
  29087. },
  29088. {
  29089. name: "Macro++",
  29090. height: math.unit(3, "km")
  29091. },
  29092. {
  29093. name: "Macro+++",
  29094. height: math.unit(30, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(10, "feet"),
  29103. weight: math.unit(750, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/juliet-a/front.svg",
  29107. extra: 1766 / 1720,
  29108. bottom: 43 / 1809
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(10, "feet"),
  29113. weight: math.unit(750, "lb"),
  29114. name: "Back",
  29115. image: {
  29116. source: "./media/characters/juliet-a/back.svg",
  29117. extra: 1781 / 1734,
  29118. bottom: 35 / 1810,
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(10, "feet"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Dragon Form",
  29130. height: math.unit(250, "feet")
  29131. },
  29132. {
  29133. name: "Macro",
  29134. height: math.unit(1000, "feet")
  29135. },
  29136. {
  29137. name: "Megamacro",
  29138. height: math.unit(10000, "feet")
  29139. }
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29144. {
  29145. regular: {
  29146. height: math.unit(7 + 3 / 12, "feet"),
  29147. weight: math.unit(260, "lb"),
  29148. name: "Regular",
  29149. image: {
  29150. source: "./media/characters/wild/regular.svg",
  29151. extra: 97.45 / 92,
  29152. bottom: 6.8 / 104.3
  29153. }
  29154. },
  29155. biggums: {
  29156. height: math.unit(8 + 6 / 12, "feet"),
  29157. weight: math.unit(425, "lb"),
  29158. name: "Biggums",
  29159. image: {
  29160. source: "./media/characters/wild/biggums.svg",
  29161. extra: 97.45 / 92,
  29162. bottom: 7.5 / 132.34
  29163. }
  29164. },
  29165. mawRegular: {
  29166. height: math.unit(1.24, "feet"),
  29167. name: "Maw (Regular)",
  29168. image: {
  29169. source: "./media/characters/wild/maw.svg"
  29170. }
  29171. },
  29172. mawBiggums: {
  29173. height: math.unit(1.47, "feet"),
  29174. name: "Maw (Biggums)",
  29175. image: {
  29176. source: "./media/characters/wild/maw.svg"
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(7 + 3 / 12, "feet"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29190. {
  29191. front: {
  29192. height: math.unit(2.5, "meters"),
  29193. weight: math.unit(200, "kg"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/vidar/front.svg",
  29197. extra: 2994 / 2795,
  29198. bottom: 56 / 3061
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(2.5, "meters"),
  29203. weight: math.unit(200, "kg"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/vidar/back.svg",
  29207. extra: 3131 / 2928,
  29208. bottom: 13.5 / 3141.5
  29209. }
  29210. },
  29211. feral: {
  29212. height: math.unit(2.5, "meters"),
  29213. weight: math.unit(2000, "kg"),
  29214. name: "Feral",
  29215. image: {
  29216. source: "./media/characters/vidar/feral.svg",
  29217. extra: 2790 / 1765,
  29218. bottom: 6 / 2796
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(2.5, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(100, "meters")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. weight: math.unit(120, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/ash/front.svg",
  29243. extra: 2189 / 1961,
  29244. bottom: 5.2 / 2194
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 9 / 12, "feet"),
  29252. default: true
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(9, "feet"),
  29261. weight: math.unit(10000, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/gygabite/front.svg",
  29265. bottom: 31.7 / 537.8,
  29266. extra: 505 / 370
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(9, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(12, "feet"),
  29283. weight: math.unit(4000, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/p0tat0/front.svg",
  29287. extra: 1065 / 921,
  29288. bottom: 55.7 / 1121.25
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(12, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29302. {
  29303. side: {
  29304. height: math.unit(6.5, "feet"),
  29305. weight: math.unit(800, "lb"),
  29306. name: "Side",
  29307. image: {
  29308. source: "./media/characters/dusk/side.svg",
  29309. extra: 615 / 373,
  29310. bottom: 53 / 664
  29311. }
  29312. },
  29313. sitting: {
  29314. height: math.unit(7, "feet"),
  29315. weight: math.unit(800, "lb"),
  29316. name: "Sitting",
  29317. image: {
  29318. source: "./media/characters/dusk/sitting.svg",
  29319. extra: 753 / 425,
  29320. bottom: 33 / 774
  29321. }
  29322. },
  29323. head: {
  29324. height: math.unit(6.1, "feet"),
  29325. name: "Head",
  29326. image: {
  29327. source: "./media/characters/dusk/head.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(7, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(15, "feet"),
  29344. weight: math.unit(7000, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/jay-direwolf/front.svg",
  29348. extra: 1810 / 1732,
  29349. bottom: 66 / 1892
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(15, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(4 + 9 / 12, "feet"),
  29366. weight: math.unit(130, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/anchovie/front.svg",
  29370. extra: 382 / 350,
  29371. bottom: 25 / 409
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(4 + 9 / 12, "feet"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/anchovie/back.svg",
  29380. extra: 385 / 352,
  29381. bottom: 16.6 / 402
  29382. }
  29383. },
  29384. frontDressed: {
  29385. height: math.unit(4 + 9 / 12, "feet"),
  29386. weight: math.unit(130, "lb"),
  29387. name: "Front (Dressed)",
  29388. image: {
  29389. source: "./media/characters/anchovie/front-dressed.svg",
  29390. extra: 382 / 350,
  29391. bottom: 25 / 409
  29392. }
  29393. },
  29394. backDressed: {
  29395. height: math.unit(4 + 9 / 12, "feet"),
  29396. weight: math.unit(130, "lb"),
  29397. name: "Back (Dressed)",
  29398. image: {
  29399. source: "./media/characters/anchovie/back-dressed.svg",
  29400. extra: 385 / 352,
  29401. bottom: 16.6 / 402
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Micro",
  29408. height: math.unit(6.4, "inches")
  29409. },
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(4 + 9 / 12, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(2, "meters"),
  29422. weight: math.unit(180, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/acidrenamon/front.svg",
  29426. extra: 987 / 890,
  29427. bottom: 22.8 / 1009
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(2, "meters"),
  29432. weight: math.unit(180, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/acidrenamon/back.svg",
  29436. extra: 983 / 891,
  29437. bottom: 8.4 / 992
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.92, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/acidrenamon/head.svg"
  29445. }
  29446. },
  29447. rump: {
  29448. height: math.unit(1.72, "feet"),
  29449. name: "Rump",
  29450. image: {
  29451. source: "./media/characters/acidrenamon/rump.svg"
  29452. }
  29453. },
  29454. tail: {
  29455. height: math.unit(4.2, "feet"),
  29456. name: "Tail",
  29457. image: {
  29458. source: "./media/characters/acidrenamon/tail.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(2, "meters"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Minimacro",
  29470. height: math.unit(7, "meters")
  29471. },
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(200, "meters")
  29475. },
  29476. {
  29477. name: "Gigamacro",
  29478. height: math.unit(0.2, "earths")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(152, "feet"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/kenzie-lee/front.svg",
  29490. extra: 1869/1774,
  29491. bottom: 128/1997
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(86, "feet"),
  29496. name: "Side",
  29497. image: {
  29498. source: "./media/characters/kenzie-lee/side.svg",
  29499. extra: 930/815,
  29500. bottom: 177/1107
  29501. }
  29502. },
  29503. paw: {
  29504. height: math.unit(15, "feet"),
  29505. name: "Paw",
  29506. image: {
  29507. source: "./media/characters/kenzie-lee/paw.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Kenzie Flea",
  29514. height: math.unit(2, "mm"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Micro",
  29519. height: math.unit(2, "inches")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(152, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(7, "miles")
  29528. },
  29529. {
  29530. name: "Gigamacro",
  29531. height: math.unit(8000, "miles")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/withers/front.svg",
  29543. extra: 1935/1760,
  29544. bottom: 72/2007
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6, "feet"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/withers/back.svg",
  29552. extra: 1944/1792,
  29553. bottom: 12/1956
  29554. }
  29555. },
  29556. dressed: {
  29557. height: math.unit(6, "feet"),
  29558. name: "Dressed",
  29559. image: {
  29560. source: "./media/characters/withers/dressed.svg",
  29561. extra: 1937/1765,
  29562. bottom: 73/2010
  29563. }
  29564. },
  29565. phase1: {
  29566. height: math.unit(1.1, "feet"),
  29567. name: "Phase 1",
  29568. image: {
  29569. source: "./media/characters/withers/phase-1.svg",
  29570. extra: 1885/1232,
  29571. bottom: 0/1885
  29572. }
  29573. },
  29574. phase2: {
  29575. height: math.unit(1.05, "feet"),
  29576. name: "Phase 2",
  29577. image: {
  29578. source: "./media/characters/withers/phase-2.svg",
  29579. extra: 1792/1090,
  29580. bottom: 0/1792
  29581. }
  29582. },
  29583. partyWipe: {
  29584. height: math.unit(1.1, "feet"),
  29585. name: "Party Wipe",
  29586. image: {
  29587. source: "./media/characters/withers/party-wipe.svg",
  29588. extra: 1864/1207,
  29589. bottom: 0/1864
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(167, "feet"),
  29597. default: true
  29598. },
  29599. {
  29600. name: "Megamacro",
  29601. height: math.unit(15, "miles")
  29602. }
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(6 + 7 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/nemoskii/front.svg",
  29614. extra: 2270 / 1734,
  29615. bottom: 86 / 2354
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(6 + 7 / 12, "feet"),
  29620. weight: math.unit(250, "lb"),
  29621. name: "Back",
  29622. image: {
  29623. source: "./media/characters/nemoskii/back.svg",
  29624. extra: 1845 / 1788,
  29625. bottom: 10.5 / 1852
  29626. }
  29627. },
  29628. head: {
  29629. height: math.unit(1.31, "feet"),
  29630. name: "Head",
  29631. image: {
  29632. source: "./media/characters/nemoskii/head.svg"
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Micro",
  29639. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29640. },
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(6 + 7 / 12, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit((6 + 7 / 12) * 150, "feet")
  29649. },
  29650. {
  29651. name: "Macro+",
  29652. height: math.unit((6 + 7 / 12) * 500, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(1, "mile"),
  29665. weight: math.unit(265261.9, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/shui/front.svg",
  29669. extra: 1633 / 1564,
  29670. bottom: 91.5 / 1726
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(1, "mile"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(12 + 6 / 12, "feet"),
  29687. weight: math.unit(1342, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/arokh-takakura/front.svg",
  29691. extra: 1089 / 1043,
  29692. bottom: 77.4 / 1176.7
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. weight: math.unit(1342, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/arokh-takakura/back.svg",
  29701. extra: 1046 / 1019,
  29702. bottom: 102 / 1150
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Big",
  29709. height: math.unit(12 + 6 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/theo/front.svg",
  29723. extra: 1184 / 1131,
  29724. bottom: 7.4 / 1191
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Micro",
  29731. height: math.unit(5, "inches")
  29732. },
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(5 + 6 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. weight: math.unit(130, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/cecelia-swift/front.svg",
  29749. extra: 502 / 484,
  29750. bottom: 23 / 523
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 9 / 12, "feet"),
  29755. weight: math.unit(130, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/cecelia-swift/back.svg",
  29759. extra: 499 / 485,
  29760. bottom: 12 / 511
  29761. }
  29762. },
  29763. head: {
  29764. height: math.unit(0.90, "feet"),
  29765. name: "Head",
  29766. image: {
  29767. source: "./media/characters/cecelia-swift/head.svg"
  29768. }
  29769. },
  29770. rump: {
  29771. height: math.unit(1.75, "feet"),
  29772. name: "Rump",
  29773. image: {
  29774. source: "./media/characters/cecelia-swift/rump.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(5 + 9 / 12, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Big",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(100, "feet")
  29791. },
  29792. {
  29793. name: "Macro+",
  29794. height: math.unit(500, "feet")
  29795. },
  29796. {
  29797. name: "Macro++",
  29798. height: math.unit(1000, "feet")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(6, "feet"),
  29807. weight: math.unit(150, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/kaunan/front.svg",
  29811. extra: 2890 / 2523,
  29812. bottom: 49 / 2939
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(150, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29826. {
  29827. dressed: {
  29828. height: math.unit(175, "cm"),
  29829. weight: math.unit(60, "kg"),
  29830. name: "Dressed",
  29831. image: {
  29832. source: "./media/characters/fei/dressed.svg",
  29833. extra: 1402/1278,
  29834. bottom: 27/1429
  29835. }
  29836. },
  29837. nude: {
  29838. height: math.unit(175, "cm"),
  29839. weight: math.unit(60, "kg"),
  29840. name: "Nude",
  29841. image: {
  29842. source: "./media/characters/fei/nude.svg",
  29843. extra: 1402/1278,
  29844. bottom: 27/1429
  29845. }
  29846. },
  29847. heels: {
  29848. height: math.unit(0.466, "feet"),
  29849. name: "Heels",
  29850. image: {
  29851. source: "./media/characters/fei/heels.svg",
  29852. extra: 156/152,
  29853. bottom: 28/184
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Mortal",
  29860. height: math.unit(175, "cm")
  29861. },
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(3500, "m")
  29865. },
  29866. {
  29867. name: "Stroll",
  29868. height: math.unit(18.4, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Showoff",
  29873. height: math.unit(175, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(7, "feet"),
  29882. weight: math.unit(1000, "kg"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/edrax/front.svg",
  29886. extra: 2838 / 2550,
  29887. bottom: 130 / 2968
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Small",
  29894. height: math.unit(7, "feet")
  29895. },
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(1500, "meters")
  29899. },
  29900. {
  29901. name: "Mega",
  29902. height: math.unit(12000000, "km"),
  29903. default: true
  29904. },
  29905. {
  29906. name: "Megamacro",
  29907. height: math.unit(10600000, "lightyears")
  29908. },
  29909. {
  29910. name: "Hypermacro",
  29911. height: math.unit(256, "yottameters")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(10, "feet"),
  29920. weight: math.unit(750, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/clove/front.svg",
  29924. extra: 1918/1751,
  29925. bottom: 52/1970
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(10, "feet"),
  29930. weight: math.unit(750, "lb"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/clove/back.svg",
  29934. extra: 1912/1747,
  29935. bottom: 50/1962
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(10, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(4, "feet"),
  29952. weight: math.unit(50, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/alex-rabbit/front.svg",
  29956. extra: 507 / 458,
  29957. bottom: 18.5 / 527
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(4, "feet"),
  29962. weight: math.unit(50, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/alex-rabbit/back.svg",
  29966. extra: 502 / 460,
  29967. bottom: 18.9 / 521
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(4, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(1 + 3 / 12, "feet"),
  29984. weight: math.unit(80, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/zander-rose/front.svg",
  29988. extra: 916 / 797,
  29989. bottom: 17 / 933
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. weight: math.unit(80, "lb"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/zander-rose/back.svg",
  29998. extra: 903 / 779,
  29999. bottom: 31 / 934
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(1 + 3 / 12, "feet"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30013. {
  30014. anthro: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(150, "lb"),
  30017. name: "Anthro",
  30018. image: {
  30019. source: "./media/characters/razz/anthro.svg",
  30020. extra: 1437 / 1343,
  30021. bottom: 48 / 1485
  30022. }
  30023. },
  30024. feral: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Feral",
  30028. image: {
  30029. source: "./media/characters/razz/feral.svg",
  30030. extra: 2569 / 1385,
  30031. bottom: 95 / 2664
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. weight: math.unit(500, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/morrigan/front.svg",
  30052. extra: 2707 / 2579,
  30053. bottom: 156 / 2863
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(9 + 4 / 12, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(5, "stories"),
  30070. weight: math.unit(4000, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/jenene/front.svg",
  30074. extra: 1780 / 1710,
  30075. bottom: 57 / 1837
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(5, "stories"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30089. {
  30090. taurSfw: {
  30091. height: math.unit(10, "meters"),
  30092. weight: math.unit(17500, "kg"),
  30093. name: "Taur",
  30094. image: {
  30095. source: "./media/characters/faey/taur-sfw.svg",
  30096. extra: 1200 / 968,
  30097. bottom: 41 / 1241
  30098. }
  30099. },
  30100. chestmaw: {
  30101. height: math.unit(2.01, "meters"),
  30102. name: "Chestmaw",
  30103. image: {
  30104. source: "./media/characters/faey/chestmaw.svg"
  30105. }
  30106. },
  30107. foot: {
  30108. height: math.unit(2.43, "meters"),
  30109. name: "Foot",
  30110. image: {
  30111. source: "./media/characters/faey/foot.svg"
  30112. }
  30113. },
  30114. jaws: {
  30115. height: math.unit(1.66, "meters"),
  30116. name: "Jaws",
  30117. image: {
  30118. source: "./media/characters/faey/jaws.svg"
  30119. }
  30120. },
  30121. tongues: {
  30122. height: math.unit(2.01, "meters"),
  30123. name: "Tongues",
  30124. image: {
  30125. source: "./media/characters/faey/tongues.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Small",
  30132. height: math.unit(10, "meters"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Big",
  30137. height: math.unit(500000, "km")
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(7, "feet"),
  30146. weight: math.unit(275, "lb"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/roku/front.svg",
  30150. extra: 903 / 878,
  30151. bottom: 37 / 940
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(7, "feet"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(500, "feet")
  30164. },
  30165. {
  30166. name: "Megamacro",
  30167. height: math.unit(200, "miles")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30173. {
  30174. front: {
  30175. height: math.unit(6 + 2 / 12, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/lira/front.svg",
  30180. extra: 1727 / 1605,
  30181. bottom: 26 / 1753
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(6 + 2 / 12, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/lira/back.svg",
  30190. extra: 1713/1621,
  30191. bottom: 20/1733
  30192. }
  30193. },
  30194. hand: {
  30195. height: math.unit(0.75, "feet"),
  30196. name: "Hand",
  30197. image: {
  30198. source: "./media/characters/lira/hand.svg"
  30199. }
  30200. },
  30201. maw: {
  30202. height: math.unit(0.65, "feet"),
  30203. name: "Maw",
  30204. image: {
  30205. source: "./media/characters/lira/maw.svg"
  30206. }
  30207. },
  30208. pawDigi: {
  30209. height: math.unit(1.6, "feet"),
  30210. name: "Paw Digi",
  30211. image: {
  30212. source: "./media/characters/lira/paw-digi.svg"
  30213. }
  30214. },
  30215. pawPlanti: {
  30216. height: math.unit(1.4, "feet"),
  30217. name: "Paw Planti",
  30218. image: {
  30219. source: "./media/characters/lira/paw-planti.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(6 + 2 / 12, "feet"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Macro",
  30231. height: math.unit(100, "feet")
  30232. },
  30233. {
  30234. name: "Macro²",
  30235. height: math.unit(1600, "feet")
  30236. },
  30237. {
  30238. name: "Planetary",
  30239. height: math.unit(20, "earths")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/hadjet/front.svg",
  30252. extra: 1480 / 1346,
  30253. bottom: 26 / 1506
  30254. }
  30255. },
  30256. frontNsfw: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Front (NSFW)",
  30260. image: {
  30261. source: "./media/characters/hadjet/front-nsfw.svg",
  30262. extra: 1440 / 1358,
  30263. bottom: 52 / 1492
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(10, "stories"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Megamacro",
  30275. height: math.unit(1.5, "miles")
  30276. },
  30277. {
  30278. name: "Megamacro+",
  30279. height: math.unit(5, "miles")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30285. {
  30286. side: {
  30287. height: math.unit(106, "feet"),
  30288. weight: math.unit(500, "tonnes"),
  30289. name: "Side",
  30290. image: {
  30291. source: "./media/characters/kodran/side.svg",
  30292. extra: 553 / 480,
  30293. bottom: 33 / 586
  30294. }
  30295. },
  30296. front: {
  30297. height: math.unit(132, "feet"),
  30298. weight: math.unit(500, "tonnes"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/kodran/front.svg",
  30302. extra: 667 / 643,
  30303. bottom: 42 / 709
  30304. }
  30305. },
  30306. flying: {
  30307. height: math.unit(350, "feet"),
  30308. weight: math.unit(500, "tonnes"),
  30309. name: "Flying",
  30310. image: {
  30311. source: "./media/characters/kodran/flying.svg"
  30312. }
  30313. },
  30314. foot: {
  30315. height: math.unit(33, "feet"),
  30316. name: "Foot",
  30317. image: {
  30318. source: "./media/characters/kodran/foot.svg"
  30319. }
  30320. },
  30321. footFront: {
  30322. height: math.unit(19, "feet"),
  30323. name: "Foot (Front)",
  30324. image: {
  30325. source: "./media/characters/kodran/foot-front.svg",
  30326. extra: 261 / 261,
  30327. bottom: 91 / 352
  30328. }
  30329. },
  30330. headFront: {
  30331. height: math.unit(53, "feet"),
  30332. name: "Head (Front)",
  30333. image: {
  30334. source: "./media/characters/kodran/head-front.svg"
  30335. }
  30336. },
  30337. headSide: {
  30338. height: math.unit(65, "feet"),
  30339. name: "Head (Side)",
  30340. image: {
  30341. source: "./media/characters/kodran/head-side.svg"
  30342. }
  30343. },
  30344. throat: {
  30345. height: math.unit(79, "feet"),
  30346. name: "Throat",
  30347. image: {
  30348. source: "./media/characters/kodran/throat.svg"
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Large",
  30355. height: math.unit(106, "feet"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30362. {
  30363. side: {
  30364. height: math.unit(11, "feet"),
  30365. weight: math.unit(150, "lb"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/pyxaron/side.svg",
  30369. extra: 305 / 195,
  30370. bottom: 17 / 322
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(11, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/meep/front.svg",
  30391. extra: 88 / 80,
  30392. bottom: 6 / 94
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Fun Sized",
  30399. height: math.unit(2, "inches"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Friend Sized",
  30404. height: math.unit(8, "inches")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(15, "feet"),
  30413. weight: math.unit(2500, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/holly-rabbit/front.svg",
  30417. extra: 1433 / 1233,
  30418. bottom: 125 / 1558
  30419. }
  30420. },
  30421. dick: {
  30422. height: math.unit(4.6, "feet"),
  30423. name: "Dick",
  30424. image: {
  30425. source: "./media/characters/holly-rabbit/dick.svg"
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(15, "feet"),
  30433. default: true
  30434. },
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(250, "feet")
  30438. },
  30439. {
  30440. name: "Macro+",
  30441. height: math.unit(2500, "feet")
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(3.02, "meters"),
  30450. weight: math.unit(500, "kg"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/drena/front.svg",
  30454. extra: 282 / 243,
  30455. bottom: 8 / 290
  30456. }
  30457. },
  30458. side: {
  30459. height: math.unit(3.02, "meters"),
  30460. weight: math.unit(500, "kg"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/drena/side.svg",
  30464. extra: 280 / 245,
  30465. bottom: 10 / 290
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(3.02, "meters"),
  30470. weight: math.unit(500, "kg"),
  30471. name: "Back",
  30472. image: {
  30473. source: "./media/characters/drena/back.svg",
  30474. extra: 278 / 243,
  30475. bottom: 2 / 280
  30476. }
  30477. },
  30478. foot: {
  30479. height: math.unit(0.75, "meters"),
  30480. name: "Foot",
  30481. image: {
  30482. source: "./media/characters/drena/foot.svg"
  30483. }
  30484. },
  30485. maw: {
  30486. height: math.unit(0.82, "meters"),
  30487. name: "Maw",
  30488. image: {
  30489. source: "./media/characters/drena/maw.svg"
  30490. }
  30491. },
  30492. eating: {
  30493. height: math.unit(0.75, "meters"),
  30494. name: "Eating",
  30495. image: {
  30496. source: "./media/characters/drena/eating.svg"
  30497. }
  30498. },
  30499. rump: {
  30500. height: math.unit(0.93, "meters"),
  30501. name: "Rump",
  30502. image: {
  30503. source: "./media/characters/drena/rump.svg"
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Normal",
  30510. height: math.unit(3.02, "meters"),
  30511. default: true
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30517. {
  30518. front: {
  30519. height: math.unit(6 + 4 / 12, "feet"),
  30520. weight: math.unit(250, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/remmyzilla/front.svg",
  30524. extra: 4033 / 3588,
  30525. bottom: 123 / 4156
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(6 + 4 / 12, "feet"),
  30530. weight: math.unit(250, "lb"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/remmyzilla/back.svg",
  30534. extra: 2687 / 2555,
  30535. bottom: 48 / 2735
  30536. }
  30537. },
  30538. paw: {
  30539. height: math.unit(1.73, "feet"),
  30540. name: "Paw",
  30541. image: {
  30542. source: "./media/characters/remmyzilla/paw.svg"
  30543. },
  30544. extraAttributes: {
  30545. "toeSize": {
  30546. name: "Toe Size",
  30547. power: 2,
  30548. type: "area",
  30549. base: math.unit(0.0035, "m^2")
  30550. },
  30551. "padSize": {
  30552. name: "Pad Size",
  30553. power: 2,
  30554. type: "area",
  30555. base: math.unit(0.015, "m^2")
  30556. },
  30557. "pawsize": {
  30558. name: "Paw Size",
  30559. power: 2,
  30560. type: "area",
  30561. base: math.unit(0.072, "m^2")
  30562. },
  30563. }
  30564. },
  30565. maw: {
  30566. height: math.unit(1.73, "feet"),
  30567. name: "Maw",
  30568. image: {
  30569. source: "./media/characters/remmyzilla/maw.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(6 + 4 / 12, "feet")
  30577. },
  30578. {
  30579. name: "Minimacro",
  30580. height: math.unit(12 + 8 / 12, "feet")
  30581. },
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(640, "feet"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Megamacro",
  30589. height: math.unit(6400, "feet")
  30590. },
  30591. {
  30592. name: "Gigamacro",
  30593. height: math.unit(64000, "miles")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(2.5, "meters"),
  30602. weight: math.unit(300, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/lawrence/front.svg",
  30606. extra: 357 / 335,
  30607. bottom: 30 / 387
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(2.5, "meters"),
  30612. weight: math.unit(300, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/lawrence/back.svg",
  30616. extra: 357 / 338,
  30617. bottom: 16 / 373
  30618. }
  30619. },
  30620. head: {
  30621. height: math.unit(0.9, "meter"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/lawrence/head.svg"
  30625. }
  30626. },
  30627. maw: {
  30628. height: math.unit(0.7, "meter"),
  30629. name: "Maw",
  30630. image: {
  30631. source: "./media/characters/lawrence/maw.svg"
  30632. }
  30633. },
  30634. footBottom: {
  30635. height: math.unit(0.5, "meter"),
  30636. name: "Foot (Bottom)",
  30637. image: {
  30638. source: "./media/characters/lawrence/foot-bottom.svg"
  30639. }
  30640. },
  30641. footTop: {
  30642. height: math.unit(0.5, "meter"),
  30643. name: "Foot (Top)",
  30644. image: {
  30645. source: "./media/characters/lawrence/foot-top.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(2.5, "meters"),
  30653. default: true
  30654. },
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(95, "meters")
  30658. },
  30659. {
  30660. name: "Megamacro",
  30661. height: math.unit(150, "km")
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30667. {
  30668. front: {
  30669. height: math.unit(4.2, "meters"),
  30670. name: "Front",
  30671. image: {
  30672. source: "./media/characters/sydney/front.svg",
  30673. extra: 1323 / 1277,
  30674. bottom: 111 / 1434
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Normal",
  30681. height: math.unit(4.2, "meters"),
  30682. default: true
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30688. {
  30689. back: {
  30690. height: math.unit(201, "feet"),
  30691. name: "Back",
  30692. image: {
  30693. source: "./media/characters/jessica/back.svg",
  30694. extra: 273 / 259,
  30695. bottom: 7 / 280
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(201, "feet"),
  30703. default: true
  30704. },
  30705. {
  30706. name: "Megamacro",
  30707. height: math.unit(8, "miles")
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30713. {
  30714. side: {
  30715. height: math.unit(5.6, "m"),
  30716. weight: math.unit(8000, "kg"),
  30717. name: "Side",
  30718. image: {
  30719. source: "./media/characters/victoria/side.svg",
  30720. extra: 1542/1229,
  30721. bottom: 124/1666
  30722. }
  30723. },
  30724. maw: {
  30725. height: math.unit(7.14, "feet"),
  30726. name: "Maw",
  30727. image: {
  30728. source: "./media/characters/victoria/maw.svg"
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Normal",
  30735. height: math.unit(5.6, "m"),
  30736. default: true
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30742. {
  30743. front: {
  30744. height: math.unit(5 + 6 / 12, "feet"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/cat/front.svg",
  30748. extra: 1449/1295,
  30749. bottom: 34/1483
  30750. },
  30751. form: "cat",
  30752. default: true
  30753. },
  30754. back: {
  30755. height: math.unit(5 + 6 / 12, "feet"),
  30756. name: "Back",
  30757. image: {
  30758. source: "./media/characters/cat/back.svg",
  30759. extra: 1466/1301,
  30760. bottom: 19/1485
  30761. },
  30762. form: "cat"
  30763. },
  30764. taur: {
  30765. height: math.unit(7, "feet"),
  30766. name: "Taur",
  30767. image: {
  30768. source: "./media/characters/cat/taur.svg",
  30769. extra: 1389/1233,
  30770. bottom: 83/1472
  30771. },
  30772. form: "taur",
  30773. default: true
  30774. },
  30775. lucarioFront: {
  30776. height: math.unit(4, "feet"),
  30777. name: "Lucario (Front)",
  30778. image: {
  30779. source: "./media/characters/cat/lucario-front.svg",
  30780. extra: 1149/1019,
  30781. bottom: 84/1233
  30782. },
  30783. form: "lucario",
  30784. default: true
  30785. },
  30786. lucarioBack: {
  30787. height: math.unit(4, "feet"),
  30788. name: "Lucario (Back)",
  30789. image: {
  30790. source: "./media/characters/cat/lucario-back.svg",
  30791. extra: 1190/1059,
  30792. bottom: 33/1223
  30793. },
  30794. form: "lucario"
  30795. },
  30796. megaLucario: {
  30797. height: math.unit(4, "feet"),
  30798. name: "Mega Lucario",
  30799. image: {
  30800. source: "./media/characters/cat/mega-lucario.svg",
  30801. extra: 1515 / 1319,
  30802. bottom: 63 / 1578
  30803. },
  30804. form: "lucario"
  30805. },
  30806. nickit: {
  30807. height: math.unit(2, "feet"),
  30808. name: "Nickit",
  30809. image: {
  30810. source: "./media/characters/cat/nickit.svg",
  30811. extra: 1980 / 1585,
  30812. bottom: 102 / 2082
  30813. },
  30814. form: "nickit",
  30815. default: true
  30816. },
  30817. lopunnyFront: {
  30818. height: math.unit(5, "feet"),
  30819. name: "Lopunny (Front)",
  30820. image: {
  30821. source: "./media/characters/cat/lopunny-front.svg",
  30822. extra: 1782 / 1469,
  30823. bottom: 38 / 1820
  30824. },
  30825. form: "lopunny",
  30826. default: true
  30827. },
  30828. lopunnyBack: {
  30829. height: math.unit(5, "feet"),
  30830. name: "Lopunny (Back)",
  30831. image: {
  30832. source: "./media/characters/cat/lopunny-back.svg",
  30833. extra: 1660 / 1490,
  30834. bottom: 25 / 1685
  30835. },
  30836. form: "lopunny"
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Really small",
  30842. height: math.unit(1, "nm")
  30843. },
  30844. {
  30845. name: "Micro",
  30846. height: math.unit(5, "inches")
  30847. },
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(5 + 6 / 12, "feet"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(50, "feet")
  30856. },
  30857. {
  30858. name: "Macro+",
  30859. height: math.unit(150, "feet")
  30860. },
  30861. {
  30862. name: "Megamacro",
  30863. height: math.unit(100, "miles")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(63.4, "meters"),
  30872. weight: math.unit(3.28349e+6, "kilograms"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/kirina-violet/front.svg",
  30876. extra: 2812 / 2725,
  30877. bottom: 0 / 2812
  30878. }
  30879. },
  30880. back: {
  30881. height: math.unit(63.4, "meters"),
  30882. weight: math.unit(3.28349e+6, "kilograms"),
  30883. name: "Back",
  30884. image: {
  30885. source: "./media/characters/kirina-violet/back.svg",
  30886. extra: 2812 / 2725,
  30887. bottom: 0 / 2812
  30888. }
  30889. },
  30890. mouth: {
  30891. height: math.unit(4.35, "meters"),
  30892. name: "Mouth",
  30893. image: {
  30894. source: "./media/characters/kirina-violet/mouth.svg"
  30895. }
  30896. },
  30897. paw: {
  30898. height: math.unit(5.6, "meters"),
  30899. name: "Paw",
  30900. image: {
  30901. source: "./media/characters/kirina-violet/paw.svg"
  30902. }
  30903. },
  30904. tail: {
  30905. height: math.unit(18, "meters"),
  30906. name: "Tail",
  30907. image: {
  30908. source: "./media/characters/kirina-violet/tail.svg"
  30909. }
  30910. },
  30911. },
  30912. [
  30913. {
  30914. name: "Macro",
  30915. height: math.unit(63.4, "meters"),
  30916. default: true
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30922. {
  30923. front: {
  30924. height: math.unit(75, "feet"),
  30925. name: "Front",
  30926. image: {
  30927. source: "./media/characters/cat-gigachu/front.svg",
  30928. extra: 1239/1027,
  30929. bottom: 32/1271
  30930. }
  30931. },
  30932. back: {
  30933. height: math.unit(75, "feet"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/cat-gigachu/back.svg",
  30937. extra: 1229/1030,
  30938. bottom: 9/1238
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Dynamax",
  30945. height: math.unit(75, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/sfaiyan/front.svg",
  30959. extra: 999 / 978,
  30960. bottom: 5 / 1004
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(1.82, "meters")
  30968. },
  30969. {
  30970. name: "Giant",
  30971. height: math.unit(2.27, "km"),
  30972. default: true
  30973. },
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(179, "cm"),
  30981. weight: math.unit(100, "kg"),
  30982. name: "Front",
  30983. image: {
  30984. source: "./media/characters/raunehkeli/front.svg",
  30985. extra: 1934 / 1926,
  30986. bottom: 0 / 1934
  30987. }
  30988. },
  30989. },
  30990. [
  30991. {
  30992. name: "Normal",
  30993. height: math.unit(179, "cm")
  30994. },
  30995. {
  30996. name: "Maximum",
  30997. height: math.unit(575, "meters"),
  30998. default: true
  30999. },
  31000. ]
  31001. ))
  31002. characterMakers.push(() => makeCharacter(
  31003. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31004. {
  31005. front: {
  31006. height: math.unit(6, "feet"),
  31007. weight: math.unit(150, "lb"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31011. extra: 2625 / 2518,
  31012. bottom: 60 / 2685
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(6 + 2 / 12, "feet")
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(1180, "feet"),
  31024. default: true
  31025. },
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31030. {
  31031. front: {
  31032. height: math.unit(5 + 6 / 12, "feet"),
  31033. weight: math.unit(108, "lb"),
  31034. name: "Front",
  31035. image: {
  31036. source: "./media/characters/lilith-zott/front.svg",
  31037. extra: 2510 / 2238,
  31038. bottom: 100 / 2610
  31039. }
  31040. },
  31041. frontDressed: {
  31042. height: math.unit(5 + 6 / 12, "feet"),
  31043. weight: math.unit(108, "lb"),
  31044. name: "Front (Dressed)",
  31045. image: {
  31046. source: "./media/characters/lilith-zott/front-dressed.svg",
  31047. extra: 2510 / 2238,
  31048. bottom: 100 / 2610
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(5 + 6 / 12, "feet")
  31056. },
  31057. {
  31058. name: "Macro",
  31059. height: math.unit(1030, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(6, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31073. extra: 2567 / 2435,
  31074. bottom: 39 / 2606
  31075. }
  31076. },
  31077. frontSuper: {
  31078. height: math.unit(6, "feet"),
  31079. name: "Front (Super)",
  31080. image: {
  31081. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31082. extra: 2567 / 2435,
  31083. bottom: 39 / 2606
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(5 + 10 / 12, "feet")
  31091. },
  31092. {
  31093. name: "Macro",
  31094. height: math.unit(1100, "feet"),
  31095. default: true
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(100, "miles"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/sona/front.svg",
  31107. extra: 2433 / 2201,
  31108. bottom: 53 / 2486
  31109. }
  31110. },
  31111. foot: {
  31112. height: math.unit(16.1, "miles"),
  31113. name: "Foot",
  31114. image: {
  31115. source: "./media/characters/sona/foot.svg"
  31116. }
  31117. },
  31118. },
  31119. [
  31120. {
  31121. name: "Macro",
  31122. height: math.unit(100, "miles"),
  31123. default: true
  31124. },
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31129. {
  31130. front: {
  31131. height: math.unit(6, "feet"),
  31132. weight: math.unit(150, "lb"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/bailey/front.svg",
  31136. extra: 1778 / 1724,
  31137. bottom: 30 / 1808
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Micro",
  31144. height: math.unit(4, "inches")
  31145. },
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(5 + 5 / 12, "feet"),
  31149. default: true
  31150. },
  31151. {
  31152. name: "Macro",
  31153. height: math.unit(250, "feet")
  31154. },
  31155. {
  31156. name: "Megamacro",
  31157. height: math.unit(100, "miles")
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(5 + 2 / 12, "feet"),
  31166. weight: math.unit(120, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/snaps/front.svg",
  31170. extra: 2370 / 2177,
  31171. bottom: 48 / 2418
  31172. }
  31173. },
  31174. back: {
  31175. height: math.unit(5 + 2 / 12, "feet"),
  31176. weight: math.unit(120, "lb"),
  31177. name: "Back",
  31178. image: {
  31179. source: "./media/characters/snaps/back.svg",
  31180. extra: 2408 / 2258,
  31181. bottom: 15 / 2423
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(9, "inches")
  31189. },
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(5 + 2 / 12, "feet"),
  31193. default: true
  31194. },
  31195. {
  31196. name: "Mini Macro",
  31197. height: math.unit(10, "feet")
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(1.8, "meters"),
  31206. weight: math.unit(85, "kg"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/azteck/front.svg",
  31210. extra: 2815 / 2625,
  31211. bottom: 89 / 2904
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(1.8, "meters"),
  31216. weight: math.unit(85, "kg"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/azteck/back.svg",
  31220. extra: 2856 / 2648,
  31221. bottom: 85 / 2941
  31222. }
  31223. },
  31224. frontDressed: {
  31225. height: math.unit(1.8, "meters"),
  31226. weight: math.unit(85, "kg"),
  31227. name: "Front (Dressed)",
  31228. image: {
  31229. source: "./media/characters/azteck/front-dressed.svg",
  31230. extra: 2147 / 2003,
  31231. bottom: 68 / 2215
  31232. }
  31233. },
  31234. head: {
  31235. height: math.unit(0.47, "meters"),
  31236. weight: math.unit(85, "kg"),
  31237. name: "Head",
  31238. image: {
  31239. source: "./media/characters/azteck/head.svg"
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Bite sized",
  31246. height: math.unit(16, "cm")
  31247. },
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(1.8, "meters"),
  31251. default: true
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31257. {
  31258. front: {
  31259. height: math.unit(6, "feet"),
  31260. weight: math.unit(150, "lb"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/pidge/front.svg",
  31264. extra: 1936/1820,
  31265. bottom: 0/1936
  31266. }
  31267. },
  31268. back: {
  31269. height: math.unit(6, "feet"),
  31270. weight: math.unit(150, "lb"),
  31271. name: "Back",
  31272. image: {
  31273. source: "./media/characters/pidge/back.svg",
  31274. extra: 1938/1843,
  31275. bottom: 0/1938
  31276. }
  31277. },
  31278. casual: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(150, "lb"),
  31281. name: "Casual",
  31282. image: {
  31283. source: "./media/characters/pidge/casual.svg",
  31284. extra: 1936/1820,
  31285. bottom: 0/1936
  31286. }
  31287. },
  31288. tech: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(150, "lb"),
  31291. name: "Tech",
  31292. image: {
  31293. source: "./media/characters/pidge/tech.svg",
  31294. extra: 1802/1682,
  31295. bottom: 0/1802
  31296. }
  31297. },
  31298. head: {
  31299. height: math.unit(1.61, "feet"),
  31300. name: "Head",
  31301. image: {
  31302. source: "./media/characters/pidge/head.svg"
  31303. }
  31304. },
  31305. collar: {
  31306. height: math.unit(0.82, "feet"),
  31307. name: "Collar",
  31308. image: {
  31309. source: "./media/characters/pidge/collar.svg"
  31310. }
  31311. },
  31312. },
  31313. [
  31314. {
  31315. name: "Macro",
  31316. height: math.unit(2, "mile"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "PUPPY",
  31321. height: math.unit(20, "miles")
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(6, "feet"),
  31330. weight: math.unit(150, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/en/front.svg",
  31334. extra: 1697 / 1563,
  31335. bottom: 103 / 1800
  31336. }
  31337. },
  31338. back: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Back",
  31342. image: {
  31343. source: "./media/characters/en/back.svg",
  31344. extra: 1700 / 1570,
  31345. bottom: 51 / 1751
  31346. }
  31347. },
  31348. frontDressed: {
  31349. height: math.unit(6, "feet"),
  31350. weight: math.unit(150, "lb"),
  31351. name: "Front (Dressed)",
  31352. image: {
  31353. source: "./media/characters/en/front-dressed.svg",
  31354. extra: 1697 / 1563,
  31355. bottom: 103 / 1800
  31356. }
  31357. },
  31358. backDressed: {
  31359. height: math.unit(6, "feet"),
  31360. weight: math.unit(150, "lb"),
  31361. name: "Back (Dressed)",
  31362. image: {
  31363. source: "./media/characters/en/back-dressed.svg",
  31364. extra: 1700 / 1570,
  31365. bottom: 51 / 1751
  31366. }
  31367. },
  31368. },
  31369. [
  31370. {
  31371. name: "Macro",
  31372. height: math.unit(210, "feet"),
  31373. default: true
  31374. },
  31375. ]
  31376. ))
  31377. characterMakers.push(() => makeCharacter(
  31378. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31379. {
  31380. front: {
  31381. height: math.unit(6, "feet"),
  31382. weight: math.unit(150, "lb"),
  31383. name: "Front",
  31384. image: {
  31385. source: "./media/characters/haze-orris/front.svg",
  31386. extra: 3975 / 3525,
  31387. bottom: 137 / 4112
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Micro",
  31394. height: math.unit(150, "mm"),
  31395. default: true
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31401. {
  31402. front: {
  31403. height: math.unit(6, "feet"),
  31404. weight: math.unit(150, "lb"),
  31405. name: "Front",
  31406. image: {
  31407. source: "./media/characters/casselene-yaro/front.svg",
  31408. extra: 4721 / 4541,
  31409. bottom: 82 / 4803
  31410. }
  31411. },
  31412. back: {
  31413. height: math.unit(6, "feet"),
  31414. weight: math.unit(150, "lb"),
  31415. name: "Back",
  31416. image: {
  31417. source: "./media/characters/casselene-yaro/back.svg",
  31418. extra: 4569 / 4377,
  31419. bottom: 69 / 4638
  31420. }
  31421. },
  31422. dressed: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Dressed",
  31426. image: {
  31427. source: "./media/characters/casselene-yaro/dressed.svg",
  31428. extra: 4721 / 4541,
  31429. bottom: 82 / 4803
  31430. }
  31431. },
  31432. maw: {
  31433. height: math.unit(1, "feet"),
  31434. name: "Maw",
  31435. image: {
  31436. source: "./media/characters/casselene-yaro/maw.svg"
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(190, "feet"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(10, "feet"),
  31453. weight: math.unit(15015, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/platine/front.svg",
  31457. extra: 1741/1650,
  31458. bottom: 84/1825
  31459. }
  31460. },
  31461. side: {
  31462. height: math.unit(10, "feet"),
  31463. weight: math.unit(15015, "lb"),
  31464. name: "Side",
  31465. image: {
  31466. source: "./media/characters/platine/side.svg",
  31467. extra: 1790/1705,
  31468. bottom: 29/1819
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(10, "feet"),
  31476. default: true
  31477. },
  31478. {
  31479. name: "Macro",
  31480. height: math.unit(100, "feet")
  31481. },
  31482. {
  31483. name: "Megamacro",
  31484. height: math.unit(1000, "feet")
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(15 + 5 / 12, "feet"),
  31493. weight: math.unit(4600, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/neapolitan-ananassa/front.svg",
  31497. extra: 2903 / 2736,
  31498. bottom: 0 / 2903
  31499. }
  31500. },
  31501. side: {
  31502. height: math.unit(15 + 5 / 12, "feet"),
  31503. weight: math.unit(4600, "lb"),
  31504. name: "Side",
  31505. image: {
  31506. source: "./media/characters/neapolitan-ananassa/side.svg",
  31507. extra: 2925 / 2719,
  31508. bottom: 0 / 2925
  31509. }
  31510. },
  31511. back: {
  31512. height: math.unit(15 + 5 / 12, "feet"),
  31513. weight: math.unit(4600, "lb"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/neapolitan-ananassa/back.svg",
  31517. extra: 2903 / 2736,
  31518. bottom: 0 / 2903
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(15 + 5 / 12, "feet"),
  31526. default: true
  31527. },
  31528. {
  31529. name: "Post-Millenium",
  31530. height: math.unit(35 + 5 / 12, "feet")
  31531. },
  31532. {
  31533. name: "Post-Era",
  31534. height: math.unit(450 + 5 / 12, "feet")
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(300, "meters"),
  31543. weight: math.unit(125000, "tonnes"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/pazuzu/front.svg",
  31547. extra: 877 / 794,
  31548. bottom: 47 / 924
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Macro",
  31555. height: math.unit(300, "meters"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31562. {
  31563. side: {
  31564. height: math.unit(10 + 7 / 12, "feet"),
  31565. weight: math.unit(2.5, "tons"),
  31566. name: "Side",
  31567. image: {
  31568. source: "./media/characters/aasha/side.svg",
  31569. extra: 1345 / 1245,
  31570. bottom: 111 / 1456
  31571. }
  31572. },
  31573. back: {
  31574. height: math.unit(10 + 7 / 12, "feet"),
  31575. weight: math.unit(2.5, "tons"),
  31576. name: "Back",
  31577. image: {
  31578. source: "./media/characters/aasha/back.svg",
  31579. extra: 1133 / 1057,
  31580. bottom: 257 / 1390
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(10 + 7 / 12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(6 + 3 / 12, "feet"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/nevan/front.svg",
  31600. extra: 704 / 704,
  31601. bottom: 28 / 732
  31602. }
  31603. },
  31604. back: {
  31605. height: math.unit(6 + 3 / 12, "feet"),
  31606. name: "Back",
  31607. image: {
  31608. source: "./media/characters/nevan/back.svg",
  31609. extra: 714 / 714,
  31610. bottom: 21 / 735
  31611. }
  31612. },
  31613. frontFlaccid: {
  31614. height: math.unit(6 + 3 / 12, "feet"),
  31615. name: "Front (Flaccid)",
  31616. image: {
  31617. source: "./media/characters/nevan/front-flaccid.svg",
  31618. extra: 704 / 704,
  31619. bottom: 28 / 732
  31620. }
  31621. },
  31622. frontErect: {
  31623. height: math.unit(6 + 3 / 12, "feet"),
  31624. name: "Front (Erect)",
  31625. image: {
  31626. source: "./media/characters/nevan/front-erect.svg",
  31627. extra: 704 / 704,
  31628. bottom: 28 / 732
  31629. }
  31630. },
  31631. backFlaccid: {
  31632. height: math.unit(6 + 3 / 12, "feet"),
  31633. name: "Back (Flaccid)",
  31634. image: {
  31635. source: "./media/characters/nevan/back-flaccid.svg",
  31636. extra: 714 / 714,
  31637. bottom: 21 / 735
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(6 + 3 / 12, "feet"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31651. {
  31652. front: {
  31653. height: math.unit(4, "feet"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/arhan/front.svg",
  31657. extra: 3368 / 3133,
  31658. bottom: 0 / 3368
  31659. }
  31660. },
  31661. side: {
  31662. height: math.unit(4, "feet"),
  31663. name: "Side",
  31664. image: {
  31665. source: "./media/characters/arhan/side.svg",
  31666. extra: 3347 / 3105,
  31667. bottom: 0 / 3347
  31668. }
  31669. },
  31670. tongue: {
  31671. height: math.unit(1.42, "feet"),
  31672. name: "Tongue",
  31673. image: {
  31674. source: "./media/characters/arhan/tongue.svg"
  31675. }
  31676. },
  31677. head: {
  31678. height: math.unit(0.85, "feet"),
  31679. name: "Head",
  31680. image: {
  31681. source: "./media/characters/arhan/head.svg"
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(4, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(5 + 7.5 / 12, "feet"),
  31698. weight: math.unit(120, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/digi-duncan/front.svg",
  31702. extra: 330 / 326,
  31703. bottom: 16 / 346
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(5 + 7.5 / 12, "feet"),
  31708. weight: math.unit(120, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/digi-duncan/side.svg",
  31712. extra: 341 / 337,
  31713. bottom: 1 / 342
  31714. }
  31715. },
  31716. back: {
  31717. height: math.unit(5 + 7.5 / 12, "feet"),
  31718. weight: math.unit(120, "lb"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/digi-duncan/back.svg",
  31722. extra: 330 / 326,
  31723. bottom: 12 / 342
  31724. }
  31725. },
  31726. },
  31727. [
  31728. {
  31729. name: "Speck",
  31730. height: math.unit(0.25, "mm")
  31731. },
  31732. {
  31733. name: "Micro",
  31734. height: math.unit(5, "mm")
  31735. },
  31736. {
  31737. name: "Tiny",
  31738. height: math.unit(0.5, "inches"),
  31739. default: true
  31740. },
  31741. {
  31742. name: "Human",
  31743. height: math.unit(5 + 7.5 / 12, "feet")
  31744. },
  31745. {
  31746. name: "Minigiant",
  31747. height: math.unit(8 + 5.25, "feet")
  31748. },
  31749. {
  31750. name: "Giant",
  31751. height: math.unit(2000, "feet")
  31752. },
  31753. {
  31754. name: "Mega",
  31755. height: math.unit(371.1, "miles")
  31756. },
  31757. ]
  31758. ))
  31759. characterMakers.push(() => makeCharacter(
  31760. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31761. {
  31762. front: {
  31763. height: math.unit(2, "meters"),
  31764. weight: math.unit(350, "kg"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31768. extra: 898 / 838,
  31769. bottom: 9 / 907
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Micro",
  31776. height: math.unit(8, "meters")
  31777. },
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(50, "meters"),
  31781. default: true
  31782. },
  31783. {
  31784. name: "Macro",
  31785. height: math.unit(500, "meters")
  31786. },
  31787. ]
  31788. ))
  31789. characterMakers.push(() => makeCharacter(
  31790. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31791. {
  31792. front: {
  31793. height: math.unit(6 + 6 / 12, "feet"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/khardesh/front.svg",
  31797. extra: 1788/1596,
  31798. bottom: 66/1854
  31799. }
  31800. },
  31801. back: {
  31802. height: math.unit(6 + 6 / 12, "feet"),
  31803. name: "Back",
  31804. image: {
  31805. source: "./media/characters/khardesh/back.svg",
  31806. extra: 1781/1584,
  31807. bottom: 68/1849
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(6 + 6 / 12, "feet"),
  31815. default: true
  31816. },
  31817. {
  31818. name: "Normal+",
  31819. height: math.unit(4, "meters")
  31820. },
  31821. {
  31822. name: "Macro",
  31823. height: math.unit(50, "meters")
  31824. },
  31825. {
  31826. name: "Macro+",
  31827. height: math.unit(100, "meters")
  31828. },
  31829. {
  31830. name: "Megamacro",
  31831. height: math.unit(20, "km")
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(6, "feet"),
  31840. weight: math.unit(150, "lb"),
  31841. name: "Front",
  31842. image: {
  31843. source: "./media/characters/kosho/front.svg",
  31844. extra: 1847 / 1847,
  31845. bottom: 86 / 1933
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Second-stage micro",
  31852. height: math.unit(0.5, "inches")
  31853. },
  31854. {
  31855. name: "First-stage micro",
  31856. height: math.unit(6, "inches")
  31857. },
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(6, "feet"),
  31861. default: true
  31862. },
  31863. {
  31864. name: "First-stage macro",
  31865. height: math.unit(72, "feet")
  31866. },
  31867. {
  31868. name: "Second-stage macro",
  31869. height: math.unit(864, "feet")
  31870. },
  31871. ]
  31872. ))
  31873. characterMakers.push(() => makeCharacter(
  31874. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31875. {
  31876. normal: {
  31877. height: math.unit(4 + 6 / 12, "feet"),
  31878. name: "Normal",
  31879. image: {
  31880. source: "./media/characters/hydra/normal.svg",
  31881. extra: 2833 / 2634,
  31882. bottom: 68 / 2901
  31883. }
  31884. },
  31885. smol: {
  31886. height: math.unit(0.705, "inches"),
  31887. name: "Smol",
  31888. image: {
  31889. source: "./media/characters/hydra/smol.svg",
  31890. extra: 2715 / 2540,
  31891. bottom: 0 / 2715
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(4 + 6 / 12, "feet"),
  31899. default: true
  31900. }
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(0.6, "cm"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/daz/front.svg",
  31911. extra: 1682 / 1164,
  31912. bottom: 42 / 1724
  31913. }
  31914. },
  31915. },
  31916. [
  31917. {
  31918. name: "Normal",
  31919. height: math.unit(0.6, "cm"),
  31920. default: true
  31921. },
  31922. ]
  31923. ))
  31924. characterMakers.push(() => makeCharacter(
  31925. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31926. {
  31927. front: {
  31928. height: math.unit(6, "feet"),
  31929. weight: math.unit(235, "lb"),
  31930. name: "Front",
  31931. image: {
  31932. source: "./media/characters/theo-pangolin/front.svg",
  31933. extra: 1996 / 1969,
  31934. bottom: 115 / 2111
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(6, "feet"),
  31939. weight: math.unit(235, "lb"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/theo-pangolin/back.svg",
  31943. extra: 1979 / 1979,
  31944. bottom: 40 / 2019
  31945. }
  31946. },
  31947. feral: {
  31948. height: math.unit(2, "feet"),
  31949. weight: math.unit(30, "lb"),
  31950. name: "Feral",
  31951. image: {
  31952. source: "./media/characters/theo-pangolin/feral.svg",
  31953. extra: 803 / 791,
  31954. bottom: 181 / 984
  31955. }
  31956. },
  31957. footFive: {
  31958. height: math.unit(1.43, "feet"),
  31959. name: "Foot (Five Toes)",
  31960. image: {
  31961. source: "./media/characters/theo-pangolin/foot-five.svg"
  31962. }
  31963. },
  31964. footFour: {
  31965. height: math.unit(1.43, "feet"),
  31966. name: "Foot (Four Toes)",
  31967. image: {
  31968. source: "./media/characters/theo-pangolin/foot-four.svg"
  31969. }
  31970. },
  31971. handFour: {
  31972. height: math.unit(0.81, "feet"),
  31973. name: "Hand (Four Fingers)",
  31974. image: {
  31975. source: "./media/characters/theo-pangolin/hand-four.svg"
  31976. }
  31977. },
  31978. handThree: {
  31979. height: math.unit(0.81, "feet"),
  31980. name: "Hand (Three Fingers)",
  31981. image: {
  31982. source: "./media/characters/theo-pangolin/hand-three.svg"
  31983. }
  31984. },
  31985. headFront: {
  31986. height: math.unit(1.37, "feet"),
  31987. name: "Head (Front)",
  31988. image: {
  31989. source: "./media/characters/theo-pangolin/head-front.svg"
  31990. }
  31991. },
  31992. headSide: {
  31993. height: math.unit(1.43, "feet"),
  31994. name: "Head (Side)",
  31995. image: {
  31996. source: "./media/characters/theo-pangolin/head-side.svg"
  31997. }
  31998. },
  31999. tongue: {
  32000. height: math.unit(2.29, "feet"),
  32001. name: "Tongue",
  32002. image: {
  32003. source: "./media/characters/theo-pangolin/tongue.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(6, "feet")
  32011. },
  32012. {
  32013. name: "Macro",
  32014. height: math.unit(400, "feet"),
  32015. default: true
  32016. },
  32017. ]
  32018. ))
  32019. characterMakers.push(() => makeCharacter(
  32020. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32021. {
  32022. front: {
  32023. height: math.unit(6, "inches"),
  32024. weight: math.unit(0.036, "kg"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/renée/front.svg",
  32028. extra: 900 / 886,
  32029. bottom: 8 / 908
  32030. }
  32031. },
  32032. },
  32033. [
  32034. {
  32035. name: "Nano",
  32036. height: math.unit(1, "nm")
  32037. },
  32038. {
  32039. name: "Micro",
  32040. height: math.unit(1, "mm")
  32041. },
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(6, "inches")
  32045. },
  32046. {
  32047. name: "Macro",
  32048. height: math.unit(2000, "feet"),
  32049. default: true
  32050. },
  32051. {
  32052. name: "Megamacro",
  32053. height: math.unit(2, "km")
  32054. },
  32055. {
  32056. name: "Gigamacro",
  32057. height: math.unit(2000, "km")
  32058. },
  32059. {
  32060. name: "Teramacro",
  32061. height: math.unit(250000, "km")
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(4, "meters"),
  32070. weight: math.unit(150, "kg"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/caledvwlch/front.svg",
  32074. extra: 1757/1537,
  32075. bottom: 31/1788
  32076. }
  32077. },
  32078. side: {
  32079. height: math.unit(4, "meters"),
  32080. weight: math.unit(150, "kg"),
  32081. name: "Side",
  32082. image: {
  32083. source: "./media/characters/caledvwlch/side.svg",
  32084. extra: 1605 / 1536,
  32085. bottom: 31 / 1636
  32086. }
  32087. },
  32088. back: {
  32089. height: math.unit(4, "meters"),
  32090. weight: math.unit(150, "kg"),
  32091. name: "Back",
  32092. image: {
  32093. source: "./media/characters/caledvwlch/back.svg",
  32094. extra: 1635 / 1565,
  32095. bottom: 27 / 1662
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "\"Incognito\"",
  32102. height: math.unit(4, "meters")
  32103. },
  32104. {
  32105. name: "Small rampage",
  32106. height: math.unit(600, "meters")
  32107. },
  32108. {
  32109. name: "Mega",
  32110. height: math.unit(30, "km")
  32111. },
  32112. {
  32113. name: "Home-size",
  32114. height: math.unit(50, "km"),
  32115. default: true
  32116. },
  32117. {
  32118. name: "Giga",
  32119. height: math.unit(300, "km")
  32120. },
  32121. {
  32122. name: "Lounging",
  32123. height: math.unit(11000, "km")
  32124. },
  32125. {
  32126. name: "Planet snacking",
  32127. height: math.unit(2000000, "km")
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32133. {
  32134. front: {
  32135. height: math.unit(6, "feet"),
  32136. weight: math.unit(215, "lb"),
  32137. name: "Front",
  32138. image: {
  32139. source: "./media/characters/sapphire-svell/front.svg",
  32140. extra: 495 / 455,
  32141. bottom: 20 / 515
  32142. }
  32143. },
  32144. back: {
  32145. height: math.unit(6, "feet"),
  32146. weight: math.unit(216, "lb"),
  32147. name: "Back",
  32148. image: {
  32149. source: "./media/characters/sapphire-svell/back.svg",
  32150. extra: 497 / 477,
  32151. bottom: 7 / 504
  32152. }
  32153. },
  32154. maw: {
  32155. height: math.unit(1.57, "feet"),
  32156. name: "Maw",
  32157. image: {
  32158. source: "./media/characters/sapphire-svell/maw.svg"
  32159. }
  32160. },
  32161. foot: {
  32162. height: math.unit(1.07, "feet"),
  32163. name: "Foot",
  32164. image: {
  32165. source: "./media/characters/sapphire-svell/foot.svg"
  32166. }
  32167. },
  32168. toering: {
  32169. height: math.unit(1.7, "inch"),
  32170. name: "Toering",
  32171. image: {
  32172. source: "./media/characters/sapphire-svell/toering.svg"
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(300, "feet"),
  32180. default: true
  32181. },
  32182. {
  32183. name: "Augmented",
  32184. height: math.unit(1250, "feet")
  32185. },
  32186. {
  32187. name: "Unleashed",
  32188. height: math.unit(3000, "feet")
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32194. {
  32195. side: {
  32196. height: math.unit(2 + 3 / 12, "feet"),
  32197. weight: math.unit(110, "lb"),
  32198. name: "Side",
  32199. image: {
  32200. source: "./media/characters/glitch-flux/side.svg",
  32201. extra: 997 / 805,
  32202. bottom: 20 / 1017
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(2 + 3 / 12, "feet"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32216. {
  32217. front: {
  32218. height: math.unit(4, "meters"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/mid/front.svg",
  32222. extra: 507 / 476,
  32223. bottom: 17 / 524
  32224. }
  32225. },
  32226. back: {
  32227. height: math.unit(4, "meters"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/mid/back.svg",
  32231. extra: 519 / 487,
  32232. bottom: 7 / 526
  32233. }
  32234. },
  32235. stuck: {
  32236. height: math.unit(2.2, "meters"),
  32237. name: "Stuck",
  32238. image: {
  32239. source: "./media/characters/mid/stuck.svg",
  32240. extra: 1951 / 1869,
  32241. bottom: 88 / 2039
  32242. }
  32243. }
  32244. },
  32245. [
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(4, "meters"),
  32249. default: true
  32250. },
  32251. {
  32252. name: "Big",
  32253. height: math.unit(10, "meters")
  32254. },
  32255. {
  32256. name: "Macro",
  32257. height: math.unit(800, "meters")
  32258. },
  32259. {
  32260. name: "Megamacro",
  32261. height: math.unit(100, "km")
  32262. },
  32263. {
  32264. name: "Overgrown",
  32265. height: math.unit(1, "parsec")
  32266. },
  32267. ]
  32268. ))
  32269. characterMakers.push(() => makeCharacter(
  32270. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32271. {
  32272. front: {
  32273. height: math.unit(2.5, "meters"),
  32274. weight: math.unit(225, "kg"),
  32275. name: "Front",
  32276. image: {
  32277. source: "./media/characters/iris/front.svg",
  32278. extra: 3348 / 3251,
  32279. bottom: 205 / 3553
  32280. }
  32281. },
  32282. maw: {
  32283. height: math.unit(0.56, "meter"),
  32284. name: "Maw",
  32285. image: {
  32286. source: "./media/characters/iris/maw.svg"
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Mewter cat",
  32293. height: math.unit(1.2, "meters")
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(2.5, "meters"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Minimacro",
  32302. height: math.unit(18, "feet")
  32303. },
  32304. {
  32305. name: "Macro",
  32306. height: math.unit(140, "feet")
  32307. },
  32308. {
  32309. name: "Macro+",
  32310. height: math.unit(180, "meters")
  32311. },
  32312. {
  32313. name: "Megamacro",
  32314. height: math.unit(2746, "meters")
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(6, "feet"),
  32323. weight: math.unit(135, "lb"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/axel/front.svg",
  32327. extra: 908 / 908,
  32328. bottom: 58 / 966
  32329. }
  32330. },
  32331. side: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(135, "lb"),
  32334. name: "Side",
  32335. image: {
  32336. source: "./media/characters/axel/side.svg",
  32337. extra: 958 / 958,
  32338. bottom: 11 / 969
  32339. }
  32340. },
  32341. back: {
  32342. height: math.unit(6, "feet"),
  32343. weight: math.unit(135, "lb"),
  32344. name: "Back",
  32345. image: {
  32346. source: "./media/characters/axel/back.svg",
  32347. extra: 887 / 887,
  32348. bottom: 34 / 921
  32349. }
  32350. },
  32351. head: {
  32352. height: math.unit(1.07, "feet"),
  32353. name: "Head",
  32354. image: {
  32355. source: "./media/characters/axel/head.svg"
  32356. }
  32357. },
  32358. beak: {
  32359. height: math.unit(1.4, "feet"),
  32360. name: "Beak",
  32361. image: {
  32362. source: "./media/characters/axel/beak.svg"
  32363. }
  32364. },
  32365. beakSide: {
  32366. height: math.unit(1.4, "feet"),
  32367. name: "Beak Side",
  32368. image: {
  32369. source: "./media/characters/axel/beak-side.svg"
  32370. }
  32371. },
  32372. sheath: {
  32373. height: math.unit(0.5, "feet"),
  32374. name: "Sheath",
  32375. image: {
  32376. source: "./media/characters/axel/sheath.svg"
  32377. }
  32378. },
  32379. dick: {
  32380. height: math.unit(0.98, "feet"),
  32381. name: "Dick",
  32382. image: {
  32383. source: "./media/characters/axel/dick.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Macro",
  32390. height: math.unit(68, "meters"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(3.5, "meters"),
  32400. weight: math.unit(1200, "kg"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/joanna/front.svg",
  32404. extra: 1596 / 1488,
  32405. bottom: 29 / 1625
  32406. }
  32407. },
  32408. back: {
  32409. height: math.unit(3.5, "meters"),
  32410. weight: math.unit(1200, "kg"),
  32411. name: "Back",
  32412. image: {
  32413. source: "./media/characters/joanna/back.svg",
  32414. extra: 1594 / 1495,
  32415. bottom: 26 / 1620
  32416. }
  32417. },
  32418. frontShorts: {
  32419. height: math.unit(3.5, "meters"),
  32420. weight: math.unit(1200, "kg"),
  32421. name: "Front (Shorts)",
  32422. image: {
  32423. source: "./media/characters/joanna/front-shorts.svg",
  32424. extra: 1596 / 1488,
  32425. bottom: 29 / 1625
  32426. }
  32427. },
  32428. frontBiker: {
  32429. height: math.unit(3.5, "meters"),
  32430. weight: math.unit(1200, "kg"),
  32431. name: "Front (Biker)",
  32432. image: {
  32433. source: "./media/characters/joanna/front-biker.svg",
  32434. extra: 1596 / 1488,
  32435. bottom: 29 / 1625
  32436. }
  32437. },
  32438. backBiker: {
  32439. height: math.unit(3.5, "meters"),
  32440. weight: math.unit(1200, "kg"),
  32441. name: "Back (Biker)",
  32442. image: {
  32443. source: "./media/characters/joanna/back-biker.svg",
  32444. extra: 1594 / 1495,
  32445. bottom: 88 / 1682
  32446. }
  32447. },
  32448. bikeLeft: {
  32449. height: math.unit(2.4, "meters"),
  32450. weight: math.unit(1600, "kg"),
  32451. name: "Bike (Left)",
  32452. image: {
  32453. source: "./media/characters/joanna/bike-left.svg",
  32454. extra: 720 / 720,
  32455. bottom: 8 / 728
  32456. }
  32457. },
  32458. bikeRight: {
  32459. height: math.unit(2.4, "meters"),
  32460. weight: math.unit(1600, "kg"),
  32461. name: "Bike (Right)",
  32462. image: {
  32463. source: "./media/characters/joanna/bike-right.svg",
  32464. extra: 720 / 720,
  32465. bottom: 8 / 728
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Incognito",
  32472. height: math.unit(3.5, "meters")
  32473. },
  32474. {
  32475. name: "Casual Big",
  32476. height: math.unit(200, "meters")
  32477. },
  32478. {
  32479. name: "Macro",
  32480. height: math.unit(600, "meters")
  32481. },
  32482. {
  32483. name: "Original",
  32484. height: math.unit(20, "km"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Giga",
  32489. height: math.unit(400, "km")
  32490. },
  32491. {
  32492. name: "Lounging",
  32493. height: math.unit(1500, "km")
  32494. },
  32495. {
  32496. name: "Planetary",
  32497. height: math.unit(200000, "km")
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(6, "feet"),
  32506. weight: math.unit(150, "lb"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/hugo-sigil/front.svg",
  32510. extra: 522 / 500,
  32511. bottom: 2 / 524
  32512. }
  32513. },
  32514. back: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(150, "lb"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/hugo-sigil/back.svg",
  32520. extra: 519 / 495,
  32521. bottom: 5 / 524
  32522. }
  32523. },
  32524. maw: {
  32525. height: math.unit(1.4, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Maw",
  32528. image: {
  32529. source: "./media/characters/hugo-sigil/maw.svg"
  32530. }
  32531. },
  32532. feet: {
  32533. height: math.unit(1.56, "feet"),
  32534. weight: math.unit(150, "lb"),
  32535. name: "Feet",
  32536. image: {
  32537. source: "./media/characters/hugo-sigil/feet.svg",
  32538. extra: 177 / 177,
  32539. bottom: 12 / 189
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(6, "feet")
  32547. },
  32548. {
  32549. name: "Macro",
  32550. height: math.unit(200, "feet"),
  32551. default: true
  32552. },
  32553. ]
  32554. ))
  32555. characterMakers.push(() => makeCharacter(
  32556. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32557. {
  32558. front: {
  32559. height: math.unit(6, "feet"),
  32560. weight: math.unit(150, "lb"),
  32561. name: "Front",
  32562. image: {
  32563. source: "./media/characters/peri/front.svg",
  32564. extra: 2354 / 2233,
  32565. bottom: 49 / 2403
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Really Small",
  32572. height: math.unit(1, "nm")
  32573. },
  32574. {
  32575. name: "Micro",
  32576. height: math.unit(4, "inches")
  32577. },
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(7, "inches"),
  32581. default: true
  32582. },
  32583. {
  32584. name: "Macro",
  32585. height: math.unit(400, "feet")
  32586. },
  32587. {
  32588. name: "Megamacro",
  32589. height: math.unit(100, "miles")
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32595. {
  32596. frontSlim: {
  32597. height: math.unit(7, "feet"),
  32598. name: "Front (Slim)",
  32599. image: {
  32600. source: "./media/characters/issilora/front-slim.svg",
  32601. extra: 529 / 449,
  32602. bottom: 53 / 582
  32603. }
  32604. },
  32605. sideSlim: {
  32606. height: math.unit(7, "feet"),
  32607. name: "Side (Slim)",
  32608. image: {
  32609. source: "./media/characters/issilora/side-slim.svg",
  32610. extra: 570 / 480,
  32611. bottom: 30 / 600
  32612. }
  32613. },
  32614. backSlim: {
  32615. height: math.unit(7, "feet"),
  32616. name: "Back (Slim)",
  32617. image: {
  32618. source: "./media/characters/issilora/back-slim.svg",
  32619. extra: 537 / 455,
  32620. bottom: 46 / 583
  32621. }
  32622. },
  32623. frontBuff: {
  32624. height: math.unit(7, "feet"),
  32625. name: "Front (Buff)",
  32626. image: {
  32627. source: "./media/characters/issilora/front-buff.svg",
  32628. extra: 2310 / 2035,
  32629. bottom: 335 / 2645
  32630. }
  32631. },
  32632. head: {
  32633. height: math.unit(1.94, "feet"),
  32634. name: "Head",
  32635. image: {
  32636. source: "./media/characters/issilora/head.svg"
  32637. }
  32638. },
  32639. },
  32640. [
  32641. {
  32642. name: "Minimum",
  32643. height: math.unit(7, "feet")
  32644. },
  32645. {
  32646. name: "Comfortable",
  32647. height: math.unit(17, "feet")
  32648. },
  32649. {
  32650. name: "Fun Size",
  32651. height: math.unit(47, "feet")
  32652. },
  32653. {
  32654. name: "Natural Macro",
  32655. height: math.unit(137, "feet"),
  32656. default: true
  32657. },
  32658. {
  32659. name: "Maximum Kaiju",
  32660. height: math.unit(397, "feet")
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32666. {
  32667. front: {
  32668. height: math.unit(50 + 9/12, "feet"),
  32669. weight: math.unit(32.8, "tons"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/irb'iiritaahn/front.svg",
  32673. extra: 1878/1826,
  32674. bottom: 326/2204
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(50 + 9/12, "feet"),
  32679. weight: math.unit(32.8, "tons"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/irb'iiritaahn/back.svg",
  32683. extra: 2052/2018,
  32684. bottom: 152/2204
  32685. }
  32686. },
  32687. head: {
  32688. height: math.unit(12.86, "feet"),
  32689. name: "Head",
  32690. image: {
  32691. source: "./media/characters/irb'iiritaahn/head.svg"
  32692. }
  32693. },
  32694. maw: {
  32695. height: math.unit(9.66, "feet"),
  32696. name: "Maw",
  32697. image: {
  32698. source: "./media/characters/irb'iiritaahn/maw.svg"
  32699. }
  32700. },
  32701. frontDick: {
  32702. height: math.unit(8.78461, "feet"),
  32703. name: "Front Dick",
  32704. image: {
  32705. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32706. }
  32707. },
  32708. rearDick: {
  32709. height: math.unit(8.78461, "feet"),
  32710. name: "Rear Dick",
  32711. image: {
  32712. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32713. }
  32714. },
  32715. rearDickUnfolded: {
  32716. height: math.unit(8.78, "feet"),
  32717. name: "Rear Dick (Unfolded)",
  32718. image: {
  32719. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32720. }
  32721. },
  32722. wings: {
  32723. height: math.unit(43, "feet"),
  32724. name: "Wings",
  32725. image: {
  32726. source: "./media/characters/irb'iiritaahn/wings.svg"
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(50 + 9/12, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(205, "cm"),
  32743. weight: math.unit(102, "kg"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/irbisgreif/front.svg",
  32747. extra: 785/706,
  32748. bottom: 13/798
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(205, "cm"),
  32753. weight: math.unit(102, "kg"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/irbisgreif/back.svg",
  32757. extra: 713/701,
  32758. bottom: 26/739
  32759. }
  32760. },
  32761. frontDressed: {
  32762. height: math.unit(216, "cm"),
  32763. weight: math.unit(102, "kg"),
  32764. name: "Front-dressed",
  32765. image: {
  32766. source: "./media/characters/irbisgreif/front-dressed.svg",
  32767. extra: 902/776,
  32768. bottom: 14/916
  32769. }
  32770. },
  32771. sideDressed: {
  32772. height: math.unit(195, "cm"),
  32773. weight: math.unit(102, "kg"),
  32774. name: "Side-dressed",
  32775. image: {
  32776. source: "./media/characters/irbisgreif/side-dressed.svg",
  32777. extra: 788/688,
  32778. bottom: 21/809
  32779. }
  32780. },
  32781. backDressed: {
  32782. height: math.unit(216, "cm"),
  32783. weight: math.unit(102, "kg"),
  32784. name: "Back-dressed",
  32785. image: {
  32786. source: "./media/characters/irbisgreif/back-dressed.svg",
  32787. extra: 901/783,
  32788. bottom: 10/911
  32789. }
  32790. },
  32791. dick: {
  32792. height: math.unit(0.49, "feet"),
  32793. name: "Dick",
  32794. image: {
  32795. source: "./media/characters/irbisgreif/dick.svg"
  32796. }
  32797. },
  32798. wingTop: {
  32799. height: math.unit(1.93 , "feet"),
  32800. name: "Wing-top",
  32801. image: {
  32802. source: "./media/characters/irbisgreif/wing-top.svg"
  32803. }
  32804. },
  32805. wingBottom: {
  32806. height: math.unit(1.93 , "feet"),
  32807. name: "Wing-bottom",
  32808. image: {
  32809. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(216, "cm"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(6, "feet"),
  32826. weight: math.unit(150, "lb"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/pride/front.svg",
  32830. extra: 1299/1230,
  32831. bottom: 18/1317
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Normal",
  32838. height: math.unit(7, "feet")
  32839. },
  32840. {
  32841. name: "Mini-macro",
  32842. height: math.unit(11, "feet")
  32843. },
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(15, "meters"),
  32847. default: true
  32848. },
  32849. {
  32850. name: "Macro+",
  32851. height: math.unit(40, "meters")
  32852. },
  32853. ]
  32854. ))
  32855. characterMakers.push(() => makeCharacter(
  32856. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32857. {
  32858. front: {
  32859. height: math.unit(4 + 2 / 12, "feet"),
  32860. weight: math.unit(95, "lb"),
  32861. name: "Front",
  32862. image: {
  32863. source: "./media/characters/vaelophis-nyx/front.svg",
  32864. extra: 2532/2330,
  32865. bottom: 0/2532
  32866. }
  32867. },
  32868. back: {
  32869. height: math.unit(4 + 2 / 12, "feet"),
  32870. weight: math.unit(95, "lb"),
  32871. name: "Back",
  32872. image: {
  32873. source: "./media/characters/vaelophis-nyx/back.svg",
  32874. extra: 2484/2361,
  32875. bottom: 0/2484
  32876. }
  32877. },
  32878. feralSide: {
  32879. height: math.unit(2 + 1/12, "feet"),
  32880. weight: math.unit(20, "lb"),
  32881. name: "Feral (Side)",
  32882. image: {
  32883. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32884. extra: 1721/1581,
  32885. bottom: 70/1791
  32886. }
  32887. },
  32888. feralLazing: {
  32889. height: math.unit(1.08, "feet"),
  32890. weight: math.unit(20, "lb"),
  32891. name: "Feral (Lazing)",
  32892. image: {
  32893. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32894. extra: 822/822,
  32895. bottom: 248/1070
  32896. }
  32897. },
  32898. ear: {
  32899. height: math.unit(0.416, "feet"),
  32900. name: "Ear",
  32901. image: {
  32902. source: "./media/characters/vaelophis-nyx/ear.svg"
  32903. }
  32904. },
  32905. eye: {
  32906. height: math.unit(0.0748, "feet"),
  32907. name: "Eye",
  32908. image: {
  32909. source: "./media/characters/vaelophis-nyx/eye.svg"
  32910. }
  32911. },
  32912. mouth: {
  32913. height: math.unit(0.378, "feet"),
  32914. name: "Mouth",
  32915. image: {
  32916. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32917. }
  32918. },
  32919. spade: {
  32920. height: math.unit(0.55, "feet"),
  32921. name: "Spade",
  32922. image: {
  32923. source: "./media/characters/vaelophis-nyx/spade.svg"
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(4 + 2/12, "feet"),
  32931. default: true
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32937. {
  32938. front: {
  32939. height: math.unit(7, "feet"),
  32940. weight: math.unit(231, "lb"),
  32941. name: "Front",
  32942. image: {
  32943. source: "./media/characters/flux/front.svg",
  32944. extra: 919/871,
  32945. bottom: 0/919
  32946. }
  32947. },
  32948. back: {
  32949. height: math.unit(7, "feet"),
  32950. weight: math.unit(231, "lb"),
  32951. name: "Back",
  32952. image: {
  32953. source: "./media/characters/flux/back.svg",
  32954. extra: 1040/992,
  32955. bottom: 0/1040
  32956. }
  32957. },
  32958. frontDressed: {
  32959. height: math.unit(7, "feet"),
  32960. weight: math.unit(231, "lb"),
  32961. name: "Front (Dressed)",
  32962. image: {
  32963. source: "./media/characters/flux/front-dressed.svg",
  32964. extra: 919/871,
  32965. bottom: 0/919
  32966. }
  32967. },
  32968. feralSide: {
  32969. height: math.unit(5, "feet"),
  32970. weight: math.unit(150, "lb"),
  32971. name: "Feral (Side)",
  32972. image: {
  32973. source: "./media/characters/flux/feral-side.svg",
  32974. extra: 598/528,
  32975. bottom: 28/626
  32976. }
  32977. },
  32978. head: {
  32979. height: math.unit(1.585, "feet"),
  32980. name: "Head",
  32981. image: {
  32982. source: "./media/characters/flux/head.svg"
  32983. }
  32984. },
  32985. headSide: {
  32986. height: math.unit(1.74, "feet"),
  32987. name: "Head (Side)",
  32988. image: {
  32989. source: "./media/characters/flux/head-side.svg"
  32990. }
  32991. },
  32992. headSideFire: {
  32993. height: math.unit(1.76, "feet"),
  32994. name: "Head (Side, Fire)",
  32995. image: {
  32996. source: "./media/characters/flux/head-side-fire.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(7, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(9, "feet"),
  33013. weight: math.unit(1012, "lb"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/ulfra-lupae/front.svg",
  33017. extra: 1083/1011,
  33018. bottom: 67/1150
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Micro",
  33025. height: math.unit(6, "inches")
  33026. },
  33027. {
  33028. name: "Socializing",
  33029. height: math.unit(6 + 5/12, "feet")
  33030. },
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(9, "feet"),
  33034. default: true
  33035. },
  33036. {
  33037. name: "Macro",
  33038. height: math.unit(150, "feet")
  33039. },
  33040. ]
  33041. ))
  33042. characterMakers.push(() => makeCharacter(
  33043. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33044. {
  33045. front: {
  33046. height: math.unit(5 + 2/12, "feet"),
  33047. weight: math.unit(120, "lb"),
  33048. name: "Front",
  33049. image: {
  33050. source: "./media/characters/timber/front.svg",
  33051. extra: 2814/2705,
  33052. bottom: 181/2995
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Normal",
  33059. height: math.unit(5 + 2/12, "feet"),
  33060. default: true
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(9, "feet"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/nicki/front.svg",
  33072. extra: 1240/990,
  33073. bottom: 45/1285
  33074. },
  33075. form: "anthro",
  33076. default: true
  33077. },
  33078. side: {
  33079. height: math.unit(9, "feet"),
  33080. name: "Side",
  33081. image: {
  33082. source: "./media/characters/nicki/side.svg",
  33083. extra: 1047/973,
  33084. bottom: 61/1108
  33085. },
  33086. form: "anthro"
  33087. },
  33088. back: {
  33089. height: math.unit(9, "feet"),
  33090. name: "Back",
  33091. image: {
  33092. source: "./media/characters/nicki/back.svg",
  33093. extra: 1006/965,
  33094. bottom: 39/1045
  33095. },
  33096. form: "anthro"
  33097. },
  33098. taur: {
  33099. height: math.unit(15, "feet"),
  33100. name: "Taur",
  33101. image: {
  33102. source: "./media/characters/nicki/taur.svg",
  33103. extra: 1592/1347,
  33104. bottom: 0/1592
  33105. },
  33106. form: "taur",
  33107. default: true
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Normal",
  33113. height: math.unit(9, "feet"),
  33114. form: "anthro",
  33115. default: true
  33116. },
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(15, "feet"),
  33120. form: "taur",
  33121. default: true
  33122. }
  33123. ],
  33124. {
  33125. "anthro": {
  33126. name: "Anthro",
  33127. default: true
  33128. },
  33129. "taur": {
  33130. name: "Taur"
  33131. }
  33132. }
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(7 + 10/12, "feet"),
  33139. weight: math.unit(3.5, "tons"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/lee/front.svg",
  33143. extra: 1773/1615,
  33144. bottom: 86/1859
  33145. }
  33146. },
  33147. hand: {
  33148. height: math.unit(1.78, "feet"),
  33149. name: "Hand",
  33150. image: {
  33151. source: "./media/characters/lee/hand.svg"
  33152. }
  33153. },
  33154. maw: {
  33155. height: math.unit(1.18, "feet"),
  33156. name: "Maw",
  33157. image: {
  33158. source: "./media/characters/lee/maw.svg"
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(7 + 10/12, "feet"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33172. {
  33173. front: {
  33174. height: math.unit(9, "feet"),
  33175. name: "Front",
  33176. image: {
  33177. source: "./media/characters/guti/front.svg",
  33178. extra: 4551/4355,
  33179. bottom: 123/4674
  33180. }
  33181. },
  33182. tongue: {
  33183. height: math.unit(1, "feet"),
  33184. name: "Tongue",
  33185. image: {
  33186. source: "./media/characters/guti/tongue.svg"
  33187. }
  33188. },
  33189. paw: {
  33190. height: math.unit(1.18, "feet"),
  33191. name: "Paw",
  33192. image: {
  33193. source: "./media/characters/guti/paw.svg"
  33194. }
  33195. },
  33196. },
  33197. [
  33198. {
  33199. name: "Normal",
  33200. height: math.unit(9, "feet"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33207. {
  33208. side: {
  33209. height: math.unit(5, "meters"),
  33210. name: "Side",
  33211. image: {
  33212. source: "./media/characters/vesper/side.svg",
  33213. extra: 1605/1518,
  33214. bottom: 0/1605
  33215. }
  33216. },
  33217. },
  33218. [
  33219. {
  33220. name: "Small",
  33221. height: math.unit(5, "meters")
  33222. },
  33223. {
  33224. name: "Sage",
  33225. height: math.unit(100, "meters"),
  33226. default: true
  33227. },
  33228. {
  33229. name: "Fun Size",
  33230. height: math.unit(600, "meters")
  33231. },
  33232. {
  33233. name: "Goddess",
  33234. height: math.unit(20000, "km")
  33235. },
  33236. {
  33237. name: "Maximum",
  33238. height: math.unit(5, "galaxies")
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33244. {
  33245. front: {
  33246. height: math.unit(6 + 3/12, "feet"),
  33247. weight: math.unit(190, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/gawain/front.svg",
  33251. extra: 2222/2139,
  33252. bottom: 90/2312
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. weight: math.unit(190, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/gawain/back.svg",
  33261. extra: 2199/2111,
  33262. bottom: 73/2272
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(6 + 3/12, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33276. {
  33277. side: {
  33278. height: math.unit(3.5, "meters"),
  33279. weight: math.unit(16000, "lb"),
  33280. name: "Side",
  33281. image: {
  33282. source: "./media/characters/dascalti/side.svg",
  33283. extra: 392/273,
  33284. bottom: 47/439
  33285. }
  33286. },
  33287. breath: {
  33288. height: math.unit(7.4, "feet"),
  33289. name: "Breath",
  33290. image: {
  33291. source: "./media/characters/dascalti/breath.svg"
  33292. }
  33293. },
  33294. fed: {
  33295. height: math.unit(3.6, "meters"),
  33296. weight: math.unit(16000, "lb"),
  33297. name: "Fed",
  33298. image: {
  33299. source: "./media/characters/dascalti/fed.svg",
  33300. extra: 1419/820,
  33301. bottom: 95/1514
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(3.5, "meters"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(3 + 5/12, "feet"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/mauve/front.svg",
  33321. extra: 1126/1033,
  33322. bottom: 65/1191
  33323. }
  33324. },
  33325. side: {
  33326. height: math.unit(3 + 5/12, "feet"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/mauve/side.svg",
  33330. extra: 1089/1001,
  33331. bottom: 29/1118
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(3 + 5/12, "feet"),
  33336. name: "Back",
  33337. image: {
  33338. source: "./media/characters/mauve/back.svg",
  33339. extra: 1173/1053,
  33340. bottom: 109/1282
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(3 + 5/12, "feet"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33354. {
  33355. front: {
  33356. height: math.unit(6 + 3/12, "feet"),
  33357. weight: math.unit(430, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/carlos/front.svg",
  33361. extra: 1964/1913,
  33362. bottom: 70/2034
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Normal",
  33369. height: math.unit(6 + 3/12, "feet"),
  33370. default: true
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33376. {
  33377. back: {
  33378. height: math.unit(5 + 10/12, "feet"),
  33379. weight: math.unit(200, "lb"),
  33380. name: "Back",
  33381. image: {
  33382. source: "./media/characters/jax/back.svg",
  33383. extra: 764/739,
  33384. bottom: 25/789
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(5 + 10/12, "feet"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(8, "feet"),
  33401. weight: math.unit(250, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/eikthynir/front.svg",
  33405. extra: 1332/1166,
  33406. bottom: 82/1414
  33407. }
  33408. },
  33409. back: {
  33410. height: math.unit(8, "feet"),
  33411. weight: math.unit(250, "lb"),
  33412. name: "Back",
  33413. image: {
  33414. source: "./media/characters/eikthynir/back.svg",
  33415. extra: 1342/1190,
  33416. bottom: 19/1361
  33417. }
  33418. },
  33419. dick: {
  33420. height: math.unit(2.35, "feet"),
  33421. name: "Dick",
  33422. image: {
  33423. source: "./media/characters/eikthynir/dick.svg"
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(8, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(99, "meters"),
  33440. weight: math.unit(13000, "tons"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/zlmos/front.svg",
  33444. extra: 2202/1992,
  33445. bottom: 315/2517
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Macro",
  33452. height: math.unit(99, "meters"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(6 + 5/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/purri/front.svg",
  33465. extra: 1698/1610,
  33466. bottom: 32/1730
  33467. }
  33468. },
  33469. frontAlt: {
  33470. height: math.unit(6 + 5/12, "feet"),
  33471. name: "Front (Alt)",
  33472. image: {
  33473. source: "./media/characters/purri/front-alt.svg",
  33474. extra: 450/420,
  33475. bottom: 26/476
  33476. }
  33477. },
  33478. boots: {
  33479. height: math.unit(5.5, "feet"),
  33480. name: "Boots",
  33481. image: {
  33482. source: "./media/characters/purri/boots.svg",
  33483. extra: 905/853,
  33484. bottom: 18/923
  33485. }
  33486. },
  33487. lying: {
  33488. height: math.unit(2, "feet"),
  33489. name: "Lying",
  33490. image: {
  33491. source: "./media/characters/purri/lying.svg",
  33492. extra: 940/843,
  33493. bottom: 146/1086
  33494. }
  33495. },
  33496. devious: {
  33497. height: math.unit(1.77, "feet"),
  33498. name: "Devious",
  33499. image: {
  33500. source: "./media/characters/purri/devious.svg",
  33501. extra: 1440/1155,
  33502. bottom: 147/1587
  33503. }
  33504. },
  33505. bean: {
  33506. height: math.unit(1.94, "feet"),
  33507. name: "Bean",
  33508. image: {
  33509. source: "./media/characters/purri/bean.svg"
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Micro",
  33516. height: math.unit(1, "mm")
  33517. },
  33518. {
  33519. name: "Normal",
  33520. height: math.unit(6 + 5/12, "feet"),
  33521. default: true
  33522. },
  33523. {
  33524. name: "Macro :3c",
  33525. height: math.unit(2, "miles")
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(6 + 2/12, "feet"),
  33534. weight: math.unit(250, "lb"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/moonlight/front.svg",
  33538. extra: 1044/908,
  33539. bottom: 56/1100
  33540. }
  33541. },
  33542. feral: {
  33543. height: math.unit(3 + 1/12, "feet"),
  33544. weight: math.unit(50, "kg"),
  33545. name: "Feral",
  33546. image: {
  33547. source: "./media/characters/moonlight/feral.svg",
  33548. extra: 3705/2791,
  33549. bottom: 145/3850
  33550. }
  33551. },
  33552. paw: {
  33553. height: math.unit(1, "feet"),
  33554. name: "Paw",
  33555. image: {
  33556. source: "./media/characters/moonlight/paw.svg"
  33557. }
  33558. },
  33559. paws: {
  33560. height: math.unit(0.98, "feet"),
  33561. name: "Paws",
  33562. image: {
  33563. source: "./media/characters/moonlight/paws.svg",
  33564. extra: 939/939,
  33565. bottom: 50/989
  33566. }
  33567. },
  33568. mouth: {
  33569. height: math.unit(0.48, "feet"),
  33570. name: "Mouth",
  33571. image: {
  33572. source: "./media/characters/moonlight/mouth.svg"
  33573. }
  33574. },
  33575. dick: {
  33576. height: math.unit(1.46, "feet"),
  33577. name: "Dick",
  33578. image: {
  33579. source: "./media/characters/moonlight/dick.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(6 + 2/12, "feet"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Macro",
  33591. height: math.unit(300, "feet")
  33592. },
  33593. {
  33594. name: "Macro+",
  33595. height: math.unit(1, "mile")
  33596. },
  33597. {
  33598. name: "Mt. Moon",
  33599. height: math.unit(5, "miles")
  33600. },
  33601. {
  33602. name: "Megamacro",
  33603. height: math.unit(15, "miles")
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33609. {
  33610. back: {
  33611. height: math.unit(6, "feet"),
  33612. weight: math.unit(150, "lb"),
  33613. name: "Back",
  33614. image: {
  33615. source: "./media/characters/sylen/back.svg",
  33616. extra: 1335/1273,
  33617. bottom: 107/1442
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(5 + 5/12, "feet")
  33625. },
  33626. {
  33627. name: "Megamacro",
  33628. height: math.unit(3, "miles"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(6, "feet"),
  33638. weight: math.unit(190, "lb"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/huttser/front.svg",
  33642. extra: 1152/1058,
  33643. bottom: 23/1175
  33644. }
  33645. },
  33646. side: {
  33647. height: math.unit(6, "feet"),
  33648. weight: math.unit(190, "lb"),
  33649. name: "Side",
  33650. image: {
  33651. source: "./media/characters/huttser/side.svg",
  33652. extra: 1174/1065,
  33653. bottom: 18/1192
  33654. }
  33655. },
  33656. back: {
  33657. height: math.unit(6, "feet"),
  33658. weight: math.unit(190, "lb"),
  33659. name: "Back",
  33660. image: {
  33661. source: "./media/characters/huttser/back.svg",
  33662. extra: 1158/1056,
  33663. bottom: 12/1170
  33664. }
  33665. },
  33666. },
  33667. [
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33672. {
  33673. side: {
  33674. height: math.unit(12 + 9/12, "feet"),
  33675. weight: math.unit(15000, "lb"),
  33676. name: "Side",
  33677. image: {
  33678. source: "./media/characters/faan/side.svg",
  33679. extra: 2747/2697,
  33680. bottom: 0/2747
  33681. }
  33682. },
  33683. front: {
  33684. height: math.unit(12 + 9/12, "feet"),
  33685. weight: math.unit(15000, "lb"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/faan/front.svg",
  33689. extra: 607/571,
  33690. bottom: 24/631
  33691. }
  33692. },
  33693. head: {
  33694. height: math.unit(2.85, "feet"),
  33695. name: "Head",
  33696. image: {
  33697. source: "./media/characters/faan/head.svg"
  33698. }
  33699. },
  33700. headAlt: {
  33701. height: math.unit(3.13, "feet"),
  33702. name: "Head-alt",
  33703. image: {
  33704. source: "./media/characters/faan/head-alt.svg"
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(12 + 9/12, "feet"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(6, "feet"),
  33721. weight: math.unit(300, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/tanio/front.svg",
  33725. extra: 711/673,
  33726. bottom: 25/736
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(6, "feet"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(3, "inches"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/noboru/front.svg",
  33746. extra: 1039/932,
  33747. bottom: 18/1057
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Micro",
  33754. height: math.unit(3, "inches"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(1.85, "meters"),
  33764. weight: math.unit(80, "kg"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/daniel-barrett/front.svg",
  33768. extra: 355/337,
  33769. bottom: 9/364
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Pico",
  33776. height: math.unit(0.0433, "mm")
  33777. },
  33778. {
  33779. name: "Nano",
  33780. height: math.unit(1.5, "mm")
  33781. },
  33782. {
  33783. name: "Micro",
  33784. height: math.unit(5.3, "cm"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(1.85, "meters")
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(64.7, "meters")
  33794. },
  33795. {
  33796. name: "Megamacro",
  33797. height: math.unit(2.26, "km")
  33798. },
  33799. {
  33800. name: "Gigamacro",
  33801. height: math.unit(79, "km")
  33802. },
  33803. {
  33804. name: "Teramacro",
  33805. height: math.unit(2765, "km")
  33806. },
  33807. {
  33808. name: "Petamacro",
  33809. height: math.unit(96678, "km")
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(30, "meters"),
  33818. weight: math.unit(400, "tons"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/zeel/front.svg",
  33822. extra: 2599/2599,
  33823. bottom: 226/2825
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Macro",
  33830. height: math.unit(30, "meters"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(6 + 7/12, "feet"),
  33840. weight: math.unit(210, "lb"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/tarn/front.svg",
  33844. extra: 3517/3220,
  33845. bottom: 91/3608
  33846. }
  33847. },
  33848. back: {
  33849. height: math.unit(6 + 7/12, "feet"),
  33850. weight: math.unit(210, "lb"),
  33851. name: "Back",
  33852. image: {
  33853. source: "./media/characters/tarn/back.svg",
  33854. extra: 3566/3241,
  33855. bottom: 34/3600
  33856. }
  33857. },
  33858. dick: {
  33859. height: math.unit(1.65, "feet"),
  33860. name: "Dick",
  33861. image: {
  33862. source: "./media/characters/tarn/dick.svg"
  33863. }
  33864. },
  33865. paw: {
  33866. height: math.unit(1.80, "feet"),
  33867. name: "Paw",
  33868. image: {
  33869. source: "./media/characters/tarn/paw.svg"
  33870. }
  33871. },
  33872. tongue: {
  33873. height: math.unit(0.97, "feet"),
  33874. name: "Tongue",
  33875. image: {
  33876. source: "./media/characters/tarn/tongue.svg"
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Micro",
  33883. height: math.unit(4, "inches")
  33884. },
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(6 + 7/12, "feet"),
  33888. default: true
  33889. },
  33890. {
  33891. name: "Macro",
  33892. height: math.unit(300, "feet")
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(5 + 7/12, "feet"),
  33901. weight: math.unit(80, "kg"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33905. extra: 3023/2865,
  33906. bottom: 33/3056
  33907. }
  33908. },
  33909. back: {
  33910. height: math.unit(5 + 7/12, "feet"),
  33911. weight: math.unit(80, "kg"),
  33912. name: "Back",
  33913. image: {
  33914. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33915. extra: 3020/2886,
  33916. bottom: 30/3050
  33917. }
  33918. },
  33919. dick: {
  33920. height: math.unit(0.98, "feet"),
  33921. name: "Dick",
  33922. image: {
  33923. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33924. }
  33925. },
  33926. anatomy: {
  33927. height: math.unit(2.86, "feet"),
  33928. name: "Anatomy",
  33929. image: {
  33930. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Really Small",
  33937. height: math.unit(2, "inches")
  33938. },
  33939. {
  33940. name: "Micro",
  33941. height: math.unit(5.583, "inches")
  33942. },
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(5 + 7/12, "feet"),
  33946. default: true
  33947. },
  33948. {
  33949. name: "Macro",
  33950. height: math.unit(67, "feet")
  33951. },
  33952. {
  33953. name: "Megamacro",
  33954. height: math.unit(134, "feet")
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(9, "feet"),
  33963. weight: math.unit(120, "lb"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/sally/front.svg",
  33967. extra: 1506/1349,
  33968. bottom: 66/1572
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(9, "feet"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(8, "feet"),
  33985. weight: math.unit(900, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/owen/front.svg",
  33989. extra: 1761/1657,
  33990. bottom: 74/1835
  33991. }
  33992. },
  33993. side: {
  33994. height: math.unit(8, "feet"),
  33995. weight: math.unit(900, "lb"),
  33996. name: "Side",
  33997. image: {
  33998. source: "./media/characters/owen/side.svg",
  33999. extra: 1797/1734,
  34000. bottom: 30/1827
  34001. }
  34002. },
  34003. back: {
  34004. height: math.unit(8, "feet"),
  34005. weight: math.unit(900, "lb"),
  34006. name: "Back",
  34007. image: {
  34008. source: "./media/characters/owen/back.svg",
  34009. extra: 1796/1706,
  34010. bottom: 59/1855
  34011. }
  34012. },
  34013. maw: {
  34014. height: math.unit(1.76, "feet"),
  34015. name: "Maw",
  34016. image: {
  34017. source: "./media/characters/owen/maw.svg"
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(8, "feet"),
  34025. default: true
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34031. {
  34032. front: {
  34033. height: math.unit(4, "feet"),
  34034. weight: math.unit(400, "lb"),
  34035. name: "Front",
  34036. image: {
  34037. source: "./media/characters/ryth/front.svg",
  34038. extra: 1920/1748,
  34039. bottom: 42/1962
  34040. }
  34041. },
  34042. back: {
  34043. height: math.unit(4, "feet"),
  34044. weight: math.unit(400, "lb"),
  34045. name: "Back",
  34046. image: {
  34047. source: "./media/characters/ryth/back.svg",
  34048. extra: 1897/1690,
  34049. bottom: 89/1986
  34050. }
  34051. },
  34052. mouth: {
  34053. height: math.unit(1.39, "feet"),
  34054. name: "Mouth",
  34055. image: {
  34056. source: "./media/characters/ryth/mouth.svg"
  34057. }
  34058. },
  34059. tailmaw: {
  34060. height: math.unit(1.23, "feet"),
  34061. name: "Tailmaw",
  34062. image: {
  34063. source: "./media/characters/ryth/tailmaw.svg"
  34064. }
  34065. },
  34066. goia: {
  34067. height: math.unit(4, "meters"),
  34068. weight: math.unit(10800, "lb"),
  34069. name: "Goia",
  34070. image: {
  34071. source: "./media/characters/ryth/goia.svg",
  34072. extra: 745/640,
  34073. bottom: 107/852
  34074. }
  34075. },
  34076. goiaFront: {
  34077. height: math.unit(4, "meters"),
  34078. weight: math.unit(10800, "lb"),
  34079. name: "Goia (Front)",
  34080. image: {
  34081. source: "./media/characters/ryth/goia-front.svg",
  34082. extra: 750/586,
  34083. bottom: 114/864
  34084. }
  34085. },
  34086. goiaMaw: {
  34087. height: math.unit(5.55, "feet"),
  34088. name: "Goia Maw",
  34089. image: {
  34090. source: "./media/characters/ryth/goia-maw.svg"
  34091. }
  34092. },
  34093. goiaForepaw: {
  34094. height: math.unit(3.5, "feet"),
  34095. name: "Goia Forepaw",
  34096. image: {
  34097. source: "./media/characters/ryth/goia-forepaw.svg"
  34098. }
  34099. },
  34100. goiaHindpaw: {
  34101. height: math.unit(5.55, "feet"),
  34102. name: "Goia Hindpaw",
  34103. image: {
  34104. source: "./media/characters/ryth/goia-hindpaw.svg"
  34105. }
  34106. },
  34107. },
  34108. [
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(4, "feet"),
  34112. default: true
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34118. {
  34119. front: {
  34120. height: math.unit(7, "feet"),
  34121. weight: math.unit(180, "lb"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/necrolance/front.svg",
  34125. extra: 1062/947,
  34126. bottom: 41/1103
  34127. }
  34128. },
  34129. back: {
  34130. height: math.unit(7, "feet"),
  34131. weight: math.unit(180, "lb"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/necrolance/back.svg",
  34135. extra: 1045/984,
  34136. bottom: 14/1059
  34137. }
  34138. },
  34139. wing: {
  34140. height: math.unit(2.67, "feet"),
  34141. name: "Wing",
  34142. image: {
  34143. source: "./media/characters/necrolance/wing.svg"
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(7, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34157. {
  34158. front: {
  34159. height: math.unit(76, "meters"),
  34160. weight: math.unit(30000, "tons"),
  34161. name: "Front",
  34162. image: {
  34163. source: "./media/characters/tyler/front.svg",
  34164. extra: 1640/1640,
  34165. bottom: 114/1754
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Macro",
  34172. height: math.unit(76, "meters"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(4 + 11/12, "feet"),
  34182. weight: math.unit(132, "lb"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/icey/front.svg",
  34186. extra: 2750/2550,
  34187. bottom: 33/2783
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(4 + 11/12, "feet"),
  34192. weight: math.unit(132, "lb"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/icey/back.svg",
  34196. extra: 2624/2481,
  34197. bottom: 35/2659
  34198. }
  34199. },
  34200. },
  34201. [
  34202. {
  34203. name: "Normal",
  34204. height: math.unit(4 + 11/12, "feet"),
  34205. default: true
  34206. },
  34207. ]
  34208. ))
  34209. characterMakers.push(() => makeCharacter(
  34210. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34211. {
  34212. front: {
  34213. height: math.unit(100, "feet"),
  34214. weight: math.unit(0, "lb"),
  34215. name: "Front",
  34216. image: {
  34217. source: "./media/characters/smile/front.svg",
  34218. extra: 2983/2912,
  34219. bottom: 162/3145
  34220. }
  34221. },
  34222. back: {
  34223. height: math.unit(100, "feet"),
  34224. weight: math.unit(0, "lb"),
  34225. name: "Back",
  34226. image: {
  34227. source: "./media/characters/smile/back.svg",
  34228. extra: 3143/3031,
  34229. bottom: 91/3234
  34230. }
  34231. },
  34232. head: {
  34233. height: math.unit(26.3, "feet"),
  34234. weight: math.unit(0, "lb"),
  34235. name: "Head",
  34236. image: {
  34237. source: "./media/characters/smile/head.svg"
  34238. }
  34239. },
  34240. collar: {
  34241. height: math.unit(5.3, "feet"),
  34242. weight: math.unit(0, "lb"),
  34243. name: "Collar",
  34244. image: {
  34245. source: "./media/characters/smile/collar.svg"
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Macro",
  34252. height: math.unit(100, "feet"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34259. {
  34260. dragon: {
  34261. height: math.unit(26, "feet"),
  34262. weight: math.unit(36, "tons"),
  34263. name: "Dragon",
  34264. image: {
  34265. source: "./media/characters/arimphae/dragon.svg",
  34266. extra: 1574/983,
  34267. bottom: 357/1931
  34268. }
  34269. },
  34270. drake: {
  34271. height: math.unit(9, "feet"),
  34272. weight: math.unit(1.5, "tons"),
  34273. name: "Drake",
  34274. image: {
  34275. source: "./media/characters/arimphae/drake.svg",
  34276. extra: 1120/925,
  34277. bottom: 435/1555
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Small",
  34284. height: math.unit(26*5/9, "feet")
  34285. },
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(26, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(8 + 9/12, "feet"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/xander/front.svg",
  34301. extra: 1237/974,
  34302. bottom: 94/1331
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(8 + 9/12, "feet"),
  34310. default: true
  34311. },
  34312. {
  34313. name: "Gaze Grabber",
  34314. height: math.unit(13 + 8/12, "feet")
  34315. },
  34316. {
  34317. name: "Jaw Dropper",
  34318. height: math.unit(27, "feet")
  34319. },
  34320. {
  34321. name: "Show Stopper",
  34322. height: math.unit(136, "feet")
  34323. },
  34324. {
  34325. name: "Superstar",
  34326. height: math.unit(1.9e6, "miles")
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34332. {
  34333. side: {
  34334. height: math.unit(2100, "feet"),
  34335. name: "Side",
  34336. image: {
  34337. source: "./media/characters/osiris/side.svg",
  34338. extra: 1105/939,
  34339. bottom: 167/1272
  34340. }
  34341. },
  34342. },
  34343. [
  34344. {
  34345. name: "Macro",
  34346. height: math.unit(2100, "feet"),
  34347. default: true
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(6 + 8/12, "feet"),
  34356. weight: math.unit(225, "lb"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/rhys-londe/front.svg",
  34360. extra: 2258/2141,
  34361. bottom: 188/2446
  34362. }
  34363. },
  34364. back: {
  34365. height: math.unit(6 + 8/12, "feet"),
  34366. weight: math.unit(225, "lb"),
  34367. name: "Back",
  34368. image: {
  34369. source: "./media/characters/rhys-londe/back.svg",
  34370. extra: 2237/2137,
  34371. bottom: 63/2300
  34372. }
  34373. },
  34374. frontNsfw: {
  34375. height: math.unit(6 + 8/12, "feet"),
  34376. weight: math.unit(225, "lb"),
  34377. name: "Front (NSFW)",
  34378. image: {
  34379. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34380. extra: 2258/2141,
  34381. bottom: 188/2446
  34382. }
  34383. },
  34384. backNsfw: {
  34385. height: math.unit(6 + 8/12, "feet"),
  34386. weight: math.unit(225, "lb"),
  34387. name: "Back (NSFW)",
  34388. image: {
  34389. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34390. extra: 2237/2137,
  34391. bottom: 63/2300
  34392. }
  34393. },
  34394. dick: {
  34395. height: math.unit(30, "inches"),
  34396. name: "Dick",
  34397. image: {
  34398. source: "./media/characters/rhys-londe/dick.svg"
  34399. }
  34400. },
  34401. maw: {
  34402. height: math.unit(1.6, "feet"),
  34403. name: "Maw",
  34404. image: {
  34405. source: "./media/characters/rhys-londe/maw.svg"
  34406. }
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Normal",
  34412. height: math.unit(6 + 8/12, "feet"),
  34413. default: true
  34414. },
  34415. ]
  34416. ))
  34417. characterMakers.push(() => makeCharacter(
  34418. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34419. {
  34420. front: {
  34421. height: math.unit(3 + 10/12, "feet"),
  34422. weight: math.unit(90, "lb"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/taivas-ensim/front.svg",
  34426. extra: 1327/1216,
  34427. bottom: 96/1423
  34428. }
  34429. },
  34430. back: {
  34431. height: math.unit(3 + 10/12, "feet"),
  34432. weight: math.unit(90, "lb"),
  34433. name: "Back",
  34434. image: {
  34435. source: "./media/characters/taivas-ensim/back.svg",
  34436. extra: 1355/1247,
  34437. bottom: 11/1366
  34438. }
  34439. },
  34440. frontNsfw: {
  34441. height: math.unit(3 + 10/12, "feet"),
  34442. weight: math.unit(90, "lb"),
  34443. name: "Front (NSFW)",
  34444. image: {
  34445. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34446. extra: 1327/1216,
  34447. bottom: 96/1423
  34448. }
  34449. },
  34450. backNsfw: {
  34451. height: math.unit(3 + 10/12, "feet"),
  34452. weight: math.unit(90, "lb"),
  34453. name: "Back (NSFW)",
  34454. image: {
  34455. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34456. extra: 1355/1247,
  34457. bottom: 11/1366
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(3 + 10/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(9 + 6/12, "feet"),
  34474. weight: math.unit(940, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/byliss/front.svg",
  34478. extra: 1327/1290,
  34479. bottom: 82/1409
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(9 + 6/12, "feet"),
  34484. weight: math.unit(940, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/byliss/back.svg",
  34488. extra: 1376/1349,
  34489. bottom: 9/1385
  34490. }
  34491. },
  34492. frontNsfw: {
  34493. height: math.unit(9 + 6/12, "feet"),
  34494. weight: math.unit(940, "lb"),
  34495. name: "Front (NSFW)",
  34496. image: {
  34497. source: "./media/characters/byliss/front-nsfw.svg",
  34498. extra: 1327/1290,
  34499. bottom: 82/1409
  34500. }
  34501. },
  34502. backNsfw: {
  34503. height: math.unit(9 + 6/12, "feet"),
  34504. weight: math.unit(940, "lb"),
  34505. name: "Back (NSFW)",
  34506. image: {
  34507. source: "./media/characters/byliss/back-nsfw.svg",
  34508. extra: 1376/1349,
  34509. bottom: 9/1385
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(9 + 6/12, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(5 + 2/12, "feet"),
  34526. weight: math.unit(200, "lb"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/noraly/front.svg",
  34530. extra: 4985/4773,
  34531. bottom: 150/5135
  34532. }
  34533. },
  34534. full: {
  34535. height: math.unit(5 + 2/12, "feet"),
  34536. weight: math.unit(164, "lb"),
  34537. name: "Full",
  34538. image: {
  34539. source: "./media/characters/noraly/full.svg",
  34540. extra: 1114/1059,
  34541. bottom: 35/1149
  34542. }
  34543. },
  34544. fuller: {
  34545. height: math.unit(5 + 2/12, "feet"),
  34546. weight: math.unit(230, "lb"),
  34547. name: "Fuller",
  34548. image: {
  34549. source: "./media/characters/noraly/fuller.svg",
  34550. extra: 1114/1059,
  34551. bottom: 35/1149
  34552. }
  34553. },
  34554. fullest: {
  34555. height: math.unit(5 + 2/12, "feet"),
  34556. weight: math.unit(300, "lb"),
  34557. name: "Fullest",
  34558. image: {
  34559. source: "./media/characters/noraly/fullest.svg",
  34560. extra: 1114/1059,
  34561. bottom: 35/1149
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(5 + 2/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34575. {
  34576. front: {
  34577. height: math.unit(5 + 2/12, "feet"),
  34578. weight: math.unit(210, "lb"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/pera/front.svg",
  34582. extra: 1560/1531,
  34583. bottom: 165/1725
  34584. }
  34585. },
  34586. back: {
  34587. height: math.unit(5 + 2/12, "feet"),
  34588. weight: math.unit(210, "lb"),
  34589. name: "Back",
  34590. image: {
  34591. source: "./media/characters/pera/back.svg",
  34592. extra: 1523/1493,
  34593. bottom: 152/1675
  34594. }
  34595. },
  34596. dick: {
  34597. height: math.unit(2.4, "feet"),
  34598. name: "Dick",
  34599. image: {
  34600. source: "./media/characters/pera/dick.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(5 + 2/12, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(12, "feet"),
  34617. weight: math.unit(3200, "lb"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/julian/front.svg",
  34621. extra: 2962/2701,
  34622. bottom: 184/3146
  34623. }
  34624. },
  34625. maw: {
  34626. height: math.unit(5.35, "feet"),
  34627. name: "Maw",
  34628. image: {
  34629. source: "./media/characters/julian/maw.svg"
  34630. }
  34631. },
  34632. paw: {
  34633. height: math.unit(3.07, "feet"),
  34634. name: "Paw",
  34635. image: {
  34636. source: "./media/characters/julian/paw.svg"
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Default",
  34643. height: math.unit(12, "feet"),
  34644. default: true
  34645. },
  34646. {
  34647. name: "Big",
  34648. height: math.unit(50, "feet")
  34649. },
  34650. {
  34651. name: "Really Big",
  34652. height: math.unit(1, "mile")
  34653. },
  34654. {
  34655. name: "Extremely Big",
  34656. height: math.unit(100, "miles")
  34657. },
  34658. {
  34659. name: "Planet Hugger",
  34660. height: math.unit(200, "megameters")
  34661. },
  34662. {
  34663. name: "Unreasonably Big",
  34664. height: math.unit(1e300, "meters")
  34665. },
  34666. ]
  34667. ))
  34668. characterMakers.push(() => makeCharacter(
  34669. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34670. {
  34671. solgooleo: {
  34672. height: math.unit(4, "meters"),
  34673. weight: math.unit(6000*1.5, "kg"),
  34674. volume: math.unit(6000, "liters"),
  34675. name: "Solgooleo",
  34676. image: {
  34677. source: "./media/characters/pi/solgooleo.svg",
  34678. extra: 388/331,
  34679. bottom: 29/417
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(4, "meters"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(8, "feet"),
  34696. weight: math.unit(4, "tons"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/shaun/front.svg",
  34700. extra: 503/495,
  34701. bottom: 20/523
  34702. }
  34703. },
  34704. back: {
  34705. height: math.unit(8, "feet"),
  34706. weight: math.unit(4, "tons"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/shaun/back.svg",
  34710. extra: 487/480,
  34711. bottom: 20/507
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Lorg",
  34718. height: math.unit(8, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34725. {
  34726. frontAnthro: {
  34727. height: math.unit(7, "feet"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/sini/front-anthro.svg",
  34731. extra: 726/678,
  34732. bottom: 35/761
  34733. },
  34734. form: "anthro",
  34735. default: true
  34736. },
  34737. backAnthro: {
  34738. height: math.unit(7, "feet"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/sini/back-anthro.svg",
  34742. extra: 743/701,
  34743. bottom: 12/755
  34744. },
  34745. form: "anthro",
  34746. },
  34747. frontAnthroNsfw: {
  34748. height: math.unit(7, "feet"),
  34749. name: "Front (NSFW)",
  34750. image: {
  34751. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34752. extra: 726/678,
  34753. bottom: 35/761
  34754. },
  34755. form: "anthro"
  34756. },
  34757. backAnthroNsfw: {
  34758. height: math.unit(7, "feet"),
  34759. name: "Back (NSFW)",
  34760. image: {
  34761. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34762. extra: 743/701,
  34763. bottom: 12/755
  34764. },
  34765. form: "anthro",
  34766. },
  34767. mawAnthro: {
  34768. height: math.unit(2.14, "feet"),
  34769. name: "Maw",
  34770. image: {
  34771. source: "./media/characters/sini/maw-anthro.svg"
  34772. },
  34773. form: "anthro"
  34774. },
  34775. dick: {
  34776. height: math.unit(1.45, "feet"),
  34777. name: "Dick",
  34778. image: {
  34779. source: "./media/characters/sini/dick-anthro.svg"
  34780. },
  34781. form: "anthro"
  34782. },
  34783. feral: {
  34784. height: math.unit(16, "feet"),
  34785. name: "Feral",
  34786. image: {
  34787. source: "./media/characters/sini/feral.svg",
  34788. extra: 814/605,
  34789. bottom: 11/825
  34790. },
  34791. form: "feral",
  34792. default: true
  34793. },
  34794. feralNsfw: {
  34795. height: math.unit(16, "feet"),
  34796. name: "Feral (NSFW)",
  34797. image: {
  34798. source: "./media/characters/sini/feral-nsfw.svg",
  34799. extra: 814/605,
  34800. bottom: 11/825
  34801. },
  34802. form: "feral"
  34803. },
  34804. mawFeral: {
  34805. height: math.unit(5.66, "feet"),
  34806. name: "Maw",
  34807. image: {
  34808. source: "./media/characters/sini/maw-feral.svg"
  34809. },
  34810. form: "feral",
  34811. },
  34812. pawFeral: {
  34813. height: math.unit(5.17, "feet"),
  34814. name: "Paw",
  34815. image: {
  34816. source: "./media/characters/sini/paw-feral.svg"
  34817. },
  34818. form: "feral",
  34819. },
  34820. rumpFeral: {
  34821. height: math.unit(13.11, "feet"),
  34822. name: "Rump",
  34823. image: {
  34824. source: "./media/characters/sini/rump-feral.svg"
  34825. },
  34826. form: "feral",
  34827. },
  34828. dickFeral: {
  34829. height: math.unit(1, "feet"),
  34830. name: "Dick",
  34831. image: {
  34832. source: "./media/characters/sini/dick-feral.svg"
  34833. },
  34834. form: "feral",
  34835. },
  34836. eyeFeral: {
  34837. height: math.unit(1.23, "feet"),
  34838. name: "Eye",
  34839. image: {
  34840. source: "./media/characters/sini/eye-feral.svg"
  34841. },
  34842. form: "feral",
  34843. },
  34844. },
  34845. [
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(7, "feet"),
  34849. default: true,
  34850. form: "anthro"
  34851. },
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(16, "feet"),
  34855. default: true,
  34856. form: "feral"
  34857. },
  34858. ],
  34859. {
  34860. "anthro": {
  34861. name: "Anthro",
  34862. default: true
  34863. },
  34864. "feral": {
  34865. name: "Feral",
  34866. }
  34867. }
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34871. {
  34872. side: {
  34873. height: math.unit(47.2, "meters"),
  34874. weight: math.unit(10000, "tons"),
  34875. name: "Side",
  34876. image: {
  34877. source: "./media/characters/raylldo/side.svg",
  34878. extra: 2363/642,
  34879. bottom: 221/2584
  34880. }
  34881. },
  34882. top: {
  34883. height: math.unit(240, "meters"),
  34884. weight: math.unit(10000, "tons"),
  34885. name: "Top",
  34886. image: {
  34887. source: "./media/characters/raylldo/top.svg"
  34888. }
  34889. },
  34890. bottom: {
  34891. height: math.unit(240, "meters"),
  34892. weight: math.unit(10000, "tons"),
  34893. name: "Bottom",
  34894. image: {
  34895. source: "./media/characters/raylldo/bottom.svg"
  34896. }
  34897. },
  34898. head: {
  34899. height: math.unit(38.6, "meters"),
  34900. name: "Head",
  34901. image: {
  34902. source: "./media/characters/raylldo/head.svg",
  34903. extra: 1335/1112,
  34904. bottom: 0/1335
  34905. }
  34906. },
  34907. maw: {
  34908. height: math.unit(16.37, "meters"),
  34909. name: "Maw",
  34910. image: {
  34911. source: "./media/characters/raylldo/maw.svg",
  34912. extra: 883/660,
  34913. bottom: 0/883
  34914. },
  34915. extraAttributes: {
  34916. preyCapacity: {
  34917. name: "Capacity",
  34918. power: 3,
  34919. type: "volume",
  34920. base: math.unit(1000, "people")
  34921. },
  34922. tongueSize: {
  34923. name: "Tongue Size",
  34924. power: 2,
  34925. type: "area",
  34926. base: math.unit(21, "m^2")
  34927. }
  34928. }
  34929. },
  34930. forepaw: {
  34931. height: math.unit(18, "meters"),
  34932. name: "Forepaw",
  34933. image: {
  34934. source: "./media/characters/raylldo/forepaw.svg"
  34935. }
  34936. },
  34937. hindpaw: {
  34938. height: math.unit(23, "meters"),
  34939. name: "Hindpaw",
  34940. image: {
  34941. source: "./media/characters/raylldo/hindpaw.svg"
  34942. }
  34943. },
  34944. genitals: {
  34945. height: math.unit(42, "meters"),
  34946. name: "Genitals",
  34947. image: {
  34948. source: "./media/characters/raylldo/genitals.svg"
  34949. }
  34950. },
  34951. },
  34952. [
  34953. {
  34954. name: "Normal",
  34955. height: math.unit(47.2, "meters"),
  34956. default: true
  34957. },
  34958. ]
  34959. ))
  34960. characterMakers.push(() => makeCharacter(
  34961. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34962. {
  34963. anthroFront: {
  34964. height: math.unit(9, "feet"),
  34965. weight: math.unit(600, "lb"),
  34966. name: "Anthro (Front)",
  34967. image: {
  34968. source: "./media/characters/glint/anthro-front.svg",
  34969. extra: 1097/1018,
  34970. bottom: 28/1125
  34971. }
  34972. },
  34973. anthroBack: {
  34974. height: math.unit(9, "feet"),
  34975. weight: math.unit(600, "lb"),
  34976. name: "Anthro (Back)",
  34977. image: {
  34978. source: "./media/characters/glint/anthro-back.svg",
  34979. extra: 1154/997,
  34980. bottom: 36/1190
  34981. }
  34982. },
  34983. feral: {
  34984. height: math.unit(11, "feet"),
  34985. weight: math.unit(50000, "lb"),
  34986. name: "Feral",
  34987. image: {
  34988. source: "./media/characters/glint/feral.svg",
  34989. extra: 3035/1585,
  34990. bottom: 1169/4204
  34991. }
  34992. },
  34993. dickAnthro: {
  34994. height: math.unit(0.7, "meters"),
  34995. name: "Dick (Anthro)",
  34996. image: {
  34997. source: "./media/characters/glint/dick-anthro.svg"
  34998. }
  34999. },
  35000. dickFeral: {
  35001. height: math.unit(2.65, "meters"),
  35002. name: "Dick (Feral)",
  35003. image: {
  35004. source: "./media/characters/glint/dick-feral.svg"
  35005. }
  35006. },
  35007. slitHidden: {
  35008. height: math.unit(5.85, "meters"),
  35009. name: "Slit (Hidden)",
  35010. image: {
  35011. source: "./media/characters/glint/slit-hidden.svg"
  35012. }
  35013. },
  35014. slitErect: {
  35015. height: math.unit(5.85, "meters"),
  35016. name: "Slit (Erect)",
  35017. image: {
  35018. source: "./media/characters/glint/slit-erect.svg"
  35019. }
  35020. },
  35021. mawAnthro: {
  35022. height: math.unit(0.63, "meters"),
  35023. name: "Maw (Anthro)",
  35024. image: {
  35025. source: "./media/characters/glint/maw.svg"
  35026. }
  35027. },
  35028. mawFeral: {
  35029. height: math.unit(2.89, "meters"),
  35030. name: "Maw (Feral)",
  35031. image: {
  35032. source: "./media/characters/glint/maw.svg"
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(9, "feet"),
  35040. default: true
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35046. {
  35047. side: {
  35048. height: math.unit(15, "feet"),
  35049. weight: math.unit(5000, "kg"),
  35050. name: "Side",
  35051. image: {
  35052. source: "./media/characters/kairne/side.svg",
  35053. extra: 979/811,
  35054. bottom: 13/992
  35055. }
  35056. },
  35057. front: {
  35058. height: math.unit(15, "feet"),
  35059. weight: math.unit(5000, "kg"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/kairne/front.svg",
  35063. extra: 908/814,
  35064. bottom: 26/934
  35065. }
  35066. },
  35067. sideNsfw: {
  35068. height: math.unit(15, "feet"),
  35069. weight: math.unit(5000, "kg"),
  35070. name: "Side (NSFW)",
  35071. image: {
  35072. source: "./media/characters/kairne/side-nsfw.svg",
  35073. extra: 979/811,
  35074. bottom: 13/992
  35075. }
  35076. },
  35077. frontNsfw: {
  35078. height: math.unit(15, "feet"),
  35079. weight: math.unit(5000, "kg"),
  35080. name: "Front (NSFW)",
  35081. image: {
  35082. source: "./media/characters/kairne/front-nsfw.svg",
  35083. extra: 908/814,
  35084. bottom: 26/934
  35085. }
  35086. },
  35087. dickCaged: {
  35088. height: math.unit(0.65, "meters"),
  35089. name: "Dick-caged",
  35090. image: {
  35091. source: "./media/characters/kairne/dick-caged.svg"
  35092. }
  35093. },
  35094. dick: {
  35095. height: math.unit(0.79, "meters"),
  35096. name: "Dick",
  35097. image: {
  35098. source: "./media/characters/kairne/dick.svg"
  35099. }
  35100. },
  35101. genitals: {
  35102. height: math.unit(1.29, "meters"),
  35103. name: "Genitals",
  35104. image: {
  35105. source: "./media/characters/kairne/genitals.svg"
  35106. }
  35107. },
  35108. maw: {
  35109. height: math.unit(1.73, "meters"),
  35110. name: "Maw",
  35111. image: {
  35112. source: "./media/characters/kairne/maw.svg"
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(15, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35126. {
  35127. front: {
  35128. height: math.unit(5 + 8/12, "feet"),
  35129. weight: math.unit(139, "lb"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/biscuit-jackal/front.svg",
  35133. extra: 2106/1961,
  35134. bottom: 58/2164
  35135. }
  35136. },
  35137. back: {
  35138. height: math.unit(5 + 8/12, "feet"),
  35139. weight: math.unit(139, "lb"),
  35140. name: "Back",
  35141. image: {
  35142. source: "./media/characters/biscuit-jackal/back.svg",
  35143. extra: 2132/1976,
  35144. bottom: 57/2189
  35145. }
  35146. },
  35147. werejackal: {
  35148. height: math.unit(6 + 3/12, "feet"),
  35149. weight: math.unit(188, "lb"),
  35150. name: "Werejackal",
  35151. image: {
  35152. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35153. extra: 2373/2178,
  35154. bottom: 53/2426
  35155. }
  35156. },
  35157. },
  35158. [
  35159. {
  35160. name: "Normal",
  35161. height: math.unit(5 + 8/12, "feet"),
  35162. default: true
  35163. },
  35164. ]
  35165. ))
  35166. characterMakers.push(() => makeCharacter(
  35167. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35168. {
  35169. front: {
  35170. height: math.unit(140, "cm"),
  35171. weight: math.unit(45, "kg"),
  35172. name: "Front",
  35173. image: {
  35174. source: "./media/characters/tayra-white/front.svg",
  35175. extra: 2229/2192,
  35176. bottom: 75/2304
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Normal",
  35183. height: math.unit(140, "cm"),
  35184. default: true
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(4 + 5/12, "feet"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/scoop/front.svg",
  35196. extra: 1257/1136,
  35197. bottom: 69/1326
  35198. }
  35199. },
  35200. back: {
  35201. height: math.unit(4 + 5/12, "feet"),
  35202. name: "Back",
  35203. image: {
  35204. source: "./media/characters/scoop/back.svg",
  35205. extra: 1321/1152,
  35206. bottom: 32/1353
  35207. }
  35208. },
  35209. maw: {
  35210. height: math.unit(0.68, "feet"),
  35211. name: "Maw",
  35212. image: {
  35213. source: "./media/characters/scoop/maw.svg"
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Really Small",
  35220. height: math.unit(1, "mm")
  35221. },
  35222. {
  35223. name: "Micro",
  35224. height: math.unit(1, "inch")
  35225. },
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(4 + 5/12, "feet"),
  35229. default: true
  35230. },
  35231. {
  35232. name: "Macro",
  35233. height: math.unit(200, "feet")
  35234. },
  35235. {
  35236. name: "Megamacro",
  35237. height: math.unit(3240, "feet")
  35238. },
  35239. {
  35240. name: "Teramacro",
  35241. height: math.unit(2500, "miles")
  35242. },
  35243. ]
  35244. ))
  35245. characterMakers.push(() => makeCharacter(
  35246. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35247. {
  35248. front: {
  35249. height: math.unit(15 + 7/12, "feet"),
  35250. weight: math.unit(1150, "tons"),
  35251. name: "Front",
  35252. image: {
  35253. source: "./media/characters/saphinara/front.svg",
  35254. extra: 1837/1643,
  35255. bottom: 84/1921
  35256. },
  35257. form: "normal",
  35258. default: true
  35259. },
  35260. side: {
  35261. height: math.unit(15 + 7/12, "feet"),
  35262. weight: math.unit(1150, "tons"),
  35263. name: "Side",
  35264. image: {
  35265. source: "./media/characters/saphinara/side.svg",
  35266. extra: 605/547,
  35267. bottom: 6/611
  35268. },
  35269. form: "normal"
  35270. },
  35271. back: {
  35272. height: math.unit(15 + 7/12, "feet"),
  35273. weight: math.unit(1150, "tons"),
  35274. name: "Back",
  35275. image: {
  35276. source: "./media/characters/saphinara/back.svg",
  35277. extra: 591/531,
  35278. bottom: 13/604
  35279. },
  35280. form: "normal"
  35281. },
  35282. frontTail: {
  35283. height: math.unit(15 + 7/12, "feet"),
  35284. weight: math.unit(1150, "tons"),
  35285. name: "Front (Full Tail)",
  35286. image: {
  35287. source: "./media/characters/saphinara/front-tail.svg",
  35288. extra: 2256/1630,
  35289. bottom: 261/2517
  35290. },
  35291. form: "normal"
  35292. },
  35293. insides: {
  35294. height: math.unit(11.92, "feet"),
  35295. name: "Insides",
  35296. image: {
  35297. source: "./media/characters/saphinara/insides.svg"
  35298. },
  35299. form: "normal"
  35300. },
  35301. head: {
  35302. height: math.unit(4.17, "feet"),
  35303. name: "Head",
  35304. image: {
  35305. source: "./media/characters/saphinara/head.svg"
  35306. },
  35307. form: "normal"
  35308. },
  35309. tongue: {
  35310. height: math.unit(4.60, "feet"),
  35311. name: "Tongue",
  35312. image: {
  35313. source: "./media/characters/saphinara/tongue.svg"
  35314. },
  35315. form: "normal"
  35316. },
  35317. headEnraged: {
  35318. height: math.unit(5.55, "feet"),
  35319. name: "Head (Enraged)",
  35320. image: {
  35321. source: "./media/characters/saphinara/head-enraged.svg"
  35322. },
  35323. form: "normal"
  35324. },
  35325. wings: {
  35326. height: math.unit(11.95, "feet"),
  35327. name: "Wings",
  35328. image: {
  35329. source: "./media/characters/saphinara/wings.svg"
  35330. },
  35331. form: "normal"
  35332. },
  35333. feathers: {
  35334. height: math.unit(8.92, "feet"),
  35335. name: "Feathers",
  35336. image: {
  35337. source: "./media/characters/saphinara/feathers.svg"
  35338. },
  35339. form: "normal"
  35340. },
  35341. shackles: {
  35342. height: math.unit(2, "feet"),
  35343. name: "Shackles",
  35344. image: {
  35345. source: "./media/characters/saphinara/shackles.svg"
  35346. },
  35347. form: "normal"
  35348. },
  35349. eyes: {
  35350. height: math.unit(1.331, "feet"),
  35351. name: "Eyes",
  35352. image: {
  35353. source: "./media/characters/saphinara/eyes.svg"
  35354. },
  35355. form: "normal"
  35356. },
  35357. eyesEnraged: {
  35358. height: math.unit(1.331, "feet"),
  35359. name: "Eyes (Enraged)",
  35360. image: {
  35361. source: "./media/characters/saphinara/eyes-enraged.svg"
  35362. },
  35363. form: "normal"
  35364. },
  35365. trueFormSide: {
  35366. height: math.unit(200, "feet"),
  35367. weight: math.unit(1e7, "tons"),
  35368. name: "Side",
  35369. image: {
  35370. source: "./media/characters/saphinara/true-form-side.svg",
  35371. extra: 1399/770,
  35372. bottom: 97/1496
  35373. },
  35374. form: "true-form",
  35375. default: true
  35376. },
  35377. trueFormMaw: {
  35378. height: math.unit(71.5, "feet"),
  35379. name: "Maw",
  35380. image: {
  35381. source: "./media/characters/saphinara/true-form-maw.svg",
  35382. extra: 2302/1453,
  35383. bottom: 0/2302
  35384. },
  35385. form: "true-form"
  35386. },
  35387. meowberusSide: {
  35388. height: math.unit(75, "feet"),
  35389. weight: math.unit(180000, "kg"),
  35390. preyCapacity: math.unit(50000, "people"),
  35391. name: "Side",
  35392. image: {
  35393. source: "./media/characters/saphinara/meowberus-side.svg",
  35394. extra: 1400/711,
  35395. bottom: 126/1526
  35396. },
  35397. form: "meowberus",
  35398. extraAttributes: {
  35399. "pawArea": {
  35400. name: "Paw Size",
  35401. power: 2,
  35402. type: "area",
  35403. base: math.unit(35, "m^2")
  35404. }
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(15 + 7/12, "feet"),
  35412. default: true,
  35413. form: "normal"
  35414. },
  35415. {
  35416. name: "Angry",
  35417. height: math.unit(30 + 6/12, "feet"),
  35418. form: "normal"
  35419. },
  35420. {
  35421. name: "Enraged",
  35422. height: math.unit(102 + 1/12, "feet"),
  35423. form: "normal"
  35424. },
  35425. {
  35426. name: "True",
  35427. height: math.unit(200, "feet"),
  35428. default: true,
  35429. form: "true-form"
  35430. },
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(75, "feet"),
  35434. default: true,
  35435. form: "meowberus"
  35436. },
  35437. ],
  35438. {
  35439. "normal": {
  35440. name: "Normal",
  35441. default: true
  35442. },
  35443. "true-form": {
  35444. name: "True Form"
  35445. },
  35446. "meowberus": {
  35447. name: "Meowberus",
  35448. },
  35449. }
  35450. ))
  35451. characterMakers.push(() => makeCharacter(
  35452. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35453. {
  35454. front: {
  35455. height: math.unit(6 + 8/12, "feet"),
  35456. weight: math.unit(300, "lb"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/jrain/front.svg",
  35460. extra: 3039/2865,
  35461. bottom: 399/3438
  35462. }
  35463. },
  35464. back: {
  35465. height: math.unit(6 + 8/12, "feet"),
  35466. weight: math.unit(300, "lb"),
  35467. name: "Back",
  35468. image: {
  35469. source: "./media/characters/jrain/back.svg",
  35470. extra: 3089/2938,
  35471. bottom: 172/3261
  35472. }
  35473. },
  35474. head: {
  35475. height: math.unit(2.14, "feet"),
  35476. name: "Head",
  35477. image: {
  35478. source: "./media/characters/jrain/head.svg"
  35479. }
  35480. },
  35481. maw: {
  35482. height: math.unit(1.77, "feet"),
  35483. name: "Maw",
  35484. image: {
  35485. source: "./media/characters/jrain/maw.svg"
  35486. }
  35487. },
  35488. leftHand: {
  35489. height: math.unit(1.1, "feet"),
  35490. name: "Left Hand",
  35491. image: {
  35492. source: "./media/characters/jrain/left-hand.svg"
  35493. }
  35494. },
  35495. rightHand: {
  35496. height: math.unit(1.1, "feet"),
  35497. name: "Right Hand",
  35498. image: {
  35499. source: "./media/characters/jrain/right-hand.svg"
  35500. }
  35501. },
  35502. eye: {
  35503. height: math.unit(0.35, "feet"),
  35504. name: "Eye",
  35505. image: {
  35506. source: "./media/characters/jrain/eye.svg"
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(6 + 8/12, "feet"),
  35514. default: true
  35515. },
  35516. {
  35517. name: "Casually Large",
  35518. height: math.unit(25, "feet")
  35519. },
  35520. {
  35521. name: "Giant",
  35522. height: math.unit(100, "feet")
  35523. },
  35524. {
  35525. name: "Kaiju",
  35526. height: math.unit(300, "feet")
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35532. {
  35533. dragon: {
  35534. height: math.unit(5, "meters"),
  35535. name: "Dragon",
  35536. image: {
  35537. source: "./media/characters/sabrina/dragon.svg",
  35538. extra: 3670 / 2365,
  35539. bottom: 333 / 4003
  35540. }
  35541. },
  35542. gryphon: {
  35543. height: math.unit(3, "meters"),
  35544. name: "Gryphon",
  35545. image: {
  35546. source: "./media/characters/sabrina/gryphon.svg",
  35547. extra: 1576 / 945,
  35548. bottom: 71 / 1647
  35549. }
  35550. },
  35551. snake: {
  35552. height: math.unit(12, "meters"),
  35553. name: "Snake",
  35554. image: {
  35555. source: "./media/characters/sabrina/snake.svg",
  35556. extra: 1758 / 1320,
  35557. bottom: 186 / 1944
  35558. }
  35559. },
  35560. collar: {
  35561. height: math.unit(1.86, "meters"),
  35562. name: "Collar",
  35563. image: {
  35564. source: "./media/characters/sabrina/collar.svg"
  35565. }
  35566. },
  35567. eye: {
  35568. height: math.unit(0.53, "meters"),
  35569. name: "Eye",
  35570. image: {
  35571. source: "./media/characters/sabrina/eye.svg"
  35572. }
  35573. },
  35574. foot: {
  35575. height: math.unit(1.86, "meters"),
  35576. name: "Foot",
  35577. image: {
  35578. source: "./media/characters/sabrina/foot.svg"
  35579. }
  35580. },
  35581. hand: {
  35582. height: math.unit(1.32, "meters"),
  35583. name: "Hand",
  35584. image: {
  35585. source: "./media/characters/sabrina/hand.svg"
  35586. }
  35587. },
  35588. head: {
  35589. height: math.unit(2.44, "meters"),
  35590. name: "Head",
  35591. image: {
  35592. source: "./media/characters/sabrina/head.svg"
  35593. }
  35594. },
  35595. headAngry: {
  35596. height: math.unit(2.44, "meters"),
  35597. name: "Head (Angry))",
  35598. image: {
  35599. source: "./media/characters/sabrina/head-angry.svg"
  35600. }
  35601. },
  35602. maw: {
  35603. height: math.unit(1.65, "meters"),
  35604. name: "Maw",
  35605. image: {
  35606. source: "./media/characters/sabrina/maw.svg"
  35607. }
  35608. },
  35609. spikes: {
  35610. height: math.unit(1.69, "meters"),
  35611. name: "Spikes",
  35612. image: {
  35613. source: "./media/characters/sabrina/spikes.svg"
  35614. }
  35615. },
  35616. stomach: {
  35617. height: math.unit(1.15, "meters"),
  35618. name: "Stomach",
  35619. image: {
  35620. source: "./media/characters/sabrina/stomach.svg"
  35621. }
  35622. },
  35623. tongue: {
  35624. height: math.unit(1.27, "meters"),
  35625. name: "Tongue",
  35626. image: {
  35627. source: "./media/characters/sabrina/tongue.svg"
  35628. }
  35629. },
  35630. wingDorsal: {
  35631. height: math.unit(4.85, "meters"),
  35632. name: "Wing (Dorsal)",
  35633. image: {
  35634. source: "./media/characters/sabrina/wing-dorsal.svg"
  35635. }
  35636. },
  35637. wingVentral: {
  35638. height: math.unit(4.85, "meters"),
  35639. name: "Wing (Ventral)",
  35640. image: {
  35641. source: "./media/characters/sabrina/wing-ventral.svg"
  35642. }
  35643. },
  35644. },
  35645. [
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(5, "meters"),
  35649. default: true
  35650. },
  35651. ]
  35652. ))
  35653. characterMakers.push(() => makeCharacter(
  35654. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35655. {
  35656. frontMaid: {
  35657. height: math.unit(5 + 5/12, "feet"),
  35658. weight: math.unit(130, "lb"),
  35659. name: "Front (Maid)",
  35660. image: {
  35661. source: "./media/characters/midnight-tales/front-maid.svg",
  35662. extra: 489/454,
  35663. bottom: 61/550
  35664. }
  35665. },
  35666. frontFormal: {
  35667. height: math.unit(5 + 5/12, "feet"),
  35668. weight: math.unit(130, "lb"),
  35669. name: "Front (Formal)",
  35670. image: {
  35671. source: "./media/characters/midnight-tales/front-formal.svg",
  35672. extra: 489/454,
  35673. bottom: 61/550
  35674. }
  35675. },
  35676. back: {
  35677. height: math.unit(5 + 5/12, "feet"),
  35678. weight: math.unit(130, "lb"),
  35679. name: "Back",
  35680. image: {
  35681. source: "./media/characters/midnight-tales/back.svg",
  35682. extra: 498/456,
  35683. bottom: 33/531
  35684. }
  35685. },
  35686. frontBeast: {
  35687. height: math.unit(40, "feet"),
  35688. weight: math.unit(64000, "lb"),
  35689. name: "Front (Beast)",
  35690. image: {
  35691. source: "./media/characters/midnight-tales/front-beast.svg",
  35692. extra: 927/860,
  35693. bottom: 53/980
  35694. }
  35695. },
  35696. backBeast: {
  35697. height: math.unit(40, "feet"),
  35698. weight: math.unit(64000, "lb"),
  35699. name: "Back (Beast)",
  35700. image: {
  35701. source: "./media/characters/midnight-tales/back-beast.svg",
  35702. extra: 929/855,
  35703. bottom: 16/945
  35704. }
  35705. },
  35706. footBeast: {
  35707. height: math.unit(6.7, "feet"),
  35708. name: "Foot (Beast)",
  35709. image: {
  35710. source: "./media/characters/midnight-tales/foot-beast.svg"
  35711. }
  35712. },
  35713. headBeast: {
  35714. height: math.unit(8, "feet"),
  35715. name: "Head (Beast)",
  35716. image: {
  35717. source: "./media/characters/midnight-tales/head-beast.svg"
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(5 + 5 / 12, "feet"),
  35725. default: true
  35726. },
  35727. {
  35728. name: "Macro",
  35729. height: math.unit(25, "feet")
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(5 + 10/12, "feet"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/argon/front.svg",
  35741. extra: 2009/1935,
  35742. bottom: 118/2127
  35743. }
  35744. },
  35745. back: {
  35746. height: math.unit(5 + 10/12, "feet"),
  35747. name: "Back",
  35748. image: {
  35749. source: "./media/characters/argon/back.svg",
  35750. extra: 2047/1992,
  35751. bottom: 20/2067
  35752. }
  35753. },
  35754. frontDressed: {
  35755. height: math.unit(5 + 10/12, "feet"),
  35756. name: "Front (Dressed)",
  35757. image: {
  35758. source: "./media/characters/argon/front-dressed.svg",
  35759. extra: 2009/1935,
  35760. bottom: 118/2127
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 10/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(8 + 6/12, "feet"),
  35777. weight: math.unit(1150, "lb"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/kichi/front.svg",
  35781. extra: 1267/1164,
  35782. bottom: 61/1328
  35783. }
  35784. },
  35785. back: {
  35786. height: math.unit(8 + 6/12, "feet"),
  35787. weight: math.unit(1150, "lb"),
  35788. name: "Back",
  35789. image: {
  35790. source: "./media/characters/kichi/back.svg",
  35791. extra: 1273/1166,
  35792. bottom: 33/1306
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8 + 6/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(6, "feet"),
  35809. weight: math.unit(210, "lb"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/manetel-greyscale/front.svg",
  35813. extra: 350/312,
  35814. bottom: 8/358
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Micro",
  35821. height: math.unit(2, "inches")
  35822. },
  35823. {
  35824. name: "Normal",
  35825. height: math.unit(6, "feet"),
  35826. default: true
  35827. },
  35828. {
  35829. name: "Minimacro",
  35830. height: math.unit(17, "feet")
  35831. },
  35832. {
  35833. name: "Macro",
  35834. height: math.unit(117, "feet")
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35840. {
  35841. side: {
  35842. height: math.unit(5 + 1/12, "feet"),
  35843. weight: math.unit(418, "lb"),
  35844. name: "Side",
  35845. image: {
  35846. source: "./media/characters/softpurr/side.svg",
  35847. extra: 1993/1945,
  35848. bottom: 134/2127
  35849. }
  35850. },
  35851. front: {
  35852. height: math.unit(5 + 1/12, "feet"),
  35853. weight: math.unit(418, "lb"),
  35854. name: "Front",
  35855. image: {
  35856. source: "./media/characters/softpurr/front.svg",
  35857. extra: 1950/1856,
  35858. bottom: 174/2124
  35859. }
  35860. },
  35861. paw: {
  35862. height: math.unit(1, "feet"),
  35863. name: "Paw",
  35864. image: {
  35865. source: "./media/characters/softpurr/paw.svg"
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(5 + 1/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(260, "meters"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/anahita/front.svg",
  35885. extra: 665/635,
  35886. bottom: 89/754
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Macro",
  35893. height: math.unit(260, "meters"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35900. {
  35901. front: {
  35902. height: math.unit(4 + 10/12, "feet"),
  35903. weight: math.unit(160, "lb"),
  35904. name: "Front",
  35905. image: {
  35906. source: "./media/characters/chip-mouse/front.svg",
  35907. extra: 3528/3408,
  35908. bottom: 0/3528
  35909. }
  35910. },
  35911. frontNsfw: {
  35912. height: math.unit(4 + 10/12, "feet"),
  35913. weight: math.unit(160, "lb"),
  35914. name: "Front (NSFW)",
  35915. image: {
  35916. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35917. extra: 3528/3408,
  35918. bottom: 0/3528
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(4 + 10/12, "feet"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35932. {
  35933. side: {
  35934. height: math.unit(10, "feet"),
  35935. weight: math.unit(14000, "lb"),
  35936. name: "Side",
  35937. image: {
  35938. source: "./media/characters/kremm/side.svg",
  35939. extra: 1390/1053,
  35940. bottom: 90/1480
  35941. }
  35942. },
  35943. gut: {
  35944. height: math.unit(5.8, "feet"),
  35945. name: "Gut",
  35946. image: {
  35947. source: "./media/characters/kremm/gut.svg"
  35948. }
  35949. },
  35950. ass: {
  35951. height: math.unit(6.1, "feet"),
  35952. name: "Ass",
  35953. image: {
  35954. source: "./media/characters/kremm/ass.svg"
  35955. }
  35956. },
  35957. jaws: {
  35958. height: math.unit(2.2, "feet"),
  35959. name: "Jaws",
  35960. image: {
  35961. source: "./media/characters/kremm/jaws.svg"
  35962. }
  35963. },
  35964. dick: {
  35965. height: math.unit(4.26, "feet"),
  35966. name: "Dick",
  35967. image: {
  35968. source: "./media/characters/kremm/dick.svg"
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(10, "feet"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(30, "stories"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/kai/front.svg",
  35988. extra: 1892/1718,
  35989. bottom: 162/2054
  35990. }
  35991. },
  35992. },
  35993. [
  35994. {
  35995. name: "Macro",
  35996. height: math.unit(30, "stories"),
  35997. default: true
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(6 + 4/12, "feet"),
  36006. weight: math.unit(145, "lb"),
  36007. name: "Front",
  36008. image: {
  36009. source: "./media/characters/sykes/front.svg",
  36010. extra: 1321 / 1187,
  36011. bottom: 66 / 1387
  36012. }
  36013. },
  36014. back: {
  36015. height: math.unit(6 + 4/12, "feet"),
  36016. weight: math.unit(145, "lb"),
  36017. name: "Back",
  36018. image: {
  36019. source: "./media/characters/sykes/back.svg",
  36020. extra: 1326/1181,
  36021. bottom: 31/1357
  36022. }
  36023. },
  36024. traditionalOutfit: {
  36025. height: math.unit(6 + 4/12, "feet"),
  36026. weight: math.unit(145, "lb"),
  36027. name: "Traditional Outfit",
  36028. image: {
  36029. source: "./media/characters/sykes/traditional-outfit.svg",
  36030. extra: 1321 / 1187,
  36031. bottom: 66 / 1387
  36032. }
  36033. },
  36034. adventureOutfit: {
  36035. height: math.unit(6 + 4/12, "feet"),
  36036. weight: math.unit(145, "lb"),
  36037. name: "Adventure Outfit",
  36038. image: {
  36039. source: "./media/characters/sykes/adventure-outfit.svg",
  36040. extra: 1321 / 1187,
  36041. bottom: 66 / 1387
  36042. }
  36043. },
  36044. handLeft: {
  36045. height: math.unit(0.9, "feet"),
  36046. name: "Hand (Left)",
  36047. image: {
  36048. source: "./media/characters/sykes/hand-left.svg"
  36049. }
  36050. },
  36051. handRight: {
  36052. height: math.unit(0.839, "feet"),
  36053. name: "Hand (Right)",
  36054. image: {
  36055. source: "./media/characters/sykes/hand-right.svg"
  36056. }
  36057. },
  36058. leftFoot: {
  36059. height: math.unit(1.2, "feet"),
  36060. name: "Foot (Left)",
  36061. image: {
  36062. source: "./media/characters/sykes/foot-left.svg"
  36063. }
  36064. },
  36065. rightFoot: {
  36066. height: math.unit(1.2, "feet"),
  36067. name: "Foot (Right)",
  36068. image: {
  36069. source: "./media/characters/sykes/foot-right.svg"
  36070. }
  36071. },
  36072. maw: {
  36073. height: math.unit(1.93, "feet"),
  36074. name: "Maw",
  36075. image: {
  36076. source: "./media/characters/sykes/maw.svg"
  36077. }
  36078. },
  36079. teeth: {
  36080. height: math.unit(0.51, "feet"),
  36081. name: "Teeth",
  36082. image: {
  36083. source: "./media/characters/sykes/teeth.svg"
  36084. }
  36085. },
  36086. tongue: {
  36087. height: math.unit(2.13, "feet"),
  36088. name: "Tongue",
  36089. image: {
  36090. source: "./media/characters/sykes/tongue.svg"
  36091. }
  36092. },
  36093. uvula: {
  36094. height: math.unit(0.16, "feet"),
  36095. name: "Uvula",
  36096. image: {
  36097. source: "./media/characters/sykes/uvula.svg"
  36098. }
  36099. },
  36100. collar: {
  36101. height: math.unit(0.287, "feet"),
  36102. name: "Collar",
  36103. image: {
  36104. source: "./media/characters/sykes/collar.svg"
  36105. }
  36106. },
  36107. tail: {
  36108. height: math.unit(3.8, "feet"),
  36109. name: "Tail",
  36110. image: {
  36111. source: "./media/characters/sykes/tail.svg"
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Shrunken",
  36118. height: math.unit(5, "inches")
  36119. },
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 4 / 12, "feet"),
  36123. default: true
  36124. },
  36125. {
  36126. name: "Big",
  36127. height: math.unit(15, "feet")
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(5 + 8/12, "feet"),
  36136. weight: math.unit(190, "lb"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/oven-otter/front.svg",
  36140. extra: 1809/1740,
  36141. bottom: 181/1990
  36142. }
  36143. },
  36144. back: {
  36145. height: math.unit(5 + 8/12, "feet"),
  36146. weight: math.unit(190, "lb"),
  36147. name: "Back",
  36148. image: {
  36149. source: "./media/characters/oven-otter/back.svg",
  36150. extra: 1709/1635,
  36151. bottom: 118/1827
  36152. }
  36153. },
  36154. hand: {
  36155. height: math.unit(1.07, "feet"),
  36156. name: "Hand",
  36157. image: {
  36158. source: "./media/characters/oven-otter/hand.svg"
  36159. }
  36160. },
  36161. beans: {
  36162. height: math.unit(1.74, "feet"),
  36163. name: "Beans",
  36164. image: {
  36165. source: "./media/characters/oven-otter/beans.svg"
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Micro",
  36172. height: math.unit(0.5, "inches")
  36173. },
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 8/12, "feet"),
  36177. default: true
  36178. },
  36179. {
  36180. name: "Macro",
  36181. height: math.unit(250, "feet")
  36182. },
  36183. {
  36184. name: "Really High",
  36185. height: math.unit(420, "feet")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(5, "meters"),
  36194. weight: math.unit(292000000000000, "kg"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/devourer/front.svg",
  36198. extra: 1800/1733,
  36199. bottom: 211/2011
  36200. }
  36201. },
  36202. maw: {
  36203. height: math.unit(1.1, "meter"),
  36204. name: "Maw",
  36205. image: {
  36206. source: "./media/characters/devourer/maw.svg"
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Small",
  36213. height: math.unit(3, "meters")
  36214. },
  36215. {
  36216. name: "Large",
  36217. height: math.unit(5, "meters"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36224. {
  36225. front: {
  36226. height: math.unit(6, "feet"),
  36227. weight: math.unit(400, "lb"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/ellarby/front.svg",
  36231. extra: 1909/1763,
  36232. bottom: 80/1989
  36233. }
  36234. },
  36235. back: {
  36236. height: math.unit(6, "feet"),
  36237. weight: math.unit(400, "lb"),
  36238. name: "Back",
  36239. image: {
  36240. source: "./media/characters/ellarby/back.svg",
  36241. extra: 1914/1784,
  36242. bottom: 172/2086
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Mischief",
  36249. height: math.unit(18, "inches")
  36250. },
  36251. {
  36252. name: "Trouble",
  36253. height: math.unit(12, "feet")
  36254. },
  36255. {
  36256. name: "Havoc",
  36257. height: math.unit(200, "feet"),
  36258. default: true
  36259. },
  36260. {
  36261. name: "Pandemonium",
  36262. height: math.unit(1, "mile")
  36263. },
  36264. {
  36265. name: "Catastrophe",
  36266. height: math.unit(100, "miles")
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36272. {
  36273. front: {
  36274. height: math.unit(4.7, "meters"),
  36275. weight: math.unit(6500, "kg"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/vex/front.svg",
  36279. extra: 1288/1140,
  36280. bottom: 100/1388
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(4.7, "meters"),
  36288. default: true
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36294. {
  36295. normal: {
  36296. height: math.unit(6, "feet"),
  36297. weight: math.unit(350, "lb"),
  36298. name: "Normal",
  36299. image: {
  36300. source: "./media/characters/teshy/normal.svg",
  36301. extra: 1795/1735,
  36302. bottom: 16/1811
  36303. }
  36304. },
  36305. monsterFront: {
  36306. height: math.unit(12, "feet"),
  36307. weight: math.unit(4700, "lb"),
  36308. name: "Monster (Front)",
  36309. image: {
  36310. source: "./media/characters/teshy/monster-front.svg",
  36311. extra: 2042/2034,
  36312. bottom: 128/2170
  36313. }
  36314. },
  36315. monsterSide: {
  36316. height: math.unit(12, "feet"),
  36317. weight: math.unit(4700, "lb"),
  36318. name: "Monster (Side)",
  36319. image: {
  36320. source: "./media/characters/teshy/monster-side.svg",
  36321. extra: 2067/2056,
  36322. bottom: 70/2137
  36323. }
  36324. },
  36325. monsterBack: {
  36326. height: math.unit(12, "feet"),
  36327. weight: math.unit(4700, "lb"),
  36328. name: "Monster (Back)",
  36329. image: {
  36330. source: "./media/characters/teshy/monster-back.svg",
  36331. extra: 1921/1914,
  36332. bottom: 171/2092
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(6, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(6, "feet"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/ramey/front.svg",
  36352. extra: 790/787,
  36353. bottom: 27/817
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(6, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(5 + 5/12, "feet"),
  36370. weight: math.unit(120, "lb"),
  36371. name: "Front",
  36372. image: {
  36373. source: "./media/characters/phirae/front.svg",
  36374. extra: 2491/2436,
  36375. bottom: 38/2529
  36376. }
  36377. },
  36378. },
  36379. [
  36380. {
  36381. name: "Normal",
  36382. height: math.unit(5 + 5/12, "feet"),
  36383. default: true
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36389. {
  36390. front: {
  36391. height: math.unit(5 + 3/12, "feet"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/stagglas/front.svg",
  36395. extra: 962/882,
  36396. bottom: 53/1015
  36397. }
  36398. },
  36399. feral: {
  36400. height: math.unit(335, "cm"),
  36401. name: "Feral",
  36402. image: {
  36403. source: "./media/characters/stagglas/feral.svg",
  36404. extra: 1732/1090,
  36405. bottom: 48/1780
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(5 + 3/12, "feet"),
  36413. default: true
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36419. {
  36420. front: {
  36421. height: math.unit(5 + 4/12, "feet"),
  36422. weight: math.unit(145, "lb"),
  36423. name: "Front",
  36424. image: {
  36425. source: "./media/characters/starra/front.svg",
  36426. extra: 1790/1691,
  36427. bottom: 91/1881
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(5 + 4/12, "feet"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(2.2, "meters"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36447. extra: 1248/972,
  36448. bottom: 38/1286
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(2.2, "meters"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36462. {
  36463. side: {
  36464. height: math.unit(8 + 2/12, "feet"),
  36465. weight: math.unit(1240, "lb"),
  36466. name: "Side",
  36467. image: {
  36468. source: "./media/characters/mika-valentine/side.svg",
  36469. extra: 2670/2501,
  36470. bottom: 250/2920
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Normal",
  36477. height: math.unit(8 + 2/12, "feet"),
  36478. default: true
  36479. },
  36480. ]
  36481. ))
  36482. characterMakers.push(() => makeCharacter(
  36483. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36484. {
  36485. front: {
  36486. height: math.unit(7 + 2/12, "feet"),
  36487. name: "Front",
  36488. image: {
  36489. source: "./media/characters/xoltol/front.svg",
  36490. extra: 2212/2124,
  36491. bottom: 84/2296
  36492. }
  36493. },
  36494. side: {
  36495. height: math.unit(7 + 2/12, "feet"),
  36496. name: "Side",
  36497. image: {
  36498. source: "./media/characters/xoltol/side.svg",
  36499. extra: 2273/2197,
  36500. bottom: 26/2299
  36501. }
  36502. },
  36503. hand: {
  36504. height: math.unit(2.5, "feet"),
  36505. name: "Hand",
  36506. image: {
  36507. source: "./media/characters/xoltol/hand.svg"
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Small-ish",
  36514. height: math.unit(5 + 11/12, "feet")
  36515. },
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(7 + 2/12, "feet")
  36519. },
  36520. {
  36521. name: "\"Macro\"",
  36522. height: math.unit(14 + 9/12, "feet"),
  36523. default: true
  36524. },
  36525. {
  36526. name: "Alternate Height",
  36527. height: math.unit(20, "feet")
  36528. },
  36529. {
  36530. name: "Actually Macro",
  36531. height: math.unit(100, "feet")
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(5 + 2/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/kotetsu-redwood/front.svg",
  36543. extra: 1053/942,
  36544. bottom: 60/1113
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(5 + 2/12, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(2.4, "meters"),
  36561. weight: math.unit(125, "kg"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/lilith/front.svg",
  36565. extra: 1590/1513,
  36566. bottom: 203/1793
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Humanoid",
  36573. height: math.unit(2.4, "meters")
  36574. },
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6, "meters"),
  36578. default: true
  36579. },
  36580. {
  36581. name: "Largest",
  36582. height: math.unit(55, "meters")
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(8 + 4/12, "feet"),
  36591. weight: math.unit(535, "lb"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/beh'kah-bolger/front.svg",
  36595. extra: 1660/1603,
  36596. bottom: 37/1697
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(8 + 4/12, "feet"),
  36604. default: true
  36605. },
  36606. {
  36607. name: "Kaiju",
  36608. height: math.unit(250, "feet")
  36609. },
  36610. {
  36611. name: "Still Growing",
  36612. height: math.unit(10, "miles")
  36613. },
  36614. {
  36615. name: "Continental",
  36616. height: math.unit(5000, "miles")
  36617. },
  36618. {
  36619. name: "Final Form",
  36620. height: math.unit(2500000, "miles")
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36626. {
  36627. front: {
  36628. height: math.unit(7 + 2/12, "feet"),
  36629. weight: math.unit(230, "kg"),
  36630. name: "Front",
  36631. image: {
  36632. source: "./media/characters/tatyana-milewska/front.svg",
  36633. extra: 1199/1150,
  36634. bottom: 86/1285
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(7 + 2/12, "feet"),
  36642. default: true
  36643. },
  36644. {
  36645. name: "Big",
  36646. height: math.unit(12, "feet")
  36647. },
  36648. {
  36649. name: "Minimacro",
  36650. height: math.unit(20, "feet")
  36651. },
  36652. {
  36653. name: "Macro",
  36654. height: math.unit(120, "feet")
  36655. },
  36656. ]
  36657. ))
  36658. characterMakers.push(() => makeCharacter(
  36659. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36660. {
  36661. front: {
  36662. height: math.unit(7 + 8/12, "feet"),
  36663. weight: math.unit(152, "kg"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/helen-arri/front.svg",
  36667. extra: 440/423,
  36668. bottom: 14/454
  36669. }
  36670. },
  36671. back: {
  36672. height: math.unit(7 + 8/12, "feet"),
  36673. weight: math.unit(152, "kg"),
  36674. name: "Back",
  36675. image: {
  36676. source: "./media/characters/helen-arri/back.svg",
  36677. extra: 443/426,
  36678. bottom: 8/451
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(7 + 8/12, "feet"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Big",
  36690. height: math.unit(14, "feet")
  36691. },
  36692. {
  36693. name: "Minimacro",
  36694. height: math.unit(24, "feet")
  36695. },
  36696. {
  36697. name: "Macro",
  36698. height: math.unit(140, "feet")
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(6, "meters"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/ehanu-rehu/front.svg",
  36710. extra: 1800/1800,
  36711. bottom: 59/1859
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(6, "meters"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(7 + 3/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/renholder/front.svg",
  36731. extra: 3096/2960,
  36732. bottom: 250/3346
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal Bat",
  36739. height: math.unit(7 + 3/12, "feet"),
  36740. default: true
  36741. },
  36742. {
  36743. name: "Slightly Tall Bat",
  36744. height: math.unit(100, "feet")
  36745. },
  36746. {
  36747. name: "Big Bat",
  36748. height: math.unit(1000, "feet")
  36749. },
  36750. {
  36751. name: "City-Sized Bat",
  36752. height: math.unit(200000, "feet")
  36753. },
  36754. {
  36755. name: "Bigger Bat",
  36756. height: math.unit(10000, "miles")
  36757. },
  36758. {
  36759. name: "Solar Sized Bat",
  36760. height: math.unit(100, "AU")
  36761. },
  36762. {
  36763. name: "Galactic Bat",
  36764. height: math.unit(200000, "lightyears")
  36765. },
  36766. {
  36767. name: "Universally Known Bat",
  36768. height: math.unit(1, "universe")
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(6 + 11/12, "feet"),
  36777. weight: math.unit(250, "lb"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/cookiecat/front.svg",
  36781. extra: 893/827,
  36782. bottom: 14/907
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Micro",
  36789. height: math.unit(3, "inches")
  36790. },
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(6 + 11/12, "feet"),
  36794. default: true
  36795. },
  36796. {
  36797. name: "Macro",
  36798. height: math.unit(100, "feet")
  36799. },
  36800. {
  36801. name: "Macro+",
  36802. height: math.unit(404, "feet")
  36803. },
  36804. {
  36805. name: "Megamacro",
  36806. height: math.unit(165, "miles")
  36807. },
  36808. {
  36809. name: "Planetary",
  36810. height: math.unit(4600, "miles")
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(10 + 3/12, "feet"),
  36819. weight: math.unit(1500, "lb"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/tux-kusanagi/front.svg",
  36823. extra: 944/840,
  36824. bottom: 39/983
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(10 + 3/12, "feet"),
  36829. weight: math.unit(1500, "lb"),
  36830. name: "Back",
  36831. image: {
  36832. source: "./media/characters/tux-kusanagi/back.svg",
  36833. extra: 941/842,
  36834. bottom: 28/969
  36835. }
  36836. },
  36837. rump: {
  36838. height: math.unit(5.25, "feet"),
  36839. name: "Rump",
  36840. image: {
  36841. source: "./media/characters/tux-kusanagi/rump.svg"
  36842. }
  36843. },
  36844. beak: {
  36845. height: math.unit(1.54, "feet"),
  36846. name: "Beak",
  36847. image: {
  36848. source: "./media/characters/tux-kusanagi/beak.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(10 + 3/12, "feet"),
  36856. default: true
  36857. },
  36858. ]
  36859. ))
  36860. characterMakers.push(() => makeCharacter(
  36861. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36862. {
  36863. front: {
  36864. height: math.unit(58, "feet"),
  36865. weight: math.unit(200, "tons"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/uzarmazari/front.svg",
  36869. extra: 1575/1455,
  36870. bottom: 152/1727
  36871. }
  36872. },
  36873. back: {
  36874. height: math.unit(58, "feet"),
  36875. weight: math.unit(200, "tons"),
  36876. name: "Back",
  36877. image: {
  36878. source: "./media/characters/uzarmazari/back.svg",
  36879. extra: 1585/1510,
  36880. bottom: 157/1742
  36881. }
  36882. },
  36883. head: {
  36884. height: math.unit(26, "feet"),
  36885. name: "Head",
  36886. image: {
  36887. source: "./media/characters/uzarmazari/head.svg"
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(58, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36901. {
  36902. side: {
  36903. height: math.unit(15, "feet"),
  36904. name: "Side",
  36905. image: {
  36906. source: "./media/characters/akitu/side.svg",
  36907. extra: 1421/1321,
  36908. bottom: 157/1578
  36909. }
  36910. },
  36911. front: {
  36912. height: math.unit(15, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/akitu/front.svg",
  36916. extra: 1435/1326,
  36917. bottom: 232/1667
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(15, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(10 + 8/12, "feet"),
  36934. name: "Front",
  36935. image: {
  36936. source: "./media/characters/azalie-croixland/front.svg",
  36937. extra: 1972/1856,
  36938. bottom: 31/2003
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Original Height",
  36945. height: math.unit(5 + 4/12, "feet")
  36946. },
  36947. {
  36948. name: "Normal Height",
  36949. height: math.unit(10 + 8/12, "feet"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36956. {
  36957. side: {
  36958. height: math.unit(7 + 1/12, "feet"),
  36959. weight: math.unit(245, "lb"),
  36960. name: "Side",
  36961. image: {
  36962. source: "./media/characters/kavus-kazian/side.svg",
  36963. extra: 349/342,
  36964. bottom: 15/364
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(7 + 1/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36978. {
  36979. normalFront: {
  36980. height: math.unit(5 + 11/12, "feet"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/moonlight-rose/normal-front.svg",
  36984. extra: 1980/1825,
  36985. bottom: 18/1998
  36986. },
  36987. form: "normal",
  36988. default: true
  36989. },
  36990. normalBack: {
  36991. height: math.unit(5 + 11/12, "feet"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/moonlight-rose/normal-back.svg",
  36995. extra: 2010/1839,
  36996. bottom: 10/2020
  36997. },
  36998. form: "normal"
  36999. },
  37000. demonFront: {
  37001. height: math.unit(1.5, "earths"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/moonlight-rose/demon.svg",
  37005. extra: 1400/1294,
  37006. bottom: 45/1445
  37007. },
  37008. form: "demon",
  37009. default: true
  37010. },
  37011. terraFront: {
  37012. height: math.unit(1.5, "earths"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/moonlight-rose/terra.svg"
  37016. },
  37017. form: "terra",
  37018. default: true
  37019. },
  37020. jupiterFront: {
  37021. height: math.unit(69911*2, "km"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37025. extra: 1367/1286,
  37026. bottom: 55/1422
  37027. },
  37028. form: "jupiter",
  37029. default: true
  37030. },
  37031. neptuneFront: {
  37032. height: math.unit(24622*2, "feet"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37036. extra: 1851/1712,
  37037. bottom: 0/1851
  37038. },
  37039. form: "neptune",
  37040. default: true
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "\"Natural\" Height",
  37046. height: math.unit(5 + 11/12, "feet"),
  37047. form: "normal"
  37048. },
  37049. {
  37050. name: "Smallest comfortable size",
  37051. height: math.unit(40, "meters"),
  37052. form: "normal"
  37053. },
  37054. {
  37055. name: "Common size",
  37056. height: math.unit(50, "km"),
  37057. form: "normal",
  37058. default: true
  37059. },
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(1.5, "earths"),
  37063. form: "demon",
  37064. default: true
  37065. },
  37066. {
  37067. name: "Universal",
  37068. height: math.unit(15, "universes"),
  37069. form: "demon"
  37070. },
  37071. {
  37072. name: "Earth",
  37073. height: math.unit(1.5, "earths"),
  37074. form: "terra",
  37075. default: true
  37076. },
  37077. {
  37078. name: "Super Earth",
  37079. height: math.unit(67.5, "earths"),
  37080. form: "terra"
  37081. },
  37082. {
  37083. name: "Doesn't fit in a solar system...",
  37084. height: math.unit(1, "galaxy"),
  37085. form: "terra"
  37086. },
  37087. {
  37088. name: "Saturn",
  37089. height: math.unit(58232*2, "km"),
  37090. form: "jupiter"
  37091. },
  37092. {
  37093. name: "Jupiter",
  37094. height: math.unit(69911*2, "km"),
  37095. form: "jupiter",
  37096. default: true
  37097. },
  37098. {
  37099. name: "HD 100546 b",
  37100. height: math.unit(482938, "km"),
  37101. form: "jupiter"
  37102. },
  37103. {
  37104. name: "Enceladus",
  37105. height: math.unit(513*2, "km"),
  37106. form: "neptune"
  37107. },
  37108. {
  37109. name: "Europe",
  37110. height: math.unit(1560*2, "km"),
  37111. form: "neptune"
  37112. },
  37113. {
  37114. name: "Neptune",
  37115. height: math.unit(24622*2, "km"),
  37116. form: "neptune",
  37117. default: true
  37118. },
  37119. {
  37120. name: "CoRoT-9b",
  37121. height: math.unit(75067*2, "km"),
  37122. form: "neptune"
  37123. },
  37124. ],
  37125. {
  37126. "normal": {
  37127. name: "Normal",
  37128. default: true
  37129. },
  37130. "demon": {
  37131. name: "Demon"
  37132. },
  37133. "terra": {
  37134. name: "Terra"
  37135. },
  37136. "jupiter": {
  37137. name: "Jupiter"
  37138. },
  37139. "neptune": {
  37140. name: "Neptune"
  37141. }
  37142. }
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(16, "feet"),
  37149. weight: math.unit(610, "kg"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/huckle/front.svg",
  37153. extra: 1731/1625,
  37154. bottom: 33/1764
  37155. }
  37156. },
  37157. back: {
  37158. height: math.unit(16, "feet"),
  37159. weight: math.unit(610, "kg"),
  37160. name: "Back",
  37161. image: {
  37162. source: "./media/characters/huckle/back.svg",
  37163. extra: 1738/1651,
  37164. bottom: 37/1775
  37165. }
  37166. },
  37167. laughing: {
  37168. height: math.unit(3.75, "feet"),
  37169. name: "Laughing",
  37170. image: {
  37171. source: "./media/characters/huckle/laughing.svg"
  37172. }
  37173. },
  37174. angry: {
  37175. height: math.unit(4.15, "feet"),
  37176. name: "Angry",
  37177. image: {
  37178. source: "./media/characters/huckle/angry.svg"
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(16, "feet"),
  37186. default: true
  37187. },
  37188. {
  37189. name: "Mini Macro",
  37190. height: math.unit(463, "feet")
  37191. },
  37192. {
  37193. name: "Macro",
  37194. height: math.unit(1680, "meters")
  37195. },
  37196. {
  37197. name: "Mega Macro",
  37198. height: math.unit(175, "km")
  37199. },
  37200. {
  37201. name: "Terra Macro",
  37202. height: math.unit(32, "gigameters")
  37203. },
  37204. {
  37205. name: "Multiverse+",
  37206. height: math.unit(2.56e23, "yottameters")
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37212. {
  37213. front: {
  37214. height: math.unit(6 + 9/12, "feet"),
  37215. weight: math.unit(280, "lb"),
  37216. name: "Front",
  37217. image: {
  37218. source: "./media/characters/candy/front.svg",
  37219. extra: 234/217,
  37220. bottom: 11/245
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Really Small",
  37227. height: math.unit(0.1, "nm")
  37228. },
  37229. {
  37230. name: "Micro",
  37231. height: math.unit(2, "inches")
  37232. },
  37233. {
  37234. name: "Normal",
  37235. height: math.unit(6 + 9/12, "feet"),
  37236. default: true
  37237. },
  37238. {
  37239. name: "Small Macro",
  37240. height: math.unit(69, "feet")
  37241. },
  37242. {
  37243. name: "Macro",
  37244. height: math.unit(160, "feet")
  37245. },
  37246. {
  37247. name: "Megamacro",
  37248. height: math.unit(22000, "miles")
  37249. },
  37250. {
  37251. name: "Gigamacro",
  37252. height: math.unit(50000, "miles")
  37253. },
  37254. ]
  37255. ))
  37256. characterMakers.push(() => makeCharacter(
  37257. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37258. {
  37259. front: {
  37260. height: math.unit(4, "feet"),
  37261. weight: math.unit(90, "lb"),
  37262. name: "Front",
  37263. image: {
  37264. source: "./media/characters/joey-mcdonald/front.svg",
  37265. extra: 1059/852,
  37266. bottom: 33/1092
  37267. }
  37268. },
  37269. back: {
  37270. height: math.unit(4, "feet"),
  37271. weight: math.unit(90, "lb"),
  37272. name: "Back",
  37273. image: {
  37274. source: "./media/characters/joey-mcdonald/back.svg",
  37275. extra: 1077/879,
  37276. bottom: 5/1082
  37277. }
  37278. },
  37279. frontKobold: {
  37280. height: math.unit(4, "feet"),
  37281. weight: math.unit(100, "lb"),
  37282. name: "Front-kobold",
  37283. image: {
  37284. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37285. extra: 1480/1367,
  37286. bottom: 0/1480
  37287. }
  37288. },
  37289. backKobold: {
  37290. height: math.unit(4, "feet"),
  37291. weight: math.unit(100, "lb"),
  37292. name: "Back-kobold",
  37293. image: {
  37294. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37295. extra: 1449/1361,
  37296. bottom: 0/1449
  37297. }
  37298. },
  37299. },
  37300. [
  37301. {
  37302. name: "Normal",
  37303. height: math.unit(4, "feet"),
  37304. default: true
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(12 + 6/12, "feet"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/kass-lockheed/front.svg",
  37316. extra: 354/343,
  37317. bottom: 9/363
  37318. }
  37319. },
  37320. back: {
  37321. height: math.unit(12 + 6/12, "feet"),
  37322. name: "Back",
  37323. image: {
  37324. source: "./media/characters/kass-lockheed/back.svg",
  37325. extra: 364/352,
  37326. bottom: 3/367
  37327. }
  37328. },
  37329. dick: {
  37330. height: math.unit(3.12, "feet"),
  37331. name: "Dick",
  37332. image: {
  37333. source: "./media/characters/kass-lockheed/dick.svg"
  37334. }
  37335. },
  37336. head: {
  37337. height: math.unit(2.6, "feet"),
  37338. name: "Head",
  37339. image: {
  37340. source: "./media/characters/kass-lockheed/head.svg"
  37341. }
  37342. },
  37343. bleh: {
  37344. height: math.unit(2.85, "feet"),
  37345. name: "Bleh",
  37346. image: {
  37347. source: "./media/characters/kass-lockheed/bleh.svg"
  37348. }
  37349. },
  37350. smug: {
  37351. height: math.unit(2.85, "feet"),
  37352. name: "Smug",
  37353. image: {
  37354. source: "./media/characters/kass-lockheed/smug.svg"
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(12 + 6/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(6 + 2/12, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/taylor/front.svg",
  37374. extra: 639/495,
  37375. bottom: 12/651
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(6 + 2/12, "feet"),
  37383. default: true
  37384. },
  37385. {
  37386. name: "Big",
  37387. height: math.unit(15, "feet")
  37388. },
  37389. {
  37390. name: "Lorg",
  37391. height: math.unit(80, "feet")
  37392. },
  37393. {
  37394. name: "Too Lorg",
  37395. height: math.unit(120, "feet")
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(15, "feet"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/kaizer/front.svg",
  37407. extra: 1612/1436,
  37408. bottom: 43/1655
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(15, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(2, "feet"),
  37425. weight: math.unit(30, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/sandy/front.svg",
  37429. extra: 1439/1307,
  37430. bottom: 194/1633
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(2, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(3, "feet"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/mellvi/front.svg",
  37450. extra: 1831/1630,
  37451. bottom: 58/1889
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(3, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(5 + 11/12, "feet"),
  37468. weight: math.unit(200, "lb"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/shirou/front.svg",
  37472. extra: 2491/2383,
  37473. bottom: 189/2680
  37474. }
  37475. },
  37476. back: {
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. weight: math.unit(200, "lb"),
  37479. name: "Back",
  37480. image: {
  37481. source: "./media/characters/shirou/back.svg",
  37482. extra: 2554/2450,
  37483. bottom: 76/2630
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal",
  37490. height: math.unit(5 + 11/12, "feet"),
  37491. default: true
  37492. },
  37493. ]
  37494. ))
  37495. characterMakers.push(() => makeCharacter(
  37496. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37497. {
  37498. front: {
  37499. height: math.unit(6 + 3/12, "feet"),
  37500. weight: math.unit(177, "lb"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/noryu/front.svg",
  37504. extra: 973/885,
  37505. bottom: 10/983
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Normal",
  37512. height: math.unit(6 + 3/12, "feet"),
  37513. default: true
  37514. },
  37515. ]
  37516. ))
  37517. characterMakers.push(() => makeCharacter(
  37518. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37519. {
  37520. front: {
  37521. height: math.unit(5 + 6/12, "feet"),
  37522. weight: math.unit(170, "lb"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/mevolas-rubenido/front.svg",
  37526. extra: 2109/1901,
  37527. bottom: 96/2205
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(5 + 6/12, "feet"),
  37535. default: true
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(100, "feet"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/dee/front.svg",
  37547. extra: 2153/2036,
  37548. bottom: 59/2212
  37549. }
  37550. },
  37551. back: {
  37552. height: math.unit(100, "feet"),
  37553. name: "Back",
  37554. image: {
  37555. source: "./media/characters/dee/back.svg",
  37556. extra: 2183/2058,
  37557. bottom: 75/2258
  37558. }
  37559. },
  37560. foot: {
  37561. height: math.unit(19.43, "feet"),
  37562. name: "Foot",
  37563. image: {
  37564. source: "./media/characters/dee/foot.svg"
  37565. }
  37566. },
  37567. hoof: {
  37568. height: math.unit(20.6, "feet"),
  37569. name: "Hoof",
  37570. image: {
  37571. source: "./media/characters/dee/hoof.svg"
  37572. }
  37573. },
  37574. },
  37575. [
  37576. {
  37577. name: "Macro",
  37578. height: math.unit(100, "feet"),
  37579. default: true
  37580. },
  37581. ]
  37582. ))
  37583. characterMakers.push(() => makeCharacter(
  37584. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37585. {
  37586. front: {
  37587. height: math.unit(5 + 6/12, "feet"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/teh/front.svg",
  37591. extra: 1002/847,
  37592. bottom: 62/1064
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(5 + 6/12, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37606. {
  37607. side: {
  37608. height: math.unit(6 + 1/12, "feet"),
  37609. weight: math.unit(204, "lb"),
  37610. name: "Side",
  37611. image: {
  37612. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37613. extra: 974/775,
  37614. bottom: 169/1143
  37615. }
  37616. },
  37617. sitting: {
  37618. height: math.unit(6 + 2/12, "feet"),
  37619. weight: math.unit(204, "lb"),
  37620. name: "Sitting",
  37621. image: {
  37622. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37623. extra: 1175/964,
  37624. bottom: 378/1553
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(6 + 1/12, "feet"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(6, "inches"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/tululi/front.svg",
  37644. extra: 1997/1876,
  37645. bottom: 20/2017
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(6, "inches"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(4 + 1/12, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/star/front.svg",
  37665. extra: 1493/1189,
  37666. bottom: 48/1541
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(4 + 1/12, "feet"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37680. {
  37681. front: {
  37682. height: math.unit(6 + 3/12, "feet"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/comet/front.svg",
  37686. extra: 1681/1462,
  37687. bottom: 26/1707
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Normal",
  37694. height: math.unit(6 + 3/12, "feet"),
  37695. default: true
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37701. {
  37702. front: {
  37703. height: math.unit(950, "feet"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/vortex/front.svg",
  37707. extra: 1497/1434,
  37708. bottom: 56/1553
  37709. }
  37710. },
  37711. maw: {
  37712. height: math.unit(285, "feet"),
  37713. name: "Maw",
  37714. image: {
  37715. source: "./media/characters/vortex/maw.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Macro",
  37722. height: math.unit(950, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(600, "feet"),
  37732. weight: math.unit(0.02, "grams"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/doodle/front.svg",
  37736. extra: 1578/1413,
  37737. bottom: 37/1615
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(600, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(6 + 6/12, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/jai/front.svg",
  37757. extra: 1645/1534,
  37758. bottom: 115/1760
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(6 + 6/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(6 + 8/12, "feet"),
  37775. name: "Front",
  37776. image: {
  37777. source: "./media/characters/pixel/front.svg",
  37778. extra: 1900/1735,
  37779. bottom: 63/1963
  37780. }
  37781. },
  37782. },
  37783. [
  37784. {
  37785. name: "Normal",
  37786. height: math.unit(6 + 8/12, "feet"),
  37787. default: true
  37788. },
  37789. ]
  37790. ))
  37791. characterMakers.push(() => makeCharacter(
  37792. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37793. {
  37794. back: {
  37795. height: math.unit(4 + 1/12, "feet"),
  37796. weight: math.unit(75, "lb"),
  37797. name: "Back",
  37798. image: {
  37799. source: "./media/characters/rhett/back.svg",
  37800. extra: 930/878,
  37801. bottom: 25/955
  37802. }
  37803. },
  37804. front: {
  37805. height: math.unit(4 + 1/12, "feet"),
  37806. weight: math.unit(75, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/rhett/front.svg",
  37810. extra: 1682/1586,
  37811. bottom: 92/1774
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Micro",
  37818. height: math.unit(8, "inches")
  37819. },
  37820. {
  37821. name: "Tiny",
  37822. height: math.unit(2, "feet")
  37823. },
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(4 + 1/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(3 + 3/12, "feet"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/penny/front.svg",
  37839. extra: 1406/1311,
  37840. bottom: 26/1432
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(3 + 3/12, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(4 + 11/12, "feet"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/monty/front.svg",
  37860. extra: 1479/1209,
  37861. bottom: 0/1479
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(4 + 11/12, "feet"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(8 + 4/12, "feet"),
  37878. name: "Front",
  37879. image: {
  37880. source: "./media/characters/sterling/front.svg",
  37881. extra: 1420/1236,
  37882. bottom: 27/1447
  37883. }
  37884. },
  37885. },
  37886. [
  37887. {
  37888. name: "Normal",
  37889. height: math.unit(8 + 4/12, "feet"),
  37890. default: true
  37891. },
  37892. ]
  37893. ))
  37894. characterMakers.push(() => makeCharacter(
  37895. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37896. {
  37897. front: {
  37898. height: math.unit(15, "feet"),
  37899. name: "Front",
  37900. image: {
  37901. source: "./media/characters/marble/front.svg",
  37902. extra: 973/937,
  37903. bottom: 32/1005
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(15, "feet"),
  37911. default: true
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37917. {
  37918. front: {
  37919. height: math.unit(3, "inches"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/powder/front.svg",
  37923. extra: 1504/1334,
  37924. bottom: 518/2022
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(3, "inches"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(4 + 5/12, "feet"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/joey-raccoon/front.svg",
  37944. extra: 1273/1197,
  37945. bottom: 0/1273
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(4 + 5/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(8 + 4/12, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/vick/front.svg",
  37965. extra: 2187/2118,
  37966. bottom: 47/2234
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(8 + 4/12, "feet"),
  37974. default: true
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(5 + 5/12, "feet"),
  37983. name: "Front",
  37984. image: {
  37985. source: "./media/characters/mitsy/front.svg",
  37986. extra: 1842/1695,
  37987. bottom: 0/1842
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(5 + 5/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(6 + 3/12, "feet"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/silvy/front.svg",
  38007. extra: 1995/1836,
  38008. bottom: 225/2220
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(6 + 3/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(3 + 8/12, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/rodney/front.svg",
  38028. extra: 1956/1747,
  38029. bottom: 31/1987
  38030. }
  38031. },
  38032. frontDressed: {
  38033. height: math.unit(2.9, "feet"),
  38034. name: "Front (Dressed)",
  38035. image: {
  38036. source: "./media/characters/rodney/front-dressed.svg",
  38037. extra: 1382/1241,
  38038. bottom: 385/1767
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(3 + 8/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(5 + 9/12, "feet"),
  38055. weight: math.unit(194, "lbs"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/zakail-sudekai/front.svg",
  38059. extra: 2696/2533,
  38060. bottom: 248/2944
  38061. }
  38062. },
  38063. maw: {
  38064. height: math.unit(1.35, "feet"),
  38065. name: "Maw",
  38066. image: {
  38067. source: "./media/characters/zakail-sudekai/maw.svg"
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(5 + 9/12, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(8 + 4/12, "feet"),
  38084. weight: math.unit(1200, "lb"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/eleanor/front.svg",
  38088. extra: 1226/1192,
  38089. bottom: 52/1278
  38090. }
  38091. },
  38092. back: {
  38093. height: math.unit(8 + 4/12, "feet"),
  38094. weight: math.unit(1200, "lb"),
  38095. name: "Back",
  38096. image: {
  38097. source: "./media/characters/eleanor/back.svg",
  38098. extra: 1242/1184,
  38099. bottom: 60/1302
  38100. }
  38101. },
  38102. head: {
  38103. height: math.unit(2.62, "feet"),
  38104. name: "Head",
  38105. image: {
  38106. source: "./media/characters/eleanor/head.svg"
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(8 + 4/12, "feet"),
  38114. default: true
  38115. },
  38116. ]
  38117. ))
  38118. characterMakers.push(() => makeCharacter(
  38119. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38120. {
  38121. front: {
  38122. height: math.unit(8 + 4/12, "feet"),
  38123. weight: math.unit(750, "lb"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/tanya/front.svg",
  38127. extra: 1749/1615,
  38128. bottom: 33/1782
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(8 + 4/12, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38142. {
  38143. front: {
  38144. height: math.unit(5, "feet"),
  38145. weight: math.unit(225, "lb"),
  38146. name: "Front",
  38147. image: {
  38148. source: "./media/characters/cindy/front.svg",
  38149. extra: 1320/1250,
  38150. bottom: 42/1362
  38151. }
  38152. },
  38153. frontDressed: {
  38154. height: math.unit(5, "feet"),
  38155. weight: math.unit(225, "lb"),
  38156. name: "Front (Dressed)",
  38157. image: {
  38158. source: "./media/characters/cindy/front-dressed.svg",
  38159. extra: 1320/1250,
  38160. bottom: 42/1362
  38161. }
  38162. },
  38163. back: {
  38164. height: math.unit(5, "feet"),
  38165. weight: math.unit(225, "lb"),
  38166. name: "Back",
  38167. image: {
  38168. source: "./media/characters/cindy/back.svg",
  38169. extra: 1384/1346,
  38170. bottom: 14/1398
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(5, "feet"),
  38178. default: true
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(6 + 9/12, "feet"),
  38187. weight: math.unit(440, "lb"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/wilbur-owen/front.svg",
  38191. extra: 1575/1448,
  38192. bottom: 72/1647
  38193. }
  38194. },
  38195. back: {
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. weight: math.unit(440, "lb"),
  38198. name: "Back",
  38199. image: {
  38200. source: "./media/characters/wilbur-owen/back.svg",
  38201. extra: 1578/1445,
  38202. bottom: 36/1614
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(6 + 9/12, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(6 + 5/12, "feet"),
  38219. weight: math.unit(650, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/keegan/front.svg",
  38223. extra: 2387/2198,
  38224. bottom: 33/2420
  38225. }
  38226. },
  38227. side: {
  38228. height: math.unit(6 + 5/12, "feet"),
  38229. weight: math.unit(650, "lb"),
  38230. name: "Side",
  38231. image: {
  38232. source: "./media/characters/keegan/side.svg",
  38233. extra: 2390/2202,
  38234. bottom: 47/2437
  38235. }
  38236. },
  38237. back: {
  38238. height: math.unit(6 + 5/12, "feet"),
  38239. weight: math.unit(650, "lb"),
  38240. name: "Back",
  38241. image: {
  38242. source: "./media/characters/keegan/back.svg",
  38243. extra: 2418/2268,
  38244. bottom: 15/2433
  38245. }
  38246. },
  38247. frontSfw: {
  38248. height: math.unit(6 + 5/12, "feet"),
  38249. weight: math.unit(650, "lb"),
  38250. name: "Front (SFW)",
  38251. image: {
  38252. source: "./media/characters/keegan/front-sfw.svg",
  38253. extra: 2387/2198,
  38254. bottom: 33/2420
  38255. }
  38256. },
  38257. beans: {
  38258. height: math.unit(1.85, "feet"),
  38259. name: "Beans",
  38260. image: {
  38261. source: "./media/characters/keegan/beans.svg"
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(6 + 5/12, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(9, "feet"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/colton/front.svg",
  38281. extra: 1589/1326,
  38282. bottom: 139/1728
  38283. }
  38284. },
  38285. },
  38286. [
  38287. {
  38288. name: "Normal",
  38289. height: math.unit(9, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38296. {
  38297. front: {
  38298. height: math.unit(2 + 9/12, "feet"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/bora/front.svg",
  38302. extra: 1265/1250,
  38303. bottom: 24/1289
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(2 + 9/12, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38317. {
  38318. front: {
  38319. height: math.unit(8, "feet"),
  38320. name: "Front",
  38321. image: {
  38322. source: "./media/characters/myu-myu/front.svg",
  38323. extra: 1949/1857,
  38324. bottom: 90/2039
  38325. }
  38326. },
  38327. },
  38328. [
  38329. {
  38330. name: "Normal",
  38331. height: math.unit(8, "feet"),
  38332. default: true
  38333. },
  38334. {
  38335. name: "Big",
  38336. height: math.unit(15, "feet")
  38337. },
  38338. {
  38339. name: "BIG",
  38340. height: math.unit(25, "feet")
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38346. {
  38347. side: {
  38348. height: math.unit(7 + 5/12, "feet"),
  38349. weight: math.unit(2800, "lb"),
  38350. name: "Side",
  38351. image: {
  38352. source: "./media/characters/haloren/side.svg",
  38353. extra: 1793/409,
  38354. bottom: 59/1852
  38355. }
  38356. },
  38357. frontPaw: {
  38358. height: math.unit(2.36, "feet"),
  38359. name: "Front paw",
  38360. image: {
  38361. source: "./media/characters/haloren/front-paw.svg"
  38362. }
  38363. },
  38364. hindPaw: {
  38365. height: math.unit(3.18, "feet"),
  38366. name: "Hind paw",
  38367. image: {
  38368. source: "./media/characters/haloren/hind-paw.svg"
  38369. }
  38370. },
  38371. maw: {
  38372. height: math.unit(5.05, "feet"),
  38373. name: "Maw",
  38374. image: {
  38375. source: "./media/characters/haloren/maw.svg"
  38376. }
  38377. },
  38378. dick: {
  38379. height: math.unit(2.90, "feet"),
  38380. name: "Dick",
  38381. image: {
  38382. source: "./media/characters/haloren/dick.svg"
  38383. }
  38384. },
  38385. },
  38386. [
  38387. {
  38388. name: "Normal",
  38389. height: math.unit(7 + 5/12, "feet"),
  38390. default: true
  38391. },
  38392. {
  38393. name: "Enhanced",
  38394. height: math.unit(14 + 3/12, "feet")
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(171, "cm"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/kimmy/front.svg",
  38406. extra: 1491/1435,
  38407. bottom: 53/1544
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Small",
  38414. height: math.unit(9, "cm")
  38415. },
  38416. {
  38417. name: "Normal",
  38418. height: math.unit(171, "cm"),
  38419. default: true
  38420. },
  38421. ]
  38422. ))
  38423. characterMakers.push(() => makeCharacter(
  38424. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38425. {
  38426. front: {
  38427. height: math.unit(8, "feet"),
  38428. weight: math.unit(300, "lb"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/galeboomer/front.svg",
  38432. extra: 4651/4415,
  38433. bottom: 162/4813
  38434. }
  38435. },
  38436. back: {
  38437. height: math.unit(8, "feet"),
  38438. weight: math.unit(300, "lb"),
  38439. name: "Back",
  38440. image: {
  38441. source: "./media/characters/galeboomer/back.svg",
  38442. extra: 4544/4314,
  38443. bottom: 16/4560
  38444. }
  38445. },
  38446. frontAlt: {
  38447. height: math.unit(8, "feet"),
  38448. weight: math.unit(300, "lb"),
  38449. name: "Front (Alt)",
  38450. image: {
  38451. source: "./media/characters/galeboomer/front-alt.svg",
  38452. extra: 4458/4228,
  38453. bottom: 68/4526
  38454. }
  38455. },
  38456. maw: {
  38457. height: math.unit(1.2, "feet"),
  38458. name: "Maw",
  38459. image: {
  38460. source: "./media/characters/galeboomer/maw.svg"
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(8, "feet"),
  38468. default: true
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(5 + 9/12, "feet"),
  38477. weight: math.unit(120, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/chyr/front.svg",
  38481. extra: 1323/1254,
  38482. bottom: 63/1386
  38483. }
  38484. },
  38485. back: {
  38486. height: math.unit(5 + 9/12, "feet"),
  38487. weight: math.unit(120, "lb"),
  38488. name: "Back",
  38489. image: {
  38490. source: "./media/characters/chyr/back.svg",
  38491. extra: 1323/1252,
  38492. bottom: 48/1371
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(5 + 9/12, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(7, "feet"),
  38509. weight: math.unit(310, "lb"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/solarus/front.svg",
  38513. extra: 2415/2021,
  38514. bottom: 103/2518
  38515. }
  38516. },
  38517. back: {
  38518. height: math.unit(7, "feet"),
  38519. weight: math.unit(310, "lb"),
  38520. name: "Back",
  38521. image: {
  38522. source: "./media/characters/solarus/back.svg",
  38523. extra: 2463/2089,
  38524. bottom: 79/2542
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(7, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(16, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38544. extra: 1844/1780,
  38545. bottom: 58/1902
  38546. }
  38547. },
  38548. winterCoat: {
  38549. height: math.unit(16, "feet"),
  38550. name: "Winter Coat",
  38551. image: {
  38552. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38553. extra: 1807/1775,
  38554. bottom: 69/1876
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(16, "feet"),
  38562. default: true
  38563. },
  38564. {
  38565. name: "Chicago Size",
  38566. height: math.unit(560, "feet")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(11 + 6/12, "feet"),
  38575. weight: math.unit(1366, "lb"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/lexor/front.svg",
  38579. extra: 1560/1481,
  38580. bottom: 211/1771
  38581. }
  38582. },
  38583. back: {
  38584. height: math.unit(11 + 6/12, "feet"),
  38585. weight: math.unit(1366, "lb"),
  38586. name: "Back",
  38587. image: {
  38588. source: "./media/characters/lexor/back.svg",
  38589. extra: 1614/1533,
  38590. bottom: 76/1690
  38591. }
  38592. },
  38593. maw: {
  38594. height: math.unit(3, "feet"),
  38595. name: "Maw",
  38596. image: {
  38597. source: "./media/characters/lexor/maw.svg"
  38598. }
  38599. },
  38600. dick: {
  38601. height: math.unit(2.59, "feet"),
  38602. name: "Dick",
  38603. image: {
  38604. source: "./media/characters/lexor/dick.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(11 + 6/12, "feet"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38618. {
  38619. front: {
  38620. height: math.unit(5 + 8/12, "feet"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/magnum/front.svg",
  38624. extra: 942/855,
  38625. bottom: 26/968
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(5 + 8/12, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(18 + 4/12, "feet"),
  38642. weight: math.unit(1500, "kg"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/solas-sharpsman/front.svg",
  38646. extra: 1698/1589,
  38647. bottom: 0/1698
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(18 + 4/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(5 + 5/12, "feet"),
  38664. weight: math.unit(180, "lb"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/october/front.svg",
  38668. extra: 1800/1650,
  38669. bottom: 0/1800
  38670. }
  38671. },
  38672. frontNsfw: {
  38673. height: math.unit(5 + 5/12, "feet"),
  38674. weight: math.unit(180, "lb"),
  38675. name: "Front (NSFW)",
  38676. image: {
  38677. source: "./media/characters/october/front-nsfw.svg",
  38678. extra: 1392/1307,
  38679. bottom: 42/1434
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(5 + 5/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(8 + 6/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/essynkardi/front.svg",
  38699. extra: 1914/1846,
  38700. bottom: 22/1936
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(8 + 6/12, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(6 + 6/12, "feet"),
  38717. weight: math.unit(7, "lb"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/icky/front.svg",
  38721. extra: 813/782,
  38722. bottom: 66/879
  38723. }
  38724. },
  38725. back: {
  38726. height: math.unit(6 + 6/12, "feet"),
  38727. weight: math.unit(7, "lb"),
  38728. name: "Back",
  38729. image: {
  38730. source: "./media/characters/icky/back.svg",
  38731. extra: 754/735,
  38732. bottom: 56/810
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Normal",
  38739. height: math.unit(6 + 6/12, "feet"),
  38740. default: true
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(15, "feet"),
  38749. name: "Front",
  38750. image: {
  38751. source: "./media/characters/rojas/front.svg",
  38752. extra: 1462/1408,
  38753. bottom: 95/1557
  38754. }
  38755. },
  38756. back: {
  38757. height: math.unit(15, "feet"),
  38758. name: "Back",
  38759. image: {
  38760. source: "./media/characters/rojas/back.svg",
  38761. extra: 1023/954,
  38762. bottom: 28/1051
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(15, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38776. {
  38777. frontHuman: {
  38778. height: math.unit(5 + 7/12, "feet"),
  38779. name: "Front (Human)",
  38780. image: {
  38781. source: "./media/characters/alek-dryagan/front-human.svg",
  38782. extra: 1687/1667,
  38783. bottom: 69/1756
  38784. }
  38785. },
  38786. backHuman: {
  38787. height: math.unit(5 + 7/12, "feet"),
  38788. name: "Back (Human)",
  38789. image: {
  38790. source: "./media/characters/alek-dryagan/back-human.svg",
  38791. extra: 1670/1649,
  38792. bottom: 65/1735
  38793. }
  38794. },
  38795. frontDemi: {
  38796. height: math.unit(65, "feet"),
  38797. name: "Front (Demi)",
  38798. image: {
  38799. source: "./media/characters/alek-dryagan/front-demi.svg",
  38800. extra: 1669/1642,
  38801. bottom: 49/1718
  38802. }
  38803. },
  38804. backDemi: {
  38805. height: math.unit(65, "feet"),
  38806. name: "Back (Demi)",
  38807. image: {
  38808. source: "./media/characters/alek-dryagan/back-demi.svg",
  38809. extra: 1658/1637,
  38810. bottom: 40/1698
  38811. }
  38812. },
  38813. mawHuman: {
  38814. height: math.unit(0.3, "feet"),
  38815. name: "Maw (Human)",
  38816. image: {
  38817. source: "./media/characters/alek-dryagan/maw-human.svg"
  38818. }
  38819. },
  38820. mawDemi: {
  38821. height: math.unit(3.8, "feet"),
  38822. name: "Maw (Demi)",
  38823. image: {
  38824. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38825. }
  38826. },
  38827. },
  38828. [
  38829. {
  38830. name: "Normal",
  38831. height: math.unit(5 + 7/12, "feet"),
  38832. default: true
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38838. {
  38839. frontHuman: {
  38840. height: math.unit(5 + 2/12, "feet"),
  38841. name: "Front (Human)",
  38842. image: {
  38843. source: "./media/characters/gen/front-human.svg",
  38844. extra: 1627/1538,
  38845. bottom: 71/1698
  38846. }
  38847. },
  38848. backHuman: {
  38849. height: math.unit(5 + 2/12, "feet"),
  38850. name: "Back (Human)",
  38851. image: {
  38852. source: "./media/characters/gen/back-human.svg",
  38853. extra: 1638/1548,
  38854. bottom: 69/1707
  38855. }
  38856. },
  38857. frontDemi: {
  38858. height: math.unit(5 + 2/12, "feet"),
  38859. name: "Front (Demi)",
  38860. image: {
  38861. source: "./media/characters/gen/front-demi.svg",
  38862. extra: 1627/1538,
  38863. bottom: 71/1698
  38864. }
  38865. },
  38866. backDemi: {
  38867. height: math.unit(5 + 2/12, "feet"),
  38868. name: "Back (Demi)",
  38869. image: {
  38870. source: "./media/characters/gen/back-demi.svg",
  38871. extra: 1638/1548,
  38872. bottom: 69/1707
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(5 + 2/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38886. {
  38887. frontImp: {
  38888. height: math.unit(1 + 11/12, "feet"),
  38889. name: "Front (Imp)",
  38890. image: {
  38891. source: "./media/characters/max-kobold/front-imp.svg",
  38892. extra: 1238/1134,
  38893. bottom: 81/1319
  38894. }
  38895. },
  38896. backImp: {
  38897. height: math.unit(1 + 11/12, "feet"),
  38898. name: "Back (Imp)",
  38899. image: {
  38900. source: "./media/characters/max-kobold/back-imp.svg",
  38901. extra: 1334/1175,
  38902. bottom: 34/1368
  38903. }
  38904. },
  38905. frontDemi: {
  38906. height: math.unit(5 + 9/12, "feet"),
  38907. name: "Front (Demi)",
  38908. image: {
  38909. source: "./media/characters/max-kobold/front-demi.svg",
  38910. extra: 1715/1685,
  38911. bottom: 54/1769
  38912. }
  38913. },
  38914. backDemi: {
  38915. height: math.unit(5 + 9/12, "feet"),
  38916. name: "Back (Demi)",
  38917. image: {
  38918. source: "./media/characters/max-kobold/back-demi.svg",
  38919. extra: 1752/1729,
  38920. bottom: 41/1793
  38921. }
  38922. },
  38923. handImp: {
  38924. height: math.unit(0.45, "feet"),
  38925. name: "Hand (Imp)",
  38926. image: {
  38927. source: "./media/characters/max-kobold/hand.svg"
  38928. }
  38929. },
  38930. pawImp: {
  38931. height: math.unit(0.46, "feet"),
  38932. name: "Paw (Imp)",
  38933. image: {
  38934. source: "./media/characters/max-kobold/paw.svg"
  38935. }
  38936. },
  38937. handDemi: {
  38938. height: math.unit(0.80, "feet"),
  38939. name: "Hand (Demi)",
  38940. image: {
  38941. source: "./media/characters/max-kobold/hand.svg"
  38942. }
  38943. },
  38944. pawDemi: {
  38945. height: math.unit(1.1, "feet"),
  38946. name: "Paw (Demi)",
  38947. image: {
  38948. source: "./media/characters/max-kobold/paw.svg"
  38949. }
  38950. },
  38951. headImp: {
  38952. height: math.unit(1.33, "feet"),
  38953. name: "Head (Imp)",
  38954. image: {
  38955. source: "./media/characters/max-kobold/head-imp.svg"
  38956. }
  38957. },
  38958. mawImp: {
  38959. height: math.unit(0.75, "feet"),
  38960. name: "Maw (Imp)",
  38961. image: {
  38962. source: "./media/characters/max-kobold/maw-imp.svg"
  38963. }
  38964. },
  38965. mawDemi: {
  38966. height: math.unit(0.42, "feet"),
  38967. name: "Maw (Demi)",
  38968. image: {
  38969. source: "./media/characters/max-kobold/maw-demi.svg"
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(1 + 11/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(7 + 5/12, "feet"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/carbon/front.svg",
  38989. extra: 1754/1689,
  38990. bottom: 65/1819
  38991. }
  38992. },
  38993. back: {
  38994. height: math.unit(7 + 5/12, "feet"),
  38995. name: "Back",
  38996. image: {
  38997. source: "./media/characters/carbon/back.svg",
  38998. extra: 1762/1695,
  38999. bottom: 24/1786
  39000. }
  39001. },
  39002. frontGigantamax: {
  39003. height: math.unit(150, "feet"),
  39004. name: "Front (Gigantamax)",
  39005. image: {
  39006. source: "./media/characters/carbon/front-gigantamax.svg",
  39007. extra: 1826/1669,
  39008. bottom: 59/1885
  39009. }
  39010. },
  39011. backGigantamax: {
  39012. height: math.unit(150, "feet"),
  39013. name: "Back (Gigantamax)",
  39014. image: {
  39015. source: "./media/characters/carbon/back-gigantamax.svg",
  39016. extra: 1796/1653,
  39017. bottom: 53/1849
  39018. }
  39019. },
  39020. maw: {
  39021. height: math.unit(0.48, "feet"),
  39022. name: "Maw",
  39023. image: {
  39024. source: "./media/characters/carbon/maw.svg"
  39025. }
  39026. },
  39027. mawGigantamax: {
  39028. height: math.unit(7.5, "feet"),
  39029. name: "Maw (Gigantamax)",
  39030. image: {
  39031. source: "./media/characters/carbon/maw-gigantamax.svg"
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(7 + 5/12, "feet"),
  39039. default: true
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(6, "feet"),
  39048. name: "Front",
  39049. image: {
  39050. source: "./media/characters/maverick/front.svg",
  39051. extra: 1672/1661,
  39052. bottom: 85/1757
  39053. }
  39054. },
  39055. back: {
  39056. height: math.unit(6, "feet"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/maverick/back.svg",
  39060. extra: 1642/1631,
  39061. bottom: 38/1680
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(6, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(15, "feet"),
  39078. weight: math.unit(615, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/grockle/front.svg",
  39082. extra: 1535/1427,
  39083. bottom: 56/1591
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(15, "feet"),
  39091. default: true
  39092. },
  39093. {
  39094. name: "Large",
  39095. height: math.unit(150, "feet")
  39096. },
  39097. {
  39098. name: "Macro",
  39099. height: math.unit(1876, "feet")
  39100. },
  39101. {
  39102. name: "Mega Macro",
  39103. height: math.unit(121940, "feet")
  39104. },
  39105. {
  39106. name: "Giga Macro",
  39107. height: math.unit(750, "km")
  39108. },
  39109. {
  39110. name: "Tera Macro",
  39111. height: math.unit(750000, "km")
  39112. },
  39113. {
  39114. name: "Galactic",
  39115. height: math.unit(1.4e5, "km")
  39116. },
  39117. {
  39118. name: "Godlike",
  39119. height: math.unit(9.8e280, "galaxies")
  39120. },
  39121. ]
  39122. ))
  39123. characterMakers.push(() => makeCharacter(
  39124. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39125. {
  39126. front: {
  39127. height: math.unit(11, "meters"),
  39128. weight: math.unit(20, "tonnes"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/alistair/front.svg",
  39132. extra: 1265/1009,
  39133. bottom: 93/1358
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(11, "meters"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(5 + 8/12, "feet"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/haruka/front.svg",
  39153. extra: 2012/1952,
  39154. bottom: 0/2012
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(5 + 8/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39168. {
  39169. back: {
  39170. height: math.unit(9, "feet"),
  39171. name: "Back",
  39172. image: {
  39173. source: "./media/characters/vivian-sylveon/back.svg",
  39174. extra: 1853/1714,
  39175. bottom: 0/1853
  39176. }
  39177. },
  39178. },
  39179. [
  39180. {
  39181. name: "Normal",
  39182. height: math.unit(9, "feet"),
  39183. default: true
  39184. },
  39185. {
  39186. name: "Macro",
  39187. height: math.unit(500, "feet")
  39188. },
  39189. {
  39190. name: "Megamacro",
  39191. height: math.unit(600, "miles")
  39192. },
  39193. {
  39194. name: "Gigamacro",
  39195. height: math.unit(30000, "miles")
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39201. {
  39202. anthro: {
  39203. height: math.unit(5 + 10/12, "feet"),
  39204. weight: math.unit(100, "lb"),
  39205. name: "Anthro",
  39206. image: {
  39207. source: "./media/characters/daiki/anthro.svg",
  39208. extra: 1115/1027,
  39209. bottom: 69/1184
  39210. }
  39211. },
  39212. feral: {
  39213. height: math.unit(200, "feet"),
  39214. name: "Feral",
  39215. image: {
  39216. source: "./media/characters/daiki/feral.svg",
  39217. extra: 1256/313,
  39218. bottom: 39/1295
  39219. }
  39220. },
  39221. feralHead: {
  39222. height: math.unit(171, "feet"),
  39223. name: "Feral Head",
  39224. image: {
  39225. source: "./media/characters/daiki/feral-head.svg"
  39226. }
  39227. },
  39228. manaDragon: {
  39229. height: math.unit(170, "meters"),
  39230. name: "Mana-dragon",
  39231. image: {
  39232. source: "./media/characters/daiki/mana-dragon.svg",
  39233. extra: 763/420,
  39234. bottom: 97/860
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(5 + 10/12, "feet"),
  39242. default: true
  39243. },
  39244. ]
  39245. ))
  39246. characterMakers.push(() => makeCharacter(
  39247. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39248. {
  39249. fullyEquippedFront: {
  39250. height: math.unit(3 + 1/12, "feet"),
  39251. weight: math.unit(24, "lb"),
  39252. name: "Fully Equipped (Front)",
  39253. image: {
  39254. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39255. extra: 687/605,
  39256. bottom: 18/705
  39257. }
  39258. },
  39259. fullyEquippedBack: {
  39260. height: math.unit(3 + 1/12, "feet"),
  39261. weight: math.unit(24, "lb"),
  39262. name: "Fully Equipped (Back)",
  39263. image: {
  39264. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39265. extra: 689/590,
  39266. bottom: 18/707
  39267. }
  39268. },
  39269. dailyWear: {
  39270. height: math.unit(3 + 1/12, "feet"),
  39271. weight: math.unit(24, "lb"),
  39272. name: "Daily Wear",
  39273. image: {
  39274. source: "./media/characters/tea-spot/daily-wear.svg",
  39275. extra: 701/620,
  39276. bottom: 21/722
  39277. }
  39278. },
  39279. maidWork: {
  39280. height: math.unit(3 + 1/12, "feet"),
  39281. weight: math.unit(24, "lb"),
  39282. name: "Maid Work",
  39283. image: {
  39284. source: "./media/characters/tea-spot/maid-work.svg",
  39285. extra: 693/609,
  39286. bottom: 15/708
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(3 + 1/12, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(175, "cm"),
  39303. weight: math.unit(75, "kg"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/chee/front.svg",
  39307. extra: 1796/1740,
  39308. bottom: 40/1836
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Micro-Micro",
  39315. height: math.unit(1, "nm")
  39316. },
  39317. {
  39318. name: "Micro-erst",
  39319. height: math.unit(1, "micrometer")
  39320. },
  39321. {
  39322. name: "Micro-er",
  39323. height: math.unit(1, "cm")
  39324. },
  39325. {
  39326. name: "Normal",
  39327. height: math.unit(175, "cm"),
  39328. default: true
  39329. },
  39330. {
  39331. name: "Macro",
  39332. height: math.unit(100, "m")
  39333. },
  39334. {
  39335. name: "Macro-er",
  39336. height: math.unit(1, "km")
  39337. },
  39338. {
  39339. name: "Macro-erst",
  39340. height: math.unit(10, "km")
  39341. },
  39342. {
  39343. name: "Macro-Macro",
  39344. height: math.unit(100, "km")
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39350. {
  39351. front: {
  39352. height: math.unit(11 + 9/12, "feet"),
  39353. weight: math.unit(935, "lb"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/kingsley/front.svg",
  39357. extra: 1803/1674,
  39358. bottom: 127/1930
  39359. }
  39360. },
  39361. frontNude: {
  39362. height: math.unit(11 + 9/12, "feet"),
  39363. weight: math.unit(935, "lb"),
  39364. name: "Front (Nude)",
  39365. image: {
  39366. source: "./media/characters/kingsley/front-nude.svg",
  39367. extra: 1803/1674,
  39368. bottom: 127/1930
  39369. }
  39370. },
  39371. },
  39372. [
  39373. {
  39374. name: "Normal",
  39375. height: math.unit(11 + 9/12, "feet"),
  39376. default: true
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39382. {
  39383. side: {
  39384. height: math.unit(9, "feet"),
  39385. name: "Side",
  39386. image: {
  39387. source: "./media/characters/rymel/side.svg",
  39388. extra: 792/469,
  39389. bottom: 121/913
  39390. }
  39391. },
  39392. maw: {
  39393. height: math.unit(2.4, "meters"),
  39394. name: "Maw",
  39395. image: {
  39396. source: "./media/characters/rymel/maw.svg"
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "House Drake",
  39403. height: math.unit(2, "feet")
  39404. },
  39405. {
  39406. name: "Reduced",
  39407. height: math.unit(4.5, "feet")
  39408. },
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(9, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(1.74, "meters"),
  39421. weight: math.unit(55, "kg"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/rubus/front.svg",
  39425. extra: 1894/1742,
  39426. bottom: 44/1938
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(1.74, "meters"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(5 + 2/12, "feet"),
  39443. weight: math.unit(112, "lb"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/cassie-kingston/front.svg",
  39447. extra: 1438/1390,
  39448. bottom: 47/1485
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(5 + 2/12, "feet"),
  39456. default: true
  39457. },
  39458. {
  39459. name: "Macro",
  39460. height: math.unit(128, "feet")
  39461. },
  39462. {
  39463. name: "Megamacro",
  39464. height: math.unit(2.56, "miles")
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(7, "feet"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/fox/front.svg",
  39476. extra: 1798/1703,
  39477. bottom: 55/1853
  39478. }
  39479. },
  39480. back: {
  39481. height: math.unit(7, "feet"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/fox/back.svg",
  39485. extra: 1748/1649,
  39486. bottom: 32/1780
  39487. }
  39488. },
  39489. head: {
  39490. height: math.unit(1.95, "feet"),
  39491. name: "Head",
  39492. image: {
  39493. source: "./media/characters/fox/head.svg"
  39494. }
  39495. },
  39496. dick: {
  39497. height: math.unit(1.33, "feet"),
  39498. name: "Dick",
  39499. image: {
  39500. source: "./media/characters/fox/dick.svg"
  39501. }
  39502. },
  39503. foot: {
  39504. height: math.unit(1, "feet"),
  39505. name: "Foot",
  39506. image: {
  39507. source: "./media/characters/fox/foot.svg"
  39508. }
  39509. },
  39510. paw: {
  39511. height: math.unit(0.92, "feet"),
  39512. name: "Paw",
  39513. image: {
  39514. source: "./media/characters/fox/paw.svg"
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Small",
  39521. height: math.unit(3, "inches")
  39522. },
  39523. {
  39524. name: "\"Realistic\"",
  39525. height: math.unit(7, "feet")
  39526. },
  39527. {
  39528. name: "Normal",
  39529. height: math.unit(150, "feet"),
  39530. default: true
  39531. },
  39532. {
  39533. name: "BIG",
  39534. height: math.unit(1200, "feet")
  39535. },
  39536. {
  39537. name: "👀",
  39538. height: math.unit(5, "miles")
  39539. },
  39540. {
  39541. name: "👀👀👀",
  39542. height: math.unit(64, "miles")
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(625, "feet"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/asonja-rossa/front.svg",
  39554. extra: 1833/1686,
  39555. bottom: 24/1857
  39556. }
  39557. },
  39558. back: {
  39559. height: math.unit(625, "feet"),
  39560. name: "Back",
  39561. image: {
  39562. source: "./media/characters/asonja-rossa/back.svg",
  39563. extra: 1852/1753,
  39564. bottom: 26/1878
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(625, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39578. {
  39579. side: {
  39580. height: math.unit(8, "feet"),
  39581. name: "Side",
  39582. image: {
  39583. source: "./media/characters/rezukii/side.svg",
  39584. extra: 979/542,
  39585. bottom: 87/1066
  39586. }
  39587. },
  39588. sitting: {
  39589. height: math.unit(14.6, "feet"),
  39590. name: "Sitting",
  39591. image: {
  39592. source: "./media/characters/rezukii/sitting.svg",
  39593. extra: 1023/813,
  39594. bottom: 45/1068
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Tiny",
  39601. height: math.unit(2, "feet")
  39602. },
  39603. {
  39604. name: "Smol",
  39605. height: math.unit(4, "feet")
  39606. },
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(8, "feet"),
  39610. default: true
  39611. },
  39612. {
  39613. name: "Big",
  39614. height: math.unit(12, "feet")
  39615. },
  39616. {
  39617. name: "Macro",
  39618. height: math.unit(30, "feet")
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39624. {
  39625. front: {
  39626. height: math.unit(14, "feet"),
  39627. weight: math.unit(9.5, "tonnes"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/dawnheart/front.svg",
  39631. extra: 2792/2675,
  39632. bottom: 64/2856
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(14, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39646. {
  39647. front: {
  39648. height: math.unit(1.7, "m"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/gladi/front.svg",
  39652. extra: 1460/1362,
  39653. bottom: 19/1479
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(1.7, "m"),
  39658. name: "Back",
  39659. image: {
  39660. source: "./media/characters/gladi/back.svg",
  39661. extra: 1459/1357,
  39662. bottom: 12/1471
  39663. }
  39664. },
  39665. feral: {
  39666. height: math.unit(2.05, "m"),
  39667. name: "Feral",
  39668. image: {
  39669. source: "./media/characters/gladi/feral.svg",
  39670. extra: 821/557,
  39671. bottom: 91/912
  39672. }
  39673. },
  39674. },
  39675. [
  39676. {
  39677. name: "Shortest",
  39678. height: math.unit(70, "cm")
  39679. },
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(1.7, "m")
  39683. },
  39684. {
  39685. name: "Macro",
  39686. height: math.unit(10, "m"),
  39687. default: true
  39688. },
  39689. {
  39690. name: "Tallest",
  39691. height: math.unit(200, "m")
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(5 + 7/12, "feet"),
  39700. weight: math.unit(2, "tons"),
  39701. name: "Front",
  39702. image: {
  39703. source: "./media/characters/erdno/front.svg",
  39704. extra: 1234/1129,
  39705. bottom: 35/1269
  39706. }
  39707. },
  39708. angled: {
  39709. height: math.unit(5 + 7/12, "feet"),
  39710. weight: math.unit(2, "tons"),
  39711. name: "Angled",
  39712. image: {
  39713. source: "./media/characters/erdno/angled.svg",
  39714. extra: 1185/1139,
  39715. bottom: 36/1221
  39716. }
  39717. },
  39718. side: {
  39719. height: math.unit(5 + 7/12, "feet"),
  39720. weight: math.unit(2, "tons"),
  39721. name: "Side",
  39722. image: {
  39723. source: "./media/characters/erdno/side.svg",
  39724. extra: 1191/1144,
  39725. bottom: 40/1231
  39726. }
  39727. },
  39728. back: {
  39729. height: math.unit(5 + 7/12, "feet"),
  39730. weight: math.unit(2, "tons"),
  39731. name: "Back",
  39732. image: {
  39733. source: "./media/characters/erdno/back.svg",
  39734. extra: 1202/1146,
  39735. bottom: 17/1219
  39736. }
  39737. },
  39738. frontNsfw: {
  39739. height: math.unit(5 + 7/12, "feet"),
  39740. weight: math.unit(2, "tons"),
  39741. name: "Front (NSFW)",
  39742. image: {
  39743. source: "./media/characters/erdno/front-nsfw.svg",
  39744. extra: 1234/1129,
  39745. bottom: 35/1269
  39746. }
  39747. },
  39748. angledNsfw: {
  39749. height: math.unit(5 + 7/12, "feet"),
  39750. weight: math.unit(2, "tons"),
  39751. name: "Angled (NSFW)",
  39752. image: {
  39753. source: "./media/characters/erdno/angled-nsfw.svg",
  39754. extra: 1185/1139,
  39755. bottom: 36/1221
  39756. }
  39757. },
  39758. sideNsfw: {
  39759. height: math.unit(5 + 7/12, "feet"),
  39760. weight: math.unit(2, "tons"),
  39761. name: "Side (NSFW)",
  39762. image: {
  39763. source: "./media/characters/erdno/side-nsfw.svg",
  39764. extra: 1191/1144,
  39765. bottom: 40/1231
  39766. }
  39767. },
  39768. backNsfw: {
  39769. height: math.unit(5 + 7/12, "feet"),
  39770. weight: math.unit(2, "tons"),
  39771. name: "Back (NSFW)",
  39772. image: {
  39773. source: "./media/characters/erdno/back-nsfw.svg",
  39774. extra: 1202/1146,
  39775. bottom: 17/1219
  39776. }
  39777. },
  39778. frontHyper: {
  39779. height: math.unit(5 + 7/12, "feet"),
  39780. weight: math.unit(2, "tons"),
  39781. name: "Front (Hyper)",
  39782. image: {
  39783. source: "./media/characters/erdno/front-hyper.svg",
  39784. extra: 1298/1136,
  39785. bottom: 35/1333
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(5 + 7/12, "feet"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "Big",
  39797. height: math.unit(5.7, "meters")
  39798. },
  39799. {
  39800. name: "Macro",
  39801. height: math.unit(5.7, "kilometers")
  39802. },
  39803. {
  39804. name: "Megamacro",
  39805. height: math.unit(5.7, "earths")
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(5 + 10/12, "feet"),
  39814. weight: math.unit(150, "lb"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/jamie/front.svg",
  39818. extra: 1908/1768,
  39819. bottom: 19/1927
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Minimum",
  39826. height: math.unit(2, "cm")
  39827. },
  39828. {
  39829. name: "Micro",
  39830. height: math.unit(3, "inches")
  39831. },
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(5 + 10/12, "feet"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Macro",
  39839. height: math.unit(150, "feet")
  39840. },
  39841. {
  39842. name: "Megamacro",
  39843. height: math.unit(10000, "m")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(2, "meters"),
  39852. weight: math.unit(100, "kg"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/shiron/front.svg",
  39856. extra: 2103/1985,
  39857. bottom: 98/2201
  39858. }
  39859. },
  39860. back: {
  39861. height: math.unit(2, "meters"),
  39862. weight: math.unit(100, "kg"),
  39863. name: "Back",
  39864. image: {
  39865. source: "./media/characters/shiron/back.svg",
  39866. extra: 2110/2015,
  39867. bottom: 89/2199
  39868. }
  39869. },
  39870. hand: {
  39871. height: math.unit(0.96, "feet"),
  39872. name: "Hand",
  39873. image: {
  39874. source: "./media/characters/shiron/hand.svg"
  39875. }
  39876. },
  39877. foot: {
  39878. height: math.unit(1.464, "feet"),
  39879. name: "Foot",
  39880. image: {
  39881. source: "./media/characters/shiron/foot.svg"
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(2, "meters")
  39889. },
  39890. {
  39891. name: "Macro",
  39892. height: math.unit(500, "meters"),
  39893. default: true
  39894. },
  39895. {
  39896. name: "Megamacro",
  39897. height: math.unit(20, "km")
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(6, "feet"),
  39906. name: "Front",
  39907. image: {
  39908. source: "./media/characters/sam/front.svg",
  39909. extra: 849/826,
  39910. bottom: 19/868
  39911. }
  39912. },
  39913. },
  39914. [
  39915. {
  39916. name: "Normal",
  39917. height: math.unit(6, "feet"),
  39918. default: true
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39924. {
  39925. front: {
  39926. height: math.unit(8 + 4/12, "feet"),
  39927. weight: math.unit(122, "kg"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/namori-kurogawa/front.svg",
  39931. extra: 1894/1576,
  39932. bottom: 34/1928
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(8 + 4/12, "feet"),
  39940. default: true
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(9, "feet"),
  39949. weight: math.unit(621, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/unmru/front.svg",
  39953. extra: 1853/1747,
  39954. bottom: 73/1926
  39955. }
  39956. },
  39957. side: {
  39958. height: math.unit(9, "feet"),
  39959. weight: math.unit(621, "lb"),
  39960. name: "Side",
  39961. image: {
  39962. source: "./media/characters/unmru/side.svg",
  39963. extra: 1781/1671,
  39964. bottom: 127/1908
  39965. }
  39966. },
  39967. back: {
  39968. height: math.unit(9, "feet"),
  39969. weight: math.unit(621, "lb"),
  39970. name: "Back",
  39971. image: {
  39972. source: "./media/characters/unmru/back.svg",
  39973. extra: 1894/1765,
  39974. bottom: 75/1969
  39975. }
  39976. },
  39977. dick: {
  39978. height: math.unit(3, "feet"),
  39979. weight: math.unit(35, "lb"),
  39980. name: "Dick",
  39981. image: {
  39982. source: "./media/characters/unmru/dick.svg"
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(9, "feet")
  39990. },
  39991. {
  39992. name: "Natural",
  39993. height: math.unit(27, "feet"),
  39994. default: true
  39995. },
  39996. {
  39997. name: "Giant",
  39998. height: math.unit(90, "feet")
  39999. },
  40000. {
  40001. name: "Kaiju",
  40002. height: math.unit(270, "feet")
  40003. },
  40004. {
  40005. name: "Macro",
  40006. height: math.unit(900, "feet")
  40007. },
  40008. {
  40009. name: "Macro+",
  40010. height: math.unit(2700, "feet")
  40011. },
  40012. {
  40013. name: "Megamacro",
  40014. height: math.unit(9000, "feet")
  40015. },
  40016. {
  40017. name: "City-Crushing",
  40018. height: math.unit(27000, "feet")
  40019. },
  40020. {
  40021. name: "Mountain-Mashing",
  40022. height: math.unit(90000, "feet")
  40023. },
  40024. {
  40025. name: "Earth-Eclipsing",
  40026. height: math.unit(2.7e8, "feet")
  40027. },
  40028. {
  40029. name: "Sol-Swallowing",
  40030. height: math.unit(9e10, "feet")
  40031. },
  40032. {
  40033. name: "Majoris-Munching",
  40034. height: math.unit(2.7e13, "feet")
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40040. {
  40041. front: {
  40042. height: math.unit(1, "inch"),
  40043. name: "Front",
  40044. image: {
  40045. source: "./media/characters/squeaks-mouse/front.svg",
  40046. extra: 352/308,
  40047. bottom: 25/377
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Micro",
  40054. height: math.unit(1, "inch"),
  40055. default: true
  40056. },
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40061. {
  40062. side: {
  40063. height: math.unit(35, "feet"),
  40064. name: "Side",
  40065. image: {
  40066. source: "./media/characters/sayko/side.svg",
  40067. extra: 1697/1021,
  40068. bottom: 82/1779
  40069. }
  40070. },
  40071. head: {
  40072. height: math.unit(16, "feet"),
  40073. name: "Head",
  40074. image: {
  40075. source: "./media/characters/sayko/head.svg"
  40076. }
  40077. },
  40078. forepaw: {
  40079. height: math.unit(7.85, "feet"),
  40080. name: "Forepaw",
  40081. image: {
  40082. source: "./media/characters/sayko/forepaw.svg"
  40083. }
  40084. },
  40085. hindpaw: {
  40086. height: math.unit(8.8, "feet"),
  40087. name: "Hindpaw",
  40088. image: {
  40089. source: "./media/characters/sayko/hindpaw.svg"
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(35, "feet"),
  40097. default: true
  40098. },
  40099. {
  40100. name: "Colossus",
  40101. height: math.unit(100, "meters")
  40102. },
  40103. {
  40104. name: "\"Small\" Deity",
  40105. height: math.unit(1, "km")
  40106. },
  40107. {
  40108. name: "\"Large\" Deity",
  40109. height: math.unit(15, "km")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(6, "feet"),
  40118. weight: math.unit(250, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/mukiro/front.svg",
  40122. extra: 1368/1310,
  40123. bottom: 34/1402
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(6, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(12 + 4/12, "feet"),
  40140. name: "Front",
  40141. image: {
  40142. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40143. extra: 1346/1311,
  40144. bottom: 65/1411
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Base",
  40151. height: math.unit(12 + 4/12, "feet"),
  40152. default: true
  40153. },
  40154. {
  40155. name: "Macro",
  40156. height: math.unit(150, "feet")
  40157. },
  40158. {
  40159. name: "Mega",
  40160. height: math.unit(2, "miles")
  40161. },
  40162. {
  40163. name: "Demi God",
  40164. height: math.unit(4, "AU")
  40165. },
  40166. {
  40167. name: "God Size",
  40168. height: math.unit(1, "universe")
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40174. {
  40175. front: {
  40176. height: math.unit(3 + 3/12, "feet"),
  40177. weight: math.unit(88, "lb"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/trey/front.svg",
  40181. extra: 1815/1509,
  40182. bottom: 60/1875
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(3 + 3/12, "feet"),
  40190. default: true
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40196. {
  40197. front: {
  40198. height: math.unit(4, "meters"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/adelonda/front.svg",
  40202. extra: 1077/982,
  40203. bottom: 39/1116
  40204. }
  40205. },
  40206. back: {
  40207. height: math.unit(4, "meters"),
  40208. name: "Back",
  40209. image: {
  40210. source: "./media/characters/adelonda/back.svg",
  40211. extra: 1105/1003,
  40212. bottom: 25/1130
  40213. }
  40214. },
  40215. feral: {
  40216. height: math.unit(40/1.5, "meters"),
  40217. name: "Feral",
  40218. image: {
  40219. source: "./media/characters/adelonda/feral.svg",
  40220. extra: 597/271,
  40221. bottom: 387/984
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(4, "meters"),
  40229. default: true
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(8 + 4/12, "feet"),
  40238. weight: math.unit(670, "lb"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/acadiel/front.svg",
  40242. extra: 1901/1595,
  40243. bottom: 142/2043
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(8 + 4/12, "feet"),
  40251. default: true
  40252. },
  40253. {
  40254. name: "Macro",
  40255. height: math.unit(200, "feet")
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(6 + 2/12, "feet"),
  40264. weight: math.unit(185, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/kayne-ein/front.svg",
  40268. extra: 1780/1560,
  40269. bottom: 81/1861
  40270. }
  40271. },
  40272. },
  40273. [
  40274. {
  40275. name: "Normal",
  40276. height: math.unit(6 + 2/12, "feet"),
  40277. default: true
  40278. },
  40279. {
  40280. name: "Transformation Stage",
  40281. height: math.unit(15, "feet")
  40282. },
  40283. {
  40284. name: "Macro",
  40285. height: math.unit(150, "feet")
  40286. },
  40287. {
  40288. name: "Earth's Shadow",
  40289. height: math.unit(6200, "miles")
  40290. },
  40291. {
  40292. name: "Universal Demon",
  40293. height: math.unit(28e9, "parsecs")
  40294. },
  40295. {
  40296. name: "Multiverse God",
  40297. height: math.unit(3, "multiverses")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(5 + 5/12, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/fawn/front.svg",
  40309. extra: 1873/1731,
  40310. bottom: 95/1968
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(5 + 5/12, "feet"),
  40315. name: "Back",
  40316. image: {
  40317. source: "./media/characters/fawn/back.svg",
  40318. extra: 1813/1700,
  40319. bottom: 14/1827
  40320. }
  40321. },
  40322. hoof: {
  40323. height: math.unit(1.45, "feet"),
  40324. name: "Hoof",
  40325. image: {
  40326. source: "./media/characters/fawn/hoof.svg"
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(5 + 5/12, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(2 + 5/12, "feet"),
  40343. name: "Front",
  40344. image: {
  40345. source: "./media/characters/orion/front.svg",
  40346. extra: 1366/1304,
  40347. bottom: 43/1409
  40348. }
  40349. },
  40350. paw: {
  40351. height: math.unit(0.52, "feet"),
  40352. name: "Paw",
  40353. image: {
  40354. source: "./media/characters/orion/paw.svg"
  40355. }
  40356. },
  40357. },
  40358. [
  40359. {
  40360. name: "Normal",
  40361. height: math.unit(2 + 5/12, "feet"),
  40362. default: true
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(5 + 10/12, "feet"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/vera/front.svg",
  40374. extra: 1680/1575,
  40375. bottom: 49/1729
  40376. }
  40377. },
  40378. back: {
  40379. height: math.unit(5 + 10/12, "feet"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/vera/back.svg",
  40383. extra: 1700/1588,
  40384. bottom: 18/1718
  40385. }
  40386. },
  40387. arcanine: {
  40388. height: math.unit(6 + 8/12, "feet"),
  40389. name: "Arcanine",
  40390. image: {
  40391. source: "./media/characters/vera/arcanine.svg",
  40392. extra: 1590/1511,
  40393. bottom: 71/1661
  40394. }
  40395. },
  40396. maw: {
  40397. height: math.unit(0.82, "feet"),
  40398. name: "Maw",
  40399. image: {
  40400. source: "./media/characters/vera/maw.svg"
  40401. }
  40402. },
  40403. mawArcanine: {
  40404. height: math.unit(0.97, "feet"),
  40405. name: "Maw (Arcanine)",
  40406. image: {
  40407. source: "./media/characters/vera/maw-arcanine.svg"
  40408. }
  40409. },
  40410. paw: {
  40411. height: math.unit(0.75, "feet"),
  40412. name: "Paw",
  40413. image: {
  40414. source: "./media/characters/vera/paw.svg"
  40415. }
  40416. },
  40417. pawprint: {
  40418. height: math.unit(0.52, "feet"),
  40419. name: "Pawprint",
  40420. image: {
  40421. source: "./media/characters/vera/pawprint.svg"
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(5 + 10/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(75, "feet")
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(4, "feet"),
  40442. weight: math.unit(40, "lb"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/orvan-rabbit/front.svg",
  40446. extra: 1896/1642,
  40447. bottom: 29/1925
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Normal",
  40454. height: math.unit(4, "feet"),
  40455. default: true
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40461. {
  40462. front: {
  40463. height: math.unit(6, "feet"),
  40464. weight: math.unit(168, "lb"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/lisa/front.svg",
  40468. extra: 2065/1867,
  40469. bottom: 46/2111
  40470. }
  40471. },
  40472. back: {
  40473. height: math.unit(6, "feet"),
  40474. weight: math.unit(168, "lb"),
  40475. name: "Back",
  40476. image: {
  40477. source: "./media/characters/lisa/back.svg",
  40478. extra: 1982/1838,
  40479. bottom: 29/2011
  40480. }
  40481. },
  40482. maw: {
  40483. height: math.unit(0.81, "feet"),
  40484. name: "Maw",
  40485. image: {
  40486. source: "./media/characters/lisa/maw.svg"
  40487. }
  40488. },
  40489. paw: {
  40490. height: math.unit(0.9, "feet"),
  40491. name: "Paw",
  40492. image: {
  40493. source: "./media/characters/lisa/paw.svg"
  40494. }
  40495. },
  40496. caribousune: {
  40497. height: math.unit(7 + 2/12, "feet"),
  40498. weight: math.unit(268, "lb"),
  40499. name: "Caribousune",
  40500. image: {
  40501. source: "./media/characters/lisa/caribousune.svg",
  40502. extra: 1843/1633,
  40503. bottom: 29/1872
  40504. }
  40505. },
  40506. frontCaribousune: {
  40507. height: math.unit(7 + 2/12, "feet"),
  40508. weight: math.unit(268, "lb"),
  40509. name: "Front (Caribousune)",
  40510. image: {
  40511. source: "./media/characters/lisa/front-caribousune.svg",
  40512. extra: 1818/1638,
  40513. bottom: 52/1870
  40514. }
  40515. },
  40516. sideCaribousune: {
  40517. height: math.unit(7 + 2/12, "feet"),
  40518. weight: math.unit(268, "lb"),
  40519. name: "Side (Caribousune)",
  40520. image: {
  40521. source: "./media/characters/lisa/side-caribousune.svg",
  40522. extra: 1851/1635,
  40523. bottom: 16/1867
  40524. }
  40525. },
  40526. backCaribousune: {
  40527. height: math.unit(7 + 2/12, "feet"),
  40528. weight: math.unit(268, "lb"),
  40529. name: "Back (Caribousune)",
  40530. image: {
  40531. source: "./media/characters/lisa/back-caribousune.svg",
  40532. extra: 1801/1604,
  40533. bottom: 44/1845
  40534. }
  40535. },
  40536. caribou: {
  40537. height: math.unit(7 + 2/12, "feet"),
  40538. weight: math.unit(268, "lb"),
  40539. name: "Caribou",
  40540. image: {
  40541. source: "./media/characters/lisa/caribou.svg",
  40542. extra: 1843/1633,
  40543. bottom: 29/1872
  40544. }
  40545. },
  40546. frontCaribou: {
  40547. height: math.unit(7 + 2/12, "feet"),
  40548. weight: math.unit(268, "lb"),
  40549. name: "Front (Caribou)",
  40550. image: {
  40551. source: "./media/characters/lisa/front-caribou.svg",
  40552. extra: 1818/1638,
  40553. bottom: 52/1870
  40554. }
  40555. },
  40556. sideCaribou: {
  40557. height: math.unit(7 + 2/12, "feet"),
  40558. weight: math.unit(268, "lb"),
  40559. name: "Side (Caribou)",
  40560. image: {
  40561. source: "./media/characters/lisa/side-caribou.svg",
  40562. extra: 1851/1635,
  40563. bottom: 16/1867
  40564. }
  40565. },
  40566. backCaribou: {
  40567. height: math.unit(7 + 2/12, "feet"),
  40568. weight: math.unit(268, "lb"),
  40569. name: "Back (Caribou)",
  40570. image: {
  40571. source: "./media/characters/lisa/back-caribou.svg",
  40572. extra: 1801/1604,
  40573. bottom: 44/1845
  40574. }
  40575. },
  40576. mawCaribou: {
  40577. height: math.unit(1.45, "feet"),
  40578. name: "Maw (Caribou)",
  40579. image: {
  40580. source: "./media/characters/lisa/maw-caribou.svg"
  40581. }
  40582. },
  40583. mawCaribousune: {
  40584. height: math.unit(1.45, "feet"),
  40585. name: "Maw (Caribousune)",
  40586. image: {
  40587. source: "./media/characters/lisa/maw-caribousune.svg"
  40588. }
  40589. },
  40590. pawCaribousune: {
  40591. height: math.unit(1.61, "feet"),
  40592. name: "Paw (Caribou)",
  40593. image: {
  40594. source: "./media/characters/lisa/paw-caribousune.svg"
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(6, "feet")
  40602. },
  40603. {
  40604. name: "God Size",
  40605. height: math.unit(72, "feet"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Towering",
  40610. height: math.unit(288, "feet")
  40611. },
  40612. {
  40613. name: "City Size",
  40614. height: math.unit(48384, "feet")
  40615. },
  40616. {
  40617. name: "Continental",
  40618. height: math.unit(4200, "miles")
  40619. },
  40620. {
  40621. name: "Planet Eater",
  40622. height: math.unit(42, "earths")
  40623. },
  40624. {
  40625. name: "Star Swallower",
  40626. height: math.unit(42, "solarradii")
  40627. },
  40628. {
  40629. name: "System Swallower",
  40630. height: math.unit(84000, "AU")
  40631. },
  40632. {
  40633. name: "Galaxy Gobbler",
  40634. height: math.unit(42, "galaxies")
  40635. },
  40636. {
  40637. name: "Universe Devourer",
  40638. height: math.unit(42, "universes")
  40639. },
  40640. {
  40641. name: "Multiverse Muncher",
  40642. height: math.unit(42, "multiverses")
  40643. },
  40644. ]
  40645. ))
  40646. characterMakers.push(() => makeCharacter(
  40647. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40648. {
  40649. front: {
  40650. height: math.unit(36, "feet"),
  40651. name: "Front",
  40652. image: {
  40653. source: "./media/characters/shadow-rat/front.svg",
  40654. extra: 1845/1758,
  40655. bottom: 83/1928
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(36, "feet"),
  40663. default: true
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40669. {
  40670. side: {
  40671. height: math.unit(8, "feet"),
  40672. weight: math.unit(2630, "lb"),
  40673. name: "Side",
  40674. image: {
  40675. source: "./media/characters/torallia/side.svg",
  40676. extra: 2164/2021,
  40677. bottom: 371/2535
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Mortal Interaction",
  40684. height: math.unit(8, "feet")
  40685. },
  40686. {
  40687. name: "Natural",
  40688. height: math.unit(24, "feet"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Giant",
  40693. height: math.unit(80, "feet")
  40694. },
  40695. {
  40696. name: "Kaiju",
  40697. height: math.unit(240, "feet")
  40698. },
  40699. {
  40700. name: "Macro",
  40701. height: math.unit(800, "feet")
  40702. },
  40703. {
  40704. name: "Macro+",
  40705. height: math.unit(2400, "feet")
  40706. },
  40707. {
  40708. name: "Macro++",
  40709. height: math.unit(8000, "feet")
  40710. },
  40711. {
  40712. name: "City-Crushing",
  40713. height: math.unit(24000, "feet")
  40714. },
  40715. {
  40716. name: "Mountain-Mashing",
  40717. height: math.unit(80000, "feet")
  40718. },
  40719. {
  40720. name: "District Demolisher",
  40721. height: math.unit(240000, "feet")
  40722. },
  40723. {
  40724. name: "Tri-County Terror",
  40725. height: math.unit(800000, "feet")
  40726. },
  40727. {
  40728. name: "State Smasher",
  40729. height: math.unit(2.4e6, "feet")
  40730. },
  40731. {
  40732. name: "Nation Nemesis",
  40733. height: math.unit(8e6, "feet")
  40734. },
  40735. {
  40736. name: "Continent Cracker",
  40737. height: math.unit(2.4e7, "feet")
  40738. },
  40739. {
  40740. name: "Planet-Pillaging",
  40741. height: math.unit(8e7, "feet")
  40742. },
  40743. {
  40744. name: "Earth-Eclipsing",
  40745. height: math.unit(2.4e8, "feet")
  40746. },
  40747. {
  40748. name: "Jovian-Jostling",
  40749. height: math.unit(8e8, "feet")
  40750. },
  40751. {
  40752. name: "Gas Giant Gulper",
  40753. height: math.unit(2.4e9, "feet")
  40754. },
  40755. {
  40756. name: "Astral Annihilator",
  40757. height: math.unit(8e9, "feet")
  40758. },
  40759. {
  40760. name: "Celestial Conqueror",
  40761. height: math.unit(2.4e10, "feet")
  40762. },
  40763. {
  40764. name: "Sol-Swallowing",
  40765. height: math.unit(8e10, "feet")
  40766. },
  40767. {
  40768. name: "Hunter of the Heavens",
  40769. height: math.unit(2.4e13, "feet")
  40770. },
  40771. ]
  40772. ))
  40773. characterMakers.push(() => makeCharacter(
  40774. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40775. {
  40776. front: {
  40777. height: math.unit(6 + 8/12, "feet"),
  40778. weight: math.unit(250, "kilograms"),
  40779. volume: math.unit(28, "liters"),
  40780. name: "Front",
  40781. image: {
  40782. source: "./media/characters/rebecca-pawlson/front.svg",
  40783. extra: 1737/1596,
  40784. bottom: 107/1844
  40785. }
  40786. },
  40787. back: {
  40788. height: math.unit(6 + 8/12, "feet"),
  40789. weight: math.unit(250, "kilograms"),
  40790. volume: math.unit(28, "liters"),
  40791. name: "Back",
  40792. image: {
  40793. source: "./media/characters/rebecca-pawlson/back.svg",
  40794. extra: 1702/1523,
  40795. bottom: 86/1788
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(6 + 8/12, "feet")
  40803. },
  40804. {
  40805. name: "Mini Macro",
  40806. height: math.unit(10, "feet"),
  40807. default: true
  40808. },
  40809. {
  40810. name: "Macro",
  40811. height: math.unit(100, "feet")
  40812. },
  40813. {
  40814. name: "Mega Macro",
  40815. height: math.unit(2500, "feet")
  40816. },
  40817. {
  40818. name: "Giga Macro",
  40819. height: math.unit(50, "miles")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(7 + 6/12, "feet"),
  40828. weight: math.unit(600, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/moxie-nova/front.svg",
  40832. extra: 1734/1652,
  40833. bottom: 41/1775
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(7 + 6/12, "feet"),
  40841. default: true
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40847. {
  40848. goat: {
  40849. height: math.unit(4, "feet"),
  40850. weight: math.unit(180, "lb"),
  40851. name: "Goat",
  40852. image: {
  40853. source: "./media/characters/tiffany/goat.svg",
  40854. extra: 1845/1595,
  40855. bottom: 106/1951
  40856. }
  40857. },
  40858. front: {
  40859. height: math.unit(5, "feet"),
  40860. weight: math.unit(150, "lb"),
  40861. name: "Foxcoon",
  40862. image: {
  40863. source: "./media/characters/tiffany/foxcoon.svg",
  40864. extra: 1941/1845,
  40865. bottom: 58/1999
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(5, "feet"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(8, "feet"),
  40882. weight: math.unit(300, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/raxinath/front.svg",
  40886. extra: 1407/1309,
  40887. bottom: 39/1446
  40888. }
  40889. },
  40890. back: {
  40891. height: math.unit(8, "feet"),
  40892. weight: math.unit(300, "lb"),
  40893. name: "Back",
  40894. image: {
  40895. source: "./media/characters/raxinath/back.svg",
  40896. extra: 1405/1315,
  40897. bottom: 9/1414
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Speck",
  40904. height: math.unit(0.5, "nm")
  40905. },
  40906. {
  40907. name: "Micro",
  40908. height: math.unit(3, "inches")
  40909. },
  40910. {
  40911. name: "Kobold",
  40912. height: math.unit(3, "feet")
  40913. },
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(8, "feet"),
  40917. default: true
  40918. },
  40919. {
  40920. name: "Giant",
  40921. height: math.unit(50, "feet")
  40922. },
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(1000, "feet")
  40926. },
  40927. {
  40928. name: "Megamacro",
  40929. height: math.unit(1, "mile")
  40930. },
  40931. ]
  40932. ))
  40933. characterMakers.push(() => makeCharacter(
  40934. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40935. {
  40936. front: {
  40937. height: math.unit(10, "feet"),
  40938. weight: math.unit(1442, "lb"),
  40939. name: "Front",
  40940. image: {
  40941. source: "./media/characters/mal-dragon/front.svg",
  40942. extra: 1515/1444,
  40943. bottom: 113/1628
  40944. }
  40945. },
  40946. back: {
  40947. height: math.unit(10, "feet"),
  40948. weight: math.unit(1442, "lb"),
  40949. name: "Back",
  40950. image: {
  40951. source: "./media/characters/mal-dragon/back.svg",
  40952. extra: 1527/1434,
  40953. bottom: 25/1552
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Mortal Interaction",
  40960. height: math.unit(10, "feet"),
  40961. default: true
  40962. },
  40963. {
  40964. name: "Large",
  40965. height: math.unit(30, "feet")
  40966. },
  40967. {
  40968. name: "Kaiju",
  40969. height: math.unit(300, "feet")
  40970. },
  40971. {
  40972. name: "Megamacro",
  40973. height: math.unit(10000, "feet")
  40974. },
  40975. {
  40976. name: "Continent Cracker",
  40977. height: math.unit(30000000, "feet")
  40978. },
  40979. {
  40980. name: "Sol-Swallowing",
  40981. height: math.unit(1e11, "feet")
  40982. },
  40983. {
  40984. name: "Light Universal",
  40985. height: math.unit(5, "universes")
  40986. },
  40987. {
  40988. name: "Universe Atoms",
  40989. height: math.unit(1.829e9, "universes")
  40990. },
  40991. {
  40992. name: "Light Multiversal",
  40993. height: math.unit(5, "multiverses")
  40994. },
  40995. {
  40996. name: "Multiverse Atoms",
  40997. height: math.unit(1.829e9, "multiverses")
  40998. },
  40999. {
  41000. name: "Fabric of Time",
  41001. height: math.unit(1e262, "multiverses")
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(9, "feet"),
  41010. weight: math.unit(1050, "lb"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/tabitha/front.svg",
  41014. extra: 2083/1994,
  41015. bottom: 68/2151
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Baseline",
  41022. height: math.unit(9, "feet"),
  41023. default: true
  41024. },
  41025. {
  41026. name: "Giant",
  41027. height: math.unit(90, "feet")
  41028. },
  41029. {
  41030. name: "Macro",
  41031. height: math.unit(900, "feet")
  41032. },
  41033. {
  41034. name: "Megamacro",
  41035. height: math.unit(9000, "feet")
  41036. },
  41037. {
  41038. name: "City-Crushing",
  41039. height: math.unit(27000, "feet")
  41040. },
  41041. {
  41042. name: "Mountain-Mashing",
  41043. height: math.unit(90000, "feet")
  41044. },
  41045. {
  41046. name: "Nation Nemesis",
  41047. height: math.unit(9e6, "feet")
  41048. },
  41049. {
  41050. name: "Continent Cracker",
  41051. height: math.unit(27e6, "feet")
  41052. },
  41053. {
  41054. name: "Earth-Eclipsing",
  41055. height: math.unit(2.7e8, "feet")
  41056. },
  41057. {
  41058. name: "Gas Giant Gulper",
  41059. height: math.unit(2.7e9, "feet")
  41060. },
  41061. {
  41062. name: "Sol-Swallowing",
  41063. height: math.unit(9e10, "feet")
  41064. },
  41065. {
  41066. name: "Galaxy Gulper",
  41067. height: math.unit(9, "galaxies")
  41068. },
  41069. {
  41070. name: "Cosmos Churner",
  41071. height: math.unit(9, "universes")
  41072. },
  41073. ]
  41074. ))
  41075. characterMakers.push(() => makeCharacter(
  41076. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41077. {
  41078. front: {
  41079. height: math.unit(160, "cm"),
  41080. weight: math.unit(55, "kg"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/tow/front.svg",
  41084. extra: 1751/1722,
  41085. bottom: 74/1825
  41086. }
  41087. },
  41088. },
  41089. [
  41090. {
  41091. name: "Norm",
  41092. height: math.unit(160, "cm")
  41093. },
  41094. {
  41095. name: "Casual",
  41096. height: math.unit(3200, "m"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Show-Off",
  41101. height: math.unit(160, "km")
  41102. },
  41103. ]
  41104. ))
  41105. characterMakers.push(() => makeCharacter(
  41106. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41107. {
  41108. front: {
  41109. height: math.unit(7 + 11/12, "feet"),
  41110. weight: math.unit(342.8, "lb"),
  41111. name: "Front",
  41112. image: {
  41113. source: "./media/characters/vivian-orca-dragon/front.svg",
  41114. extra: 1890/1865,
  41115. bottom: 28/1918
  41116. }
  41117. },
  41118. },
  41119. [
  41120. {
  41121. name: "Micro",
  41122. height: math.unit(5, "inches")
  41123. },
  41124. {
  41125. name: "Normal",
  41126. height: math.unit(7 + 11/12, "feet"),
  41127. default: true
  41128. },
  41129. {
  41130. name: "Macro",
  41131. height: math.unit(395 + 7/12, "feet")
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41137. {
  41138. side: {
  41139. height: math.unit(10, "feet"),
  41140. weight: math.unit(1442, "lb"),
  41141. name: "Side",
  41142. image: {
  41143. source: "./media/characters/lotherakon/side.svg",
  41144. extra: 1604/1497,
  41145. bottom: 89/1693
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Mortal Interaction",
  41152. height: math.unit(10, "feet")
  41153. },
  41154. {
  41155. name: "Large",
  41156. height: math.unit(30, "feet"),
  41157. default: true
  41158. },
  41159. {
  41160. name: "Giant",
  41161. height: math.unit(100, "feet")
  41162. },
  41163. {
  41164. name: "Kaiju",
  41165. height: math.unit(300, "feet")
  41166. },
  41167. {
  41168. name: "Macro",
  41169. height: math.unit(1000, "feet")
  41170. },
  41171. {
  41172. name: "Macro+",
  41173. height: math.unit(3000, "feet")
  41174. },
  41175. {
  41176. name: "Megamacro",
  41177. height: math.unit(10000, "feet")
  41178. },
  41179. {
  41180. name: "City-Crushing",
  41181. height: math.unit(30000, "feet")
  41182. },
  41183. {
  41184. name: "Continent Cracker",
  41185. height: math.unit(30e6, "feet")
  41186. },
  41187. {
  41188. name: "Earth Eclipsing",
  41189. height: math.unit(3e8, "feet")
  41190. },
  41191. {
  41192. name: "Gas Giant Gulper",
  41193. height: math.unit(3e9, "feet")
  41194. },
  41195. {
  41196. name: "Sol-Swallowing",
  41197. height: math.unit(1e11, "feet")
  41198. },
  41199. {
  41200. name: "System Swallower",
  41201. height: math.unit(3e14, "feet")
  41202. },
  41203. {
  41204. name: "Galaxy Gulper",
  41205. height: math.unit(10, "galaxies")
  41206. },
  41207. {
  41208. name: "Light Universal",
  41209. height: math.unit(5, "universes")
  41210. },
  41211. {
  41212. name: "Universe Palm",
  41213. height: math.unit(20, "universes")
  41214. },
  41215. {
  41216. name: "Light Multiversal",
  41217. height: math.unit(5, "multiverses")
  41218. },
  41219. {
  41220. name: "Multiverse Palm",
  41221. height: math.unit(20, "multiverses")
  41222. },
  41223. {
  41224. name: "Inferno Incarnate",
  41225. height: math.unit(1e7, "multiverses")
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41231. {
  41232. front: {
  41233. height: math.unit(8, "feet"),
  41234. weight: math.unit(1200, "lb"),
  41235. name: "Front",
  41236. image: {
  41237. source: "./media/characters/malithee/front.svg",
  41238. extra: 1675/1640,
  41239. bottom: 162/1837
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Mortal Interaction",
  41246. height: math.unit(8, "feet"),
  41247. default: true
  41248. },
  41249. {
  41250. name: "Large",
  41251. height: math.unit(24, "feet")
  41252. },
  41253. {
  41254. name: "Kaiju",
  41255. height: math.unit(240, "feet")
  41256. },
  41257. {
  41258. name: "Megamacro",
  41259. height: math.unit(8000, "feet")
  41260. },
  41261. {
  41262. name: "Continent Cracker",
  41263. height: math.unit(24e6, "feet")
  41264. },
  41265. {
  41266. name: "Earth-Eclipsing",
  41267. height: math.unit(2.4e8, "feet")
  41268. },
  41269. {
  41270. name: "Sol-Swallowing",
  41271. height: math.unit(8e10, "feet")
  41272. },
  41273. {
  41274. name: "Galaxy Gulper",
  41275. height: math.unit(8, "galaxies")
  41276. },
  41277. {
  41278. name: "Light Universal",
  41279. height: math.unit(4, "universes")
  41280. },
  41281. {
  41282. name: "Universe Atoms",
  41283. height: math.unit(1.829e9, "universes")
  41284. },
  41285. {
  41286. name: "Light Multiversal",
  41287. height: math.unit(4, "multiverses")
  41288. },
  41289. {
  41290. name: "Multiverse Atoms",
  41291. height: math.unit(1.829e9, "multiverses")
  41292. },
  41293. {
  41294. name: "Nigh-Omnipresence",
  41295. height: math.unit(8e261, "multiverses")
  41296. },
  41297. ]
  41298. ))
  41299. characterMakers.push(() => makeCharacter(
  41300. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41301. {
  41302. front: {
  41303. height: math.unit(10, "feet"),
  41304. weight: math.unit(1500, "lb"),
  41305. name: "Front",
  41306. image: {
  41307. source: "./media/characters/miles-thestia/front.svg",
  41308. extra: 1812/1727,
  41309. bottom: 86/1898
  41310. }
  41311. },
  41312. back: {
  41313. height: math.unit(10, "feet"),
  41314. weight: math.unit(1500, "lb"),
  41315. name: "Back",
  41316. image: {
  41317. source: "./media/characters/miles-thestia/back.svg",
  41318. extra: 1799/1690,
  41319. bottom: 47/1846
  41320. }
  41321. },
  41322. frontNsfw: {
  41323. height: math.unit(10, "feet"),
  41324. weight: math.unit(1500, "lb"),
  41325. name: "Front (NSFW)",
  41326. image: {
  41327. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41328. extra: 1812/1727,
  41329. bottom: 86/1898
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Mini-Macro",
  41336. height: math.unit(10, "feet"),
  41337. default: true
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(25, "feet"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/titan-s-wulf/front.svg",
  41349. extra: 1560/1484,
  41350. bottom: 76/1636
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Smallest",
  41357. height: math.unit(25, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(200, "feet")
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(200000, "feet")
  41367. },
  41368. {
  41369. name: "Multiversal Original",
  41370. height: math.unit(10000, "multiverses")
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41376. {
  41377. front: {
  41378. height: math.unit(8, "feet"),
  41379. weight: math.unit(553, "lb"),
  41380. name: "Front",
  41381. image: {
  41382. source: "./media/characters/tawendeh/front.svg",
  41383. extra: 2365/2268,
  41384. bottom: 83/2448
  41385. }
  41386. },
  41387. frontClothed: {
  41388. height: math.unit(8, "feet"),
  41389. weight: math.unit(553, "lb"),
  41390. name: "Front (Clothed)",
  41391. image: {
  41392. source: "./media/characters/tawendeh/front-clothed.svg",
  41393. extra: 2365/2268,
  41394. bottom: 83/2448
  41395. }
  41396. },
  41397. back: {
  41398. height: math.unit(8, "feet"),
  41399. weight: math.unit(553, "lb"),
  41400. name: "Back",
  41401. image: {
  41402. source: "./media/characters/tawendeh/back.svg",
  41403. extra: 2397/2294,
  41404. bottom: 42/2439
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Mortal Interaction",
  41411. height: math.unit(8, "feet"),
  41412. default: true
  41413. },
  41414. {
  41415. name: "Giant",
  41416. height: math.unit(80, "feet")
  41417. },
  41418. {
  41419. name: "Macro",
  41420. height: math.unit(800, "feet")
  41421. },
  41422. {
  41423. name: "Megamacro",
  41424. height: math.unit(8000, "feet")
  41425. },
  41426. {
  41427. name: "City-Crushing",
  41428. height: math.unit(24000, "feet")
  41429. },
  41430. {
  41431. name: "Mountain-Mashing",
  41432. height: math.unit(80000, "feet")
  41433. },
  41434. {
  41435. name: "Nation Nemesis",
  41436. height: math.unit(8e6, "feet")
  41437. },
  41438. {
  41439. name: "Continent Cracker",
  41440. height: math.unit(24e6, "feet")
  41441. },
  41442. {
  41443. name: "Earth-Eclipsing",
  41444. height: math.unit(2.4e8, "feet")
  41445. },
  41446. {
  41447. name: "Gas Giant Gulper",
  41448. height: math.unit(2.4e9, "feet")
  41449. },
  41450. {
  41451. name: "Sol-Swallowing",
  41452. height: math.unit(8e10, "feet")
  41453. },
  41454. {
  41455. name: "Galaxy Gulper",
  41456. height: math.unit(8, "galaxies")
  41457. },
  41458. {
  41459. name: "Cosmos Churner",
  41460. height: math.unit(8, "universes")
  41461. },
  41462. {
  41463. name: "Omnipotent Otter",
  41464. height: math.unit(80, "universes")
  41465. },
  41466. ]
  41467. ))
  41468. characterMakers.push(() => makeCharacter(
  41469. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41470. {
  41471. front: {
  41472. height: math.unit(2.6, "meters"),
  41473. weight: math.unit(900, "kg"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/neesha/front.svg",
  41477. extra: 1803/1653,
  41478. bottom: 128/1931
  41479. }
  41480. },
  41481. },
  41482. [
  41483. {
  41484. name: "Normal",
  41485. height: math.unit(2.6, "meters"),
  41486. default: true
  41487. },
  41488. {
  41489. name: "Macro",
  41490. height: math.unit(50, "meters")
  41491. },
  41492. ]
  41493. ))
  41494. characterMakers.push(() => makeCharacter(
  41495. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41496. {
  41497. front: {
  41498. height: math.unit(5, "feet"),
  41499. weight: math.unit(185, "lb"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/kyera/front.svg",
  41503. extra: 1875/1790,
  41504. bottom: 96/1971
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Normal",
  41511. height: math.unit(5, "feet"),
  41512. default: true
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(7 + 6/12, "feet"),
  41521. weight: math.unit(540, "lb"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/yuko/front.svg",
  41525. extra: 1282/1222,
  41526. bottom: 101/1383
  41527. }
  41528. },
  41529. frontClothed: {
  41530. height: math.unit(7 + 6/12, "feet"),
  41531. weight: math.unit(540, "lb"),
  41532. name: "Front (Clothed)",
  41533. image: {
  41534. source: "./media/characters/yuko/front-clothed.svg",
  41535. extra: 1282/1222,
  41536. bottom: 101/1383
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Normal",
  41543. height: math.unit(7 + 6/12, "feet"),
  41544. default: true
  41545. },
  41546. {
  41547. name: "Macro",
  41548. height: math.unit(26 + 9/12, "feet")
  41549. },
  41550. {
  41551. name: "Megamacro",
  41552. height: math.unit(300, "feet")
  41553. },
  41554. {
  41555. name: "Gigamacro",
  41556. height: math.unit(5000, "feet")
  41557. },
  41558. {
  41559. name: "Planetary",
  41560. height: math.unit(10000, "miles")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(8 + 2/12, "feet"),
  41569. weight: math.unit(600, "lb"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/deam-nitrel/front.svg",
  41573. extra: 1308/1234,
  41574. bottom: 125/1433
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Normal",
  41581. height: math.unit(8 + 2/12, "feet"),
  41582. default: true
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(6.1, "feet"),
  41591. weight: math.unit(180, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/skyress/front.svg",
  41595. extra: 1045/915,
  41596. bottom: 28/1073
  41597. }
  41598. },
  41599. maw: {
  41600. height: math.unit(1, "feet"),
  41601. name: "Maw",
  41602. image: {
  41603. source: "./media/characters/skyress/maw.svg"
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(6.1, "feet"),
  41611. default: true
  41612. },
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(200, "feet")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(4 + 2/12, "feet"),
  41624. weight: math.unit(40, "kg"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/amethyst-jones/front.svg",
  41628. extra: 1220/1150,
  41629. bottom: 101/1321
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(4 + 2/12, "feet"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41643. {
  41644. front: {
  41645. height: math.unit(1.7, "m"),
  41646. weight: math.unit(135, "lb"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/jade/front.svg",
  41650. extra: 1818/1767,
  41651. bottom: 32/1850
  41652. }
  41653. },
  41654. back: {
  41655. height: math.unit(1.7, "m"),
  41656. weight: math.unit(135, "lb"),
  41657. name: "Back",
  41658. image: {
  41659. source: "./media/characters/jade/back.svg",
  41660. extra: 1869/1809,
  41661. bottom: 35/1904
  41662. }
  41663. },
  41664. hand: {
  41665. height: math.unit(0.24, "m"),
  41666. name: "Hand",
  41667. image: {
  41668. source: "./media/characters/jade/hand.svg"
  41669. }
  41670. },
  41671. foot: {
  41672. height: math.unit(0.263, "m"),
  41673. name: "Foot",
  41674. image: {
  41675. source: "./media/characters/jade/foot.svg"
  41676. }
  41677. },
  41678. dick: {
  41679. height: math.unit(0.47, "m"),
  41680. name: "Dick",
  41681. image: {
  41682. source: "./media/characters/jade/dick.svg"
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Micro",
  41689. height: math.unit(22, "cm")
  41690. },
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(1.7, "m"),
  41694. default: true
  41695. },
  41696. {
  41697. name: "Macro",
  41698. height: math.unit(152, "m")
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(100, "miles"),
  41707. weight: math.unit(20000, "tons"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/cookie/front.svg",
  41711. extra: 1125/1070,
  41712. bottom: 30/1155
  41713. }
  41714. },
  41715. },
  41716. [
  41717. {
  41718. name: "Big",
  41719. height: math.unit(50, "feet")
  41720. },
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(100, "miles"),
  41724. default: true
  41725. },
  41726. {
  41727. name: "Megamacro",
  41728. height: math.unit(90000, "miles")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(6, "feet"),
  41737. weight: math.unit(145, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/farzian/front.svg",
  41741. extra: 1902/1693,
  41742. bottom: 108/2010
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Macro",
  41749. height: math.unit(500, "feet"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(3 + 6/12, "feet"),
  41759. weight: math.unit(50, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/kimberly-tilson/front.svg",
  41763. extra: 1400/1322,
  41764. bottom: 36/1436
  41765. }
  41766. },
  41767. back: {
  41768. height: math.unit(3 + 6/12, "feet"),
  41769. weight: math.unit(50, "lb"),
  41770. name: "Back",
  41771. image: {
  41772. source: "./media/characters/kimberly-tilson/back.svg",
  41773. extra: 1370/1307,
  41774. bottom: 20/1390
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Normal",
  41781. height: math.unit(3 + 6/12, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(1148, "feet"),
  41791. weight: math.unit(34057, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/harthos/front.svg",
  41795. extra: 1391/1339,
  41796. bottom: 13/1404
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Macro",
  41803. height: math.unit(1148, "feet"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(15, "feet"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/hypatia/front.svg",
  41816. extra: 1653/1591,
  41817. bottom: 79/1732
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(15, "feet")
  41825. },
  41826. {
  41827. name: "Small",
  41828. height: math.unit(300, "feet")
  41829. },
  41830. {
  41831. name: "Macro",
  41832. height: math.unit(2500, "feet"),
  41833. default: true
  41834. },
  41835. {
  41836. name: "Mega Macro",
  41837. height: math.unit(1500, "miles")
  41838. },
  41839. {
  41840. name: "Giga Macro",
  41841. height: math.unit(1.5e6, "miles")
  41842. },
  41843. ]
  41844. ))
  41845. characterMakers.push(() => makeCharacter(
  41846. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41847. {
  41848. front: {
  41849. height: math.unit(6, "feet"),
  41850. weight: math.unit(200, "lb"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/wulver/front.svg",
  41854. extra: 1724/1632,
  41855. bottom: 130/1854
  41856. }
  41857. },
  41858. frontNsfw: {
  41859. height: math.unit(6, "feet"),
  41860. weight: math.unit(200, "lb"),
  41861. name: "Front (NSFW)",
  41862. image: {
  41863. source: "./media/characters/wulver/front-nsfw.svg",
  41864. extra: 1724/1632,
  41865. bottom: 130/1854
  41866. }
  41867. },
  41868. },
  41869. [
  41870. {
  41871. name: "Human-Sized",
  41872. height: math.unit(6, "feet")
  41873. },
  41874. {
  41875. name: "Normal",
  41876. height: math.unit(4, "meters"),
  41877. default: true
  41878. },
  41879. {
  41880. name: "Large",
  41881. height: math.unit(6, "m")
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41887. {
  41888. front: {
  41889. height: math.unit(7, "feet"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/maru/front.svg",
  41893. extra: 1595/1570,
  41894. bottom: 0/1595
  41895. }
  41896. },
  41897. },
  41898. [
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(7, "feet"),
  41902. default: true
  41903. },
  41904. {
  41905. name: "Macro",
  41906. height: math.unit(700, "feet")
  41907. },
  41908. {
  41909. name: "Mega Macro",
  41910. height: math.unit(25, "miles")
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(6, "feet"),
  41919. weight: math.unit(170, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/xenon/front.svg",
  41923. extra: 1376/1305,
  41924. bottom: 56/1432
  41925. }
  41926. },
  41927. back: {
  41928. height: math.unit(6, "feet"),
  41929. weight: math.unit(170, "lb"),
  41930. name: "Back",
  41931. image: {
  41932. source: "./media/characters/xenon/back.svg",
  41933. extra: 1328/1259,
  41934. bottom: 95/1423
  41935. }
  41936. },
  41937. maw: {
  41938. height: math.unit(0.52, "feet"),
  41939. name: "Maw",
  41940. image: {
  41941. source: "./media/characters/xenon/maw.svg"
  41942. }
  41943. },
  41944. handLeft: {
  41945. height: math.unit(0.82 * 169 / 153, "feet"),
  41946. name: "Hand (Left)",
  41947. image: {
  41948. source: "./media/characters/xenon/hand-left.svg"
  41949. }
  41950. },
  41951. handRight: {
  41952. height: math.unit(0.82, "feet"),
  41953. name: "Hand (Right)",
  41954. image: {
  41955. source: "./media/characters/xenon/hand-right.svg"
  41956. }
  41957. },
  41958. footLeft: {
  41959. height: math.unit(1.13, "feet"),
  41960. name: "Foot (Left)",
  41961. image: {
  41962. source: "./media/characters/xenon/foot-left.svg"
  41963. }
  41964. },
  41965. footRight: {
  41966. height: math.unit(1.13 * 194 / 196, "feet"),
  41967. name: "Foot (Right)",
  41968. image: {
  41969. source: "./media/characters/xenon/foot-right.svg"
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Micro",
  41976. height: math.unit(0.8, "inches")
  41977. },
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(6, "feet")
  41981. },
  41982. {
  41983. name: "Macro",
  41984. height: math.unit(50, "feet"),
  41985. default: true
  41986. },
  41987. {
  41988. name: "Macro+",
  41989. height: math.unit(250, "feet")
  41990. },
  41991. {
  41992. name: "Megamacro",
  41993. height: math.unit(1500, "feet")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(7 + 5/12, "feet"),
  42002. name: "Front",
  42003. image: {
  42004. source: "./media/characters/zane/front.svg",
  42005. extra: 1260/1203,
  42006. bottom: 94/1354
  42007. }
  42008. },
  42009. back: {
  42010. height: math.unit(5.05, "feet"),
  42011. name: "Back",
  42012. image: {
  42013. source: "./media/characters/zane/back.svg",
  42014. extra: 893/829,
  42015. bottom: 30/923
  42016. }
  42017. },
  42018. werewolf: {
  42019. height: math.unit(11, "feet"),
  42020. name: "Werewolf",
  42021. image: {
  42022. source: "./media/characters/zane/werewolf.svg",
  42023. extra: 1383/1323,
  42024. bottom: 89/1472
  42025. }
  42026. },
  42027. foot: {
  42028. height: math.unit(1.46, "feet"),
  42029. name: "Foot",
  42030. image: {
  42031. source: "./media/characters/zane/foot.svg"
  42032. }
  42033. },
  42034. footFront: {
  42035. height: math.unit(0.784, "feet"),
  42036. name: "Foot (Front)",
  42037. image: {
  42038. source: "./media/characters/zane/foot-front.svg"
  42039. }
  42040. },
  42041. dick: {
  42042. height: math.unit(1.95, "feet"),
  42043. name: "Dick",
  42044. image: {
  42045. source: "./media/characters/zane/dick.svg"
  42046. }
  42047. },
  42048. dickWerewolf: {
  42049. height: math.unit(3.77, "feet"),
  42050. name: "Dick (Werewolf)",
  42051. image: {
  42052. source: "./media/characters/zane/dick.svg"
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Normal",
  42059. height: math.unit(7 + 5/12, "feet"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(6 + 2/12, "feet"),
  42069. weight: math.unit(284, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/benni-desparque/front.svg",
  42073. extra: 1353/1126,
  42074. bottom: 69/1422
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Civilian",
  42081. height: math.unit(6 + 2/12, "feet")
  42082. },
  42083. {
  42084. name: "Normal",
  42085. height: math.unit(98, "feet"),
  42086. default: true
  42087. },
  42088. {
  42089. name: "Kaiju Fighter",
  42090. height: math.unit(268, "feet")
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(5, "feet"),
  42099. weight: math.unit(105, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/maxine/front.svg",
  42103. extra: 1386/1250,
  42104. bottom: 71/1457
  42105. }
  42106. },
  42107. },
  42108. [
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(5, "feet"),
  42112. default: true
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(11 + 7/12, "feet"),
  42121. weight: math.unit(9576, "lb"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/scaly/front.svg",
  42125. extra: 888/867,
  42126. bottom: 36/924
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Normal",
  42133. height: math.unit(11 + 7/12, "feet"),
  42134. default: true
  42135. },
  42136. ]
  42137. ))
  42138. characterMakers.push(() => makeCharacter(
  42139. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42140. {
  42141. front: {
  42142. height: math.unit(6 + 3/12, "feet"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/saelria/front.svg",
  42146. extra: 1243/1138,
  42147. bottom: 46/1289
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Micro",
  42154. height: math.unit(6, "inches"),
  42155. },
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(6 + 3/12, "feet"),
  42159. default: true
  42160. },
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(25, "feet")
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(80, "meters"),
  42172. weight: math.unit(7000, "tonnes"),
  42173. name: "Front",
  42174. image: {
  42175. source: "./media/characters/tef/front.svg",
  42176. extra: 2036/1991,
  42177. bottom: 54/2090
  42178. }
  42179. },
  42180. back: {
  42181. height: math.unit(80, "meters"),
  42182. weight: math.unit(7000, "tonnes"),
  42183. name: "Back",
  42184. image: {
  42185. source: "./media/characters/tef/back.svg",
  42186. extra: 2036/1991,
  42187. bottom: 54/2090
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Macro",
  42194. height: math.unit(80, "meters"),
  42195. default: true
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42201. {
  42202. front: {
  42203. height: math.unit(13, "feet"),
  42204. weight: math.unit(6, "tons"),
  42205. name: "Front",
  42206. image: {
  42207. source: "./media/characters/rover/front.svg",
  42208. extra: 1233/1156,
  42209. bottom: 50/1283
  42210. }
  42211. },
  42212. back: {
  42213. height: math.unit(13, "feet"),
  42214. weight: math.unit(6, "tons"),
  42215. name: "Back",
  42216. image: {
  42217. source: "./media/characters/rover/back.svg",
  42218. extra: 1327/1258,
  42219. bottom: 39/1366
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(13, "feet"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Macro",
  42231. height: math.unit(1300, "feet")
  42232. },
  42233. {
  42234. name: "Megamacro",
  42235. height: math.unit(1300, "miles")
  42236. },
  42237. {
  42238. name: "Gigamacro",
  42239. height: math.unit(1300000, "miles")
  42240. },
  42241. ]
  42242. ))
  42243. characterMakers.push(() => makeCharacter(
  42244. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42245. {
  42246. front: {
  42247. height: math.unit(6, "feet"),
  42248. weight: math.unit(150, "lb"),
  42249. name: "Front",
  42250. image: {
  42251. source: "./media/characters/ariz/front.svg",
  42252. extra: 1401/1346,
  42253. bottom: 5/1406
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(10, "feet"),
  42261. default: true
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(6, "feet"),
  42270. weight: math.unit(140, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/sigrun/front.svg",
  42274. extra: 1418/1359,
  42275. bottom: 27/1445
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Macro",
  42282. height: math.unit(35, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6, "feet"),
  42292. weight: math.unit(150, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/numin/front.svg",
  42296. extra: 1433/1388,
  42297. bottom: 12/1445
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(21.5, "km"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(6, "feet"),
  42314. weight: math.unit(463, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/melwa/front.svg",
  42318. extra: 1307/1248,
  42319. bottom: 93/1400
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Macro",
  42326. height: math.unit(50, "meters"),
  42327. default: true
  42328. },
  42329. ]
  42330. ))
  42331. characterMakers.push(() => makeCharacter(
  42332. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42333. {
  42334. front: {
  42335. height: math.unit(325, "feet"),
  42336. name: "Front",
  42337. image: {
  42338. source: "./media/characters/zorkaiju/front.svg",
  42339. extra: 1955/1814,
  42340. bottom: 40/1995
  42341. }
  42342. },
  42343. frontExtended: {
  42344. height: math.unit(325, "feet"),
  42345. name: "Front (Extended)",
  42346. image: {
  42347. source: "./media/characters/zorkaiju/front-extended.svg",
  42348. extra: 1955/1814,
  42349. bottom: 40/1995
  42350. }
  42351. },
  42352. side: {
  42353. height: math.unit(325, "feet"),
  42354. name: "Side",
  42355. image: {
  42356. source: "./media/characters/zorkaiju/side.svg",
  42357. extra: 1495/1396,
  42358. bottom: 17/1512
  42359. }
  42360. },
  42361. sideExtended: {
  42362. height: math.unit(325, "feet"),
  42363. name: "Side (Extended)",
  42364. image: {
  42365. source: "./media/characters/zorkaiju/side-extended.svg",
  42366. extra: 1495/1396,
  42367. bottom: 17/1512
  42368. }
  42369. },
  42370. back: {
  42371. height: math.unit(325, "feet"),
  42372. name: "Back",
  42373. image: {
  42374. source: "./media/characters/zorkaiju/back.svg",
  42375. extra: 1959/1821,
  42376. bottom: 31/1990
  42377. }
  42378. },
  42379. backExtended: {
  42380. height: math.unit(325, "feet"),
  42381. name: "Back (Extended)",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/back-extended.svg",
  42384. extra: 1959/1821,
  42385. bottom: 31/1990
  42386. }
  42387. },
  42388. hand: {
  42389. height: math.unit(58.4, "feet"),
  42390. name: "Hand",
  42391. image: {
  42392. source: "./media/characters/zorkaiju/hand.svg"
  42393. }
  42394. },
  42395. handExtended: {
  42396. height: math.unit(61.4, "feet"),
  42397. name: "Hand (Extended)",
  42398. image: {
  42399. source: "./media/characters/zorkaiju/hand-extended.svg"
  42400. }
  42401. },
  42402. foot: {
  42403. height: math.unit(95, "feet"),
  42404. name: "Foot",
  42405. image: {
  42406. source: "./media/characters/zorkaiju/foot.svg"
  42407. }
  42408. },
  42409. leftArm: {
  42410. height: math.unit(59, "feet"),
  42411. name: "Left Arm",
  42412. image: {
  42413. source: "./media/characters/zorkaiju/left-arm.svg"
  42414. }
  42415. },
  42416. rightArm: {
  42417. height: math.unit(59, "feet"),
  42418. name: "Right Arm",
  42419. image: {
  42420. source: "./media/characters/zorkaiju/right-arm.svg"
  42421. }
  42422. },
  42423. leftArmExtended: {
  42424. height: math.unit(59 * 1.033546, "feet"),
  42425. name: "Left Arm (Extended)",
  42426. image: {
  42427. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42428. }
  42429. },
  42430. rightArmExtended: {
  42431. height: math.unit(59 * 1.0496, "feet"),
  42432. name: "Right Arm (Extended)",
  42433. image: {
  42434. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42435. }
  42436. },
  42437. tail: {
  42438. height: math.unit(104, "feet"),
  42439. name: "Tail",
  42440. image: {
  42441. source: "./media/characters/zorkaiju/tail.svg"
  42442. }
  42443. },
  42444. tailExtended: {
  42445. height: math.unit(104, "feet"),
  42446. name: "Tail (Extended)",
  42447. image: {
  42448. source: "./media/characters/zorkaiju/tail-extended.svg"
  42449. }
  42450. },
  42451. tailBottom: {
  42452. height: math.unit(104, "feet"),
  42453. name: "Tail Bottom",
  42454. image: {
  42455. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42456. }
  42457. },
  42458. crystal: {
  42459. height: math.unit(27.54, "feet"),
  42460. name: "Crystal",
  42461. image: {
  42462. source: "./media/characters/zorkaiju/crystal.svg"
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Kaiju",
  42469. height: math.unit(325, "feet"),
  42470. default: true
  42471. },
  42472. ]
  42473. ))
  42474. characterMakers.push(() => makeCharacter(
  42475. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42476. {
  42477. front: {
  42478. height: math.unit(6 + 1/12, "feet"),
  42479. weight: math.unit(115, "lb"),
  42480. name: "Front",
  42481. image: {
  42482. source: "./media/characters/bailey-belfry/front.svg",
  42483. extra: 1240/1121,
  42484. bottom: 101/1341
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Normal",
  42491. height: math.unit(6 + 1/12, "feet"),
  42492. default: true
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42498. {
  42499. side: {
  42500. height: math.unit(4, "meters"),
  42501. weight: math.unit(250, "kg"),
  42502. name: "Side",
  42503. image: {
  42504. source: "./media/characters/blacky/side.svg",
  42505. extra: 1027/919,
  42506. bottom: 43/1070
  42507. }
  42508. },
  42509. maw: {
  42510. height: math.unit(1, "meters"),
  42511. name: "Maw",
  42512. image: {
  42513. source: "./media/characters/blacky/maw.svg"
  42514. }
  42515. },
  42516. paw: {
  42517. height: math.unit(1, "meters"),
  42518. name: "Paw",
  42519. image: {
  42520. source: "./media/characters/blacky/paw.svg"
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Normal",
  42527. height: math.unit(4, "meters"),
  42528. default: true
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42534. {
  42535. front: {
  42536. height: math.unit(170, "cm"),
  42537. weight: math.unit(66, "kg"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/thux-ei/front.svg",
  42541. extra: 1109/1011,
  42542. bottom: 8/1117
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Normal",
  42549. height: math.unit(170, "cm"),
  42550. default: true
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(5, "feet"),
  42559. weight: math.unit(120, "lb"),
  42560. name: "Front",
  42561. image: {
  42562. source: "./media/characters/roxanne-voltaire/front.svg",
  42563. extra: 1901/1779,
  42564. bottom: 53/1954
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(5, "feet"),
  42572. default: true
  42573. },
  42574. {
  42575. name: "Giant",
  42576. height: math.unit(50, "feet")
  42577. },
  42578. {
  42579. name: "Titan",
  42580. height: math.unit(500, "feet")
  42581. },
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(5000, "feet")
  42585. },
  42586. {
  42587. name: "Megamacro",
  42588. height: math.unit(50000, "feet")
  42589. },
  42590. {
  42591. name: "Gigamacro",
  42592. height: math.unit(500000, "feet")
  42593. },
  42594. {
  42595. name: "Teramacro",
  42596. height: math.unit(5e6, "feet")
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(6 + 2/12, "feet"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/squeaks/front.svg",
  42608. extra: 1823/1768,
  42609. bottom: 138/1961
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Micro",
  42616. height: math.unit(0.5, "inches")
  42617. },
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(6 + 2/12, "feet"),
  42621. default: true
  42622. },
  42623. {
  42624. name: "Macro",
  42625. height: math.unit(600, "feet")
  42626. },
  42627. ]
  42628. ))
  42629. characterMakers.push(() => makeCharacter(
  42630. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42631. {
  42632. front: {
  42633. height: math.unit(1.72, "meters"),
  42634. name: "Front",
  42635. image: {
  42636. source: "./media/characters/archinger/front.svg",
  42637. extra: 1861/1675,
  42638. bottom: 125/1986
  42639. }
  42640. },
  42641. back: {
  42642. height: math.unit(1.72, "meters"),
  42643. name: "Back",
  42644. image: {
  42645. source: "./media/characters/archinger/back.svg",
  42646. extra: 1844/1701,
  42647. bottom: 104/1948
  42648. }
  42649. },
  42650. cock: {
  42651. height: math.unit(0.59, "feet"),
  42652. name: "Cock",
  42653. image: {
  42654. source: "./media/characters/archinger/cock.svg"
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(1.72, "meters"),
  42662. default: true
  42663. },
  42664. {
  42665. name: "Macro",
  42666. height: math.unit(84, "meters")
  42667. },
  42668. {
  42669. name: "Macro+",
  42670. height: math.unit(112, "meters")
  42671. },
  42672. {
  42673. name: "Macro++",
  42674. height: math.unit(960, "meters")
  42675. },
  42676. {
  42677. name: "Macro+++",
  42678. height: math.unit(4, "km")
  42679. },
  42680. {
  42681. name: "Macro++++",
  42682. height: math.unit(48, "km")
  42683. },
  42684. {
  42685. name: "Macro+++++",
  42686. height: math.unit(4500, "km")
  42687. },
  42688. ]
  42689. ))
  42690. characterMakers.push(() => makeCharacter(
  42691. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42692. {
  42693. front: {
  42694. height: math.unit(5 + 5/12, "feet"),
  42695. name: "Front",
  42696. image: {
  42697. source: "./media/characters/alsnapz/front.svg",
  42698. extra: 1157/1065,
  42699. bottom: 42/1199
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Normal",
  42706. height: math.unit(5 + 5/12, "feet"),
  42707. default: true
  42708. },
  42709. ]
  42710. ))
  42711. characterMakers.push(() => makeCharacter(
  42712. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42713. {
  42714. side: {
  42715. height: math.unit(3.2, "earths"),
  42716. name: "Side",
  42717. image: {
  42718. source: "./media/characters/mag/side.svg",
  42719. extra: 1331/1008,
  42720. bottom: 52/1383
  42721. }
  42722. },
  42723. wing: {
  42724. height: math.unit(1.94, "earths"),
  42725. name: "Wing",
  42726. image: {
  42727. source: "./media/characters/mag/wing.svg"
  42728. }
  42729. },
  42730. dick: {
  42731. height: math.unit(1.8, "earths"),
  42732. name: "Dick",
  42733. image: {
  42734. source: "./media/characters/mag/dick.svg"
  42735. }
  42736. },
  42737. ass: {
  42738. height: math.unit(1.33, "earths"),
  42739. name: "Ass",
  42740. image: {
  42741. source: "./media/characters/mag/ass.svg"
  42742. }
  42743. },
  42744. head: {
  42745. height: math.unit(1.1, "earths"),
  42746. name: "Head",
  42747. image: {
  42748. source: "./media/characters/mag/head.svg"
  42749. }
  42750. },
  42751. maw: {
  42752. height: math.unit(1.62, "earths"),
  42753. name: "Maw",
  42754. image: {
  42755. source: "./media/characters/mag/maw.svg"
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Small",
  42762. height: math.unit(162, "feet")
  42763. },
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(3.2, "earths"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(512, "feet"),
  42776. weight: math.unit(63509, "tonnes"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/vorrel-harroc/front.svg",
  42780. extra: 1075/1063,
  42781. bottom: 62/1137
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(10, "feet")
  42789. },
  42790. {
  42791. name: "Macro",
  42792. height: math.unit(512, "feet"),
  42793. default: true
  42794. },
  42795. {
  42796. name: "Megamacro",
  42797. height: math.unit(256, "miles")
  42798. },
  42799. {
  42800. name: "Gigamacro",
  42801. height: math.unit(4096, "miles")
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42807. {
  42808. side: {
  42809. height: math.unit(50, "feet"),
  42810. name: "Side",
  42811. image: {
  42812. source: "./media/characters/froimar/side.svg",
  42813. extra: 855/638,
  42814. bottom: 99/954
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Macro",
  42821. height: math.unit(50, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(210, "miles"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/timothy/front.svg",
  42834. extra: 1007/943,
  42835. bottom: 62/1069
  42836. }
  42837. },
  42838. frontSkirt: {
  42839. height: math.unit(210, "miles"),
  42840. name: "Front (Skirt)",
  42841. image: {
  42842. source: "./media/characters/timothy/front-skirt.svg",
  42843. extra: 1007/943,
  42844. bottom: 62/1069
  42845. }
  42846. },
  42847. frontCoat: {
  42848. height: math.unit(210, "miles"),
  42849. name: "Front (Coat)",
  42850. image: {
  42851. source: "./media/characters/timothy/front-coat.svg",
  42852. extra: 1007/943,
  42853. bottom: 62/1069
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Macro",
  42860. height: math.unit(210, "miles"),
  42861. default: true
  42862. },
  42863. {
  42864. name: "Megamacro",
  42865. height: math.unit(210000, "miles")
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(188, "feet"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/pyotr/front.svg",
  42877. extra: 1912/1826,
  42878. bottom: 18/1930
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Macro",
  42885. height: math.unit(188, "feet"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Megamacro",
  42890. height: math.unit(8, "miles")
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42896. {
  42897. side: {
  42898. height: math.unit(10, "feet"),
  42899. weight: math.unit(4500, "lb"),
  42900. name: "Side",
  42901. image: {
  42902. source: "./media/characters/ackart/side.svg",
  42903. extra: 1776/1668,
  42904. bottom: 116/1892
  42905. }
  42906. },
  42907. },
  42908. [
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(10, "feet"),
  42912. default: true
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42918. {
  42919. side: {
  42920. height: math.unit(21, "feet"),
  42921. name: "Side",
  42922. image: {
  42923. source: "./media/characters/nolow/side.svg",
  42924. extra: 1484/1434,
  42925. bottom: 85/1569
  42926. }
  42927. },
  42928. sideErect: {
  42929. height: math.unit(21, "feet"),
  42930. name: "Side-erect",
  42931. image: {
  42932. source: "./media/characters/nolow/side-erect.svg",
  42933. extra: 1484/1434,
  42934. bottom: 85/1569
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Regular",
  42941. height: math.unit(12, "feet")
  42942. },
  42943. {
  42944. name: "Big Chee",
  42945. height: math.unit(21, "feet"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(7, "feet"),
  42955. weight: math.unit(250, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/nines/front.svg",
  42959. extra: 1741/1607,
  42960. bottom: 41/1782
  42961. }
  42962. },
  42963. side: {
  42964. height: math.unit(7, "feet"),
  42965. weight: math.unit(250, "lb"),
  42966. name: "Side",
  42967. image: {
  42968. source: "./media/characters/nines/side.svg",
  42969. extra: 1854/1735,
  42970. bottom: 93/1947
  42971. }
  42972. },
  42973. back: {
  42974. height: math.unit(7, "feet"),
  42975. weight: math.unit(250, "lb"),
  42976. name: "Back",
  42977. image: {
  42978. source: "./media/characters/nines/back.svg",
  42979. extra: 1748/1615,
  42980. bottom: 20/1768
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Megamacro",
  42987. height: math.unit(99, "km"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(5 + 10/12, "feet"),
  42997. weight: math.unit(210, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/zenith/front.svg",
  43001. extra: 1531/1452,
  43002. bottom: 198/1729
  43003. }
  43004. },
  43005. back: {
  43006. height: math.unit(5 + 10/12, "feet"),
  43007. weight: math.unit(210, "lb"),
  43008. name: "Back",
  43009. image: {
  43010. source: "./media/characters/zenith/back.svg",
  43011. extra: 1571/1487,
  43012. bottom: 75/1646
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(5 + 10/12, "feet"),
  43020. default: true
  43021. }
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43026. {
  43027. front: {
  43028. height: math.unit(4, "feet"),
  43029. weight: math.unit(60, "lb"),
  43030. name: "Front",
  43031. image: {
  43032. source: "./media/characters/jasper/front.svg",
  43033. extra: 1450/1379,
  43034. bottom: 19/1469
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(4, "feet"),
  43042. default: true
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43048. {
  43049. front: {
  43050. height: math.unit(6 + 5/12, "feet"),
  43051. weight: math.unit(290, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/tiberius-thyben/front.svg",
  43055. extra: 757/739,
  43056. bottom: 39/796
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Micro",
  43063. height: math.unit(1.5, "inches")
  43064. },
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(6 + 5/12, "feet"),
  43068. default: true
  43069. },
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(300, "feet")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(5 + 6/12, "feet"),
  43081. weight: math.unit(60, "kg"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/sabre/front.svg",
  43085. extra: 738/671,
  43086. bottom: 27/765
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Teeny",
  43093. height: math.unit(2, "inches")
  43094. },
  43095. {
  43096. name: "Smol",
  43097. height: math.unit(8, "inches")
  43098. },
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(5 + 6/12, "feet"),
  43102. default: true
  43103. },
  43104. {
  43105. name: "Mini-Macro",
  43106. height: math.unit(15, "feet")
  43107. },
  43108. {
  43109. name: "Macro",
  43110. height: math.unit(50, "feet")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(6 + 4/12, "feet"),
  43119. weight: math.unit(170, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/charlie/front.svg",
  43123. extra: 1348/1228,
  43124. bottom: 15/1363
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(1700, "meters"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "MegaMacro",
  43136. height: math.unit(20400, "meters")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(6 + 3/12, "feet"),
  43145. weight: math.unit(185, "lb"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/susan-grant/front.svg",
  43149. extra: 1351/1327,
  43150. bottom: 26/1377
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(6 + 3/12, "feet"),
  43158. default: true
  43159. },
  43160. {
  43161. name: "Macro",
  43162. height: math.unit(225, "feet")
  43163. },
  43164. {
  43165. name: "Macro+",
  43166. height: math.unit(900, "feet")
  43167. },
  43168. {
  43169. name: "MegaMacro",
  43170. height: math.unit(14400, "feet")
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43176. {
  43177. front: {
  43178. height: math.unit(5 + 4/12, "feet"),
  43179. weight: math.unit(110, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/axel-isanov/front.svg",
  43183. extra: 1096/1065,
  43184. bottom: 13/1109
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(5 + 4/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(9, "feet"),
  43201. weight: math.unit(467, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/necahual/front.svg",
  43205. extra: 920/873,
  43206. bottom: 26/946
  43207. }
  43208. },
  43209. back: {
  43210. height: math.unit(9, "feet"),
  43211. weight: math.unit(467, "lb"),
  43212. name: "Back",
  43213. image: {
  43214. source: "./media/characters/necahual/back.svg",
  43215. extra: 930/884,
  43216. bottom: 16/946
  43217. }
  43218. },
  43219. frontUnderwear: {
  43220. height: math.unit(9, "feet"),
  43221. weight: math.unit(467, "lb"),
  43222. name: "Front (Underwear)",
  43223. image: {
  43224. source: "./media/characters/necahual/front-underwear.svg",
  43225. extra: 920/873,
  43226. bottom: 26/946
  43227. }
  43228. },
  43229. frontDressed: {
  43230. height: math.unit(9, "feet"),
  43231. weight: math.unit(467, "lb"),
  43232. name: "Front (Dressed)",
  43233. image: {
  43234. source: "./media/characters/necahual/front-dressed.svg",
  43235. extra: 920/873,
  43236. bottom: 26/946
  43237. }
  43238. },
  43239. },
  43240. [
  43241. {
  43242. name: "Comprsesed",
  43243. height: math.unit(9, "feet")
  43244. },
  43245. {
  43246. name: "Natural",
  43247. height: math.unit(15, "feet"),
  43248. default: true
  43249. },
  43250. {
  43251. name: "Boosted",
  43252. height: math.unit(50, "feet")
  43253. },
  43254. {
  43255. name: "Boosted+",
  43256. height: math.unit(150, "feet")
  43257. },
  43258. {
  43259. name: "Max",
  43260. height: math.unit(500, "feet")
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(22 + 1/12, "feet"),
  43269. weight: math.unit(3200, "lb"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/theo-acacia/front.svg",
  43273. extra: 1796/1741,
  43274. bottom: 83/1879
  43275. }
  43276. },
  43277. frontUnderwear: {
  43278. height: math.unit(22 + 1/12, "feet"),
  43279. weight: math.unit(3200, "lb"),
  43280. name: "Front (Underwear)",
  43281. image: {
  43282. source: "./media/characters/theo-acacia/front-underwear.svg",
  43283. extra: 1796/1741,
  43284. bottom: 83/1879
  43285. }
  43286. },
  43287. frontNude: {
  43288. height: math.unit(22 + 1/12, "feet"),
  43289. weight: math.unit(3200, "lb"),
  43290. name: "Front (Nude)",
  43291. image: {
  43292. source: "./media/characters/theo-acacia/front-nude.svg",
  43293. extra: 1796/1741,
  43294. bottom: 83/1879
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(22 + 1/12, "feet"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43308. {
  43309. front: {
  43310. height: math.unit(20, "feet"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/astra/front.svg",
  43314. extra: 1850/1714,
  43315. bottom: 106/1956
  43316. }
  43317. },
  43318. frontUndressed: {
  43319. height: math.unit(20, "feet"),
  43320. name: "Front (Undressed)",
  43321. image: {
  43322. source: "./media/characters/astra/front-undressed.svg",
  43323. extra: 1926/1749,
  43324. bottom: 0/1926
  43325. }
  43326. },
  43327. hand: {
  43328. height: math.unit(1.53, "feet"),
  43329. name: "Hand",
  43330. image: {
  43331. source: "./media/characters/astra/hand.svg"
  43332. }
  43333. },
  43334. paw: {
  43335. height: math.unit(1.53, "feet"),
  43336. name: "Paw",
  43337. image: {
  43338. source: "./media/characters/astra/paw.svg"
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Smallest",
  43345. height: math.unit(20, "feet")
  43346. },
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(1e9, "miles"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Larger",
  43354. height: math.unit(5, "multiverses")
  43355. },
  43356. {
  43357. name: "Largest",
  43358. height: math.unit(1e9, "multiverses")
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(8, "feet"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/breanna/front.svg",
  43370. extra: 1912/1632,
  43371. bottom: 33/1945
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "Smallest",
  43378. height: math.unit(8, "feet")
  43379. },
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(1, "mile"),
  43383. default: true
  43384. },
  43385. {
  43386. name: "Maximum",
  43387. height: math.unit(1500000000000, "lightyears")
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(5 + 11/12, "feet"),
  43396. weight: math.unit(155, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/cai/front.svg",
  43400. extra: 1823/1702,
  43401. bottom: 32/1855
  43402. }
  43403. },
  43404. back: {
  43405. height: math.unit(5 + 11/12, "feet"),
  43406. weight: math.unit(155, "lb"),
  43407. name: "Back",
  43408. image: {
  43409. source: "./media/characters/cai/back.svg",
  43410. extra: 1809/1708,
  43411. bottom: 31/1840
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(5 + 11/12, "feet"),
  43419. default: true
  43420. },
  43421. {
  43422. name: "Big",
  43423. height: math.unit(15, "feet")
  43424. },
  43425. {
  43426. name: "Macro",
  43427. height: math.unit(200, "feet")
  43428. },
  43429. ]
  43430. ))
  43431. characterMakers.push(() => makeCharacter(
  43432. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43433. {
  43434. front: {
  43435. height: math.unit(5 + 6/12, "feet"),
  43436. weight: math.unit(160, "lb"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43440. extra: 1227/1174,
  43441. bottom: 37/1264
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Macro",
  43448. height: math.unit(444, "meters"),
  43449. default: true
  43450. },
  43451. ]
  43452. ))
  43453. characterMakers.push(() => makeCharacter(
  43454. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43455. {
  43456. front: {
  43457. height: math.unit(18 + 7/12, "feet"),
  43458. name: "Front",
  43459. image: {
  43460. source: "./media/characters/rex/front.svg",
  43461. extra: 1941/1807,
  43462. bottom: 66/2007
  43463. }
  43464. },
  43465. back: {
  43466. height: math.unit(18 + 7/12, "feet"),
  43467. name: "Back",
  43468. image: {
  43469. source: "./media/characters/rex/back.svg",
  43470. extra: 1937/1822,
  43471. bottom: 42/1979
  43472. }
  43473. },
  43474. boot: {
  43475. height: math.unit(3.45, "feet"),
  43476. name: "Boot",
  43477. image: {
  43478. source: "./media/characters/rex/boot.svg"
  43479. }
  43480. },
  43481. paw: {
  43482. height: math.unit(4.17, "feet"),
  43483. name: "Paw",
  43484. image: {
  43485. source: "./media/characters/rex/paw.svg"
  43486. }
  43487. },
  43488. head: {
  43489. height: math.unit(6.728, "feet"),
  43490. name: "Head",
  43491. image: {
  43492. source: "./media/characters/rex/head.svg"
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Nano",
  43499. height: math.unit(18 + 7/12, "feet")
  43500. },
  43501. {
  43502. name: "Micro",
  43503. height: math.unit(1.5, "megameters")
  43504. },
  43505. {
  43506. name: "Normal",
  43507. height: math.unit(440, "megameters"),
  43508. default: true
  43509. },
  43510. {
  43511. name: "Macro",
  43512. height: math.unit(2.5, "gigameters")
  43513. },
  43514. {
  43515. name: "Gigamacro",
  43516. height: math.unit(2, "galaxies")
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43522. {
  43523. side: {
  43524. height: math.unit(32, "feet"),
  43525. weight: math.unit(250000, "lb"),
  43526. name: "Side",
  43527. image: {
  43528. source: "./media/characters/silverwing/side.svg",
  43529. extra: 1100/1019,
  43530. bottom: 204/1304
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Normal",
  43537. height: math.unit(32, "feet"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(6 + 6/12, "feet"),
  43547. weight: math.unit(350, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/tristan-hawthorne/front.svg",
  43551. extra: 1159/1124,
  43552. bottom: 37/1196
  43553. },
  43554. form: "labrador",
  43555. default: true
  43556. },
  43557. skunkFront: {
  43558. height: math.unit(4 + 6/12, "feet"),
  43559. weight: math.unit(120, "lb"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43563. extra: 1609/1551,
  43564. bottom: 169/1778
  43565. },
  43566. form: "skunk",
  43567. default: true
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(6 + 6/12, "feet"),
  43574. form: "labrador",
  43575. default: true
  43576. },
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(4 + 6/12, "feet"),
  43580. form: "skunk",
  43581. default: true
  43582. },
  43583. ],
  43584. {
  43585. "labrador": {
  43586. name: "Labrador",
  43587. default: true
  43588. },
  43589. "skunk": {
  43590. name: "Skunk"
  43591. }
  43592. }
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. weight: math.unit(190, "lb"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/mizu/front.svg",
  43603. extra: 1988/1788,
  43604. bottom: 14/2002
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Normal",
  43611. height: math.unit(5 + 11/12, "feet"),
  43612. default: true
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(1.7, "feet"),
  43621. weight: math.unit(50, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/dechroma/front.svg",
  43625. extra: 1095/859,
  43626. bottom: 64/1159
  43627. }
  43628. },
  43629. },
  43630. [
  43631. {
  43632. name: "Normal",
  43633. height: math.unit(1.7, "feet"),
  43634. default: true
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43640. {
  43641. side: {
  43642. height: math.unit(30, "feet"),
  43643. name: "Side",
  43644. image: {
  43645. source: "./media/characters/veluren-thanazel/side.svg",
  43646. extra: 1611/633,
  43647. bottom: 118/1729
  43648. }
  43649. },
  43650. front: {
  43651. height: math.unit(30, "feet"),
  43652. name: "Front",
  43653. image: {
  43654. source: "./media/characters/veluren-thanazel/front.svg",
  43655. extra: 1486/636,
  43656. bottom: 238/1724
  43657. }
  43658. },
  43659. head: {
  43660. height: math.unit(21.4, "feet"),
  43661. name: "Head",
  43662. image: {
  43663. source: "./media/characters/veluren-thanazel/head.svg"
  43664. }
  43665. },
  43666. genitals: {
  43667. height: math.unit(19.4, "feet"),
  43668. name: "Genitals",
  43669. image: {
  43670. source: "./media/characters/veluren-thanazel/genitals.svg"
  43671. }
  43672. },
  43673. },
  43674. [
  43675. {
  43676. name: "Social",
  43677. height: math.unit(6, "feet")
  43678. },
  43679. {
  43680. name: "Play",
  43681. height: math.unit(12, "feet")
  43682. },
  43683. {
  43684. name: "True",
  43685. height: math.unit(30, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(7 + 6/12, "feet"),
  43695. weight: math.unit(500, "kg"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/arcturas/front.svg",
  43699. extra: 1700/1500,
  43700. bottom: 145/1845
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Normal",
  43707. height: math.unit(7 + 6/12, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43714. {
  43715. side: {
  43716. height: math.unit(6, "feet"),
  43717. weight: math.unit(2, "tons"),
  43718. name: "Side",
  43719. image: {
  43720. source: "./media/characters/vitaen/side.svg",
  43721. extra: 1157/617,
  43722. bottom: 122/1279
  43723. }
  43724. },
  43725. },
  43726. [
  43727. {
  43728. name: "Normal",
  43729. height: math.unit(6, "feet"),
  43730. default: true
  43731. },
  43732. ]
  43733. ))
  43734. characterMakers.push(() => makeCharacter(
  43735. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43736. {
  43737. front: {
  43738. height: math.unit(19, "feet"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/fia-dreamweaver/front.svg",
  43742. extra: 1630/1504,
  43743. bottom: 25/1655
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(19, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(5 + 4/12, "feet"),
  43760. name: "Front",
  43761. image: {
  43762. source: "./media/characters/artan/front.svg",
  43763. extra: 1618/1535,
  43764. bottom: 46/1664
  43765. }
  43766. },
  43767. back: {
  43768. height: math.unit(5 + 4/12, "feet"),
  43769. name: "Back",
  43770. image: {
  43771. source: "./media/characters/artan/back.svg",
  43772. extra: 1618/1543,
  43773. bottom: 31/1649
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(5 + 4/12, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43787. {
  43788. side: {
  43789. height: math.unit(182, "cm"),
  43790. weight: math.unit(1000, "lb"),
  43791. name: "Side",
  43792. image: {
  43793. source: "./media/characters/silver-dragon/side.svg",
  43794. extra: 710/287,
  43795. bottom: 88/798
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Normal",
  43802. height: math.unit(182, "cm"),
  43803. default: true
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43809. {
  43810. side: {
  43811. height: math.unit(6 + 6/12, "feet"),
  43812. weight: math.unit(1.5, "tons"),
  43813. name: "Side",
  43814. image: {
  43815. source: "./media/characters/zephyr/side.svg",
  43816. extra: 1433/586,
  43817. bottom: 109/1542
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Normal",
  43824. height: math.unit(6 + 6/12, "feet"),
  43825. default: true
  43826. },
  43827. ]
  43828. ))
  43829. characterMakers.push(() => makeCharacter(
  43830. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43831. {
  43832. side: {
  43833. height: math.unit(1, "feet"),
  43834. name: "Side",
  43835. image: {
  43836. source: "./media/characters/vixye/side.svg",
  43837. extra: 632/541,
  43838. bottom: 0/632
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Normal",
  43845. height: math.unit(1, "feet"),
  43846. default: true
  43847. },
  43848. {
  43849. name: "True",
  43850. height: math.unit(1e15, "multiverses")
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(8 + 2/12, "feet"),
  43859. weight: math.unit(650, "lb"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43863. extra: 1174/1137,
  43864. bottom: 82/1256
  43865. }
  43866. },
  43867. back: {
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. weight: math.unit(650, "lb"),
  43870. name: "Back",
  43871. image: {
  43872. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43873. extra: 1204/1157,
  43874. bottom: 46/1250
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Wildform",
  43881. height: math.unit(8 + 2/12, "feet"),
  43882. default: true
  43883. },
  43884. ]
  43885. ))
  43886. characterMakers.push(() => makeCharacter(
  43887. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43888. {
  43889. front: {
  43890. height: math.unit(18, "feet"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/cyphin/front.svg",
  43894. extra: 970/886,
  43895. bottom: 42/1012
  43896. }
  43897. },
  43898. back: {
  43899. height: math.unit(18, "feet"),
  43900. name: "Back",
  43901. image: {
  43902. source: "./media/characters/cyphin/back.svg",
  43903. extra: 1009/894,
  43904. bottom: 24/1033
  43905. }
  43906. },
  43907. head: {
  43908. height: math.unit(5.05, "feet"),
  43909. name: "Head",
  43910. image: {
  43911. source: "./media/characters/cyphin/head.svg"
  43912. }
  43913. },
  43914. tailbud: {
  43915. height: math.unit(5, "feet"),
  43916. name: "Tailbud",
  43917. image: {
  43918. source: "./media/characters/cyphin/tailbud.svg"
  43919. }
  43920. },
  43921. },
  43922. [
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43927. {
  43928. side: {
  43929. height: math.unit(10, "feet"),
  43930. weight: math.unit(6, "tons"),
  43931. name: "Side",
  43932. image: {
  43933. source: "./media/characters/raijin/side.svg",
  43934. extra: 1529/613,
  43935. bottom: 337/1866
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(10, "feet"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43949. {
  43950. side: {
  43951. height: math.unit(9, "feet"),
  43952. name: "Side",
  43953. image: {
  43954. source: "./media/characters/nilghais/side.svg",
  43955. extra: 1047/744,
  43956. bottom: 91/1138
  43957. }
  43958. },
  43959. head: {
  43960. height: math.unit(3.14, "feet"),
  43961. name: "Head",
  43962. image: {
  43963. source: "./media/characters/nilghais/head.svg"
  43964. }
  43965. },
  43966. mouth: {
  43967. height: math.unit(4.6, "feet"),
  43968. name: "Mouth",
  43969. image: {
  43970. source: "./media/characters/nilghais/mouth.svg"
  43971. }
  43972. },
  43973. wings: {
  43974. height: math.unit(24, "feet"),
  43975. name: "Wings",
  43976. image: {
  43977. source: "./media/characters/nilghais/wings.svg"
  43978. }
  43979. },
  43980. ass: {
  43981. height: math.unit(6.12, "feet"),
  43982. name: "Ass",
  43983. image: {
  43984. source: "./media/characters/nilghais/ass.svg"
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(9, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43998. {
  43999. regular: {
  44000. height: math.unit(16 + 2/12, "feet"),
  44001. weight: math.unit(2300, "lb"),
  44002. name: "Regular",
  44003. image: {
  44004. source: "./media/characters/zolgar/regular.svg",
  44005. extra: 1246/1004,
  44006. bottom: 124/1370
  44007. }
  44008. },
  44009. boxers: {
  44010. height: math.unit(16 + 2/12, "feet"),
  44011. weight: math.unit(2300, "lb"),
  44012. name: "Boxers",
  44013. image: {
  44014. source: "./media/characters/zolgar/boxers.svg",
  44015. extra: 1246/1004,
  44016. bottom: 124/1370
  44017. }
  44018. },
  44019. armored: {
  44020. height: math.unit(16 + 2/12, "feet"),
  44021. weight: math.unit(2300, "lb"),
  44022. name: "Armored",
  44023. image: {
  44024. source: "./media/characters/zolgar/armored.svg",
  44025. extra: 1246/1004,
  44026. bottom: 124/1370
  44027. }
  44028. },
  44029. goth: {
  44030. height: math.unit(16 + 2/12, "feet"),
  44031. weight: math.unit(2300, "lb"),
  44032. name: "Goth",
  44033. image: {
  44034. source: "./media/characters/zolgar/goth.svg",
  44035. extra: 1246/1004,
  44036. bottom: 124/1370
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Shrunken Down",
  44043. height: math.unit(9 + 2/12, "feet")
  44044. },
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(16 + 2/12, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(6, "feet"),
  44057. weight: math.unit(168, "lb"),
  44058. name: "Front",
  44059. image: {
  44060. source: "./media/characters/luca/front.svg",
  44061. extra: 841/667,
  44062. bottom: 102/943
  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: "Zezo", species: ["goo"], tags: ["feral"] },
  44076. {
  44077. side: {
  44078. height: math.unit(7 + 3/12, "feet"),
  44079. weight: math.unit(312, "lb"),
  44080. name: "Side",
  44081. image: {
  44082. source: "./media/characters/zezo/side.svg",
  44083. extra: 1192/1067,
  44084. bottom: 63/1255
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Normal",
  44091. height: math.unit(7 + 3/12, "feet"),
  44092. default: true
  44093. },
  44094. ]
  44095. ))
  44096. characterMakers.push(() => makeCharacter(
  44097. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44098. {
  44099. front: {
  44100. height: math.unit(5 + 5/12, "feet"),
  44101. weight: math.unit(170, "lb"),
  44102. name: "Front",
  44103. image: {
  44104. source: "./media/characters/mayso/front.svg",
  44105. extra: 1215/1108,
  44106. bottom: 16/1231
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(5 + 5/12, "feet"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44120. {
  44121. front: {
  44122. height: math.unit(4 + 3/12, "feet"),
  44123. weight: math.unit(80, "lb"),
  44124. name: "Front",
  44125. image: {
  44126. source: "./media/characters/hess/front.svg",
  44127. extra: 1200/1123,
  44128. bottom: 16/1216
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Normal",
  44135. height: math.unit(4 + 3/12, "feet"),
  44136. default: true
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44142. {
  44143. front: {
  44144. height: math.unit(1.9, "meters"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/ashgar/front.svg",
  44148. extra: 1177/1146,
  44149. bottom: 99/1276
  44150. }
  44151. },
  44152. back: {
  44153. height: math.unit(1.9, "meters"),
  44154. name: "Back",
  44155. image: {
  44156. source: "./media/characters/ashgar/back.svg",
  44157. extra: 1201/1183,
  44158. bottom: 53/1254
  44159. }
  44160. },
  44161. feral: {
  44162. height: math.unit(1.4, "meters"),
  44163. name: "Feral",
  44164. image: {
  44165. source: "./media/characters/ashgar/feral.svg",
  44166. extra: 370/345,
  44167. bottom: 45/415
  44168. }
  44169. },
  44170. },
  44171. [
  44172. {
  44173. name: "Normal",
  44174. height: math.unit(1.9, "meters"),
  44175. default: true
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44181. {
  44182. regular: {
  44183. height: math.unit(6, "feet"),
  44184. weight: math.unit(220, "lb"),
  44185. name: "Regular",
  44186. image: {
  44187. source: "./media/characters/phillip/regular.svg",
  44188. extra: 1373/1277,
  44189. bottom: 75/1448
  44190. }
  44191. },
  44192. dressed: {
  44193. height: math.unit(6, "feet"),
  44194. weight: math.unit(220, "lb"),
  44195. name: "Dressed",
  44196. image: {
  44197. source: "./media/characters/phillip/dressed.svg",
  44198. extra: 1373/1277,
  44199. bottom: 75/1448
  44200. }
  44201. },
  44202. paw: {
  44203. height: math.unit(1.44, "feet"),
  44204. name: "Paw",
  44205. image: {
  44206. source: "./media/characters/phillip/paw.svg"
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(6, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44220. {
  44221. side: {
  44222. height: math.unit(42, "feet"),
  44223. name: "Side",
  44224. image: {
  44225. source: "./media/characters/uvula/side.svg",
  44226. extra: 683/586,
  44227. bottom: 60/743
  44228. }
  44229. },
  44230. front: {
  44231. height: math.unit(42, "feet"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/uvula/front.svg",
  44235. extra: 705/613,
  44236. bottom: 54/759
  44237. }
  44238. },
  44239. maw: {
  44240. height: math.unit(23.5, "feet"),
  44241. name: "Maw",
  44242. image: {
  44243. source: "./media/characters/uvula/maw.svg"
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Original Size",
  44250. height: math.unit(14, "inches")
  44251. },
  44252. {
  44253. name: "Human Size",
  44254. height: math.unit(6, "feet")
  44255. },
  44256. {
  44257. name: "Big",
  44258. height: math.unit(42, "feet"),
  44259. default: true
  44260. },
  44261. {
  44262. name: "Bigger",
  44263. height: math.unit(100, "feet")
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44269. {
  44270. front: {
  44271. height: math.unit(5 + 11/12, "feet"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/lannah/front.svg",
  44275. extra: 1208/1113,
  44276. bottom: 97/1305
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(5 + 11/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44290. {
  44291. front: {
  44292. height: math.unit(6 + 3/12, "feet"),
  44293. weight: math.unit(3.5, "tons"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/emberflame/front.svg",
  44297. extra: 1198/672,
  44298. bottom: 82/1280
  44299. }
  44300. },
  44301. side: {
  44302. height: math.unit(6 + 3/12, "feet"),
  44303. weight: math.unit(3.5, "tons"),
  44304. name: "Side",
  44305. image: {
  44306. source: "./media/characters/emberflame/side.svg",
  44307. extra: 938/527,
  44308. bottom: 56/994
  44309. }
  44310. },
  44311. },
  44312. [
  44313. {
  44314. name: "Normal",
  44315. height: math.unit(6 + 3/12, "feet"),
  44316. default: true
  44317. },
  44318. ]
  44319. ))
  44320. characterMakers.push(() => makeCharacter(
  44321. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44322. {
  44323. side: {
  44324. height: math.unit(17.5, "feet"),
  44325. weight: math.unit(35, "tons"),
  44326. name: "Side",
  44327. image: {
  44328. source: "./media/characters/sophie-ambrose/side.svg",
  44329. extra: 1573/1242,
  44330. bottom: 71/1644
  44331. }
  44332. },
  44333. maw: {
  44334. height: math.unit(7.4, "feet"),
  44335. name: "Maw",
  44336. image: {
  44337. source: "./media/characters/sophie-ambrose/maw.svg"
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Normal",
  44344. height: math.unit(17.5, "feet"),
  44345. default: true
  44346. },
  44347. ]
  44348. ))
  44349. characterMakers.push(() => makeCharacter(
  44350. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44351. {
  44352. front: {
  44353. height: math.unit(280, "feet"),
  44354. weight: math.unit(550, "tons"),
  44355. name: "Front",
  44356. image: {
  44357. source: "./media/characters/king-mugi/front.svg",
  44358. extra: 1102/947,
  44359. bottom: 104/1206
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "King Mugi",
  44366. height: math.unit(280, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(64, "meters"),
  44376. name: "Front",
  44377. image: {
  44378. source: "./media/characters/nova-fox/front.svg",
  44379. extra: 1310/1246,
  44380. bottom: 65/1375
  44381. }
  44382. },
  44383. },
  44384. [
  44385. {
  44386. name: "Macro",
  44387. height: math.unit(64, "meters"),
  44388. default: true
  44389. },
  44390. ]
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44394. {
  44395. front: {
  44396. height: math.unit(6 + 3/12, "feet"),
  44397. weight: math.unit(170, "lb"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/sam-bat/front.svg",
  44401. extra: 1601/1411,
  44402. bottom: 125/1726
  44403. }
  44404. },
  44405. back: {
  44406. height: math.unit(6 + 3/12, "feet"),
  44407. weight: math.unit(170, "lb"),
  44408. name: "Back",
  44409. image: {
  44410. source: "./media/characters/sam-bat/back.svg",
  44411. extra: 1577/1405,
  44412. bottom: 58/1635
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(6 + 3/12, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44426. {
  44427. front: {
  44428. height: math.unit(59, "feet"),
  44429. weight: math.unit(40000, "lb"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/inari/front.svg",
  44433. extra: 1884/1350,
  44434. bottom: 95/1979
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Gigantamax",
  44441. height: math.unit(59, "feet"),
  44442. default: true
  44443. },
  44444. ]
  44445. ))
  44446. characterMakers.push(() => makeCharacter(
  44447. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44448. {
  44449. front: {
  44450. height: math.unit(5 + 8/12, "feet"),
  44451. name: "Front",
  44452. image: {
  44453. source: "./media/characters/elizabeth/front.svg",
  44454. extra: 1395/1298,
  44455. bottom: 54/1449
  44456. }
  44457. },
  44458. mouth: {
  44459. height: math.unit(1.97, "feet"),
  44460. name: "Mouth",
  44461. image: {
  44462. source: "./media/characters/elizabeth/mouth.svg"
  44463. }
  44464. },
  44465. foot: {
  44466. height: math.unit(1.17, "feet"),
  44467. name: "Foot",
  44468. image: {
  44469. source: "./media/characters/elizabeth/foot.svg"
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(5 + 8/12, "feet"),
  44477. default: true
  44478. },
  44479. {
  44480. name: "Minimacro",
  44481. height: math.unit(18, "feet")
  44482. },
  44483. {
  44484. name: "Macro",
  44485. height: math.unit(180, "feet")
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(5 + 2/12, "feet"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/october-gossamer/front.svg",
  44497. extra: 505/454,
  44498. bottom: 7/512
  44499. }
  44500. },
  44501. back: {
  44502. height: math.unit(5 + 2/12, "feet"),
  44503. name: "Back",
  44504. image: {
  44505. source: "./media/characters/october-gossamer/back.svg",
  44506. extra: 501/454,
  44507. bottom: 11/512
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(5 + 2/12, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(5, "feet"),
  44524. name: "Front",
  44525. image: {
  44526. source: "./media/characters/epiglottis/front.svg",
  44527. extra: 923/849,
  44528. bottom: 17/940
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Original Size",
  44535. height: math.unit(10, "inches")
  44536. },
  44537. {
  44538. name: "Human Size",
  44539. height: math.unit(5, "feet"),
  44540. default: true
  44541. },
  44542. {
  44543. name: "Big",
  44544. height: math.unit(25, "feet")
  44545. },
  44546. {
  44547. name: "Bigger",
  44548. height: math.unit(50, "feet")
  44549. },
  44550. {
  44551. name: "oh lawd",
  44552. height: math.unit(75, "feet")
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(2 + 4/12, "feet"),
  44561. weight: math.unit(60, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/lerm/front.svg",
  44565. extra: 796/790,
  44566. bottom: 79/875
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Normal",
  44573. height: math.unit(2 + 4/12, "feet"),
  44574. default: true
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44580. {
  44581. front: {
  44582. height: math.unit(5.5, "feet"),
  44583. weight: math.unit(130, "lb"),
  44584. name: "Front",
  44585. image: {
  44586. source: "./media/characters/xena-nebadon/front.svg",
  44587. extra: 1828/1730,
  44588. bottom: 79/1907
  44589. }
  44590. },
  44591. },
  44592. [
  44593. {
  44594. name: "Tiny Puppy",
  44595. height: math.unit(3, "inches")
  44596. },
  44597. {
  44598. name: "Normal",
  44599. height: math.unit(5.5, "feet"),
  44600. default: true
  44601. },
  44602. {
  44603. name: "Lotta Lady",
  44604. height: math.unit(12, "feet")
  44605. },
  44606. {
  44607. name: "Pretty Big",
  44608. height: math.unit(100, "feet")
  44609. },
  44610. {
  44611. name: "Big",
  44612. height: math.unit(500, "feet")
  44613. },
  44614. {
  44615. name: "Skyscraper Toys",
  44616. height: math.unit(2500, "feet")
  44617. },
  44618. {
  44619. name: "Plane Catcher",
  44620. height: math.unit(8, "miles")
  44621. },
  44622. {
  44623. name: "Planet Toys",
  44624. height: math.unit(15, "earths")
  44625. },
  44626. {
  44627. name: "Stardust",
  44628. height: math.unit(0.25, "galaxies")
  44629. },
  44630. {
  44631. name: "Snacks",
  44632. height: math.unit(70, "universes")
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44638. {
  44639. front: {
  44640. height: math.unit(1.6, "meters"),
  44641. weight: math.unit(60, "kg"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/bounty/front.svg",
  44645. extra: 1426/1308,
  44646. bottom: 15/1441
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(1.6, "meters"),
  44651. weight: math.unit(60, "kg"),
  44652. name: "Back",
  44653. image: {
  44654. source: "./media/characters/bounty/back.svg",
  44655. extra: 1417/1307,
  44656. bottom: 8/1425
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Normal",
  44663. height: math.unit(1.6, "meters"),
  44664. default: true
  44665. },
  44666. {
  44667. name: "Macro",
  44668. height: math.unit(300, "meters")
  44669. },
  44670. ]
  44671. ))
  44672. characterMakers.push(() => makeCharacter(
  44673. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44674. {
  44675. front: {
  44676. height: math.unit(2 + 8/12, "feet"),
  44677. weight: math.unit(15, "lb"),
  44678. name: "Front",
  44679. image: {
  44680. source: "./media/characters/mochi/front.svg",
  44681. extra: 1022/852,
  44682. bottom: 435/1457
  44683. }
  44684. },
  44685. back: {
  44686. height: math.unit(2 + 8/12, "feet"),
  44687. weight: math.unit(15, "lb"),
  44688. name: "Back",
  44689. image: {
  44690. source: "./media/characters/mochi/back.svg",
  44691. extra: 1335/1119,
  44692. bottom: 39/1374
  44693. }
  44694. },
  44695. bird: {
  44696. height: math.unit(2 + 8/12, "feet"),
  44697. weight: math.unit(15, "lb"),
  44698. name: "Bird",
  44699. image: {
  44700. source: "./media/characters/mochi/bird.svg",
  44701. extra: 1251/1113,
  44702. bottom: 178/1429
  44703. }
  44704. },
  44705. kaiju: {
  44706. height: math.unit(154, "feet"),
  44707. weight: math.unit(1e7, "lb"),
  44708. name: "Kaiju",
  44709. image: {
  44710. source: "./media/characters/mochi/kaiju.svg",
  44711. extra: 460/324,
  44712. bottom: 40/500
  44713. }
  44714. },
  44715. head: {
  44716. height: math.unit(1.21, "feet"),
  44717. name: "Head",
  44718. image: {
  44719. source: "./media/characters/mochi/head.svg"
  44720. }
  44721. },
  44722. alternateTail: {
  44723. height: math.unit(2 + 8/12, "feet"),
  44724. weight: math.unit(45, "lb"),
  44725. name: "Alternate Tail",
  44726. image: {
  44727. source: "./media/characters/mochi/alternate-tail.svg",
  44728. extra: 139/76,
  44729. bottom: 45/184
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Micro",
  44736. height: math.unit(2, "inches")
  44737. },
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(2 + 8/12, "feet"),
  44741. default: true
  44742. },
  44743. {
  44744. name: "Macro",
  44745. height: math.unit(106, "feet")
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44751. {
  44752. front: {
  44753. height: math.unit(5.67, "feet"),
  44754. weight: math.unit(135, "lb"),
  44755. name: "Front",
  44756. image: {
  44757. source: "./media/characters/sarel/front.svg",
  44758. extra: 865/788,
  44759. bottom: 97/962
  44760. }
  44761. },
  44762. back: {
  44763. height: math.unit(5.67, "feet"),
  44764. weight: math.unit(135, "lb"),
  44765. name: "Back",
  44766. image: {
  44767. source: "./media/characters/sarel/back.svg",
  44768. extra: 857/777,
  44769. bottom: 32/889
  44770. }
  44771. },
  44772. chozoan: {
  44773. height: math.unit(5.67, "feet"),
  44774. weight: math.unit(135, "lb"),
  44775. name: "Chozoan",
  44776. image: {
  44777. source: "./media/characters/sarel/chozoan.svg",
  44778. extra: 865/788,
  44779. bottom: 97/962
  44780. }
  44781. },
  44782. current: {
  44783. height: math.unit(5.67, "feet"),
  44784. weight: math.unit(135, "lb"),
  44785. name: "Current",
  44786. image: {
  44787. source: "./media/characters/sarel/current.svg",
  44788. extra: 865/788,
  44789. bottom: 97/962
  44790. }
  44791. },
  44792. head: {
  44793. height: math.unit(1.77, "feet"),
  44794. name: "Head",
  44795. image: {
  44796. source: "./media/characters/sarel/head.svg"
  44797. }
  44798. },
  44799. claws: {
  44800. height: math.unit(1.8, "feet"),
  44801. name: "Claws",
  44802. image: {
  44803. source: "./media/characters/sarel/claws.svg"
  44804. }
  44805. },
  44806. clawsAlt: {
  44807. height: math.unit(1.8, "feet"),
  44808. name: "Claws-alt",
  44809. image: {
  44810. source: "./media/characters/sarel/claws-alt.svg"
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Normal",
  44817. height: math.unit(5.67, "feet"),
  44818. default: true
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(5500, "feet"),
  44827. name: "Front",
  44828. image: {
  44829. source: "./media/characters/alyonia/front.svg",
  44830. extra: 1200/1135,
  44831. bottom: 29/1229
  44832. }
  44833. },
  44834. back: {
  44835. height: math.unit(5500, "feet"),
  44836. name: "Back",
  44837. image: {
  44838. source: "./media/characters/alyonia/back.svg",
  44839. extra: 1205/1138,
  44840. bottom: 10/1215
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Small",
  44847. height: math.unit(10, "feet")
  44848. },
  44849. {
  44850. name: "Macro",
  44851. height: math.unit(500, "feet")
  44852. },
  44853. {
  44854. name: "Mega Macro",
  44855. height: math.unit(5500, "feet"),
  44856. default: true
  44857. },
  44858. {
  44859. name: "Mega Macro+",
  44860. height: math.unit(500000, "feet")
  44861. },
  44862. {
  44863. name: "Giga Macro",
  44864. height: math.unit(3000, "miles")
  44865. },
  44866. {
  44867. name: "Tera Macro",
  44868. height: math.unit(2.8e6, "miles")
  44869. },
  44870. {
  44871. name: "Galactic",
  44872. height: math.unit(120000, "lightyears")
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44878. {
  44879. werewolf: {
  44880. height: math.unit(8, "feet"),
  44881. weight: math.unit(425, "lb"),
  44882. name: "Werewolf",
  44883. image: {
  44884. source: "./media/characters/autumn/werewolf.svg",
  44885. extra: 2154/2031,
  44886. bottom: 160/2314
  44887. }
  44888. },
  44889. human: {
  44890. height: math.unit(5 + 8/12, "feet"),
  44891. weight: math.unit(150, "lb"),
  44892. name: "Human",
  44893. image: {
  44894. source: "./media/characters/autumn/human.svg",
  44895. extra: 1200/1149,
  44896. bottom: 30/1230
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(8, "feet"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(8 + 5/12, "feet"),
  44913. weight: math.unit(825, "lb"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/cobalt-charizard/front.svg",
  44917. extra: 1268/1155,
  44918. bottom: 122/1390
  44919. }
  44920. },
  44921. side: {
  44922. height: math.unit(8 + 5/12, "feet"),
  44923. weight: math.unit(825, "lb"),
  44924. name: "Side",
  44925. image: {
  44926. source: "./media/characters/cobalt-charizard/side.svg",
  44927. extra: 1348/1257,
  44928. bottom: 58/1406
  44929. }
  44930. },
  44931. gMax: {
  44932. height: math.unit(134 + 11/12, "feet"),
  44933. name: "G-Max",
  44934. image: {
  44935. source: "./media/characters/cobalt-charizard/g-max.svg",
  44936. extra: 1835/1541,
  44937. bottom: 151/1986
  44938. }
  44939. },
  44940. },
  44941. [
  44942. {
  44943. name: "Normal",
  44944. height: math.unit(8 + 5/12, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(6 + 3/12, "feet"),
  44954. weight: math.unit(210, "lb"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/stella/front.svg",
  44958. extra: 3549/3335,
  44959. bottom: 51/3600
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(6 + 3/12, "feet"),
  44967. default: true
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44973. {
  44974. front: {
  44975. height: math.unit(5, "feet"),
  44976. weight: math.unit(90, "lb"),
  44977. name: "Front",
  44978. image: {
  44979. source: "./media/characters/riley-bishop/front.svg",
  44980. extra: 1450/1428,
  44981. bottom: 152/1602
  44982. }
  44983. },
  44984. },
  44985. [
  44986. {
  44987. name: "Normal",
  44988. height: math.unit(5, "feet"),
  44989. default: true
  44990. },
  44991. ]
  44992. ))
  44993. characterMakers.push(() => makeCharacter(
  44994. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44995. {
  44996. side: {
  44997. height: math.unit(8 + 2/12, "feet"),
  44998. weight: math.unit(500, "kg"),
  44999. name: "Side",
  45000. image: {
  45001. source: "./media/characters/theo-arcanine/side.svg",
  45002. extra: 1342/1074,
  45003. bottom: 111/1453
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(8 + 2/12, "feet"),
  45011. default: true
  45012. },
  45013. ]
  45014. ))
  45015. characterMakers.push(() => makeCharacter(
  45016. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45017. {
  45018. front: {
  45019. height: math.unit(4, "feet"),
  45020. name: "Front",
  45021. image: {
  45022. source: "./media/characters/kali/front.svg",
  45023. extra: 1921/1357,
  45024. bottom: 70/1991
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Normal",
  45031. height: math.unit(4, "feet"),
  45032. default: true
  45033. },
  45034. {
  45035. name: "Macro",
  45036. height: math.unit(32, "meters")
  45037. },
  45038. {
  45039. name: "Macro+",
  45040. height: math.unit(150, "meters")
  45041. },
  45042. {
  45043. name: "Megamacro",
  45044. height: math.unit(7500, "meters")
  45045. },
  45046. {
  45047. name: "Megamacro+",
  45048. height: math.unit(80, "kilometers")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45054. {
  45055. side: {
  45056. height: math.unit(5 + 11/12, "feet"),
  45057. weight: math.unit(236, "lb"),
  45058. name: "Side",
  45059. image: {
  45060. source: "./media/characters/gapp/side.svg",
  45061. extra: 775/340,
  45062. bottom: 58/833
  45063. }
  45064. },
  45065. mouth: {
  45066. height: math.unit(2.98, "feet"),
  45067. name: "Mouth",
  45068. image: {
  45069. source: "./media/characters/gapp/mouth.svg"
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(5 + 1/12, "feet"),
  45077. default: true
  45078. },
  45079. ]
  45080. ))
  45081. characterMakers.push(() => makeCharacter(
  45082. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45083. {
  45084. front: {
  45085. height: math.unit(6, "feet"),
  45086. name: "Front",
  45087. image: {
  45088. source: "./media/characters/persephone/front.svg",
  45089. extra: 1895/1717,
  45090. bottom: 96/1991
  45091. }
  45092. },
  45093. back: {
  45094. height: math.unit(6, "feet"),
  45095. name: "Back",
  45096. image: {
  45097. source: "./media/characters/persephone/back.svg",
  45098. extra: 1868/1679,
  45099. bottom: 26/1894
  45100. }
  45101. },
  45102. casual: {
  45103. height: math.unit(6, "feet"),
  45104. name: "Casual",
  45105. image: {
  45106. source: "./media/characters/persephone/casual.svg",
  45107. extra: 1713/1541,
  45108. bottom: 76/1789
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Human Size",
  45115. height: math.unit(6, "feet")
  45116. },
  45117. {
  45118. name: "Big Steppy",
  45119. height: math.unit(600, "meters"),
  45120. default: true
  45121. },
  45122. {
  45123. name: "Galaxy Brain",
  45124. height: math.unit(1, "zettameter")
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45130. {
  45131. front: {
  45132. height: math.unit(1.85, "meters"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/riley-foxthing/front.svg",
  45136. extra: 1495/1354,
  45137. bottom: 122/1617
  45138. }
  45139. },
  45140. frontAlt: {
  45141. height: math.unit(1.85, "meters"),
  45142. name: "Front (Alt)",
  45143. image: {
  45144. source: "./media/characters/riley-foxthing/front-alt.svg",
  45145. extra: 1572/1389,
  45146. bottom: 116/1688
  45147. }
  45148. },
  45149. },
  45150. [
  45151. {
  45152. name: "Normal Sized",
  45153. height: math.unit(1.85, "meters"),
  45154. default: true
  45155. },
  45156. {
  45157. name: "Quite Sizable",
  45158. height: math.unit(5, "meters")
  45159. },
  45160. {
  45161. name: "Rather Large",
  45162. height: math.unit(20, "meters")
  45163. },
  45164. {
  45165. name: "Macro",
  45166. height: math.unit(450, "meters")
  45167. },
  45168. {
  45169. name: "Giga",
  45170. height: math.unit(5, "km")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45176. {
  45177. front: {
  45178. height: math.unit(6, "feet"),
  45179. weight: math.unit(200, "lb"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/blizzard/front.svg",
  45183. extra: 1136/990,
  45184. bottom: 136/1272
  45185. }
  45186. },
  45187. back: {
  45188. height: math.unit(6, "feet"),
  45189. weight: math.unit(200, "lb"),
  45190. name: "Back",
  45191. image: {
  45192. source: "./media/characters/blizzard/back.svg",
  45193. extra: 1175/1034,
  45194. bottom: 97/1272
  45195. }
  45196. },
  45197. sitting: {
  45198. height: math.unit(3.725, "feet"),
  45199. weight: math.unit(200, "lb"),
  45200. name: "Sitting",
  45201. image: {
  45202. source: "./media/characters/blizzard/sitting.svg",
  45203. extra: 581/485,
  45204. bottom: 90/671
  45205. }
  45206. },
  45207. frontWizard: {
  45208. height: math.unit(7.9, "feet"),
  45209. weight: math.unit(200, "lb"),
  45210. name: "Front (Wizard)",
  45211. image: {
  45212. source: "./media/characters/blizzard/front-wizard.svg"
  45213. }
  45214. },
  45215. backWizard: {
  45216. height: math.unit(7.9, "feet"),
  45217. weight: math.unit(200, "lb"),
  45218. name: "Back (Wizard)",
  45219. image: {
  45220. source: "./media/characters/blizzard/back-wizard.svg"
  45221. }
  45222. },
  45223. frontNsfw: {
  45224. height: math.unit(6, "feet"),
  45225. weight: math.unit(200, "lb"),
  45226. name: "Front (NSFW)",
  45227. image: {
  45228. source: "./media/characters/blizzard/front-nsfw.svg",
  45229. extra: 1136/990,
  45230. bottom: 136/1272
  45231. }
  45232. },
  45233. backNsfw: {
  45234. height: math.unit(6, "feet"),
  45235. weight: math.unit(200, "lb"),
  45236. name: "Back (NSFW)",
  45237. image: {
  45238. source: "./media/characters/blizzard/back-nsfw.svg",
  45239. extra: 1175/1034,
  45240. bottom: 97/1272
  45241. }
  45242. },
  45243. sittingNsfw: {
  45244. height: math.unit(3.725, "feet"),
  45245. weight: math.unit(200, "lb"),
  45246. name: "Sitting (NSFW)",
  45247. image: {
  45248. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45249. extra: 581/485,
  45250. bottom: 90/671
  45251. }
  45252. },
  45253. wizardFrontNsfw: {
  45254. height: math.unit(7.9, "feet"),
  45255. weight: math.unit(200, "lb"),
  45256. name: "Wizard (Front, NSFW)",
  45257. image: {
  45258. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Normal",
  45265. height: math.unit(6, "feet"),
  45266. default: true
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45272. {
  45273. front: {
  45274. height: math.unit(5 + 2/12, "feet"),
  45275. name: "Front",
  45276. image: {
  45277. source: "./media/characters/lumi/front.svg",
  45278. extra: 1328/1268,
  45279. bottom: 103/1431
  45280. }
  45281. },
  45282. back: {
  45283. height: math.unit(5 + 2/12, "feet"),
  45284. name: "Back",
  45285. image: {
  45286. source: "./media/characters/lumi/back.svg",
  45287. extra: 1381/1327,
  45288. bottom: 43/1424
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(5 + 2/12, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(5 + 9/12, "feet"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/aliya-cotton/front.svg",
  45308. extra: 577/564,
  45309. bottom: 29/606
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(5 + 9/12, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(2.7, "meters"),
  45326. weight: math.unit(25000, "lb"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/noah-luxray/front.svg",
  45330. extra: 1644/825,
  45331. bottom: 339/1983
  45332. }
  45333. },
  45334. side: {
  45335. height: math.unit(2.97, "meters"),
  45336. weight: math.unit(25000, "lb"),
  45337. name: "Side",
  45338. image: {
  45339. source: "./media/characters/noah-luxray/side.svg",
  45340. extra: 1319/650,
  45341. bottom: 163/1482
  45342. }
  45343. },
  45344. dick: {
  45345. height: math.unit(7.4, "feet"),
  45346. weight: math.unit(2500, "lb"),
  45347. name: "Dick",
  45348. image: {
  45349. source: "./media/characters/noah-luxray/dick.svg"
  45350. }
  45351. },
  45352. dickAlt: {
  45353. height: math.unit(10.83, "feet"),
  45354. weight: math.unit(2500, "lb"),
  45355. name: "Dick-alt",
  45356. image: {
  45357. source: "./media/characters/noah-luxray/dick-alt.svg"
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "BIG",
  45364. height: math.unit(2.7, "meters"),
  45365. default: true
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45371. {
  45372. standing: {
  45373. height: math.unit(183, "cm"),
  45374. weight: math.unit(68, "kg"),
  45375. name: "Standing",
  45376. image: {
  45377. source: "./media/characters/arion/standing.svg",
  45378. extra: 1869/1807,
  45379. bottom: 93/1962
  45380. }
  45381. },
  45382. reclining: {
  45383. height: math.unit(70.5, "cm"),
  45384. weight: math.unit(68, "lb"),
  45385. name: "Reclining",
  45386. image: {
  45387. source: "./media/characters/arion/reclining.svg",
  45388. extra: 937/870,
  45389. bottom: 63/1000
  45390. }
  45391. },
  45392. },
  45393. [
  45394. {
  45395. name: "Colossus Size, Low",
  45396. height: math.unit(33, "meters"),
  45397. default: true
  45398. },
  45399. {
  45400. name: "Colossus Size, Mid",
  45401. height: math.unit(52, "meters")
  45402. },
  45403. {
  45404. name: "Colossus Size, High",
  45405. height: math.unit(60, "meters")
  45406. },
  45407. {
  45408. name: "Titan Size, Low",
  45409. height: math.unit(91, "meters"),
  45410. },
  45411. {
  45412. name: "Titan Size, Mid",
  45413. height: math.unit(122, "meters")
  45414. },
  45415. {
  45416. name: "Titan Size, High",
  45417. height: math.unit(162, "meters")
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(53, "meters"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/stellar-marbey/front.svg",
  45429. extra: 1913/1805,
  45430. bottom: 92/2005
  45431. }
  45432. },
  45433. back: {
  45434. height: math.unit(53, "meters"),
  45435. name: "Back",
  45436. image: {
  45437. source: "./media/characters/stellar-marbey/back.svg",
  45438. extra: 1960/1851,
  45439. bottom: 28/1988
  45440. }
  45441. },
  45442. mouth: {
  45443. height: math.unit(3.5, "meters"),
  45444. name: "Mouth",
  45445. image: {
  45446. source: "./media/characters/stellar-marbey/mouth.svg"
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Macro",
  45453. height: math.unit(53, "meters"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45460. {
  45461. front: {
  45462. height: math.unit(8 + 1/12, "feet"),
  45463. weight: math.unit(233, "lb"),
  45464. name: "Front",
  45465. image: {
  45466. source: "./media/characters/matsu/front.svg",
  45467. extra: 832/772,
  45468. bottom: 40/872
  45469. }
  45470. },
  45471. back: {
  45472. height: math.unit(8 + 1/12, "feet"),
  45473. weight: math.unit(233, "lb"),
  45474. name: "Back",
  45475. image: {
  45476. source: "./media/characters/matsu/back.svg",
  45477. extra: 839/780,
  45478. bottom: 47/886
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Normal",
  45485. height: math.unit(8 + 1/12, "feet"),
  45486. default: true
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45492. {
  45493. front: {
  45494. height: math.unit(4, "feet"),
  45495. weight: math.unit(148, "lb"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/thiz/front.svg",
  45499. extra: 1913/1748,
  45500. bottom: 62/1975
  45501. }
  45502. },
  45503. },
  45504. [
  45505. {
  45506. name: "Normal",
  45507. height: math.unit(4, "feet"),
  45508. default: true
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45514. {
  45515. front: {
  45516. height: math.unit(7 + 6/12, "feet"),
  45517. weight: math.unit(267, "lb"),
  45518. name: "Front",
  45519. image: {
  45520. source: "./media/characters/marcel/front.svg",
  45521. extra: 1221/1096,
  45522. bottom: 76/1297
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(7 + 6/12, "feet"),
  45530. default: true
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45536. {
  45537. side: {
  45538. height: math.unit(42, "meters"),
  45539. name: "Side",
  45540. image: {
  45541. source: "./media/characters/flake/side.svg",
  45542. extra: 1525/1306,
  45543. bottom: 209/1734
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Normal",
  45550. height: math.unit(42, "meters"),
  45551. default: true
  45552. },
  45553. ]
  45554. ))
  45555. characterMakers.push(() => makeCharacter(
  45556. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45557. {
  45558. dressed: {
  45559. height: math.unit(6 + 4/12, "feet"),
  45560. weight: math.unit(520, "lb"),
  45561. name: "Dressed",
  45562. image: {
  45563. source: "./media/characters/someonne/dressed.svg",
  45564. extra: 1020/1010,
  45565. bottom: 178/1198
  45566. }
  45567. },
  45568. undressed: {
  45569. height: math.unit(6 + 4/12, "feet"),
  45570. weight: math.unit(520, "lb"),
  45571. name: "Undressed",
  45572. image: {
  45573. source: "./media/characters/someonne/undressed.svg",
  45574. extra: 1019/1014,
  45575. bottom: 169/1188
  45576. }
  45577. },
  45578. },
  45579. [
  45580. {
  45581. name: "Normal",
  45582. height: math.unit(6 + 4/12, "feet"),
  45583. default: true
  45584. },
  45585. ]
  45586. ))
  45587. characterMakers.push(() => makeCharacter(
  45588. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45589. {
  45590. front: {
  45591. height: math.unit(3, "feet"),
  45592. weight: math.unit(30, "lb"),
  45593. name: "Front",
  45594. image: {
  45595. source: "./media/characters/till/front.svg",
  45596. extra: 892/823,
  45597. bottom: 55/947
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(3, "feet"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(9 + 8/12, "feet"),
  45614. weight: math.unit(800, "lb"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/sydney-heki/front.svg",
  45618. extra: 1360/1300,
  45619. bottom: 22/1382
  45620. }
  45621. },
  45622. back: {
  45623. height: math.unit(9 + 8/12, "feet"),
  45624. weight: math.unit(800, "lb"),
  45625. name: "Back",
  45626. image: {
  45627. source: "./media/characters/sydney-heki/back.svg",
  45628. extra: 1356/1293,
  45629. bottom: 12/1368
  45630. }
  45631. },
  45632. frontDressed: {
  45633. height: math.unit(9 + 8/12, "feet"),
  45634. weight: math.unit(800, "lb"),
  45635. name: "Front-dressed",
  45636. image: {
  45637. source: "./media/characters/sydney-heki/front-dressed.svg",
  45638. extra: 1360/1300,
  45639. bottom: 22/1382
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal",
  45646. height: math.unit(9 + 8/12, "feet"),
  45647. default: true
  45648. },
  45649. {
  45650. name: "Macro",
  45651. height: math.unit(500, "feet")
  45652. },
  45653. {
  45654. name: "Megamacro",
  45655. height: math.unit(3.6, "miles")
  45656. },
  45657. ]
  45658. ))
  45659. characterMakers.push(() => makeCharacter(
  45660. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45661. {
  45662. front: {
  45663. height: math.unit(200, "cm"),
  45664. weight: math.unit(250, "lb"),
  45665. name: "Front",
  45666. image: {
  45667. source: "./media/characters/fowler-karlsson/front.svg",
  45668. extra: 897/845,
  45669. bottom: 123/1020
  45670. }
  45671. },
  45672. back: {
  45673. height: math.unit(200, "cm"),
  45674. weight: math.unit(250, "lb"),
  45675. name: "Back",
  45676. image: {
  45677. source: "./media/characters/fowler-karlsson/back.svg",
  45678. extra: 999/944,
  45679. bottom: 26/1025
  45680. }
  45681. },
  45682. dick: {
  45683. height: math.unit(1.92, "feet"),
  45684. weight: math.unit(150, "lb"),
  45685. name: "Dick",
  45686. image: {
  45687. source: "./media/characters/fowler-karlsson/dick.svg"
  45688. }
  45689. },
  45690. },
  45691. [
  45692. {
  45693. name: "Normal",
  45694. height: math.unit(200, "cm"),
  45695. default: true
  45696. },
  45697. {
  45698. name: "Smaller Macro",
  45699. height: math.unit(90, "m")
  45700. },
  45701. {
  45702. name: "Macro",
  45703. height: math.unit(150, "m")
  45704. },
  45705. {
  45706. name: "Bigger Macro",
  45707. height: math.unit(300, "m")
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45713. {
  45714. side: {
  45715. height: math.unit(8 + 2/12, "feet"),
  45716. weight: math.unit(1, "tonne"),
  45717. name: "Side",
  45718. image: {
  45719. source: "./media/characters/rylide/side.svg",
  45720. extra: 1318/1034,
  45721. bottom: 106/1424
  45722. }
  45723. },
  45724. sitting: {
  45725. height: math.unit(303, "cm"),
  45726. weight: math.unit(1, "tonne"),
  45727. name: "Sitting",
  45728. image: {
  45729. source: "./media/characters/rylide/sitting.svg",
  45730. extra: 1303/1103,
  45731. bottom: 36/1339
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(8 + 2/12, "feet"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45745. {
  45746. front: {
  45747. height: math.unit(5 + 10/12, "feet"),
  45748. weight: math.unit(160, "lb"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/pudask/front.svg",
  45752. extra: 1616/1590,
  45753. bottom: 161/1777
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Ferret Height",
  45760. height: math.unit(2 + 5/12, "feet")
  45761. },
  45762. {
  45763. name: "Canon Height",
  45764. height: math.unit(5 + 10/12, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(3 + 6/12, "feet"),
  45774. weight: math.unit(60, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/ramita/front.svg",
  45778. extra: 1402/1232,
  45779. bottom: 62/1464
  45780. }
  45781. },
  45782. dressed: {
  45783. height: math.unit(3 + 6/12, "feet"),
  45784. weight: math.unit(60, "lb"),
  45785. name: "Dressed",
  45786. image: {
  45787. source: "./media/characters/ramita/dressed.svg",
  45788. extra: 1534/1249,
  45789. bottom: 50/1584
  45790. }
  45791. },
  45792. },
  45793. [
  45794. {
  45795. name: "Normal",
  45796. height: math.unit(3 + 6/12, "feet"),
  45797. default: true
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45803. {
  45804. front: {
  45805. height: math.unit(8, "feet"),
  45806. name: "Front",
  45807. image: {
  45808. source: "./media/characters/ark/front.svg",
  45809. extra: 772/693,
  45810. bottom: 45/817
  45811. }
  45812. },
  45813. },
  45814. [
  45815. {
  45816. name: "Normal",
  45817. height: math.unit(8, "feet"),
  45818. default: true
  45819. },
  45820. ]
  45821. ))
  45822. characterMakers.push(() => makeCharacter(
  45823. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45824. {
  45825. front: {
  45826. height: math.unit(6, "feet"),
  45827. weight: math.unit(250, "lb"),
  45828. volume: math.unit(5/8, "gallons"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/ludwig-horn/front.svg",
  45832. extra: 1782/1635,
  45833. bottom: 96/1878
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(6, "feet"),
  45838. weight: math.unit(250, "lb"),
  45839. volume: math.unit(5/8, "gallons"),
  45840. name: "Back",
  45841. image: {
  45842. source: "./media/characters/ludwig-horn/back.svg",
  45843. extra: 1874/1729,
  45844. bottom: 27/1901
  45845. }
  45846. },
  45847. dick: {
  45848. height: math.unit(1.05, "feet"),
  45849. weight: math.unit(15, "lb"),
  45850. volume: math.unit(5/8, "gallons"),
  45851. name: "Dick",
  45852. image: {
  45853. source: "./media/characters/ludwig-horn/dick.svg"
  45854. }
  45855. },
  45856. },
  45857. [
  45858. {
  45859. name: "Small",
  45860. height: math.unit(6, "feet")
  45861. },
  45862. {
  45863. name: "Typical",
  45864. height: math.unit(12, "feet"),
  45865. default: true
  45866. },
  45867. {
  45868. name: "Building",
  45869. height: math.unit(80, "feet")
  45870. },
  45871. {
  45872. name: "Town",
  45873. height: math.unit(800, "feet")
  45874. },
  45875. {
  45876. name: "Kingdom",
  45877. height: math.unit(80000, "feet")
  45878. },
  45879. {
  45880. name: "Planet",
  45881. height: math.unit(8000000, "feet")
  45882. },
  45883. {
  45884. name: "Universe",
  45885. height: math.unit(8000000000, "feet")
  45886. },
  45887. {
  45888. name: "Transcended",
  45889. height: math.unit(8e27, "feet")
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45895. {
  45896. front: {
  45897. height: math.unit(5, "feet"),
  45898. weight: math.unit(50, "kg"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/biot-avery/front.svg",
  45902. extra: 1295/1232,
  45903. bottom: 86/1381
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Normal",
  45910. height: math.unit(5, "feet"),
  45911. default: true
  45912. },
  45913. ]
  45914. ))
  45915. characterMakers.push(() => makeCharacter(
  45916. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45917. {
  45918. front: {
  45919. height: math.unit(6, "feet"),
  45920. name: "Front",
  45921. image: {
  45922. source: "./media/characters/kitsune-kiro/front.svg",
  45923. extra: 1270/1158,
  45924. bottom: 42/1312
  45925. }
  45926. },
  45927. frontAlt: {
  45928. height: math.unit(6, "feet"),
  45929. name: "Front-alt",
  45930. image: {
  45931. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45932. extra: 1130/1081,
  45933. bottom: 36/1166
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Smol",
  45940. height: math.unit(3, "feet")
  45941. },
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(6, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(6, "feet"),
  45954. weight: math.unit(125, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/jack-thatcher/front.svg",
  45958. extra: 1474/1370,
  45959. bottom: 26/1500
  45960. }
  45961. },
  45962. back: {
  45963. height: math.unit(6, "feet"),
  45964. weight: math.unit(125, "lb"),
  45965. name: "Back",
  45966. image: {
  45967. source: "./media/characters/jack-thatcher/back.svg",
  45968. extra: 1489/1384,
  45969. bottom: 18/1507
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(6, "feet"),
  45977. default: true
  45978. },
  45979. {
  45980. name: "Macro",
  45981. height: math.unit(75, "feet")
  45982. },
  45983. {
  45984. name: "Macro-er",
  45985. height: math.unit(250, "feet")
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45991. {
  45992. front: {
  45993. height: math.unit(7, "feet"),
  45994. weight: math.unit(110, "kg"),
  45995. name: "Front",
  45996. image: {
  45997. source: "./media/characters/max-hyper/front.svg",
  45998. extra: 1969/1881,
  45999. bottom: 49/2018
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(7, "feet"),
  46007. default: true
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46013. {
  46014. front: {
  46015. height: math.unit(5 + 5/12, "feet"),
  46016. weight: math.unit(160, "lb"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/spook/front.svg",
  46020. extra: 794/791,
  46021. bottom: 54/848
  46022. }
  46023. },
  46024. back: {
  46025. height: math.unit(5 + 5/12, "feet"),
  46026. weight: math.unit(160, "lb"),
  46027. name: "Back",
  46028. image: {
  46029. source: "./media/characters/spook/back.svg",
  46030. extra: 812/798,
  46031. bottom: 32/844
  46032. }
  46033. },
  46034. },
  46035. [
  46036. {
  46037. name: "Normal",
  46038. height: math.unit(5 + 5/12, "feet"),
  46039. default: true
  46040. },
  46041. ]
  46042. ))
  46043. characterMakers.push(() => makeCharacter(
  46044. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46045. {
  46046. front: {
  46047. height: math.unit(18, "feet"),
  46048. name: "Front",
  46049. image: {
  46050. source: "./media/characters/xeaduulix/front.svg",
  46051. extra: 1380/1166,
  46052. bottom: 110/1490
  46053. }
  46054. },
  46055. back: {
  46056. height: math.unit(18, "feet"),
  46057. name: "Back",
  46058. image: {
  46059. source: "./media/characters/xeaduulix/back.svg",
  46060. extra: 1592/1170,
  46061. bottom: 128/1720
  46062. }
  46063. },
  46064. frontNsfw: {
  46065. height: math.unit(18, "feet"),
  46066. name: "Front (NSFW)",
  46067. image: {
  46068. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46069. extra: 1380/1166,
  46070. bottom: 110/1490
  46071. }
  46072. },
  46073. backNsfw: {
  46074. height: math.unit(18, "feet"),
  46075. name: "Back (NSFW)",
  46076. image: {
  46077. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46078. extra: 1592/1170,
  46079. bottom: 128/1720
  46080. }
  46081. },
  46082. },
  46083. [
  46084. {
  46085. name: "Normal",
  46086. height: math.unit(18, "feet"),
  46087. default: true
  46088. },
  46089. ]
  46090. ))
  46091. characterMakers.push(() => makeCharacter(
  46092. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46093. {
  46094. spreadWings: {
  46095. height: math.unit(20, "feet"),
  46096. name: "Spread Wings",
  46097. image: {
  46098. source: "./media/characters/fledge/spread-wings.svg",
  46099. extra: 693/635,
  46100. bottom: 26/719
  46101. }
  46102. },
  46103. front: {
  46104. height: math.unit(20, "feet"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/fledge/front.svg",
  46108. extra: 684/637,
  46109. bottom: 18/702
  46110. }
  46111. },
  46112. frontAlt: {
  46113. height: math.unit(20, "feet"),
  46114. name: "Front (Alt)",
  46115. image: {
  46116. source: "./media/characters/fledge/front-alt.svg",
  46117. extra: 708/664,
  46118. bottom: 13/721
  46119. }
  46120. },
  46121. back: {
  46122. height: math.unit(20, "feet"),
  46123. name: "Back",
  46124. image: {
  46125. source: "./media/characters/fledge/back.svg",
  46126. extra: 718/634,
  46127. bottom: 22/740
  46128. }
  46129. },
  46130. head: {
  46131. height: math.unit(5.55, "feet"),
  46132. name: "Head",
  46133. image: {
  46134. source: "./media/characters/fledge/head.svg"
  46135. }
  46136. },
  46137. headAlt: {
  46138. height: math.unit(5.1, "feet"),
  46139. name: "Head (Alt)",
  46140. image: {
  46141. source: "./media/characters/fledge/head-alt.svg"
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Small",
  46148. height: math.unit(6 + 2/12, "feet")
  46149. },
  46150. {
  46151. name: "Big",
  46152. height: math.unit(20, "feet"),
  46153. default: true
  46154. },
  46155. {
  46156. name: "Giant",
  46157. height: math.unit(100, "feet")
  46158. },
  46159. {
  46160. name: "Macro",
  46161. height: math.unit(200, "feet")
  46162. },
  46163. ]
  46164. ))
  46165. characterMakers.push(() => makeCharacter(
  46166. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46167. {
  46168. front: {
  46169. height: math.unit(1, "meter"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/atlas-morenai/front.svg",
  46173. extra: 1275/1043,
  46174. bottom: 19/1294
  46175. }
  46176. },
  46177. back: {
  46178. height: math.unit(1, "meter"),
  46179. name: "Back",
  46180. image: {
  46181. source: "./media/characters/atlas-morenai/back.svg",
  46182. extra: 1141/1001,
  46183. bottom: 25/1166
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(1, "meter"),
  46191. default: true
  46192. },
  46193. {
  46194. name: "Magic-Infused",
  46195. height: math.unit(5, "meters")
  46196. },
  46197. ]
  46198. ))
  46199. characterMakers.push(() => makeCharacter(
  46200. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46201. {
  46202. front: {
  46203. height: math.unit(5, "meters"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/cintia/front.svg",
  46207. extra: 1312/1228,
  46208. bottom: 38/1350
  46209. }
  46210. },
  46211. back: {
  46212. height: math.unit(5, "meters"),
  46213. name: "Back",
  46214. image: {
  46215. source: "./media/characters/cintia/back.svg",
  46216. extra: 1260/1166,
  46217. bottom: 98/1358
  46218. }
  46219. },
  46220. frontDick: {
  46221. height: math.unit(5, "meters"),
  46222. name: "Front (Dick)",
  46223. image: {
  46224. source: "./media/characters/cintia/front-dick.svg",
  46225. extra: 1312/1228,
  46226. bottom: 38/1350
  46227. }
  46228. },
  46229. backDick: {
  46230. height: math.unit(5, "meters"),
  46231. name: "Back (Dick)",
  46232. image: {
  46233. source: "./media/characters/cintia/back-dick.svg",
  46234. extra: 1260/1166,
  46235. bottom: 98/1358
  46236. }
  46237. },
  46238. bust: {
  46239. height: math.unit(1.97, "meters"),
  46240. name: "Bust",
  46241. image: {
  46242. source: "./media/characters/cintia/bust.svg",
  46243. extra: 617/565,
  46244. bottom: 0/617
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(5, "meters"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46258. {
  46259. side: {
  46260. height: math.unit(100, "feet"),
  46261. name: "Side",
  46262. image: {
  46263. source: "./media/characters/denora/side.svg",
  46264. extra: 875/803,
  46265. bottom: 9/884
  46266. }
  46267. },
  46268. },
  46269. [
  46270. {
  46271. name: "Standard",
  46272. height: math.unit(100, "feet"),
  46273. default: true
  46274. },
  46275. {
  46276. name: "Grand",
  46277. height: math.unit(1000, "feet")
  46278. },
  46279. {
  46280. name: "Conquering",
  46281. height: math.unit(10000, "feet")
  46282. },
  46283. ]
  46284. ))
  46285. characterMakers.push(() => makeCharacter(
  46286. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46287. {
  46288. dressed: {
  46289. height: math.unit(8 + 5/12, "feet"),
  46290. weight: math.unit(700, "lb"),
  46291. name: "Dressed",
  46292. image: {
  46293. source: "./media/characters/kiva/dressed.svg",
  46294. extra: 1102/1055,
  46295. bottom: 60/1162
  46296. }
  46297. },
  46298. nude: {
  46299. height: math.unit(8 + 5/12, "feet"),
  46300. weight: math.unit(700, "lb"),
  46301. name: "Nude",
  46302. image: {
  46303. source: "./media/characters/kiva/nude.svg",
  46304. extra: 1102/1055,
  46305. bottom: 60/1162
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Base Height",
  46312. height: math.unit(8 + 5/12, "feet"),
  46313. default: true
  46314. },
  46315. {
  46316. name: "Macro",
  46317. height: math.unit(100, "feet")
  46318. },
  46319. {
  46320. name: "Max",
  46321. height: math.unit(3280, "feet")
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(6 + 8/12, "feet"),
  46330. weight: math.unit(250, "lb"),
  46331. name: "Front",
  46332. image: {
  46333. source: "./media/characters/ztragon/front.svg",
  46334. extra: 1825/1684,
  46335. bottom: 98/1923
  46336. }
  46337. },
  46338. },
  46339. [
  46340. {
  46341. name: "Normal",
  46342. height: math.unit(6 + 8/12, "feet"),
  46343. default: true
  46344. },
  46345. {
  46346. name: "Macro",
  46347. height: math.unit(80, "feet")
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46353. {
  46354. front: {
  46355. height: math.unit(10.4, "feet"),
  46356. weight: math.unit(2, "tons"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/yesenia/front.svg",
  46360. extra: 1479/1474,
  46361. bottom: 233/1712
  46362. }
  46363. },
  46364. },
  46365. [
  46366. {
  46367. name: "Normal",
  46368. height: math.unit(10.4, "feet"),
  46369. default: true
  46370. },
  46371. ]
  46372. ))
  46373. characterMakers.push(() => makeCharacter(
  46374. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46375. {
  46376. normal: {
  46377. height: math.unit(6 + 1/12, "feet"),
  46378. weight: math.unit(180, "lb"),
  46379. name: "Normal",
  46380. image: {
  46381. source: "./media/characters/leanne-lycheborne/normal.svg",
  46382. extra: 1748/1660,
  46383. bottom: 98/1846
  46384. }
  46385. },
  46386. were: {
  46387. height: math.unit(12, "feet"),
  46388. weight: math.unit(1600, "lb"),
  46389. name: "Were",
  46390. image: {
  46391. source: "./media/characters/leanne-lycheborne/were.svg",
  46392. extra: 1485/1432,
  46393. bottom: 66/1551
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(6 + 1/12, "feet"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46407. {
  46408. side: {
  46409. height: math.unit(13, "feet"),
  46410. name: "Side",
  46411. image: {
  46412. source: "./media/characters/kira-tyler/side.svg",
  46413. extra: 693/393,
  46414. bottom: 58/751
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(13, "feet"),
  46422. default: true
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46428. {
  46429. front: {
  46430. height: math.unit(10.3, "feet"),
  46431. weight: math.unit(150, "lb"),
  46432. name: "Front",
  46433. image: {
  46434. source: "./media/characters/blaze/front.svg",
  46435. extra: 1378/1286,
  46436. bottom: 172/1550
  46437. }
  46438. },
  46439. },
  46440. [
  46441. {
  46442. name: "Normal",
  46443. height: math.unit(10.3, "feet"),
  46444. default: true
  46445. },
  46446. ]
  46447. ))
  46448. characterMakers.push(() => makeCharacter(
  46449. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46450. {
  46451. side: {
  46452. height: math.unit(2, "meters"),
  46453. weight: math.unit(400, "kg"),
  46454. name: "Side",
  46455. image: {
  46456. source: "./media/characters/anu/side.svg",
  46457. extra: 506/394,
  46458. bottom: 18/524
  46459. }
  46460. },
  46461. },
  46462. [
  46463. {
  46464. name: "Humanoid",
  46465. height: math.unit(2, "meters")
  46466. },
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(5, "meters"),
  46470. default: true
  46471. },
  46472. ]
  46473. ))
  46474. characterMakers.push(() => makeCharacter(
  46475. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46476. {
  46477. front: {
  46478. height: math.unit(5 + 5/12, "feet"),
  46479. weight: math.unit(170, "lb"),
  46480. name: "Front",
  46481. image: {
  46482. source: "./media/characters/synx-the-lynx/front.svg",
  46483. extra: 1893/1745,
  46484. bottom: 17/1910
  46485. }
  46486. },
  46487. side: {
  46488. height: math.unit(5 + 5/12, "feet"),
  46489. weight: math.unit(170, "lb"),
  46490. name: "Side",
  46491. image: {
  46492. source: "./media/characters/synx-the-lynx/side.svg",
  46493. extra: 1884/1740,
  46494. bottom: 39/1923
  46495. }
  46496. },
  46497. back: {
  46498. height: math.unit(5 + 5/12, "feet"),
  46499. weight: math.unit(170, "lb"),
  46500. name: "Back",
  46501. image: {
  46502. source: "./media/characters/synx-the-lynx/back.svg",
  46503. extra: 1903/1755,
  46504. bottom: 14/1917
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(5 + 5/12, "feet"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46518. {
  46519. back: {
  46520. height: math.unit(15, "feet"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/nadezda-fex/back.svg",
  46524. extra: 1695/1481,
  46525. bottom: 25/1720
  46526. }
  46527. },
  46528. },
  46529. [
  46530. {
  46531. name: "Normal",
  46532. height: math.unit(15, "feet"),
  46533. default: true
  46534. },
  46535. {
  46536. name: "Macro",
  46537. height: math.unit(2.5, "miles")
  46538. },
  46539. {
  46540. name: "Goddess",
  46541. height: math.unit(2, "multiverses")
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(216, "cm"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/lev/front.svg",
  46553. extra: 1728/1670,
  46554. bottom: 82/1810
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(216, "cm"),
  46559. name: "Back",
  46560. image: {
  46561. source: "./media/characters/lev/back.svg",
  46562. extra: 1738/1675,
  46563. bottom: 24/1762
  46564. }
  46565. },
  46566. dressed: {
  46567. height: math.unit(216, "cm"),
  46568. name: "Dressed",
  46569. image: {
  46570. source: "./media/characters/lev/dressed.svg",
  46571. extra: 1397/1351,
  46572. bottom: 73/1470
  46573. }
  46574. },
  46575. head: {
  46576. height: math.unit(0.51, "meter"),
  46577. name: "Head",
  46578. image: {
  46579. source: "./media/characters/lev/head.svg"
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(216, "cm"),
  46587. default: true
  46588. },
  46589. {
  46590. name: "Relatively Macro",
  46591. height: math.unit(80, "meters")
  46592. },
  46593. {
  46594. name: "Megamacro",
  46595. height: math.unit(21600, "meters")
  46596. },
  46597. {
  46598. name: "Megamacro+",
  46599. height: math.unit(64800, "meters")
  46600. },
  46601. ]
  46602. ))
  46603. characterMakers.push(() => makeCharacter(
  46604. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46605. {
  46606. front: {
  46607. height: math.unit(2, "meters"),
  46608. weight: math.unit(80, "kg"),
  46609. name: "Front",
  46610. image: {
  46611. source: "./media/characters/moka/front.svg",
  46612. extra: 1337/1255,
  46613. bottom: 58/1395
  46614. }
  46615. },
  46616. },
  46617. [
  46618. {
  46619. name: "Micro",
  46620. height: math.unit(15, "cm")
  46621. },
  46622. {
  46623. name: "Normal",
  46624. height: math.unit(2, "meters"),
  46625. default: true
  46626. },
  46627. {
  46628. name: "Macro",
  46629. height: math.unit(20, "meters"),
  46630. },
  46631. ]
  46632. ))
  46633. characterMakers.push(() => makeCharacter(
  46634. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46635. {
  46636. front: {
  46637. height: math.unit(9, "feet"),
  46638. weight: math.unit(240, "lb"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/kuzco/front.svg",
  46642. extra: 1593/1487,
  46643. bottom: 32/1625
  46644. }
  46645. },
  46646. side: {
  46647. height: math.unit(9, "feet"),
  46648. weight: math.unit(240, "lb"),
  46649. name: "Side",
  46650. image: {
  46651. source: "./media/characters/kuzco/side.svg",
  46652. extra: 1575/1485,
  46653. bottom: 30/1605
  46654. }
  46655. },
  46656. back: {
  46657. height: math.unit(9, "feet"),
  46658. weight: math.unit(240, "lb"),
  46659. name: "Back",
  46660. image: {
  46661. source: "./media/characters/kuzco/back.svg",
  46662. extra: 1603/1514,
  46663. bottom: 14/1617
  46664. }
  46665. },
  46666. },
  46667. [
  46668. {
  46669. name: "Normal",
  46670. height: math.unit(9, "feet"),
  46671. default: true
  46672. },
  46673. ]
  46674. ))
  46675. characterMakers.push(() => makeCharacter(
  46676. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46677. {
  46678. side: {
  46679. height: math.unit(2, "meters"),
  46680. weight: math.unit(300, "kg"),
  46681. name: "Side",
  46682. image: {
  46683. source: "./media/characters/ceruleus/side.svg",
  46684. extra: 1068/974,
  46685. bottom: 126/1194
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Normal",
  46692. height: math.unit(16, "meters"),
  46693. default: true
  46694. },
  46695. ]
  46696. ))
  46697. characterMakers.push(() => makeCharacter(
  46698. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46699. {
  46700. front: {
  46701. height: math.unit(9, "feet"),
  46702. weight: math.unit(500, "kg"),
  46703. name: "Front",
  46704. image: {
  46705. source: "./media/characters/acouya/front.svg",
  46706. extra: 1660/1473,
  46707. bottom: 28/1688
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(9, "feet"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(5 + 6/12, "feet"),
  46724. weight: math.unit(195, "lb"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/vant/front.svg",
  46728. extra: 1396/1320,
  46729. bottom: 20/1416
  46730. }
  46731. },
  46732. back: {
  46733. height: math.unit(5 + 6/12, "feet"),
  46734. weight: math.unit(195, "lb"),
  46735. name: "Back",
  46736. image: {
  46737. source: "./media/characters/vant/back.svg",
  46738. extra: 1396/1320,
  46739. bottom: 20/1416
  46740. }
  46741. },
  46742. maw: {
  46743. height: math.unit(0.75, "feet"),
  46744. name: "Maw",
  46745. image: {
  46746. source: "./media/characters/vant/maw.svg"
  46747. }
  46748. },
  46749. paw: {
  46750. height: math.unit(1.07, "feet"),
  46751. name: "Paw",
  46752. image: {
  46753. source: "./media/characters/vant/paw.svg"
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Micro",
  46760. height: math.unit(0.25, "inches")
  46761. },
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(5 + 6/12, "feet"),
  46765. default: true
  46766. },
  46767. {
  46768. name: "Macro",
  46769. height: math.unit(75, "feet")
  46770. },
  46771. ]
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(30, "meters"),
  46778. weight: math.unit(363, "tons"),
  46779. name: "Front",
  46780. image: {
  46781. source: "./media/characters/ahra/front.svg",
  46782. extra: 1914/1814,
  46783. bottom: 46/1960
  46784. }
  46785. },
  46786. },
  46787. [
  46788. {
  46789. name: "Macro",
  46790. height: math.unit(30, "meters"),
  46791. default: true
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46797. {
  46798. undressed: {
  46799. height: math.unit(2, "m"),
  46800. weight: math.unit(250, "kg"),
  46801. name: "Undressed",
  46802. image: {
  46803. source: "./media/characters/coriander/undressed.svg",
  46804. extra: 1757/1606,
  46805. bottom: 107/1864
  46806. }
  46807. },
  46808. dressed: {
  46809. height: math.unit(2, "m"),
  46810. weight: math.unit(250, "kg"),
  46811. name: "Dressed",
  46812. image: {
  46813. source: "./media/characters/coriander/dressed.svg",
  46814. extra: 1757/1606,
  46815. bottom: 107/1864
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(4, "meters"),
  46823. default: true
  46824. },
  46825. {
  46826. name: "XL",
  46827. height: math.unit(6, "meters")
  46828. },
  46829. {
  46830. name: "XXL",
  46831. height: math.unit(8, "meters")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(6, "feet"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/syrinx/front.svg",
  46843. extra: 1557/1259,
  46844. bottom: 171/1728
  46845. }
  46846. },
  46847. },
  46848. [
  46849. {
  46850. name: "Normal",
  46851. height: math.unit(6 + 3/12, "feet"),
  46852. default: true
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(11 + 6/12, "feet"),
  46861. weight: math.unit(1.5, "tons"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/bor/front.svg",
  46865. extra: 1189/1109,
  46866. bottom: 170/1359
  46867. }
  46868. },
  46869. },
  46870. [
  46871. {
  46872. name: "Normal",
  46873. height: math.unit(11 + 6/12, "feet"),
  46874. default: true
  46875. },
  46876. {
  46877. name: "Macro",
  46878. height: math.unit(32 + 9/12, "feet")
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46884. {
  46885. anthro: {
  46886. height: math.unit(9, "feet"),
  46887. weight: math.unit(2076, "lb"),
  46888. name: "Anthro",
  46889. image: {
  46890. source: "./media/characters/abacus/anthro.svg",
  46891. extra: 1540/1494,
  46892. bottom: 233/1773
  46893. }
  46894. },
  46895. pigeon: {
  46896. height: math.unit(1, "feet"),
  46897. name: "Pigeon",
  46898. image: {
  46899. source: "./media/characters/abacus/pigeon.svg",
  46900. extra: 528/525,
  46901. bottom: 46/574
  46902. }
  46903. },
  46904. },
  46905. [
  46906. {
  46907. name: "Normal",
  46908. height: math.unit(9, "feet"),
  46909. default: true
  46910. },
  46911. ]
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46915. {
  46916. side: {
  46917. height: math.unit(6, "feet"),
  46918. name: "Side",
  46919. image: {
  46920. source: "./media/characters/delkhan/side.svg",
  46921. extra: 1884/1786,
  46922. bottom: 308/2192
  46923. }
  46924. },
  46925. head: {
  46926. height: math.unit(3.38, "feet"),
  46927. name: "Head",
  46928. image: {
  46929. source: "./media/characters/delkhan/head.svg"
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Normal",
  46936. height: math.unit(72, "feet"),
  46937. default: true
  46938. },
  46939. {
  46940. name: "Giant",
  46941. height: math.unit(172, "feet")
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46947. {
  46948. standing: {
  46949. height: math.unit(6, "feet"),
  46950. name: "Standing",
  46951. image: {
  46952. source: "./media/characters/euchidat/standing.svg",
  46953. extra: 1612/1553,
  46954. bottom: 116/1728
  46955. }
  46956. },
  46957. leaning: {
  46958. height: math.unit(6, "feet"),
  46959. name: "Leaning",
  46960. image: {
  46961. source: "./media/characters/euchidat/leaning.svg",
  46962. extra: 1719/1674,
  46963. bottom: 27/1746
  46964. }
  46965. },
  46966. },
  46967. [
  46968. {
  46969. name: "Normal",
  46970. height: math.unit(175, "feet"),
  46971. default: true
  46972. },
  46973. {
  46974. name: "Megamacro",
  46975. height: math.unit(190, "miles")
  46976. },
  46977. {
  46978. name: "Gigamacro",
  46979. height: math.unit(190000, "miles")
  46980. },
  46981. ]
  46982. ))
  46983. characterMakers.push(() => makeCharacter(
  46984. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46985. {
  46986. front: {
  46987. height: math.unit(6, "feet"),
  46988. weight: math.unit(150, "lb"),
  46989. name: "Front",
  46990. image: {
  46991. source: "./media/characters/rebecca-stack/front.svg",
  46992. extra: 1256/1201,
  46993. bottom: 18/1274
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Normal",
  47000. height: math.unit(5 + 8/12, "feet"),
  47001. default: true
  47002. },
  47003. {
  47004. name: "Demolitionist",
  47005. height: math.unit(200, "feet")
  47006. },
  47007. {
  47008. name: "Out of Control",
  47009. height: math.unit(2, "miles")
  47010. },
  47011. {
  47012. name: "Giga",
  47013. height: math.unit(7200, "miles")
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47019. {
  47020. front: {
  47021. height: math.unit(6, "feet"),
  47022. weight: math.unit(150, "lb"),
  47023. name: "Front",
  47024. image: {
  47025. source: "./media/characters/jenny-cartwright/front.svg",
  47026. extra: 1384/1376,
  47027. bottom: 58/1442
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(6 + 7/12, "feet"),
  47035. default: true
  47036. },
  47037. {
  47038. name: "Librarian",
  47039. height: math.unit(55, "feet")
  47040. },
  47041. {
  47042. name: "Sightseer",
  47043. height: math.unit(50, "miles")
  47044. },
  47045. {
  47046. name: "Giga",
  47047. height: math.unit(30000, "miles")
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47053. {
  47054. nude: {
  47055. height: math.unit(8, "feet"),
  47056. weight: math.unit(225, "lb"),
  47057. name: "Nude",
  47058. image: {
  47059. source: "./media/characters/marvy/nude.svg",
  47060. extra: 1900/1683,
  47061. bottom: 89/1989
  47062. }
  47063. },
  47064. dressed: {
  47065. height: math.unit(8, "feet"),
  47066. weight: math.unit(225, "lb"),
  47067. name: "Dressed",
  47068. image: {
  47069. source: "./media/characters/marvy/dressed.svg",
  47070. extra: 1900/1683,
  47071. bottom: 89/1989
  47072. }
  47073. },
  47074. head: {
  47075. height: math.unit(2.85, "feet"),
  47076. name: "Head",
  47077. image: {
  47078. source: "./media/characters/marvy/head.svg"
  47079. }
  47080. },
  47081. },
  47082. [
  47083. {
  47084. name: "Normal",
  47085. height: math.unit(8, "feet"),
  47086. default: true
  47087. },
  47088. ]
  47089. ))
  47090. characterMakers.push(() => makeCharacter(
  47091. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47092. {
  47093. front: {
  47094. height: math.unit(8, "feet"),
  47095. weight: math.unit(250, "lb"),
  47096. name: "Front",
  47097. image: {
  47098. source: "./media/characters/leah/front.svg",
  47099. extra: 1257/1149,
  47100. bottom: 109/1366
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(8, "feet"),
  47108. default: true
  47109. },
  47110. {
  47111. name: "Minimacro",
  47112. height: math.unit(40, "feet")
  47113. },
  47114. {
  47115. name: "Macro",
  47116. height: math.unit(124, "feet")
  47117. },
  47118. {
  47119. name: "Megamacro",
  47120. height: math.unit(850, "feet")
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47126. {
  47127. side: {
  47128. height: math.unit(13 + 6/12, "feet"),
  47129. weight: math.unit(3200, "lb"),
  47130. name: "Side",
  47131. image: {
  47132. source: "./media/characters/alvir/side.svg",
  47133. extra: 896/589,
  47134. bottom: 26/922
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(13 + 6/12, "feet"),
  47142. default: true
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47148. {
  47149. front: {
  47150. height: math.unit(5 + 4/12, "feet"),
  47151. weight: math.unit(236, "lb"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/zaina-khalil/front.svg",
  47155. extra: 1533/1485,
  47156. bottom: 94/1627
  47157. }
  47158. },
  47159. side: {
  47160. height: math.unit(5 + 4/12, "feet"),
  47161. weight: math.unit(236, "lb"),
  47162. name: "Side",
  47163. image: {
  47164. source: "./media/characters/zaina-khalil/side.svg",
  47165. extra: 1537/1498,
  47166. bottom: 66/1603
  47167. }
  47168. },
  47169. back: {
  47170. height: math.unit(5 + 4/12, "feet"),
  47171. weight: math.unit(236, "lb"),
  47172. name: "Back",
  47173. image: {
  47174. source: "./media/characters/zaina-khalil/back.svg",
  47175. extra: 1546/1494,
  47176. bottom: 89/1635
  47177. }
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Normal",
  47183. height: math.unit(5 + 4/12, "feet"),
  47184. default: true
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47190. {
  47191. side: {
  47192. height: math.unit(12, "feet"),
  47193. weight: math.unit(4000, "lb"),
  47194. name: "Side",
  47195. image: {
  47196. source: "./media/characters/terry/side.svg",
  47197. extra: 1518/1439,
  47198. bottom: 149/1667
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(12, "feet"),
  47206. default: true
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(12, "feet"),
  47215. weight: math.unit(1500, "lb"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/kahea/front.svg",
  47219. extra: 1722/1617,
  47220. bottom: 179/1901
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Normal",
  47227. height: math.unit(12, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47234. {
  47235. demonFront: {
  47236. height: math.unit(36, "feet"),
  47237. name: "Front",
  47238. image: {
  47239. source: "./media/characters/alex-xuria/demon-front.svg",
  47240. extra: 1705/1673,
  47241. bottom: 198/1903
  47242. },
  47243. form: "demon",
  47244. default: true
  47245. },
  47246. demonBack: {
  47247. height: math.unit(36, "feet"),
  47248. name: "Back",
  47249. image: {
  47250. source: "./media/characters/alex-xuria/demon-back.svg",
  47251. extra: 1725/1693,
  47252. bottom: 70/1795
  47253. },
  47254. form: "demon"
  47255. },
  47256. demonHead: {
  47257. height: math.unit(2.14, "meters"),
  47258. name: "Head",
  47259. image: {
  47260. source: "./media/characters/alex-xuria/demon-head.svg"
  47261. },
  47262. form: "demon"
  47263. },
  47264. demonHand: {
  47265. height: math.unit(1.61, "meters"),
  47266. name: "Hand",
  47267. image: {
  47268. source: "./media/characters/alex-xuria/demon-hand.svg"
  47269. },
  47270. form: "demon"
  47271. },
  47272. demonPaw: {
  47273. height: math.unit(1.35, "meters"),
  47274. name: "Paw",
  47275. image: {
  47276. source: "./media/characters/alex-xuria/demon-paw.svg"
  47277. },
  47278. form: "demon"
  47279. },
  47280. demonFoot: {
  47281. height: math.unit(2.2, "meters"),
  47282. name: "Foot",
  47283. image: {
  47284. source: "./media/characters/alex-xuria/demon-foot.svg"
  47285. },
  47286. form: "demon"
  47287. },
  47288. demonCock: {
  47289. height: math.unit(1.74, "meters"),
  47290. name: "Cock",
  47291. image: {
  47292. source: "./media/characters/alex-xuria/demon-cock.svg"
  47293. },
  47294. form: "demon"
  47295. },
  47296. demonTailClosed: {
  47297. height: math.unit(1.47, "meters"),
  47298. name: "Tail (Closed)",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47301. },
  47302. form: "demon"
  47303. },
  47304. demonTailOpen: {
  47305. height: math.unit(2.85, "meters"),
  47306. name: "Tail (Open)",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47309. },
  47310. form: "demon"
  47311. },
  47312. incubusFront: {
  47313. height: math.unit(12, "feet"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/incubus-front.svg",
  47317. extra: 1754/1677,
  47318. bottom: 125/1879
  47319. },
  47320. form: "incubus",
  47321. default: true
  47322. },
  47323. incubusBack: {
  47324. height: math.unit(12, "feet"),
  47325. name: "Back",
  47326. image: {
  47327. source: "./media/characters/alex-xuria/incubus-back.svg",
  47328. extra: 1702/1647,
  47329. bottom: 30/1732
  47330. },
  47331. form: "incubus"
  47332. },
  47333. incubusHead: {
  47334. height: math.unit(3.45, "feet"),
  47335. name: "Head",
  47336. image: {
  47337. source: "./media/characters/alex-xuria/incubus-head.svg"
  47338. },
  47339. form: "incubus"
  47340. },
  47341. rabbitFront: {
  47342. height: math.unit(6, "feet"),
  47343. name: "Front",
  47344. image: {
  47345. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47346. extra: 1369/1349,
  47347. bottom: 45/1414
  47348. },
  47349. form: "rabbit",
  47350. default: true
  47351. },
  47352. rabbitSide: {
  47353. height: math.unit(6, "feet"),
  47354. name: "Side",
  47355. image: {
  47356. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47357. extra: 1370/1356,
  47358. bottom: 37/1407
  47359. },
  47360. form: "rabbit"
  47361. },
  47362. rabbitBack: {
  47363. height: math.unit(6, "feet"),
  47364. name: "Back",
  47365. image: {
  47366. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47367. extra: 1375/1358,
  47368. bottom: 43/1418
  47369. },
  47370. form: "rabbit"
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(6, "feet"),
  47377. default: true,
  47378. form: "rabbit"
  47379. },
  47380. {
  47381. name: "Incubus",
  47382. height: math.unit(12, "feet"),
  47383. default: true,
  47384. form: "incubus"
  47385. },
  47386. {
  47387. name: "Demon",
  47388. height: math.unit(36, "feet"),
  47389. default: true,
  47390. form: "demon"
  47391. }
  47392. ],
  47393. {
  47394. "demon": {
  47395. name: "Demon",
  47396. default: true
  47397. },
  47398. "incubus": {
  47399. name: "Incubus",
  47400. },
  47401. "rabbit": {
  47402. name: "Rabbit"
  47403. }
  47404. }
  47405. ))
  47406. characterMakers.push(() => makeCharacter(
  47407. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47408. {
  47409. front: {
  47410. height: math.unit(7 + 5/12, "feet"),
  47411. weight: math.unit(510, "lb"),
  47412. name: "Front",
  47413. image: {
  47414. source: "./media/characters/syrup/front.svg",
  47415. extra: 932/916,
  47416. bottom: 26/958
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Normal",
  47423. height: math.unit(7 + 5/12, "feet"),
  47424. default: true
  47425. },
  47426. {
  47427. name: "Big",
  47428. height: math.unit(50, "feet")
  47429. },
  47430. {
  47431. name: "Macro",
  47432. height: math.unit(300, "feet")
  47433. },
  47434. {
  47435. name: "Megamacro",
  47436. height: math.unit(1, "mile")
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47442. {
  47443. front: {
  47444. height: math.unit(6 + 9/12, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/zeimne/front.svg",
  47448. extra: 1969/1806,
  47449. bottom: 53/2022
  47450. }
  47451. },
  47452. },
  47453. [
  47454. {
  47455. name: "Normal",
  47456. height: math.unit(6 + 9/12, "feet"),
  47457. default: true
  47458. },
  47459. {
  47460. name: "Giant",
  47461. height: math.unit(550, "feet")
  47462. },
  47463. {
  47464. name: "Mega",
  47465. height: math.unit(3, "miles")
  47466. },
  47467. {
  47468. name: "Giga",
  47469. height: math.unit(250, "miles")
  47470. },
  47471. {
  47472. name: "Tera",
  47473. height: math.unit(1, "AU")
  47474. },
  47475. ]
  47476. ))
  47477. characterMakers.push(() => makeCharacter(
  47478. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47479. {
  47480. front: {
  47481. height: math.unit(5 + 2/12, "feet"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/grar/front.svg",
  47485. extra: 1331/1119,
  47486. bottom: 60/1391
  47487. }
  47488. },
  47489. back: {
  47490. height: math.unit(5 + 2/12, "feet"),
  47491. name: "Back",
  47492. image: {
  47493. source: "./media/characters/grar/back.svg",
  47494. extra: 1385/1169,
  47495. bottom: 23/1408
  47496. }
  47497. },
  47498. },
  47499. [
  47500. {
  47501. name: "Normal",
  47502. height: math.unit(5 + 2/12, "feet"),
  47503. default: true
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47509. {
  47510. front: {
  47511. height: math.unit(13 + 7/12, "feet"),
  47512. weight: math.unit(2200, "lb"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/endraya/front.svg",
  47516. extra: 1289/1215,
  47517. bottom: 50/1339
  47518. }
  47519. },
  47520. nude: {
  47521. height: math.unit(13 + 7/12, "feet"),
  47522. weight: math.unit(2200, "lb"),
  47523. name: "Nude",
  47524. image: {
  47525. source: "./media/characters/endraya/nude.svg",
  47526. extra: 1247/1171,
  47527. bottom: 40/1287
  47528. }
  47529. },
  47530. head: {
  47531. height: math.unit(2.6, "feet"),
  47532. name: "Head",
  47533. image: {
  47534. source: "./media/characters/endraya/head.svg"
  47535. }
  47536. },
  47537. slit: {
  47538. height: math.unit(3.4, "feet"),
  47539. name: "Slit",
  47540. image: {
  47541. source: "./media/characters/endraya/slit.svg"
  47542. }
  47543. },
  47544. },
  47545. [
  47546. {
  47547. name: "Normal",
  47548. height: math.unit(13 + 7/12, "feet"),
  47549. default: true
  47550. },
  47551. {
  47552. name: "Macro",
  47553. height: math.unit(200, "feet")
  47554. },
  47555. ]
  47556. ))
  47557. characterMakers.push(() => makeCharacter(
  47558. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47559. {
  47560. front: {
  47561. height: math.unit(1.81, "meters"),
  47562. weight: math.unit(69, "kg"),
  47563. name: "Front",
  47564. image: {
  47565. source: "./media/characters/rodryana/front.svg",
  47566. extra: 2002/1921,
  47567. bottom: 53/2055
  47568. }
  47569. },
  47570. back: {
  47571. height: math.unit(1.81, "meters"),
  47572. weight: math.unit(69, "kg"),
  47573. name: "Back",
  47574. image: {
  47575. source: "./media/characters/rodryana/back.svg",
  47576. extra: 1993/1926,
  47577. bottom: 48/2041
  47578. }
  47579. },
  47580. maw: {
  47581. height: math.unit(0.19769417475, "meters"),
  47582. name: "Maw",
  47583. image: {
  47584. source: "./media/characters/rodryana/maw.svg"
  47585. }
  47586. },
  47587. slit: {
  47588. height: math.unit(0.31631067961, "meters"),
  47589. name: "Slit",
  47590. image: {
  47591. source: "./media/characters/rodryana/slit.svg"
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(1.81, "meters")
  47599. },
  47600. {
  47601. name: "Mini Macro",
  47602. height: math.unit(181, "meters")
  47603. },
  47604. {
  47605. name: "Macro",
  47606. height: math.unit(452, "meters"),
  47607. default: true
  47608. },
  47609. {
  47610. name: "Mega Macro",
  47611. height: math.unit(1.375, "km")
  47612. },
  47613. {
  47614. name: "Giga Macro",
  47615. height: math.unit(13.575, "km")
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47621. {
  47622. front: {
  47623. height: math.unit(6, "feet"),
  47624. weight: math.unit(1000, "lb"),
  47625. name: "Front",
  47626. image: {
  47627. source: "./media/characters/asaya/front.svg",
  47628. extra: 1460/1200,
  47629. bottom: 71/1531
  47630. }
  47631. },
  47632. },
  47633. [
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(8, "km"),
  47637. default: true
  47638. },
  47639. ]
  47640. ))
  47641. characterMakers.push(() => makeCharacter(
  47642. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47643. {
  47644. front: {
  47645. height: math.unit(3.5, "meters"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/sarzu-and-israz/front.svg",
  47649. extra: 1570/1558,
  47650. bottom: 150/1720
  47651. },
  47652. },
  47653. back: {
  47654. height: math.unit(3.5, "meters"),
  47655. name: "Back",
  47656. image: {
  47657. source: "./media/characters/sarzu-and-israz/back.svg",
  47658. extra: 1523/1509,
  47659. bottom: 132/1655
  47660. },
  47661. },
  47662. frontFemale: {
  47663. height: math.unit(3.5, "meters"),
  47664. name: "Front (Female)",
  47665. image: {
  47666. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47667. extra: 1570/1558,
  47668. bottom: 150/1720
  47669. },
  47670. },
  47671. frontHerm: {
  47672. height: math.unit(3.5, "meters"),
  47673. name: "Front (Herm)",
  47674. image: {
  47675. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47676. extra: 1570/1558,
  47677. bottom: 150/1720
  47678. },
  47679. },
  47680. },
  47681. [
  47682. {
  47683. name: "Normal",
  47684. height: math.unit(3.5, "meters"),
  47685. default: true,
  47686. },
  47687. {
  47688. name: "Macro",
  47689. height: math.unit(65.5, "meters"),
  47690. },
  47691. ],
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47695. {
  47696. front: {
  47697. height: math.unit(6, "feet"),
  47698. weight: math.unit(250, "lb"),
  47699. name: "Front",
  47700. image: {
  47701. source: "./media/characters/zenimma/front.svg",
  47702. extra: 1346/1320,
  47703. bottom: 58/1404
  47704. }
  47705. },
  47706. back: {
  47707. height: math.unit(6, "feet"),
  47708. weight: math.unit(250, "lb"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/zenimma/back.svg",
  47712. extra: 1324/1308,
  47713. bottom: 44/1368
  47714. }
  47715. },
  47716. dick: {
  47717. height: math.unit(1.44, "feet"),
  47718. name: "Dick",
  47719. image: {
  47720. source: "./media/characters/zenimma/dick.svg"
  47721. }
  47722. },
  47723. },
  47724. [
  47725. {
  47726. name: "Canon Height",
  47727. height: math.unit(66, "miles"),
  47728. default: true
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47734. {
  47735. nude: {
  47736. height: math.unit(6, "feet"),
  47737. weight: math.unit(150, "lb"),
  47738. name: "Nude",
  47739. image: {
  47740. source: "./media/characters/shavon/nude.svg",
  47741. extra: 1242/1096,
  47742. bottom: 98/1340
  47743. }
  47744. },
  47745. dressed: {
  47746. height: math.unit(6, "feet"),
  47747. weight: math.unit(150, "lb"),
  47748. name: "Dressed",
  47749. image: {
  47750. source: "./media/characters/shavon/dressed.svg",
  47751. extra: 1242/1096,
  47752. bottom: 98/1340
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Macro",
  47759. height: math.unit(255, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(6, "feet"),
  47769. name: "Front",
  47770. image: {
  47771. source: "./media/characters/steph/front.svg",
  47772. extra: 1430/1330,
  47773. bottom: 54/1484
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(6, "feet"),
  47781. default: true
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(9, "feet"),
  47790. weight: math.unit(400, "lb"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/kil'aman/front.svg",
  47794. extra: 1210/1159,
  47795. bottom: 109/1319
  47796. }
  47797. },
  47798. head: {
  47799. height: math.unit(2.14, "feet"),
  47800. name: "Head",
  47801. image: {
  47802. source: "./media/characters/kil'aman/head.svg"
  47803. }
  47804. },
  47805. maw: {
  47806. height: math.unit(1.21, "feet"),
  47807. name: "Maw",
  47808. image: {
  47809. source: "./media/characters/kil'aman/maw.svg"
  47810. }
  47811. },
  47812. foot: {
  47813. height: math.unit(1.7, "feet"),
  47814. name: "Foot",
  47815. image: {
  47816. source: "./media/characters/kil'aman/foot.svg"
  47817. }
  47818. },
  47819. dick: {
  47820. height: math.unit(2.1, "feet"),
  47821. name: "Dick",
  47822. image: {
  47823. source: "./media/characters/kil'aman/dick.svg"
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Normal",
  47830. height: math.unit(9, "feet")
  47831. },
  47832. {
  47833. name: "Canon Height",
  47834. height: math.unit(10, "miles"),
  47835. default: true
  47836. },
  47837. {
  47838. name: "Maximum",
  47839. height: math.unit(6e9, "miles")
  47840. },
  47841. ]
  47842. ))
  47843. characterMakers.push(() => makeCharacter(
  47844. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47845. {
  47846. front: {
  47847. height: math.unit(90, "feet"),
  47848. weight: math.unit(675000, "lb"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/qadan/front.svg",
  47852. extra: 1012/1004,
  47853. bottom: 78/1090
  47854. }
  47855. },
  47856. back: {
  47857. height: math.unit(90, "feet"),
  47858. weight: math.unit(675000, "lb"),
  47859. name: "Back",
  47860. image: {
  47861. source: "./media/characters/qadan/back.svg",
  47862. extra: 1042/1031,
  47863. bottom: 55/1097
  47864. }
  47865. },
  47866. armored: {
  47867. height: math.unit(90, "feet"),
  47868. weight: math.unit(675000, "lb"),
  47869. name: "Armored",
  47870. image: {
  47871. source: "./media/characters/qadan/armored.svg",
  47872. extra: 1047/1037,
  47873. bottom: 48/1095
  47874. }
  47875. },
  47876. },
  47877. [
  47878. {
  47879. name: "Normal",
  47880. height: math.unit(90, "feet"),
  47881. default: true
  47882. },
  47883. ]
  47884. ))
  47885. characterMakers.push(() => makeCharacter(
  47886. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47887. {
  47888. front: {
  47889. height: math.unit(6, "feet"),
  47890. weight: math.unit(225, "lb"),
  47891. name: "Front",
  47892. image: {
  47893. source: "./media/characters/brooke/front.svg",
  47894. extra: 1050/1010,
  47895. bottom: 66/1116
  47896. }
  47897. },
  47898. back: {
  47899. height: math.unit(6, "feet"),
  47900. weight: math.unit(225, "lb"),
  47901. name: "Back",
  47902. image: {
  47903. source: "./media/characters/brooke/back.svg",
  47904. extra: 1053/1013,
  47905. bottom: 41/1094
  47906. }
  47907. },
  47908. dressed: {
  47909. height: math.unit(6, "feet"),
  47910. weight: math.unit(225, "lb"),
  47911. name: "Dressed",
  47912. image: {
  47913. source: "./media/characters/brooke/dressed.svg",
  47914. extra: 1050/1010,
  47915. bottom: 66/1116
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Canon Height",
  47922. height: math.unit(500, "miles"),
  47923. default: true
  47924. },
  47925. ]
  47926. ))
  47927. characterMakers.push(() => makeCharacter(
  47928. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47929. {
  47930. front: {
  47931. height: math.unit(6 + 2/12, "feet"),
  47932. weight: math.unit(210, "lb"),
  47933. name: "Front",
  47934. image: {
  47935. source: "./media/characters/wubs/front.svg",
  47936. extra: 1345/1325,
  47937. bottom: 70/1415
  47938. }
  47939. },
  47940. back: {
  47941. height: math.unit(6 + 2/12, "feet"),
  47942. weight: math.unit(210, "lb"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/wubs/back.svg",
  47946. extra: 1296/1275,
  47947. bottom: 58/1354
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Normal",
  47954. height: math.unit(6 + 2/12, "feet"),
  47955. default: true
  47956. },
  47957. {
  47958. name: "Macro",
  47959. height: math.unit(1000, "feet")
  47960. },
  47961. {
  47962. name: "Megamacro",
  47963. height: math.unit(1, "mile")
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(4, "feet"),
  47972. weight: math.unit(120, "lb"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/blue/front.svg",
  47976. extra: 1636/1525,
  47977. bottom: 43/1679
  47978. }
  47979. },
  47980. back: {
  47981. height: math.unit(4, "feet"),
  47982. weight: math.unit(120, "lb"),
  47983. name: "Back",
  47984. image: {
  47985. source: "./media/characters/blue/back.svg",
  47986. extra: 1660/1560,
  47987. bottom: 57/1717
  47988. }
  47989. },
  47990. paws: {
  47991. height: math.unit(0.826, "feet"),
  47992. name: "Paws",
  47993. image: {
  47994. source: "./media/characters/blue/paws.svg"
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Micro",
  48001. height: math.unit(3, "inches")
  48002. },
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(4, "feet"),
  48006. default: true
  48007. },
  48008. {
  48009. name: "Femenine Form",
  48010. height: math.unit(14, "feet")
  48011. },
  48012. {
  48013. name: "Werebat Form",
  48014. height: math.unit(18, "feet")
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48020. {
  48021. female: {
  48022. height: math.unit(7 + 4/12, "feet"),
  48023. weight: math.unit(243, "lb"),
  48024. name: "Female",
  48025. image: {
  48026. source: "./media/characters/kaya/female.svg",
  48027. extra: 975/898,
  48028. bottom: 34/1009
  48029. }
  48030. },
  48031. herm: {
  48032. height: math.unit(7 + 4/12, "feet"),
  48033. weight: math.unit(243, "lb"),
  48034. name: "Herm",
  48035. image: {
  48036. source: "./media/characters/kaya/herm.svg",
  48037. extra: 975/898,
  48038. bottom: 34/1009
  48039. }
  48040. },
  48041. },
  48042. [
  48043. {
  48044. name: "Normal",
  48045. height: math.unit(7 + 4/12, "feet"),
  48046. default: true
  48047. },
  48048. ]
  48049. ))
  48050. characterMakers.push(() => makeCharacter(
  48051. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48052. {
  48053. female: {
  48054. height: math.unit(9 + 4/12, "feet"),
  48055. weight: math.unit(398, "lb"),
  48056. name: "Female",
  48057. image: {
  48058. source: "./media/characters/kassandra/female.svg",
  48059. extra: 908/839,
  48060. bottom: 61/969
  48061. }
  48062. },
  48063. intersex: {
  48064. height: math.unit(9 + 4/12, "feet"),
  48065. weight: math.unit(398, "lb"),
  48066. name: "Intersex",
  48067. image: {
  48068. source: "./media/characters/kassandra/intersex.svg",
  48069. extra: 908/839,
  48070. bottom: 61/969
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(9 + 4/12, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(3, "meters"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/amy/front.svg",
  48090. extra: 1380/1343,
  48091. bottom: 70/1450
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(3, "meters"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/amy/back.svg",
  48099. extra: 1380/1347,
  48100. bottom: 66/1446
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Normal",
  48107. height: math.unit(3, "meters"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48114. {
  48115. side: {
  48116. height: math.unit(47, "cm"),
  48117. weight: math.unit(10.8, "kg"),
  48118. name: "Side",
  48119. image: {
  48120. source: "./media/characters/alphaschakal/side.svg",
  48121. extra: 1058/568,
  48122. bottom: 62/1120
  48123. }
  48124. },
  48125. back: {
  48126. height: math.unit(78, "cm"),
  48127. weight: math.unit(10.8, "kg"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/alphaschakal/back.svg",
  48131. extra: 1102/942,
  48132. bottom: 185/1287
  48133. }
  48134. },
  48135. head: {
  48136. height: math.unit(28, "cm"),
  48137. name: "Head",
  48138. image: {
  48139. source: "./media/characters/alphaschakal/head.svg",
  48140. extra: 696/508,
  48141. bottom: 0/696
  48142. }
  48143. },
  48144. paw: {
  48145. height: math.unit(16, "cm"),
  48146. name: "Paw",
  48147. image: {
  48148. source: "./media/characters/alphaschakal/paw.svg"
  48149. }
  48150. },
  48151. },
  48152. [
  48153. {
  48154. name: "Normal",
  48155. height: math.unit(47, "cm"),
  48156. default: true
  48157. },
  48158. {
  48159. name: "Macro",
  48160. height: math.unit(340, "cm")
  48161. },
  48162. ]
  48163. ))
  48164. characterMakers.push(() => makeCharacter(
  48165. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48166. {
  48167. front: {
  48168. height: math.unit(36, "earths"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/ecobyss/front.svg",
  48172. extra: 1282/1215,
  48173. bottom: 11/1293
  48174. }
  48175. },
  48176. back: {
  48177. height: math.unit(36, "earths"),
  48178. name: "Back",
  48179. image: {
  48180. source: "./media/characters/ecobyss/back.svg",
  48181. extra: 1291/1222,
  48182. bottom: 8/1299
  48183. }
  48184. },
  48185. },
  48186. [
  48187. {
  48188. name: "Normal",
  48189. height: math.unit(36, "earths"),
  48190. default: true
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48196. {
  48197. front: {
  48198. height: math.unit(12, "feet"),
  48199. name: "Front",
  48200. image: {
  48201. source: "./media/characters/vasuk/front.svg",
  48202. extra: 1326/1207,
  48203. bottom: 64/1390
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Normal",
  48210. height: math.unit(12, "feet"),
  48211. default: true
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48217. {
  48218. side: {
  48219. height: math.unit(100, "feet"),
  48220. name: "Side",
  48221. image: {
  48222. source: "./media/characters/linneaus/side.svg",
  48223. extra: 987/807,
  48224. bottom: 47/1034
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Macro",
  48231. height: math.unit(100, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48238. {
  48239. front: {
  48240. height: math.unit(8, "feet"),
  48241. weight: math.unit(1200, "lb"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/nyterious-daligdig/front.svg",
  48245. extra: 1284/1094,
  48246. bottom: 84/1368
  48247. }
  48248. },
  48249. back: {
  48250. height: math.unit(8, "feet"),
  48251. weight: math.unit(1200, "lb"),
  48252. name: "Back",
  48253. image: {
  48254. source: "./media/characters/nyterious-daligdig/back.svg",
  48255. extra: 1301/1121,
  48256. bottom: 129/1430
  48257. }
  48258. },
  48259. mouth: {
  48260. height: math.unit(1.464, "feet"),
  48261. name: "Mouth",
  48262. image: {
  48263. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48264. }
  48265. },
  48266. },
  48267. [
  48268. {
  48269. name: "Small",
  48270. height: math.unit(8, "feet"),
  48271. default: true
  48272. },
  48273. {
  48274. name: "Normal",
  48275. height: math.unit(15, "feet")
  48276. },
  48277. {
  48278. name: "Macro",
  48279. height: math.unit(90, "feet")
  48280. },
  48281. ]
  48282. ))
  48283. characterMakers.push(() => makeCharacter(
  48284. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48285. {
  48286. front: {
  48287. height: math.unit(7 + 4/12, "feet"),
  48288. weight: math.unit(252, "lb"),
  48289. name: "Front",
  48290. image: {
  48291. source: "./media/characters/bandel/front.svg",
  48292. extra: 1946/1775,
  48293. bottom: 26/1972
  48294. }
  48295. },
  48296. back: {
  48297. height: math.unit(7 + 4/12, "feet"),
  48298. weight: math.unit(252, "lb"),
  48299. name: "Back",
  48300. image: {
  48301. source: "./media/characters/bandel/back.svg",
  48302. extra: 1940/1770,
  48303. bottom: 25/1965
  48304. }
  48305. },
  48306. maw: {
  48307. height: math.unit(2.15, "feet"),
  48308. name: "Maw",
  48309. image: {
  48310. source: "./media/characters/bandel/maw.svg"
  48311. }
  48312. },
  48313. stomach: {
  48314. height: math.unit(1.95, "feet"),
  48315. name: "Stomach",
  48316. image: {
  48317. source: "./media/characters/bandel/stomach.svg"
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Normal",
  48324. height: math.unit(7 + 4/12, "feet"),
  48325. default: true
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(10 + 5/12, "feet"),
  48334. weight: math.unit(773.5, "kg"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/zed/front.svg",
  48338. extra: 987/941,
  48339. bottom: 52/1039
  48340. }
  48341. },
  48342. },
  48343. [
  48344. {
  48345. name: "Short",
  48346. height: math.unit(5 + 4/12, "feet")
  48347. },
  48348. {
  48349. name: "Average",
  48350. height: math.unit(10 + 5/12, "feet"),
  48351. default: true
  48352. },
  48353. {
  48354. name: "Mini-Macro",
  48355. height: math.unit(24 + 9/12, "feet")
  48356. },
  48357. {
  48358. name: "Macro",
  48359. height: math.unit(249, "feet")
  48360. },
  48361. {
  48362. name: "Mega-Macro",
  48363. height: math.unit(12490, "feet")
  48364. },
  48365. {
  48366. name: "Giga-Macro",
  48367. height: math.unit(24.9, "miles")
  48368. },
  48369. {
  48370. name: "Tera-Macro",
  48371. height: math.unit(24900, "miles")
  48372. },
  48373. {
  48374. name: "Cosmic Scale",
  48375. height: math.unit(38.9, "lightyears")
  48376. },
  48377. {
  48378. name: "Universal Scale",
  48379. height: math.unit(138e12, "lightyears")
  48380. },
  48381. ]
  48382. ))
  48383. characterMakers.push(() => makeCharacter(
  48384. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48385. {
  48386. front: {
  48387. height: math.unit(1561, "inches"),
  48388. name: "Front",
  48389. image: {
  48390. source: "./media/characters/ivan/front.svg",
  48391. extra: 1126/1071,
  48392. bottom: 26/1152
  48393. }
  48394. },
  48395. back: {
  48396. height: math.unit(1561, "inches"),
  48397. name: "Back",
  48398. image: {
  48399. source: "./media/characters/ivan/back.svg",
  48400. extra: 1134/1079,
  48401. bottom: 30/1164
  48402. }
  48403. },
  48404. },
  48405. [
  48406. {
  48407. name: "Normal",
  48408. height: math.unit(1561, "inches"),
  48409. default: true
  48410. },
  48411. ]
  48412. ))
  48413. characterMakers.push(() => makeCharacter(
  48414. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48415. {
  48416. front: {
  48417. height: math.unit(5 + 7/12, "feet"),
  48418. weight: math.unit(150, "lb"),
  48419. name: "Front",
  48420. image: {
  48421. source: "./media/characters/robin-arctic-hare/front.svg",
  48422. extra: 1148/974,
  48423. bottom: 20/1168
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(5 + 7/12, "feet"),
  48431. default: true
  48432. },
  48433. ]
  48434. ))
  48435. characterMakers.push(() => makeCharacter(
  48436. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48437. {
  48438. side: {
  48439. height: math.unit(5, "feet"),
  48440. name: "Side",
  48441. image: {
  48442. source: "./media/characters/birch/side.svg",
  48443. extra: 985/796,
  48444. bottom: 111/1096
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(5, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48458. {
  48459. front: {
  48460. height: math.unit(4, "feet"),
  48461. name: "Front",
  48462. image: {
  48463. source: "./media/characters/rasp/front.svg",
  48464. extra: 561/478,
  48465. bottom: 74/635
  48466. }
  48467. },
  48468. },
  48469. [
  48470. {
  48471. name: "Normal",
  48472. height: math.unit(4, "feet"),
  48473. default: true
  48474. },
  48475. ]
  48476. ))
  48477. characterMakers.push(() => makeCharacter(
  48478. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48479. {
  48480. front: {
  48481. height: math.unit(4 + 6/12, "feet"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/agatha/front.svg",
  48485. extra: 947/933,
  48486. bottom: 42/989
  48487. }
  48488. },
  48489. back: {
  48490. height: math.unit(4 + 6/12, "feet"),
  48491. name: "Back",
  48492. image: {
  48493. source: "./media/characters/agatha/back.svg",
  48494. extra: 935/922,
  48495. bottom: 48/983
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Normal",
  48502. height: math.unit(4 + 6 /12, "feet"),
  48503. default: true
  48504. },
  48505. {
  48506. name: "Max Size",
  48507. height: math.unit(500, "feet")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48513. {
  48514. side: {
  48515. height: math.unit(30, "feet"),
  48516. name: "Side",
  48517. image: {
  48518. source: "./media/characters/roggy/side.svg",
  48519. extra: 909/643,
  48520. bottom: 63/972
  48521. }
  48522. },
  48523. lounging: {
  48524. height: math.unit(20, "feet"),
  48525. name: "Lounging",
  48526. image: {
  48527. source: "./media/characters/roggy/lounging.svg",
  48528. extra: 643/479,
  48529. bottom: 145/788
  48530. }
  48531. },
  48532. handpaw: {
  48533. height: math.unit(13.1, "feet"),
  48534. name: "Handpaw",
  48535. image: {
  48536. source: "./media/characters/roggy/handpaw.svg"
  48537. }
  48538. },
  48539. footpaw: {
  48540. height: math.unit(15.8, "feet"),
  48541. name: "Footpaw",
  48542. image: {
  48543. source: "./media/characters/roggy/footpaw.svg"
  48544. }
  48545. },
  48546. },
  48547. [
  48548. {
  48549. name: "Menacing",
  48550. height: math.unit(30, "feet"),
  48551. default: true
  48552. },
  48553. ]
  48554. ))
  48555. characterMakers.push(() => makeCharacter(
  48556. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48557. {
  48558. front: {
  48559. height: math.unit(5 + 7/12, "feet"),
  48560. weight: math.unit(135, "lb"),
  48561. name: "Front",
  48562. image: {
  48563. source: "./media/characters/naomi/front.svg",
  48564. extra: 1209/1154,
  48565. bottom: 129/1338
  48566. }
  48567. },
  48568. back: {
  48569. height: math.unit(5 + 7/12, "feet"),
  48570. weight: math.unit(135, "lb"),
  48571. name: "Back",
  48572. image: {
  48573. source: "./media/characters/naomi/back.svg",
  48574. extra: 1252/1190,
  48575. bottom: 23/1275
  48576. }
  48577. },
  48578. },
  48579. [
  48580. {
  48581. name: "Normal",
  48582. height: math.unit(5 + 7 /12, "feet"),
  48583. default: true
  48584. },
  48585. ]
  48586. ))
  48587. characterMakers.push(() => makeCharacter(
  48588. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48589. {
  48590. side: {
  48591. height: math.unit(35, "meters"),
  48592. name: "Side",
  48593. image: {
  48594. source: "./media/characters/kimpi/side.svg",
  48595. extra: 419/382,
  48596. bottom: 63/482
  48597. }
  48598. },
  48599. hand: {
  48600. height: math.unit(8.96, "meters"),
  48601. name: "Hand",
  48602. image: {
  48603. source: "./media/characters/kimpi/hand.svg"
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(35, "meters"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(4 + 4/12, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/pepper-purrloin/front.svg",
  48623. extra: 1141/1024,
  48624. bottom: 21/1162
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(4 + 4/12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48638. {
  48639. front: {
  48640. height: math.unit(6 + 2/12, "feet"),
  48641. name: "Front",
  48642. image: {
  48643. source: "./media/characters/raphael/front.svg",
  48644. extra: 1101/962,
  48645. bottom: 59/1160
  48646. }
  48647. },
  48648. },
  48649. [
  48650. {
  48651. name: "Normal",
  48652. height: math.unit(6 + 2/12, "feet"),
  48653. default: true
  48654. },
  48655. ]
  48656. ))
  48657. characterMakers.push(() => makeCharacter(
  48658. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48659. {
  48660. front: {
  48661. height: math.unit(6, "feet"),
  48662. weight: math.unit(150, "lb"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/victor-williams/front.svg",
  48666. extra: 1894/1825,
  48667. bottom: 67/1961
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(6, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(5 + 8/12, "feet"),
  48684. weight: math.unit(150, "lb"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/rachel/front.svg",
  48688. extra: 1902/1787,
  48689. bottom: 46/1948
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Base Height",
  48696. height: math.unit(5 + 8/12, "feet"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Macro",
  48701. height: math.unit(200, "feet")
  48702. },
  48703. {
  48704. name: "Mega Macro",
  48705. height: math.unit(1, "mile")
  48706. },
  48707. {
  48708. name: "Giga Macro",
  48709. height: math.unit(1500, "miles")
  48710. },
  48711. {
  48712. name: "Tera Macro",
  48713. height: math.unit(8000, "miles")
  48714. },
  48715. {
  48716. name: "Tera Macro+",
  48717. height: math.unit(2e5, "miles")
  48718. },
  48719. ]
  48720. ))
  48721. characterMakers.push(() => makeCharacter(
  48722. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48723. {
  48724. front: {
  48725. height: math.unit(6.5, "feet"),
  48726. name: "Front",
  48727. image: {
  48728. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48729. extra: 860/819,
  48730. bottom: 307/1167
  48731. }
  48732. },
  48733. back: {
  48734. height: math.unit(6.5, "feet"),
  48735. name: "Back",
  48736. image: {
  48737. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48738. extra: 880/837,
  48739. bottom: 395/1275
  48740. }
  48741. },
  48742. sleeping: {
  48743. height: math.unit(2.79, "feet"),
  48744. name: "Sleeping",
  48745. image: {
  48746. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48747. extra: 465/383,
  48748. bottom: 263/728
  48749. }
  48750. },
  48751. maw: {
  48752. height: math.unit(2.52, "feet"),
  48753. name: "Maw",
  48754. image: {
  48755. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(6.5, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48769. {
  48770. front: {
  48771. height: math.unit(5, "feet"),
  48772. name: "Front",
  48773. image: {
  48774. source: "./media/characters/nova-nerium/front.svg",
  48775. extra: 1548/1392,
  48776. bottom: 374/1922
  48777. }
  48778. },
  48779. back: {
  48780. height: math.unit(5, "feet"),
  48781. name: "Back",
  48782. image: {
  48783. source: "./media/characters/nova-nerium/back.svg",
  48784. extra: 1658/1468,
  48785. bottom: 257/1915
  48786. }
  48787. },
  48788. },
  48789. [
  48790. {
  48791. name: "Normal",
  48792. height: math.unit(5, "feet"),
  48793. default: true
  48794. },
  48795. ]
  48796. ))
  48797. characterMakers.push(() => makeCharacter(
  48798. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48799. {
  48800. front: {
  48801. height: math.unit(5 + 4/12, "feet"),
  48802. name: "Front",
  48803. image: {
  48804. source: "./media/characters/ashe-pyriph/front.svg",
  48805. extra: 1935/1747,
  48806. bottom: 60/1995
  48807. }
  48808. },
  48809. },
  48810. [
  48811. {
  48812. name: "Normal",
  48813. height: math.unit(5 + 4/12, "feet"),
  48814. default: true
  48815. },
  48816. ]
  48817. ))
  48818. characterMakers.push(() => makeCharacter(
  48819. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48820. {
  48821. front: {
  48822. height: math.unit(8.7, "feet"),
  48823. name: "Front",
  48824. image: {
  48825. source: "./media/characters/flicker-wisp/front.svg",
  48826. extra: 1835/1613,
  48827. bottom: 449/2284
  48828. }
  48829. },
  48830. side: {
  48831. height: math.unit(8.7, "feet"),
  48832. name: "Side",
  48833. image: {
  48834. source: "./media/characters/flicker-wisp/side.svg",
  48835. extra: 1841/1642,
  48836. bottom: 336/2177
  48837. },
  48838. default: true
  48839. },
  48840. maw: {
  48841. height: math.unit(3.35, "feet"),
  48842. name: "Maw",
  48843. image: {
  48844. source: "./media/characters/flicker-wisp/maw.svg",
  48845. extra: 2338/1506,
  48846. bottom: 0/2338
  48847. }
  48848. },
  48849. ovipositor: {
  48850. height: math.unit(4.95, "feet"),
  48851. name: "Ovipositor",
  48852. image: {
  48853. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48854. }
  48855. },
  48856. egg: {
  48857. height: math.unit(0.385, "feet"),
  48858. weight: math.unit(2, "lb"),
  48859. name: "Egg",
  48860. image: {
  48861. source: "./media/characters/flicker-wisp/egg.svg"
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(8.7, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48875. {
  48876. side: {
  48877. height: math.unit(11, "feet"),
  48878. name: "Side",
  48879. image: {
  48880. source: "./media/characters/faefnul/side.svg",
  48881. extra: 1100/1007,
  48882. bottom: 0/1100
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(11, "feet"),
  48890. default: true
  48891. },
  48892. ]
  48893. ))
  48894. characterMakers.push(() => makeCharacter(
  48895. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48896. {
  48897. front: {
  48898. height: math.unit(6 + 2/12, "feet"),
  48899. name: "Front",
  48900. image: {
  48901. source: "./media/characters/shady/front.svg",
  48902. extra: 502/461,
  48903. bottom: 9/511
  48904. }
  48905. },
  48906. kneeling: {
  48907. height: math.unit(4.6, "feet"),
  48908. name: "Kneeling",
  48909. image: {
  48910. source: "./media/characters/shady/kneeling.svg",
  48911. extra: 1328/1219,
  48912. bottom: 117/1445
  48913. }
  48914. },
  48915. maw: {
  48916. height: math.unit(2, "feet"),
  48917. name: "Maw",
  48918. image: {
  48919. source: "./media/characters/shady/maw.svg"
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Nano",
  48926. height: math.unit(1, "mm")
  48927. },
  48928. {
  48929. name: "Micro",
  48930. height: math.unit(12, "mm")
  48931. },
  48932. {
  48933. name: "Tiny",
  48934. height: math.unit(3, "inches")
  48935. },
  48936. {
  48937. name: "Normal",
  48938. height: math.unit(6 + 2/12, "feet"),
  48939. default: true
  48940. },
  48941. {
  48942. name: "Big",
  48943. height: math.unit(15, "feet")
  48944. },
  48945. {
  48946. name: "Macro",
  48947. height: math.unit(150, "feet")
  48948. },
  48949. {
  48950. name: "Titanic",
  48951. height: math.unit(500, "feet")
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(12, "feet"),
  48960. name: "Front",
  48961. image: {
  48962. source: "./media/characters/fenrir/front.svg",
  48963. extra: 968/875,
  48964. bottom: 22/990
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Big",
  48971. height: math.unit(12, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(5 + 4/12, "feet"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/makar/front.svg",
  48984. extra: 1181/1112,
  48985. bottom: 78/1259
  48986. }
  48987. },
  48988. },
  48989. [
  48990. {
  48991. name: "Normal",
  48992. height: math.unit(5 + 4/12, "feet"),
  48993. default: true
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48999. {
  49000. front: {
  49001. height: math.unit(5 + 7/12, "feet"),
  49002. name: "Front",
  49003. image: {
  49004. source: "./media/characters/callow/front.svg",
  49005. extra: 1482/1304,
  49006. bottom: 23/1505
  49007. }
  49008. },
  49009. back: {
  49010. height: math.unit(5 + 7/12, "feet"),
  49011. name: "Back",
  49012. image: {
  49013. source: "./media/characters/callow/back.svg",
  49014. extra: 1484/1296,
  49015. bottom: 25/1509
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Micro",
  49022. height: math.unit(3, "inches"),
  49023. default: true
  49024. },
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(5 + 7/12, "feet")
  49028. },
  49029. ]
  49030. ))
  49031. characterMakers.push(() => makeCharacter(
  49032. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49033. {
  49034. front: {
  49035. height: math.unit(6 + 2/12, "feet"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/natel/front.svg",
  49039. extra: 1833/1692,
  49040. bottom: 166/1999
  49041. }
  49042. },
  49043. },
  49044. [
  49045. {
  49046. name: "Normal",
  49047. height: math.unit(6 + 2/12, "feet"),
  49048. default: true
  49049. },
  49050. ]
  49051. ))
  49052. characterMakers.push(() => makeCharacter(
  49053. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49054. {
  49055. front: {
  49056. height: math.unit(1.75, "meters"),
  49057. name: "Front",
  49058. image: {
  49059. source: "./media/characters/misu/front.svg",
  49060. extra: 1690/1558,
  49061. bottom: 234/1924
  49062. }
  49063. },
  49064. back: {
  49065. height: math.unit(1.75, "meters"),
  49066. name: "Back",
  49067. image: {
  49068. source: "./media/characters/misu/back.svg",
  49069. extra: 1762/1618,
  49070. bottom: 146/1908
  49071. }
  49072. },
  49073. frontNude: {
  49074. height: math.unit(1.75, "meters"),
  49075. name: "Front (Nude)",
  49076. image: {
  49077. source: "./media/characters/misu/front-nude.svg",
  49078. extra: 1690/1558,
  49079. bottom: 234/1924
  49080. }
  49081. },
  49082. backNude: {
  49083. height: math.unit(1.75, "meters"),
  49084. name: "Back (Nude)",
  49085. image: {
  49086. source: "./media/characters/misu/back-nude.svg",
  49087. extra: 1762/1618,
  49088. bottom: 146/1908
  49089. }
  49090. },
  49091. frontErect: {
  49092. height: math.unit(1.75, "meters"),
  49093. name: "Front (Erect)",
  49094. image: {
  49095. source: "./media/characters/misu/front-erect.svg",
  49096. extra: 1690/1558,
  49097. bottom: 234/1924
  49098. }
  49099. },
  49100. maw: {
  49101. height: math.unit(0.47, "meters"),
  49102. name: "Maw",
  49103. image: {
  49104. source: "./media/characters/misu/maw.svg"
  49105. }
  49106. },
  49107. head: {
  49108. height: math.unit(0.35, "meters"),
  49109. name: "Head",
  49110. image: {
  49111. source: "./media/characters/misu/head.svg"
  49112. }
  49113. },
  49114. rear: {
  49115. height: math.unit(0.47, "meters"),
  49116. name: "Rear",
  49117. image: {
  49118. source: "./media/characters/misu/rear.svg"
  49119. }
  49120. },
  49121. },
  49122. [
  49123. {
  49124. name: "Normal",
  49125. height: math.unit(1.75, "meters")
  49126. },
  49127. {
  49128. name: "Not good for the people",
  49129. height: math.unit(42, "meters")
  49130. },
  49131. {
  49132. name: "Not good for the neighborhood",
  49133. height: math.unit(135, "meters")
  49134. },
  49135. {
  49136. name: "Bit bigger problem",
  49137. height: math.unit(380, "meters"),
  49138. default: true
  49139. },
  49140. {
  49141. name: "Not good for the city",
  49142. height: math.unit(1.5, "km")
  49143. },
  49144. {
  49145. name: "Not good for the county",
  49146. height: math.unit(5.5, "km")
  49147. },
  49148. {
  49149. name: "Not good for the state",
  49150. height: math.unit(25, "km")
  49151. },
  49152. {
  49153. name: "Not good for the country",
  49154. height: math.unit(125, "km")
  49155. },
  49156. {
  49157. name: "Not good for the continent",
  49158. height: math.unit(2100, "km")
  49159. },
  49160. {
  49161. name: "Not good for the planet",
  49162. height: math.unit(35000, "km")
  49163. },
  49164. {
  49165. name: "Just no",
  49166. height: math.unit(8.5e18, "km")
  49167. },
  49168. ]
  49169. ))
  49170. characterMakers.push(() => makeCharacter(
  49171. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49172. {
  49173. front: {
  49174. height: math.unit(6.5, "feet"),
  49175. name: "Front",
  49176. image: {
  49177. source: "./media/characters/poppy/front.svg",
  49178. extra: 1878/1812,
  49179. bottom: 43/1921
  49180. }
  49181. },
  49182. feet: {
  49183. height: math.unit(1.06, "feet"),
  49184. name: "Feet",
  49185. image: {
  49186. source: "./media/characters/poppy/feet.svg",
  49187. extra: 1083/1083,
  49188. bottom: 87/1170
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Human",
  49195. height: math.unit(6.5, "feet")
  49196. },
  49197. {
  49198. name: "Default",
  49199. height: math.unit(300, "feet"),
  49200. default: true
  49201. },
  49202. {
  49203. name: "Huge",
  49204. height: math.unit(850, "feet")
  49205. },
  49206. {
  49207. name: "Mega",
  49208. height: math.unit(8000, "feet")
  49209. },
  49210. {
  49211. name: "Giga",
  49212. height: math.unit(300, "miles")
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49218. {
  49219. bipedal: {
  49220. height: math.unit(7, "feet"),
  49221. name: "Bipedal",
  49222. image: {
  49223. source: "./media/characters/zener/bipedal.svg",
  49224. extra: 874/805,
  49225. bottom: 109/983
  49226. }
  49227. },
  49228. quadrupedal: {
  49229. height: math.unit(4.64, "feet"),
  49230. name: "Quadrupedal",
  49231. image: {
  49232. source: "./media/characters/zener/quadrupedal.svg",
  49233. extra: 638/507,
  49234. bottom: 190/828
  49235. }
  49236. },
  49237. cock: {
  49238. height: math.unit(18, "inches"),
  49239. name: "Cock",
  49240. image: {
  49241. source: "./media/characters/zener/cock.svg"
  49242. }
  49243. },
  49244. },
  49245. [
  49246. {
  49247. name: "Normal",
  49248. height: math.unit(7, "feet"),
  49249. default: true
  49250. },
  49251. ]
  49252. ))
  49253. characterMakers.push(() => makeCharacter(
  49254. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49255. {
  49256. nude: {
  49257. height: math.unit(5 + 6/12, "feet"),
  49258. name: "Nude",
  49259. image: {
  49260. source: "./media/characters/charlie-dog/nude.svg",
  49261. extra: 768/734,
  49262. bottom: 26/794
  49263. }
  49264. },
  49265. dressed: {
  49266. height: math.unit(5 + 6/12, "feet"),
  49267. name: "Dressed",
  49268. image: {
  49269. source: "./media/characters/charlie-dog/dressed.svg",
  49270. extra: 768/734,
  49271. bottom: 26/794
  49272. }
  49273. },
  49274. },
  49275. [
  49276. {
  49277. name: "Normal",
  49278. height: math.unit(5 + 6/12, "feet"),
  49279. default: true
  49280. },
  49281. ]
  49282. ))
  49283. characterMakers.push(() => makeCharacter(
  49284. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49285. {
  49286. front: {
  49287. height: math.unit(6 + 4/12, "feet"),
  49288. name: "Front",
  49289. image: {
  49290. source: "./media/characters/ir'istrasz/front.svg",
  49291. extra: 1014/977,
  49292. bottom: 65/1079
  49293. }
  49294. },
  49295. back: {
  49296. height: math.unit(6 + 4/12, "feet"),
  49297. name: "Back",
  49298. image: {
  49299. source: "./media/characters/ir'istrasz/back.svg",
  49300. extra: 1024/992,
  49301. bottom: 34/1058
  49302. }
  49303. },
  49304. },
  49305. [
  49306. {
  49307. name: "Normal",
  49308. height: math.unit(6 + 4/12, "feet"),
  49309. default: true
  49310. },
  49311. ]
  49312. ))
  49313. characterMakers.push(() => makeCharacter(
  49314. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49315. {
  49316. front: {
  49317. height: math.unit(5 + 8/12, "feet"),
  49318. name: "Front",
  49319. image: {
  49320. source: "./media/characters/dee-ditto/front.svg",
  49321. extra: 1874/1785,
  49322. bottom: 68/1942
  49323. }
  49324. },
  49325. back: {
  49326. height: math.unit(5 + 8/12, "feet"),
  49327. name: "Back",
  49328. image: {
  49329. source: "./media/characters/dee-ditto/back.svg",
  49330. extra: 1870/1783,
  49331. bottom: 77/1947
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(5 + 8/12, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(7 + 6/12, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/fey/front.svg",
  49351. extra: 995/979,
  49352. bottom: 30/1025
  49353. }
  49354. },
  49355. back: {
  49356. height: math.unit(7 + 6/12, "feet"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/fey/back.svg",
  49360. extra: 1079/1008,
  49361. bottom: 5/1084
  49362. }
  49363. },
  49364. dressed: {
  49365. height: math.unit(7 + 6/12, "feet"),
  49366. name: "Dressed",
  49367. image: {
  49368. source: "./media/characters/fey/dressed.svg",
  49369. extra: 995/979,
  49370. bottom: 30/1025
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(7 + 6/12, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49384. {
  49385. standing: {
  49386. height: math.unit(17, "feet"),
  49387. name: "Standing",
  49388. image: {
  49389. source: "./media/characters/aster/standing.svg",
  49390. extra: 1798/1598,
  49391. bottom: 117/1915
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(17, "feet"),
  49399. default: true
  49400. },
  49401. {
  49402. name: "Homewrecker",
  49403. height: math.unit(95, "feet")
  49404. },
  49405. {
  49406. name: "Planet Devourer",
  49407. height: math.unit(1008000, "miles")
  49408. },
  49409. ]
  49410. ))
  49411. characterMakers.push(() => makeCharacter(
  49412. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49413. {
  49414. front: {
  49415. height: math.unit(6 + 5/12, "feet"),
  49416. weight: math.unit(265, "lb"),
  49417. name: "Front",
  49418. image: {
  49419. source: "./media/characters/devon-childs/front.svg",
  49420. extra: 1795/1721,
  49421. bottom: 41/1836
  49422. }
  49423. },
  49424. side: {
  49425. height: math.unit(6 + 5/12, "feet"),
  49426. weight: math.unit(265, "lb"),
  49427. name: "Side",
  49428. image: {
  49429. source: "./media/characters/devon-childs/side.svg",
  49430. extra: 1812/1738,
  49431. bottom: 30/1842
  49432. }
  49433. },
  49434. back: {
  49435. height: math.unit(6 + 5/12, "feet"),
  49436. weight: math.unit(265, "lb"),
  49437. name: "Back",
  49438. image: {
  49439. source: "./media/characters/devon-childs/back.svg",
  49440. extra: 1808/1735,
  49441. bottom: 23/1831
  49442. }
  49443. },
  49444. hand: {
  49445. height: math.unit(1.464, "feet"),
  49446. name: "Hand",
  49447. image: {
  49448. source: "./media/characters/devon-childs/hand.svg"
  49449. }
  49450. },
  49451. foot: {
  49452. height: math.unit(1.6, "feet"),
  49453. name: "Foot",
  49454. image: {
  49455. source: "./media/characters/devon-childs/foot.svg"
  49456. }
  49457. },
  49458. },
  49459. [
  49460. {
  49461. name: "Micro",
  49462. height: math.unit(7, "cm")
  49463. },
  49464. {
  49465. name: "Normal",
  49466. height: math.unit(6 + 5/12, "feet"),
  49467. default: true
  49468. },
  49469. {
  49470. name: "Macro",
  49471. height: math.unit(154, "feet")
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49477. {
  49478. front: {
  49479. height: math.unit(6, "feet"),
  49480. weight: math.unit(180, "lb"),
  49481. name: "Front",
  49482. image: {
  49483. source: "./media/characters/lydemox-vir/front.svg",
  49484. extra: 1632/1435,
  49485. bottom: 58/1690
  49486. }
  49487. },
  49488. frontSFW: {
  49489. height: math.unit(6, "feet"),
  49490. weight: math.unit(180, "lb"),
  49491. name: "Front (SFW)",
  49492. image: {
  49493. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49494. extra: 1632/1435,
  49495. bottom: 58/1690
  49496. }
  49497. },
  49498. back: {
  49499. height: math.unit(6, "feet"),
  49500. weight: math.unit(180, "lb"),
  49501. name: "Back",
  49502. image: {
  49503. source: "./media/characters/lydemox-vir/back.svg",
  49504. extra: 1593/1408,
  49505. bottom: 31/1624
  49506. }
  49507. },
  49508. paw: {
  49509. height: math.unit(1.85, "feet"),
  49510. name: "Paw",
  49511. image: {
  49512. source: "./media/characters/lydemox-vir/paw.svg"
  49513. }
  49514. },
  49515. dick: {
  49516. height: math.unit(1.8, "feet"),
  49517. name: "Dick",
  49518. image: {
  49519. source: "./media/characters/lydemox-vir/dick.svg"
  49520. }
  49521. },
  49522. },
  49523. [
  49524. {
  49525. name: "Macro",
  49526. height: math.unit(100, "feet"),
  49527. default: true
  49528. },
  49529. {
  49530. name: "Teramacro",
  49531. height: math.unit(1, "earth")
  49532. },
  49533. {
  49534. name: "Planetary",
  49535. height: math.unit(20, "earths")
  49536. },
  49537. ]
  49538. ))
  49539. characterMakers.push(() => makeCharacter(
  49540. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49541. {
  49542. front: {
  49543. height: math.unit(15 + 8/12, "feet"),
  49544. weight: math.unit(1237, "kg"),
  49545. name: "Front",
  49546. image: {
  49547. source: "./media/characters/mia/front.svg",
  49548. extra: 1573/1446,
  49549. bottom: 58/1631
  49550. }
  49551. },
  49552. },
  49553. [
  49554. {
  49555. name: "Small",
  49556. height: math.unit(9 + 5/12, "feet")
  49557. },
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(15 + 8/12, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49567. {
  49568. front: {
  49569. height: math.unit(10 + 6/12, "feet"),
  49570. weight: math.unit(1.3, "tons"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/mr-graves/front.svg",
  49574. extra: 1779/1695,
  49575. bottom: 198/1977
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(10 + 6 /12, "feet"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49589. {
  49590. dressedFront: {
  49591. height: math.unit(5 + 8/12, "feet"),
  49592. weight: math.unit(125, "lb"),
  49593. name: "Dressed (Front)",
  49594. image: {
  49595. source: "./media/characters/jess/dressed-front.svg",
  49596. extra: 1176/1152,
  49597. bottom: 42/1218
  49598. }
  49599. },
  49600. dressedSide: {
  49601. height: math.unit(5 + 8/12, "feet"),
  49602. weight: math.unit(125, "lb"),
  49603. name: "Dressed (Side)",
  49604. image: {
  49605. source: "./media/characters/jess/dressed-side.svg",
  49606. extra: 1204/1190,
  49607. bottom: 6/1210
  49608. }
  49609. },
  49610. nudeFront: {
  49611. height: math.unit(5 + 8/12, "feet"),
  49612. weight: math.unit(125, "lb"),
  49613. name: "Nude (Front)",
  49614. image: {
  49615. source: "./media/characters/jess/nude-front.svg",
  49616. extra: 1176/1152,
  49617. bottom: 42/1218
  49618. }
  49619. },
  49620. nudeSide: {
  49621. height: math.unit(5 + 8/12, "feet"),
  49622. weight: math.unit(125, "lb"),
  49623. name: "Nude (Side)",
  49624. image: {
  49625. source: "./media/characters/jess/nude-side.svg",
  49626. extra: 1204/1190,
  49627. bottom: 6/1210
  49628. }
  49629. },
  49630. organsFront: {
  49631. height: math.unit(2.83799342105, "feet"),
  49632. name: "Organs (Front)",
  49633. image: {
  49634. source: "./media/characters/jess/organs-front.svg"
  49635. }
  49636. },
  49637. organsSide: {
  49638. height: math.unit(2.64225290474, "feet"),
  49639. name: "Organs (Side)",
  49640. image: {
  49641. source: "./media/characters/jess/organs-side.svg"
  49642. }
  49643. },
  49644. digestiveTractFront: {
  49645. height: math.unit(2.8106580871, "feet"),
  49646. name: "Digestive Tract (Front)",
  49647. image: {
  49648. source: "./media/characters/jess/digestive-tract-front.svg"
  49649. }
  49650. },
  49651. digestiveTractSide: {
  49652. height: math.unit(2.54365045014, "feet"),
  49653. name: "Digestive Tract (Side)",
  49654. image: {
  49655. source: "./media/characters/jess/digestive-tract-side.svg"
  49656. }
  49657. },
  49658. respiratorySystemFront: {
  49659. height: math.unit(1.11196233456, "feet"),
  49660. name: "Respiratory System (Front)",
  49661. image: {
  49662. source: "./media/characters/jess/respiratory-system-front.svg"
  49663. }
  49664. },
  49665. respiratorySystemSide: {
  49666. height: math.unit(0.89327966297, "feet"),
  49667. name: "Respiratory System (Side)",
  49668. image: {
  49669. source: "./media/characters/jess/respiratory-system-side.svg"
  49670. }
  49671. },
  49672. urinaryTractFront: {
  49673. height: math.unit(1.16126356186, "feet"),
  49674. name: "Urinary Tract (Front)",
  49675. image: {
  49676. source: "./media/characters/jess/urinary-tract-front.svg"
  49677. }
  49678. },
  49679. urinaryTractSide: {
  49680. height: math.unit(1.20910039627, "feet"),
  49681. name: "Urinary Tract (Side)",
  49682. image: {
  49683. source: "./media/characters/jess/urinary-tract-side.svg"
  49684. }
  49685. },
  49686. reproductiveOrgansFront: {
  49687. height: math.unit(0.48422591566, "feet"),
  49688. name: "Reproductive Organs (Front)",
  49689. image: {
  49690. source: "./media/characters/jess/reproductive-organs-front.svg"
  49691. }
  49692. },
  49693. reproductiveOrgansSide: {
  49694. height: math.unit(0.61553314481, "feet"),
  49695. name: "Reproductive Organs (Side)",
  49696. image: {
  49697. source: "./media/characters/jess/reproductive-organs-side.svg"
  49698. }
  49699. },
  49700. breastsFront: {
  49701. height: math.unit(0.47690395121, "feet"),
  49702. name: "Breasts (Front)",
  49703. image: {
  49704. source: "./media/characters/jess/breasts-front.svg"
  49705. }
  49706. },
  49707. breastsSide: {
  49708. height: math.unit(0.30556998307, "feet"),
  49709. name: "Breasts (Side)",
  49710. image: {
  49711. source: "./media/characters/jess/breasts-side.svg"
  49712. }
  49713. },
  49714. heartFront: {
  49715. height: math.unit(0.53011022622, "feet"),
  49716. name: "Heart (Front)",
  49717. image: {
  49718. source: "./media/characters/jess/heart-front.svg"
  49719. }
  49720. },
  49721. heartSide: {
  49722. height: math.unit(0.51790695213, "feet"),
  49723. name: "Heart (Side)",
  49724. image: {
  49725. source: "./media/characters/jess/heart-side.svg"
  49726. }
  49727. },
  49728. earsAndNoseFront: {
  49729. height: math.unit(0.29385483995, "feet"),
  49730. name: "Ears and Nose (Front)",
  49731. image: {
  49732. source: "./media/characters/jess/ears-and-nose-front.svg"
  49733. }
  49734. },
  49735. earsAndNoseSide: {
  49736. height: math.unit(0.18109658741, "feet"),
  49737. name: "Ears and Nose (Side)",
  49738. image: {
  49739. source: "./media/characters/jess/ears-and-nose-side.svg"
  49740. }
  49741. },
  49742. },
  49743. [
  49744. {
  49745. name: "Normal",
  49746. height: math.unit(5 + 8/12, "feet"),
  49747. default: true
  49748. },
  49749. ]
  49750. ))
  49751. characterMakers.push(() => makeCharacter(
  49752. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49753. {
  49754. front: {
  49755. height: math.unit(6, "feet"),
  49756. weight: math.unit(6.64467e-7, "grams"),
  49757. name: "Front",
  49758. image: {
  49759. source: "./media/characters/wimpering/front.svg",
  49760. extra: 597/587,
  49761. bottom: 34/631
  49762. }
  49763. },
  49764. },
  49765. [
  49766. {
  49767. name: "Micro",
  49768. height: math.unit(0.4, "mm"),
  49769. default: true
  49770. },
  49771. ]
  49772. ))
  49773. characterMakers.push(() => makeCharacter(
  49774. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49775. {
  49776. front: {
  49777. height: math.unit(5 + 2/12, "feet"),
  49778. weight: math.unit(110, "lb"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/keltre/front.svg",
  49782. extra: 1099/1057,
  49783. bottom: 22/1121
  49784. }
  49785. },
  49786. back: {
  49787. height: math.unit(5 + 2/12, "feet"),
  49788. weight: math.unit(110, "lb"),
  49789. name: "Back",
  49790. image: {
  49791. source: "./media/characters/keltre/back.svg",
  49792. extra: 1095/1053,
  49793. bottom: 17/1112
  49794. }
  49795. },
  49796. dressed: {
  49797. height: math.unit(5 + 2/12, "feet"),
  49798. weight: math.unit(110, "lb"),
  49799. name: "Dressed",
  49800. image: {
  49801. source: "./media/characters/keltre/dressed.svg",
  49802. extra: 1099/1057,
  49803. bottom: 22/1121
  49804. }
  49805. },
  49806. winter: {
  49807. height: math.unit(5 + 2/12, "feet"),
  49808. weight: math.unit(110, "lb"),
  49809. name: "Winter",
  49810. image: {
  49811. source: "./media/characters/keltre/winter.svg",
  49812. extra: 1099/1057,
  49813. bottom: 22/1121
  49814. }
  49815. },
  49816. head: {
  49817. height: math.unit(1.61 * 0.86, "feet"),
  49818. name: "Head",
  49819. image: {
  49820. source: "./media/characters/keltre/head.svg",
  49821. extra: 534/421,
  49822. bottom: 0/534
  49823. }
  49824. },
  49825. hand: {
  49826. height: math.unit(1.3 * 0.86, "feet"),
  49827. name: "Hand",
  49828. image: {
  49829. source: "./media/characters/keltre/hand.svg"
  49830. }
  49831. },
  49832. foot: {
  49833. height: math.unit(1.8 * 0.86, "feet"),
  49834. name: "Foot",
  49835. image: {
  49836. source: "./media/characters/keltre/foot.svg"
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Fine",
  49843. height: math.unit(1, "inch")
  49844. },
  49845. {
  49846. name: "Dimnutive",
  49847. height: math.unit(4, "inches")
  49848. },
  49849. {
  49850. name: "Tiny",
  49851. height: math.unit(1, "foot")
  49852. },
  49853. {
  49854. name: "Small",
  49855. height: math.unit(3, "feet")
  49856. },
  49857. {
  49858. name: "Normal",
  49859. height: math.unit(5 + 2/12, "feet"),
  49860. default: true
  49861. },
  49862. ]
  49863. ))
  49864. characterMakers.push(() => makeCharacter(
  49865. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49866. {
  49867. front: {
  49868. height: math.unit(6 + 2/12, "feet"),
  49869. name: "Front",
  49870. image: {
  49871. source: "./media/characters/nox/front.svg",
  49872. extra: 1917/1830,
  49873. bottom: 74/1991
  49874. }
  49875. },
  49876. back: {
  49877. height: math.unit(6 + 2/12, "feet"),
  49878. name: "Back",
  49879. image: {
  49880. source: "./media/characters/nox/back.svg",
  49881. extra: 1896/1815,
  49882. bottom: 21/1917
  49883. }
  49884. },
  49885. head: {
  49886. height: math.unit(1.1, "feet"),
  49887. name: "Head",
  49888. image: {
  49889. source: "./media/characters/nox/head.svg",
  49890. extra: 874/704,
  49891. bottom: 0/874
  49892. }
  49893. },
  49894. tattoo: {
  49895. height: math.unit(0.729, "feet"),
  49896. name: "Tattoo",
  49897. image: {
  49898. source: "./media/characters/nox/tattoo.svg"
  49899. }
  49900. },
  49901. },
  49902. [
  49903. {
  49904. name: "Normal",
  49905. height: math.unit(6 + 2/12, "feet")
  49906. },
  49907. {
  49908. name: "Gigamacro",
  49909. height: math.unit(2, "earths"),
  49910. default: true
  49911. },
  49912. {
  49913. name: "Cosmic",
  49914. height: math.unit(867, "yottameters")
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49920. {
  49921. front: {
  49922. height: math.unit(6, "feet"),
  49923. weight: math.unit(150, "lb"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/caspian/front.svg",
  49927. extra: 1443/1359,
  49928. bottom: 0/1443
  49929. }
  49930. },
  49931. back: {
  49932. height: math.unit(6, "feet"),
  49933. weight: math.unit(150, "lb"),
  49934. name: "Back",
  49935. image: {
  49936. source: "./media/characters/caspian/back.svg",
  49937. extra: 1379/1309,
  49938. bottom: 0/1379
  49939. }
  49940. },
  49941. head: {
  49942. height: math.unit(0.9, "feet"),
  49943. name: "Head",
  49944. image: {
  49945. source: "./media/characters/caspian/head.svg",
  49946. extra: 692/492,
  49947. bottom: 0/692
  49948. }
  49949. },
  49950. headAlt: {
  49951. height: math.unit(0.95, "feet"),
  49952. name: "Head (Alt)",
  49953. image: {
  49954. source: "./media/characters/caspian/head-alt.svg",
  49955. extra: 668/508,
  49956. bottom: 0/668
  49957. }
  49958. },
  49959. hand: {
  49960. height: math.unit(0.8, "feet"),
  49961. name: "Hand",
  49962. image: {
  49963. source: "./media/characters/caspian/hand.svg"
  49964. }
  49965. },
  49966. paw: {
  49967. height: math.unit(0.95, "feet"),
  49968. name: "Paw",
  49969. image: {
  49970. source: "./media/characters/caspian/paw.svg"
  49971. }
  49972. },
  49973. },
  49974. [
  49975. {
  49976. name: "Normal",
  49977. height: math.unit(162, "feet"),
  49978. default: true
  49979. },
  49980. ]
  49981. ))
  49982. characterMakers.push(() => makeCharacter(
  49983. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49984. {
  49985. front: {
  49986. height: math.unit(6, "feet"),
  49987. name: "Front",
  49988. image: {
  49989. source: "./media/characters/myra-aisling/front.svg",
  49990. extra: 1268/1166,
  49991. bottom: 73/1341
  49992. }
  49993. },
  49994. back: {
  49995. height: math.unit(6, "feet"),
  49996. name: "Back",
  49997. image: {
  49998. source: "./media/characters/myra-aisling/back.svg",
  49999. extra: 1249/1149,
  50000. bottom: 79/1328
  50001. }
  50002. },
  50003. dressed: {
  50004. height: math.unit(6, "feet"),
  50005. name: "Dressed",
  50006. image: {
  50007. source: "./media/characters/myra-aisling/dressed.svg",
  50008. extra: 1290/1189,
  50009. bottom: 47/1337
  50010. }
  50011. },
  50012. hand: {
  50013. height: math.unit(1.1, "feet"),
  50014. name: "Hand",
  50015. image: {
  50016. source: "./media/characters/myra-aisling/hand.svg"
  50017. }
  50018. },
  50019. paw: {
  50020. height: math.unit(1.23, "feet"),
  50021. name: "Paw",
  50022. image: {
  50023. source: "./media/characters/myra-aisling/paw.svg"
  50024. }
  50025. },
  50026. },
  50027. [
  50028. {
  50029. name: "Normal",
  50030. height: math.unit(160, "feet"),
  50031. default: true
  50032. },
  50033. ]
  50034. ))
  50035. characterMakers.push(() => makeCharacter(
  50036. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50037. {
  50038. front: {
  50039. height: math.unit(6, "feet"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/tenley-sidero/front.svg",
  50043. extra: 1365/1276,
  50044. bottom: 47/1412
  50045. }
  50046. },
  50047. back: {
  50048. height: math.unit(6, "feet"),
  50049. name: "Back",
  50050. image: {
  50051. source: "./media/characters/tenley-sidero/back.svg",
  50052. extra: 1383/1283,
  50053. bottom: 35/1418
  50054. }
  50055. },
  50056. dressed: {
  50057. height: math.unit(6, "feet"),
  50058. name: "Dressed",
  50059. image: {
  50060. source: "./media/characters/tenley-sidero/dressed.svg",
  50061. extra: 1364/1275,
  50062. bottom: 42/1406
  50063. }
  50064. },
  50065. head: {
  50066. height: math.unit(1.47, "feet"),
  50067. name: "Head",
  50068. image: {
  50069. source: "./media/characters/tenley-sidero/head.svg",
  50070. extra: 610/490,
  50071. bottom: 0/610
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Normal",
  50078. height: math.unit(154, "feet"),
  50079. default: true
  50080. },
  50081. ]
  50082. ))
  50083. characterMakers.push(() => makeCharacter(
  50084. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50085. {
  50086. front: {
  50087. height: math.unit(5, "inches"),
  50088. name: "Front",
  50089. image: {
  50090. source: "./media/characters/mallory/front.svg",
  50091. extra: 1919/1678,
  50092. bottom: 29/1948
  50093. }
  50094. },
  50095. hand: {
  50096. height: math.unit(0.73, "inches"),
  50097. name: "Hand",
  50098. image: {
  50099. source: "./media/characters/mallory/hand.svg"
  50100. }
  50101. },
  50102. paw: {
  50103. height: math.unit(0.68, "inches"),
  50104. name: "Paw",
  50105. image: {
  50106. source: "./media/characters/mallory/paw.svg"
  50107. }
  50108. },
  50109. },
  50110. [
  50111. {
  50112. name: "Small",
  50113. height: math.unit(5, "inches"),
  50114. default: true
  50115. },
  50116. ]
  50117. ))
  50118. characterMakers.push(() => makeCharacter(
  50119. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50120. {
  50121. naked: {
  50122. height: math.unit(6, "feet"),
  50123. name: "Naked",
  50124. image: {
  50125. source: "./media/characters/mab/naked.svg",
  50126. extra: 1855/1757,
  50127. bottom: 208/2063
  50128. }
  50129. },
  50130. outside: {
  50131. height: math.unit(6, "feet"),
  50132. name: "Outside",
  50133. image: {
  50134. source: "./media/characters/mab/outside.svg",
  50135. extra: 1855/1757,
  50136. bottom: 208/2063
  50137. }
  50138. },
  50139. party: {
  50140. height: math.unit(6, "feet"),
  50141. name: "Party",
  50142. image: {
  50143. source: "./media/characters/mab/party.svg",
  50144. extra: 1855/1757,
  50145. bottom: 208/2063
  50146. }
  50147. },
  50148. },
  50149. [
  50150. {
  50151. name: "Normal",
  50152. height: math.unit(165, "feet"),
  50153. default: true
  50154. },
  50155. ]
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50159. {
  50160. feral: {
  50161. height: math.unit(12, "feet"),
  50162. weight: math.unit(20000, "lb"),
  50163. name: "Side",
  50164. image: {
  50165. source: "./media/characters/winter/feral.svg",
  50166. extra: 1286/943,
  50167. bottom: 112/1398
  50168. },
  50169. form: "feral",
  50170. default: true
  50171. },
  50172. feralNsfw: {
  50173. height: math.unit(12, "feet"),
  50174. weight: math.unit(20000, "lb"),
  50175. name: "Side (NSFW)",
  50176. image: {
  50177. source: "./media/characters/winter/feral-nsfw.svg",
  50178. extra: 1286/943,
  50179. bottom: 112/1398
  50180. },
  50181. form: "feral"
  50182. },
  50183. dick: {
  50184. height: math.unit(3.79, "feet"),
  50185. name: "Dick",
  50186. image: {
  50187. source: "./media/characters/winter/dick.svg"
  50188. },
  50189. form: "feral"
  50190. },
  50191. anthro: {
  50192. height: math.unit(12, "feet"),
  50193. weight: math.unit(10, "tons"),
  50194. name: "Anthro",
  50195. image: {
  50196. source: "./media/characters/winter/anthro.svg",
  50197. extra: 1701/1553,
  50198. bottom: 64/1765
  50199. },
  50200. form: "anthro",
  50201. default: true
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Big",
  50207. height: math.unit(12, "feet"),
  50208. default: true,
  50209. form: "feral"
  50210. },
  50211. {
  50212. name: "Big",
  50213. height: math.unit(12, "feet"),
  50214. default: true,
  50215. form: "anthro"
  50216. },
  50217. ],
  50218. {
  50219. "feral": {
  50220. name: "Feral",
  50221. default: true
  50222. },
  50223. "anthro": {
  50224. name: "Anthro"
  50225. }
  50226. }
  50227. ))
  50228. characterMakers.push(() => makeCharacter(
  50229. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50230. {
  50231. front: {
  50232. height: math.unit(4.1, "inches"),
  50233. name: "Front",
  50234. image: {
  50235. source: "./media/characters/alto/front.svg",
  50236. extra: 736/627,
  50237. bottom: 90/826
  50238. }
  50239. },
  50240. },
  50241. [
  50242. {
  50243. name: "Normal",
  50244. height: math.unit(4.1, "inches"),
  50245. default: true
  50246. },
  50247. ]
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50251. {
  50252. sitting: {
  50253. height: math.unit(3, "feet"),
  50254. name: "Sitting",
  50255. image: {
  50256. source: "./media/characters/ratstrid-v/sitting.svg",
  50257. extra: 355/310,
  50258. bottom: 136/491
  50259. }
  50260. },
  50261. },
  50262. [
  50263. {
  50264. name: "Normal",
  50265. height: math.unit(3, "feet"),
  50266. default: true
  50267. },
  50268. ]
  50269. ))
  50270. characterMakers.push(() => makeCharacter(
  50271. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50272. {
  50273. back: {
  50274. height: math.unit(6, "feet"),
  50275. weight: math.unit(450, "lb"),
  50276. name: "Back",
  50277. image: {
  50278. source: "./media/characters/siz/back.svg",
  50279. extra: 1449/1274,
  50280. bottom: 13/1462
  50281. }
  50282. },
  50283. },
  50284. [
  50285. {
  50286. name: "Smallest",
  50287. height: math.unit(18 + 3/12, "feet")
  50288. },
  50289. {
  50290. name: "Modest",
  50291. height: math.unit(56 + 8/12, "feet"),
  50292. default: true
  50293. },
  50294. {
  50295. name: "Largest",
  50296. height: math.unit(3590, "feet")
  50297. },
  50298. ]
  50299. ))
  50300. characterMakers.push(() => makeCharacter(
  50301. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50302. {
  50303. front: {
  50304. height: math.unit(5 + 9/12, "feet"),
  50305. weight: math.unit(150, "lb"),
  50306. name: "Front",
  50307. image: {
  50308. source: "./media/characters/ven/front.svg",
  50309. extra: 1372/1320,
  50310. bottom: 73/1445
  50311. }
  50312. },
  50313. side: {
  50314. height: math.unit(5 + 9/12, "feet"),
  50315. weight: math.unit(1150, "lb"),
  50316. name: "Side",
  50317. image: {
  50318. source: "./media/characters/ven/side.svg",
  50319. extra: 1119/1070,
  50320. bottom: 42/1161
  50321. },
  50322. default: true
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(5 + 9/12, "feet"),
  50329. default: true
  50330. },
  50331. ]
  50332. ))
  50333. characterMakers.push(() => makeCharacter(
  50334. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50335. {
  50336. front: {
  50337. height: math.unit(12, "feet"),
  50338. weight: math.unit(1000, "kg"),
  50339. name: "Front",
  50340. image: {
  50341. source: "./media/characters/maple/front.svg",
  50342. extra: 1193/1081,
  50343. bottom: 22/1215
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Compressed",
  50350. height: math.unit(7, "feet")
  50351. },
  50352. {
  50353. name: "Normal",
  50354. height: math.unit(12, "feet"),
  50355. default: true
  50356. },
  50357. ]
  50358. ))
  50359. characterMakers.push(() => makeCharacter(
  50360. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50361. {
  50362. front: {
  50363. height: math.unit(9, "feet"),
  50364. weight: math.unit(1500, "lb"),
  50365. name: "Front",
  50366. image: {
  50367. source: "./media/characters/nora/front.svg",
  50368. extra: 1348/1286,
  50369. bottom: 218/1566
  50370. }
  50371. },
  50372. erect: {
  50373. height: math.unit(9, "feet"),
  50374. weight: math.unit(11500, "lb"),
  50375. name: "Erect",
  50376. image: {
  50377. source: "./media/characters/nora/erect.svg",
  50378. extra: 1488/1433,
  50379. bottom: 133/1621
  50380. }
  50381. },
  50382. },
  50383. [
  50384. {
  50385. name: "Normal",
  50386. height: math.unit(9, "feet"),
  50387. default: true
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(25, "feet"),
  50396. weight: math.unit(27500, "lb"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/north-caudin/front.svg",
  50400. extra: 1184/1082,
  50401. bottom: 23/1207
  50402. }
  50403. },
  50404. },
  50405. [
  50406. {
  50407. name: "Compressed",
  50408. height: math.unit(10, "feet")
  50409. },
  50410. {
  50411. name: "Normal",
  50412. height: math.unit(25, "feet"),
  50413. default: true
  50414. },
  50415. ]
  50416. ))
  50417. characterMakers.push(() => makeCharacter(
  50418. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50419. {
  50420. front: {
  50421. height: math.unit(9, "feet"),
  50422. weight: math.unit(1250, "lb"),
  50423. name: "Front",
  50424. image: {
  50425. source: "./media/characters/merrian/front.svg",
  50426. extra: 2393/2304,
  50427. bottom: 40/2433
  50428. }
  50429. },
  50430. },
  50431. [
  50432. {
  50433. name: "Normal",
  50434. height: math.unit(9, "feet"),
  50435. default: true
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(9, "feet"),
  50444. weight: math.unit(1000, "lb"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/hazel/front.svg",
  50448. extra: 2351/2298,
  50449. bottom: 38/2389
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Normal",
  50456. height: math.unit(9, "feet"),
  50457. default: true
  50458. },
  50459. ]
  50460. ))
  50461. characterMakers.push(() => makeCharacter(
  50462. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(13, "feet"),
  50466. weight: math.unit(3200, "lb"),
  50467. name: "Front",
  50468. image: {
  50469. source: "./media/characters/emma/front.svg",
  50470. extra: 2263/2029,
  50471. bottom: 68/2331
  50472. }
  50473. },
  50474. },
  50475. [
  50476. {
  50477. name: "Normal",
  50478. height: math.unit(13, "feet"),
  50479. default: true
  50480. },
  50481. ]
  50482. ))
  50483. characterMakers.push(() => makeCharacter(
  50484. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50485. {
  50486. front: {
  50487. height: math.unit(11 + 9/12, "feet"),
  50488. weight: math.unit(2500, "lb"),
  50489. name: "Front",
  50490. image: {
  50491. source: "./media/characters/ilumina/front.svg",
  50492. extra: 2248/2209,
  50493. bottom: 164/2412
  50494. }
  50495. },
  50496. },
  50497. [
  50498. {
  50499. name: "Normal",
  50500. height: math.unit(11 + 9/12, "feet"),
  50501. default: true
  50502. },
  50503. ]
  50504. ))
  50505. characterMakers.push(() => makeCharacter(
  50506. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50507. {
  50508. front: {
  50509. height: math.unit(8 + 10/12, "feet"),
  50510. weight: math.unit(1350, "lb"),
  50511. name: "Front",
  50512. image: {
  50513. source: "./media/characters/moonshine/front.svg",
  50514. extra: 2395/2288,
  50515. bottom: 40/2435
  50516. }
  50517. },
  50518. },
  50519. [
  50520. {
  50521. name: "Normal",
  50522. height: math.unit(8 + 10/12, "feet"),
  50523. default: true
  50524. },
  50525. ]
  50526. ))
  50527. characterMakers.push(() => makeCharacter(
  50528. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50529. {
  50530. front: {
  50531. height: math.unit(14, "feet"),
  50532. weight: math.unit(3400, "lb"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/aletia/front.svg",
  50536. extra: 1185/1052,
  50537. bottom: 21/1206
  50538. }
  50539. },
  50540. },
  50541. [
  50542. {
  50543. name: "Compressed",
  50544. height: math.unit(8, "feet")
  50545. },
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(14, "feet"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(17, "feet"),
  50558. weight: math.unit(6500, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/deidra/front.svg",
  50562. extra: 1201/1081,
  50563. bottom: 16/1217
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Compressed",
  50570. height: math.unit(9 + 6/12, "feet")
  50571. },
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(17, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(7 + 4/12, "feet"),
  50584. weight: math.unit(280, "lb"),
  50585. name: "Front",
  50586. image: {
  50587. source: "./media/characters/freki-yrmori/front.svg",
  50588. extra: 1286/1182,
  50589. bottom: 29/1315
  50590. }
  50591. },
  50592. maw: {
  50593. height: math.unit(0.9, "feet"),
  50594. name: "Maw",
  50595. image: {
  50596. source: "./media/characters/freki-yrmori/maw.svg"
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Normal",
  50603. height: math.unit(7 + 4/12, "feet"),
  50604. default: true
  50605. },
  50606. {
  50607. name: "Macro",
  50608. height: math.unit(38.5, "meters")
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50614. {
  50615. side: {
  50616. height: math.unit(47.2, "meters"),
  50617. weight: math.unit(10000, "tons"),
  50618. name: "Side",
  50619. image: {
  50620. source: "./media/characters/aetherios/side.svg",
  50621. extra: 2363/642,
  50622. bottom: 221/2584
  50623. }
  50624. },
  50625. top: {
  50626. height: math.unit(240, "meters"),
  50627. weight: math.unit(10000, "tons"),
  50628. name: "Top",
  50629. image: {
  50630. source: "./media/characters/aetherios/top.svg"
  50631. }
  50632. },
  50633. bottom: {
  50634. height: math.unit(240, "meters"),
  50635. weight: math.unit(10000, "tons"),
  50636. name: "Bottom",
  50637. image: {
  50638. source: "./media/characters/aetherios/bottom.svg"
  50639. }
  50640. },
  50641. head: {
  50642. height: math.unit(38.6, "meters"),
  50643. name: "Head",
  50644. image: {
  50645. source: "./media/characters/aetherios/head.svg",
  50646. extra: 1335/1112,
  50647. bottom: 0/1335
  50648. }
  50649. },
  50650. front: {
  50651. height: math.unit(29, "meters"),
  50652. name: "Front",
  50653. image: {
  50654. source: "./media/characters/aetherios/front.svg",
  50655. extra: 1266/953,
  50656. bottom: 158/1424
  50657. }
  50658. },
  50659. maw: {
  50660. height: math.unit(16.37, "meters"),
  50661. name: "Maw",
  50662. image: {
  50663. source: "./media/characters/aetherios/maw.svg",
  50664. extra: 748/637,
  50665. bottom: 0/748
  50666. },
  50667. extraAttributes: {
  50668. preyCapacity: {
  50669. name: "Capacity",
  50670. power: 3,
  50671. type: "volume",
  50672. base: math.unit(1000, "people")
  50673. },
  50674. tongueSize: {
  50675. name: "Tongue Size",
  50676. power: 2,
  50677. type: "area",
  50678. base: math.unit(21, "m^2")
  50679. }
  50680. }
  50681. },
  50682. forepaw: {
  50683. height: math.unit(18, "meters"),
  50684. name: "Forepaw",
  50685. image: {
  50686. source: "./media/characters/aetherios/forepaw.svg"
  50687. }
  50688. },
  50689. hindpaw: {
  50690. height: math.unit(23, "meters"),
  50691. name: "Hindpaw",
  50692. image: {
  50693. source: "./media/characters/aetherios/hindpaw.svg"
  50694. }
  50695. },
  50696. genitals: {
  50697. height: math.unit(42, "meters"),
  50698. name: "Genitals",
  50699. image: {
  50700. source: "./media/characters/aetherios/genitals.svg"
  50701. }
  50702. },
  50703. },
  50704. [
  50705. {
  50706. name: "Normal",
  50707. height: math.unit(47.2, "meters"),
  50708. default: true
  50709. },
  50710. {
  50711. name: "Macro",
  50712. height: math.unit(160, "meters")
  50713. },
  50714. {
  50715. name: "Mega",
  50716. height: math.unit(1.87, "km")
  50717. },
  50718. {
  50719. name: "Giga",
  50720. height: math.unit(40000, "km")
  50721. },
  50722. {
  50723. name: "Stellar",
  50724. height: math.unit(158000000, "km")
  50725. },
  50726. {
  50727. name: "Cosmic",
  50728. height: math.unit(9.46e12, "km")
  50729. },
  50730. ]
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50734. {
  50735. front: {
  50736. height: math.unit(5 + 4/12, "feet"),
  50737. weight: math.unit(80, "lb"),
  50738. name: "Front",
  50739. image: {
  50740. source: "./media/characters/mizu-gieeg/front.svg",
  50741. extra: 850/709,
  50742. bottom: 52/902
  50743. }
  50744. },
  50745. back: {
  50746. height: math.unit(5 + 4/12, "feet"),
  50747. weight: math.unit(80, "lb"),
  50748. name: "Back",
  50749. image: {
  50750. source: "./media/characters/mizu-gieeg/back.svg",
  50751. extra: 882/745,
  50752. bottom: 25/907
  50753. }
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Normal",
  50759. height: math.unit(5 + 4/12, "feet"),
  50760. default: true
  50761. },
  50762. ]
  50763. ))
  50764. characterMakers.push(() => makeCharacter(
  50765. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50766. {
  50767. front: {
  50768. height: math.unit(6, "feet"),
  50769. name: "Front",
  50770. image: {
  50771. source: "./media/characters/roselle-st-papier/front.svg",
  50772. extra: 1430/1280,
  50773. bottom: 37/1467
  50774. }
  50775. },
  50776. back: {
  50777. height: math.unit(6, "feet"),
  50778. name: "Back",
  50779. image: {
  50780. source: "./media/characters/roselle-st-papier/back.svg",
  50781. extra: 1491/1296,
  50782. bottom: 23/1514
  50783. }
  50784. },
  50785. ear: {
  50786. height: math.unit(1.26, "feet"),
  50787. name: "Ear",
  50788. image: {
  50789. source: "./media/characters/roselle-st-papier/ear.svg"
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(150, "feet"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(1, "inches"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/valargent/front.svg",
  50809. extra: 1825/1694,
  50810. bottom: 62/1887
  50811. }
  50812. },
  50813. back: {
  50814. height: math.unit(1, "inches"),
  50815. name: "Back",
  50816. image: {
  50817. source: "./media/characters/valargent/back.svg",
  50818. extra: 1775/1682,
  50819. bottom: 88/1863
  50820. }
  50821. },
  50822. },
  50823. [
  50824. {
  50825. name: "Micro",
  50826. height: math.unit(1, "inch"),
  50827. default: true
  50828. },
  50829. ]
  50830. ))
  50831. characterMakers.push(() => makeCharacter(
  50832. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50833. {
  50834. front: {
  50835. height: math.unit(3.4, "meters"),
  50836. name: "Front",
  50837. image: {
  50838. source: "./media/characters/zarina/front.svg",
  50839. extra: 1733/1425,
  50840. bottom: 93/1826
  50841. }
  50842. },
  50843. squatting: {
  50844. height: math.unit(2.14, "meters"),
  50845. name: "Squatting",
  50846. image: {
  50847. source: "./media/characters/zarina/squatting.svg",
  50848. extra: 1073/788,
  50849. bottom: 63/1136
  50850. }
  50851. },
  50852. back: {
  50853. height: math.unit(2.14, "meters"),
  50854. name: "Back",
  50855. image: {
  50856. source: "./media/characters/zarina/back.svg",
  50857. extra: 1128/885,
  50858. bottom: 0/1128
  50859. }
  50860. },
  50861. },
  50862. [
  50863. {
  50864. name: "Normal",
  50865. height: math.unit(3.4, "meters"),
  50866. default: true
  50867. },
  50868. {
  50869. name: "Big",
  50870. height: math.unit(5, "meters")
  50871. },
  50872. {
  50873. name: "Macro",
  50874. height: math.unit(110, "meters")
  50875. },
  50876. ]
  50877. ))
  50878. characterMakers.push(() => makeCharacter(
  50879. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50880. {
  50881. front: {
  50882. height: math.unit(7, "feet"),
  50883. name: "Front",
  50884. image: {
  50885. source: "./media/characters/ventus-astro-fox/front.svg",
  50886. extra: 1792/1623,
  50887. bottom: 28/1820
  50888. }
  50889. },
  50890. back: {
  50891. height: math.unit(7, "feet"),
  50892. name: "Back",
  50893. image: {
  50894. source: "./media/characters/ventus-astro-fox/back.svg",
  50895. extra: 1789/1620,
  50896. bottom: 31/1820
  50897. }
  50898. },
  50899. outfit: {
  50900. height: math.unit(7, "feet"),
  50901. name: "Outfit",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50904. extra: 1054/925,
  50905. bottom: 15/1069
  50906. }
  50907. },
  50908. head: {
  50909. height: math.unit(1.12, "feet"),
  50910. name: "Head",
  50911. image: {
  50912. source: "./media/characters/ventus-astro-fox/head.svg",
  50913. extra: 866/504,
  50914. bottom: 0/866
  50915. }
  50916. },
  50917. hand: {
  50918. height: math.unit(1, "feet"),
  50919. name: "Hand",
  50920. image: {
  50921. source: "./media/characters/ventus-astro-fox/hand.svg"
  50922. }
  50923. },
  50924. paw: {
  50925. height: math.unit(1.5, "feet"),
  50926. name: "Paw",
  50927. image: {
  50928. source: "./media/characters/ventus-astro-fox/paw.svg"
  50929. }
  50930. },
  50931. },
  50932. [
  50933. {
  50934. name: "Normal",
  50935. height: math.unit(7, "feet"),
  50936. default: true
  50937. },
  50938. {
  50939. name: "Macro",
  50940. height: math.unit(200, "feet")
  50941. },
  50942. {
  50943. name: "Cosmic",
  50944. height: math.unit(3, "universes")
  50945. },
  50946. ]
  50947. ))
  50948. characterMakers.push(() => makeCharacter(
  50949. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50950. {
  50951. front: {
  50952. height: math.unit(3, "meters"),
  50953. weight: math.unit(7000, "lb"),
  50954. name: "Front",
  50955. image: {
  50956. source: "./media/characters/core-t/front.svg",
  50957. extra: 5729/4941,
  50958. bottom: 1129/6858
  50959. }
  50960. },
  50961. },
  50962. [
  50963. {
  50964. name: "Big",
  50965. height: math.unit(3, "meters"),
  50966. default: true
  50967. },
  50968. ]
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50972. {
  50973. normal: {
  50974. height: math.unit(6 + 6/12, "feet"),
  50975. weight: math.unit(275, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/cadbunny/normal.svg",
  50979. extra: 1129/947,
  50980. bottom: 93/1222
  50981. },
  50982. default: true,
  50983. form: "normal"
  50984. },
  50985. gigantamax: {
  50986. height: math.unit(26, "feet"),
  50987. weight: math.unit(16000, "lb"),
  50988. name: "Front",
  50989. image: {
  50990. source: "./media/characters/cadbunny/gigantamax.svg",
  50991. extra: 1133/944,
  50992. bottom: 90/1223
  50993. },
  50994. default: true,
  50995. form: "gigantamax"
  50996. },
  50997. },
  50998. [
  50999. {
  51000. name: "Normal",
  51001. height: math.unit(6 + 6/12, "feet"),
  51002. default: true,
  51003. form: "normal"
  51004. },
  51005. {
  51006. name: "Small",
  51007. height: math.unit(26, "feet"),
  51008. default: true,
  51009. form: "gigantamax"
  51010. },
  51011. {
  51012. name: "Large",
  51013. height: math.unit(78, "feet"),
  51014. form: "gigantamax"
  51015. },
  51016. ],
  51017. {
  51018. "normal": {
  51019. name: "Normal",
  51020. default: true
  51021. },
  51022. "gigantamax": {
  51023. name: "Gigantamax"
  51024. }
  51025. }
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51029. {
  51030. anthroFront: {
  51031. height: math.unit(8, "feet"),
  51032. weight: math.unit(300, "lb"),
  51033. name: "Front",
  51034. image: {
  51035. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51036. extra: 1272/1176,
  51037. bottom: 53/1325
  51038. },
  51039. form: "anthro",
  51040. default: true
  51041. },
  51042. feralSide: {
  51043. height: math.unit(4, "feet"),
  51044. weight: math.unit(250, "lb"),
  51045. name: "Side",
  51046. image: {
  51047. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51048. extra: 731/621,
  51049. bottom: 0/731
  51050. },
  51051. form: "feral",
  51052. default: true
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Regular",
  51058. height: math.unit(8, "feet"),
  51059. form: "anthro"
  51060. },
  51061. {
  51062. name: "Macro",
  51063. height: math.unit(250, "feet"),
  51064. form: "anthro",
  51065. default: true
  51066. },
  51067. {
  51068. name: "Regular",
  51069. height: math.unit(4, "feet"),
  51070. form: "feral"
  51071. },
  51072. {
  51073. name: "Macro",
  51074. height: math.unit(125, "feet"),
  51075. form: "feral",
  51076. default: true
  51077. },
  51078. ],
  51079. {
  51080. "anthro": {
  51081. name: "Anthro",
  51082. default: true
  51083. },
  51084. "feral": {
  51085. name: "Feral",
  51086. },
  51087. }
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51091. {
  51092. front: {
  51093. height: math.unit(11 + 10/12, "feet"),
  51094. weight: math.unit(1587, "kg"),
  51095. name: "Front",
  51096. image: {
  51097. source: "./media/characters/maple-javira-dragon/front.svg",
  51098. extra: 1136/744,
  51099. bottom: 73/1209
  51100. }
  51101. },
  51102. side: {
  51103. height: math.unit(11 + 10/12, "feet"),
  51104. weight: math.unit(1587, "kg"),
  51105. name: "Side",
  51106. image: {
  51107. source: "./media/characters/maple-javira-dragon/side.svg",
  51108. extra: 712/505,
  51109. bottom: 17/729
  51110. }
  51111. },
  51112. head: {
  51113. height: math.unit(8.05, "feet"),
  51114. name: "Head",
  51115. image: {
  51116. source: "./media/characters/maple-javira-dragon/head.svg",
  51117. extra: 1420/1344,
  51118. bottom: 0/1420
  51119. }
  51120. },
  51121. },
  51122. [
  51123. {
  51124. name: "Normal",
  51125. height: math.unit(11 + 10/12, "feet"),
  51126. default: true
  51127. },
  51128. ]
  51129. ))
  51130. characterMakers.push(() => makeCharacter(
  51131. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51132. {
  51133. front: {
  51134. height: math.unit(117, "cm"),
  51135. weight: math.unit(50, "kg"),
  51136. name: "Front",
  51137. image: {
  51138. source: "./media/characters/sonia-wyverntail/front.svg",
  51139. extra: 708/592,
  51140. bottom: 25/733
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(117, "cm"),
  51148. default: true
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(6 + 5/12, "feet"),
  51157. name: "Front",
  51158. image: {
  51159. source: "./media/characters/micah/front.svg",
  51160. extra: 1758/1546,
  51161. bottom: 214/1972
  51162. }
  51163. },
  51164. },
  51165. [
  51166. {
  51167. name: "Normal",
  51168. height: math.unit(6 + 5/12, "feet"),
  51169. default: true
  51170. },
  51171. ]
  51172. ))
  51173. characterMakers.push(() => makeCharacter(
  51174. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51175. {
  51176. front: {
  51177. height: math.unit(1.75, "meters"),
  51178. weight: math.unit(100, "kg"),
  51179. name: "Front",
  51180. image: {
  51181. source: "./media/characters/zarya/front.svg",
  51182. extra: 741/735,
  51183. bottom: 44/785
  51184. },
  51185. extraAttributes: {
  51186. "tailLength": {
  51187. name: "Tail Length",
  51188. power: 1,
  51189. type: "length",
  51190. base: math.unit(180, "cm")
  51191. },
  51192. "pawLength": {
  51193. name: "Paw Length",
  51194. power: 1,
  51195. type: "length",
  51196. base: math.unit(31, "cm")
  51197. },
  51198. }
  51199. },
  51200. side: {
  51201. height: math.unit(1.75, "meters"),
  51202. weight: math.unit(100, "kg"),
  51203. name: "Side",
  51204. image: {
  51205. source: "./media/characters/zarya/side.svg",
  51206. extra: 776/770,
  51207. bottom: 17/793
  51208. },
  51209. extraAttributes: {
  51210. "tailLength": {
  51211. name: "Tail Length",
  51212. power: 1,
  51213. type: "length",
  51214. base: math.unit(180, "cm")
  51215. },
  51216. "pawLength": {
  51217. name: "Paw Length",
  51218. power: 1,
  51219. type: "length",
  51220. base: math.unit(31, "cm")
  51221. },
  51222. }
  51223. },
  51224. back: {
  51225. height: math.unit(1.75, "meters"),
  51226. weight: math.unit(100, "kg"),
  51227. name: "Back",
  51228. image: {
  51229. source: "./media/characters/zarya/back.svg",
  51230. extra: 741/735,
  51231. bottom: 44/785
  51232. },
  51233. extraAttributes: {
  51234. "tailLength": {
  51235. name: "Tail Length",
  51236. power: 1,
  51237. type: "length",
  51238. base: math.unit(180, "cm")
  51239. },
  51240. "pawLength": {
  51241. name: "Paw Length",
  51242. power: 1,
  51243. type: "length",
  51244. base: math.unit(31, "cm")
  51245. },
  51246. }
  51247. },
  51248. frontNoTail: {
  51249. height: math.unit(1.75, "meters"),
  51250. weight: math.unit(100, "kg"),
  51251. name: "Front (No Tail)",
  51252. image: {
  51253. source: "./media/characters/zarya/front-no-tail.svg",
  51254. extra: 741/735,
  51255. bottom: 44/785
  51256. },
  51257. extraAttributes: {
  51258. "tailLength": {
  51259. name: "Tail Length",
  51260. power: 1,
  51261. type: "length",
  51262. base: math.unit(180, "cm")
  51263. },
  51264. "pawLength": {
  51265. name: "Paw Length",
  51266. power: 1,
  51267. type: "length",
  51268. base: math.unit(31, "cm")
  51269. },
  51270. }
  51271. },
  51272. dressed: {
  51273. height: math.unit(1.75, "meters"),
  51274. weight: math.unit(100, "kg"),
  51275. name: "Dressed",
  51276. image: {
  51277. source: "./media/characters/zarya/dressed.svg",
  51278. extra: 683/672,
  51279. bottom: 79/762
  51280. },
  51281. extraAttributes: {
  51282. "tailLength": {
  51283. name: "Tail Length",
  51284. power: 1,
  51285. type: "length",
  51286. base: math.unit(180, "cm")
  51287. },
  51288. "pawLength": {
  51289. name: "Paw Length",
  51290. power: 1,
  51291. type: "length",
  51292. base: math.unit(31, "cm")
  51293. },
  51294. }
  51295. },
  51296. },
  51297. [
  51298. {
  51299. name: "Micro",
  51300. height: math.unit(5, "cm")
  51301. },
  51302. {
  51303. name: "Normal",
  51304. height: math.unit(1.75, "meters"),
  51305. default: true
  51306. },
  51307. {
  51308. name: "Macro",
  51309. height: math.unit(122, "meters")
  51310. },
  51311. ]
  51312. ))
  51313. characterMakers.push(() => makeCharacter(
  51314. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51315. {
  51316. front: {
  51317. height: math.unit(7.5, "feet"),
  51318. name: "Front",
  51319. image: {
  51320. source: "./media/characters/sven-hatisson/front.svg",
  51321. extra: 917/857,
  51322. bottom: 42/959
  51323. }
  51324. },
  51325. back: {
  51326. height: math.unit(7.5, "feet"),
  51327. name: "Back",
  51328. image: {
  51329. source: "./media/characters/sven-hatisson/back.svg",
  51330. extra: 903/856,
  51331. bottom: 15/918
  51332. }
  51333. },
  51334. },
  51335. [
  51336. {
  51337. name: "Base Height",
  51338. height: math.unit(7.5, "feet")
  51339. },
  51340. {
  51341. name: "Usual Height",
  51342. height: math.unit(13.5, "feet"),
  51343. default: true
  51344. },
  51345. {
  51346. name: "Smaller Macro",
  51347. height: math.unit(85, "feet")
  51348. },
  51349. {
  51350. name: "Moderate Macro",
  51351. height: math.unit(320, "feet")
  51352. },
  51353. {
  51354. name: "Large Macro",
  51355. height: math.unit(1000, "feet")
  51356. },
  51357. {
  51358. name: "Largest Size",
  51359. height: math.unit(2, "miles")
  51360. },
  51361. ]
  51362. ))
  51363. characterMakers.push(() => makeCharacter(
  51364. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51365. {
  51366. side: {
  51367. height: math.unit(1.8, "meters"),
  51368. weight: math.unit(275, "kg"),
  51369. name: "Side",
  51370. image: {
  51371. source: "./media/characters/terra/side.svg",
  51372. extra: 1273/1147,
  51373. bottom: 0/1273
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Normal",
  51380. height: math.unit(16.2, "meters"),
  51381. default: true
  51382. },
  51383. ]
  51384. ))
  51385. characterMakers.push(() => makeCharacter(
  51386. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51387. {
  51388. borzoiFront: {
  51389. height: math.unit(6 + 9/12, "feet"),
  51390. name: "Front",
  51391. image: {
  51392. source: "./media/characters/rae/borzoi-front.svg",
  51393. extra: 1161/1098,
  51394. bottom: 31/1192
  51395. },
  51396. form: "borzoi",
  51397. default: true
  51398. },
  51399. werewolfFront: {
  51400. height: math.unit(8 + 7/12, "feet"),
  51401. name: "Front",
  51402. image: {
  51403. source: "./media/characters/rae/werewolf-front.svg",
  51404. extra: 1411/1334,
  51405. bottom: 127/1538
  51406. },
  51407. form: "werewolf",
  51408. default: true
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(6 + 9/12, "feet"),
  51415. default: true,
  51416. form: "borzoi"
  51417. },
  51418. {
  51419. name: "Normal",
  51420. height: math.unit(8 + 7/12, "feet"),
  51421. default: true,
  51422. form: "werewolf"
  51423. },
  51424. ],
  51425. {
  51426. "borzoi": {
  51427. name: "Borzoi",
  51428. default: true
  51429. },
  51430. "werewolf": {
  51431. name: "Werewolf",
  51432. },
  51433. }
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51437. {
  51438. front: {
  51439. height: math.unit(8 + 7/12, "feet"),
  51440. weight: math.unit(482, "lb"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/kit/front.svg",
  51444. extra: 1247/1103,
  51445. bottom: 41/1288
  51446. }
  51447. },
  51448. back: {
  51449. height: math.unit(8 + 7/12, "feet"),
  51450. weight: math.unit(482, "lb"),
  51451. name: "Back",
  51452. image: {
  51453. source: "./media/characters/kit/back.svg",
  51454. extra: 1252/1123,
  51455. bottom: 21/1273
  51456. }
  51457. },
  51458. paw: {
  51459. height: math.unit(1.46, "feet"),
  51460. name: "Paw",
  51461. image: {
  51462. source: "./media/characters/kit/paw.svg"
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Normal",
  51469. height: math.unit(2.61, "meters"),
  51470. default: true
  51471. },
  51472. {
  51473. name: "\"Tall\"",
  51474. height: math.unit(8.21, "meters")
  51475. },
  51476. {
  51477. name: "Tall",
  51478. height: math.unit(19.6, "meters")
  51479. },
  51480. {
  51481. name: "Very Tall",
  51482. height: math.unit(57.91, "meters")
  51483. },
  51484. {
  51485. name: "Semi-Macro",
  51486. height: math.unit(138.64, "meters")
  51487. },
  51488. {
  51489. name: "Macro",
  51490. height: math.unit(831.99, "meters")
  51491. },
  51492. {
  51493. name: "EX-Macro",
  51494. height: math.unit(96451121, "meters")
  51495. },
  51496. {
  51497. name: "S1-Omnipotent",
  51498. height: math.unit(4.42074e+9, "meters")
  51499. },
  51500. {
  51501. name: "S2-Omnipotent",
  51502. height: math.unit(9.42074e+17, "meters")
  51503. },
  51504. {
  51505. name: "Omnipotent",
  51506. height: math.unit(4.23112e+24, "meters")
  51507. },
  51508. {
  51509. name: "Hypergod",
  51510. height: math.unit(5.05176e+27, "meters")
  51511. },
  51512. {
  51513. name: "Hypergod-EX",
  51514. height: math.unit(9.45532e+49, "meters")
  51515. },
  51516. {
  51517. name: "Hypergod-SP",
  51518. height: math.unit(9.45532e+195, "meters")
  51519. },
  51520. ]
  51521. ))
  51522. characterMakers.push(() => makeCharacter(
  51523. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51524. {
  51525. side: {
  51526. height: math.unit(0.6, "meters"),
  51527. weight: math.unit(24, "kg"),
  51528. name: "Side",
  51529. image: {
  51530. source: "./media/characters/celeste/side.svg",
  51531. extra: 810/517,
  51532. bottom: 53/863
  51533. }
  51534. },
  51535. },
  51536. [
  51537. {
  51538. name: "Velociraptor",
  51539. height: math.unit(0.6, "meters"),
  51540. default: true
  51541. },
  51542. {
  51543. name: "Utahraptor",
  51544. height: math.unit(1.8, "meters")
  51545. },
  51546. {
  51547. name: "Gallimimus",
  51548. height: math.unit(4.0, "meters")
  51549. },
  51550. {
  51551. name: "Large",
  51552. height: math.unit(20, "meters")
  51553. },
  51554. {
  51555. name: "Planetary",
  51556. height: math.unit(50, "megameters")
  51557. },
  51558. {
  51559. name: "Stellar",
  51560. height: math.unit(1.5, "gigameters")
  51561. },
  51562. {
  51563. name: "Galactic",
  51564. height: math.unit(100, "exameters")
  51565. },
  51566. ]
  51567. ))
  51568. characterMakers.push(() => makeCharacter(
  51569. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51570. {
  51571. front: {
  51572. height: math.unit(6, "feet"),
  51573. weight: math.unit(210, "lb"),
  51574. name: "Front",
  51575. image: {
  51576. source: "./media/characters/glacia/front.svg",
  51577. extra: 958/901,
  51578. bottom: 45/1003
  51579. }
  51580. },
  51581. },
  51582. [
  51583. {
  51584. name: "Macro",
  51585. height: math.unit(1000, "meters"),
  51586. default: true
  51587. },
  51588. ]
  51589. ))
  51590. characterMakers.push(() => makeCharacter(
  51591. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51592. {
  51593. front: {
  51594. height: math.unit(4, "meters"),
  51595. name: "Front",
  51596. image: {
  51597. source: "./media/characters/giri/front.svg",
  51598. extra: 966/894,
  51599. bottom: 21/987
  51600. }
  51601. },
  51602. },
  51603. [
  51604. {
  51605. name: "Normal",
  51606. height: math.unit(4, "meters"),
  51607. default: true
  51608. },
  51609. ]
  51610. ))
  51611. characterMakers.push(() => makeCharacter(
  51612. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51613. {
  51614. back: {
  51615. height: math.unit(4, "feet"),
  51616. weight: math.unit(37, "lb"),
  51617. name: "Back",
  51618. image: {
  51619. source: "./media/characters/tin/back.svg",
  51620. extra: 845/780,
  51621. bottom: 28/873
  51622. }
  51623. },
  51624. },
  51625. [
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(4, "feet"),
  51629. default: true
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51635. {
  51636. front: {
  51637. height: math.unit(25, "feet"),
  51638. name: "Front",
  51639. image: {
  51640. source: "./media/characters/cadenza-vivace/front.svg",
  51641. extra: 1842/1578,
  51642. bottom: 30/1872
  51643. }
  51644. },
  51645. },
  51646. [
  51647. {
  51648. name: "Macro",
  51649. height: math.unit(25, "feet"),
  51650. default: true
  51651. },
  51652. ]
  51653. ))
  51654. characterMakers.push(() => makeCharacter(
  51655. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51656. {
  51657. front: {
  51658. height: math.unit(10, "feet"),
  51659. weight: math.unit(625, "kg"),
  51660. name: "Front",
  51661. image: {
  51662. source: "./media/characters/zain/front.svg",
  51663. extra: 1682/1498,
  51664. bottom: 223/1905
  51665. }
  51666. },
  51667. back: {
  51668. height: math.unit(10, "feet"),
  51669. weight: math.unit(625, "kg"),
  51670. name: "Back",
  51671. image: {
  51672. source: "./media/characters/zain/back.svg",
  51673. extra: 1814/1657,
  51674. bottom: 152/1966
  51675. }
  51676. },
  51677. head: {
  51678. height: math.unit(10, "feet"),
  51679. weight: math.unit(625, "kg"),
  51680. name: "Head",
  51681. image: {
  51682. source: "./media/characters/zain/head.svg",
  51683. extra: 1059/762,
  51684. bottom: 0/1059
  51685. }
  51686. },
  51687. },
  51688. [
  51689. {
  51690. name: "Normal",
  51691. height: math.unit(10, "feet"),
  51692. default: true
  51693. },
  51694. ]
  51695. ))
  51696. characterMakers.push(() => makeCharacter(
  51697. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51698. {
  51699. front: {
  51700. height: math.unit(6 + 5/12, "feet"),
  51701. weight: math.unit(750, "lb"),
  51702. name: "Front",
  51703. image: {
  51704. source: "./media/characters/ruchex/front.svg",
  51705. extra: 877/820,
  51706. bottom: 17/894
  51707. },
  51708. extraAttributes: {
  51709. "width": {
  51710. name: "Width",
  51711. power: 1,
  51712. type: "length",
  51713. base: math.unit(4.757, "feet")
  51714. },
  51715. }
  51716. },
  51717. },
  51718. [
  51719. {
  51720. name: "Normal",
  51721. height: math.unit(6 + 5/12, "feet"),
  51722. default: true
  51723. },
  51724. ]
  51725. ))
  51726. characterMakers.push(() => makeCharacter(
  51727. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51728. {
  51729. dressedFront: {
  51730. height: math.unit(191, "cm"),
  51731. weight: math.unit(80, "kg"),
  51732. name: "Front",
  51733. image: {
  51734. source: "./media/characters/buster/dressed-front.svg",
  51735. extra: 1022/973,
  51736. bottom: 69/1091
  51737. }
  51738. },
  51739. dressedBack: {
  51740. height: math.unit(191, "cm"),
  51741. weight: math.unit(80, "kg"),
  51742. name: "Back",
  51743. image: {
  51744. source: "./media/characters/buster/dressed-back.svg",
  51745. extra: 1018/970,
  51746. bottom: 55/1073
  51747. }
  51748. },
  51749. nudeFront: {
  51750. height: math.unit(191, "cm"),
  51751. weight: math.unit(80, "kg"),
  51752. name: "Front (Nude)",
  51753. image: {
  51754. source: "./media/characters/buster/nude-front.svg",
  51755. extra: 1022/973,
  51756. bottom: 69/1091
  51757. }
  51758. },
  51759. nudeBack: {
  51760. height: math.unit(191, "cm"),
  51761. weight: math.unit(80, "kg"),
  51762. name: "Back (Nude)",
  51763. image: {
  51764. source: "./media/characters/buster/nude-back.svg",
  51765. extra: 1018/970,
  51766. bottom: 55/1073
  51767. }
  51768. },
  51769. dick: {
  51770. height: math.unit(2.59, "feet"),
  51771. name: "Dick",
  51772. image: {
  51773. source: "./media/characters/buster/dick.svg"
  51774. }
  51775. },
  51776. ass: {
  51777. height: math.unit(1.2, "feet"),
  51778. name: "Ass",
  51779. image: {
  51780. source: "./media/characters/buster/ass.svg"
  51781. }
  51782. },
  51783. },
  51784. [
  51785. {
  51786. name: "Normal",
  51787. height: math.unit(191, "cm"),
  51788. default: true
  51789. },
  51790. ]
  51791. ))
  51792. characterMakers.push(() => makeCharacter(
  51793. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51794. {
  51795. side: {
  51796. height: math.unit(8.1, "feet"),
  51797. weight: math.unit(3500, "lb"),
  51798. name: "Side",
  51799. image: {
  51800. source: "./media/characters/sonya/side.svg",
  51801. extra: 1730/1317,
  51802. bottom: 86/1816
  51803. }
  51804. },
  51805. },
  51806. [
  51807. {
  51808. name: "Normal",
  51809. height: math.unit(8.1, "feet"),
  51810. default: true
  51811. },
  51812. ]
  51813. ))
  51814. characterMakers.push(() => makeCharacter(
  51815. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51816. {
  51817. front: {
  51818. height: math.unit(6, "feet"),
  51819. weight: math.unit(150, "lb"),
  51820. name: "Front",
  51821. image: {
  51822. source: "./media/characters/cadence-andrysiak/front.svg",
  51823. extra: 1164/1121,
  51824. bottom: 60/1224
  51825. }
  51826. },
  51827. back: {
  51828. height: math.unit(6, "feet"),
  51829. weight: math.unit(150, "lb"),
  51830. name: "Back",
  51831. image: {
  51832. source: "./media/characters/cadence-andrysiak/back.svg",
  51833. extra: 1200/1165,
  51834. bottom: 9/1209
  51835. }
  51836. },
  51837. dressed: {
  51838. height: math.unit(6, "feet"),
  51839. weight: math.unit(150, "lb"),
  51840. name: "Dressed",
  51841. image: {
  51842. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51843. extra: 1164/1121,
  51844. bottom: 60/1224
  51845. }
  51846. },
  51847. },
  51848. [
  51849. {
  51850. name: "Micro",
  51851. height: math.unit(1, "mm")
  51852. },
  51853. {
  51854. name: "Normal",
  51855. height: math.unit(6, "feet"),
  51856. default: true
  51857. },
  51858. ]
  51859. ))
  51860. characterMakers.push(() => makeCharacter(
  51861. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51862. {
  51863. front: {
  51864. height: math.unit(60, "inches"),
  51865. weight: math.unit(16, "lb"),
  51866. preyCapacity: math.unit(80, "liters"),
  51867. name: "Front",
  51868. image: {
  51869. source: "./media/characters/penny-lynx/front.svg",
  51870. extra: 1959/1769,
  51871. bottom: 49/2008
  51872. }
  51873. },
  51874. },
  51875. [
  51876. {
  51877. name: "Nokia",
  51878. height: math.unit(2, "inches")
  51879. },
  51880. {
  51881. name: "Desktop",
  51882. height: math.unit(24, "inches")
  51883. },
  51884. {
  51885. name: "TV",
  51886. height: math.unit(60, "inches")
  51887. },
  51888. {
  51889. name: "Jumbotron",
  51890. height: math.unit(12, "feet")
  51891. },
  51892. {
  51893. name: "Billboard",
  51894. height: math.unit(48, "feet"),
  51895. default: true
  51896. },
  51897. {
  51898. name: "IMAX",
  51899. height: math.unit(96, "feet")
  51900. },
  51901. {
  51902. name: "SINGULARITY",
  51903. height: math.unit(864938, "miles")
  51904. },
  51905. ]
  51906. ))
  51907. characterMakers.push(() => makeCharacter(
  51908. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51909. {
  51910. front: {
  51911. height: math.unit(5 + 4/12, "feet"),
  51912. weight: math.unit(230, "lb"),
  51913. name: "Front",
  51914. image: {
  51915. source: "./media/characters/sukebe/front.svg",
  51916. extra: 2130/2038,
  51917. bottom: 90/2220
  51918. }
  51919. },
  51920. back: {
  51921. height: math.unit(3.48, "feet"),
  51922. weight: math.unit(230, "lb"),
  51923. name: "Back",
  51924. image: {
  51925. source: "./media/characters/sukebe/back.svg",
  51926. extra: 1670/1604,
  51927. bottom: 0/1670
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Normal",
  51934. height: math.unit(5 + 4/12, "feet"),
  51935. default: true
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51941. {
  51942. front: {
  51943. height: math.unit(6, "feet"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/nylla/front.svg",
  51947. extra: 1868/1699,
  51948. bottom: 97/1965
  51949. }
  51950. },
  51951. back: {
  51952. height: math.unit(6, "feet"),
  51953. name: "Back",
  51954. image: {
  51955. source: "./media/characters/nylla/back.svg",
  51956. extra: 1889/1712,
  51957. bottom: 93/1982
  51958. }
  51959. },
  51960. frontNsfw: {
  51961. height: math.unit(6, "feet"),
  51962. name: "Front (NSFW)",
  51963. image: {
  51964. source: "./media/characters/nylla/front-nsfw.svg",
  51965. extra: 1868/1699,
  51966. bottom: 97/1965
  51967. },
  51968. extraAttributes: {
  51969. "dickLength": {
  51970. name: "Dick Length",
  51971. power: 1,
  51972. type: "length",
  51973. base: math.unit(1.4, "feet")
  51974. },
  51975. "cumVolume": {
  51976. name: "Cum Volume",
  51977. power: 3,
  51978. type: "volume",
  51979. base: math.unit(100, "mL")
  51980. },
  51981. }
  51982. },
  51983. backNsfw: {
  51984. height: math.unit(6, "feet"),
  51985. name: "Back (NSFW)",
  51986. image: {
  51987. source: "./media/characters/nylla/back-nsfw.svg",
  51988. extra: 1889/1712,
  51989. bottom: 93/1982
  51990. }
  51991. },
  51992. maw: {
  51993. height: math.unit(2.10, "feet"),
  51994. name: "Maw",
  51995. image: {
  51996. source: "./media/characters/nylla/maw.svg"
  51997. }
  51998. },
  51999. paws: {
  52000. height: math.unit(2.06, "feet"),
  52001. name: "Paws",
  52002. image: {
  52003. source: "./media/characters/nylla/paws.svg"
  52004. }
  52005. },
  52006. muzzle: {
  52007. height: math.unit(0.61, "feet"),
  52008. name: "Muzzle",
  52009. image: {
  52010. source: "./media/characters/nylla/muzzle.svg"
  52011. }
  52012. },
  52013. sheath: {
  52014. height: math.unit(1.305, "feet"),
  52015. name: "Sheath",
  52016. image: {
  52017. source: "./media/characters/nylla/sheath.svg"
  52018. }
  52019. },
  52020. },
  52021. [
  52022. {
  52023. name: "Micro",
  52024. height: math.unit(7.5, "inches")
  52025. },
  52026. {
  52027. name: "Normal",
  52028. height: math.unit(7, "feet"),
  52029. default: true
  52030. },
  52031. {
  52032. name: "Macro",
  52033. height: math.unit(60, "feet")
  52034. },
  52035. {
  52036. name: "Mega",
  52037. height: math.unit(200, "feet")
  52038. },
  52039. ]
  52040. ))
  52041. characterMakers.push(() => makeCharacter(
  52042. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52043. {
  52044. front: {
  52045. height: math.unit(10, "feet"),
  52046. weight: math.unit(2300, "lb"),
  52047. name: "Front",
  52048. image: {
  52049. source: "./media/characters/hunt3r/front.svg",
  52050. extra: 1909/1742,
  52051. bottom: 46/1955
  52052. }
  52053. },
  52054. },
  52055. [
  52056. {
  52057. name: "Normal",
  52058. height: math.unit(10, "feet"),
  52059. default: true
  52060. },
  52061. ]
  52062. ))
  52063. characterMakers.push(() => makeCharacter(
  52064. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52065. {
  52066. dressed: {
  52067. height: math.unit(11, "feet"),
  52068. weight: math.unit(18500, "lb"),
  52069. preyCapacity: math.unit(9, "people"),
  52070. name: "Dressed",
  52071. image: {
  52072. source: "./media/characters/cylphis/dressed.svg",
  52073. extra: 1028/1003,
  52074. bottom: 75/1103
  52075. },
  52076. },
  52077. undressed: {
  52078. height: math.unit(11, "feet"),
  52079. weight: math.unit(18500, "lb"),
  52080. preyCapacity: math.unit(9, "people"),
  52081. name: "Undressed",
  52082. image: {
  52083. source: "./media/characters/cylphis/undressed.svg",
  52084. extra: 1028/1003,
  52085. bottom: 75/1103
  52086. }
  52087. },
  52088. full: {
  52089. height: math.unit(11, "feet"),
  52090. weight: math.unit(18500 + 150*9, "lb"),
  52091. preyCapacity: math.unit(9, "people"),
  52092. name: "Full",
  52093. image: {
  52094. source: "./media/characters/cylphis/full.svg",
  52095. extra: 1028/1003,
  52096. bottom: 75/1103
  52097. }
  52098. },
  52099. },
  52100. [
  52101. {
  52102. name: "Small",
  52103. height: math.unit(8, "feet")
  52104. },
  52105. {
  52106. name: "Normal",
  52107. height: math.unit(11, "feet"),
  52108. default: true
  52109. },
  52110. ]
  52111. ))
  52112. characterMakers.push(() => makeCharacter(
  52113. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52114. {
  52115. front: {
  52116. height: math.unit(2 + 7/12, "feet"),
  52117. name: "Front",
  52118. image: {
  52119. source: "./media/characters/orishan/front.svg",
  52120. extra: 1058/1023,
  52121. bottom: 23/1081
  52122. }
  52123. },
  52124. back: {
  52125. height: math.unit(2 + 7/12, "feet"),
  52126. name: "Back",
  52127. image: {
  52128. source: "./media/characters/orishan/back.svg",
  52129. extra: 1058/1023,
  52130. bottom: 23/1081
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Micro",
  52137. height: math.unit(2, "cm")
  52138. },
  52139. {
  52140. name: "Normal",
  52141. height: math.unit(2 + 7/12, "feet"),
  52142. default: true
  52143. },
  52144. ]
  52145. ))
  52146. characterMakers.push(() => makeCharacter(
  52147. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52148. {
  52149. front: {
  52150. height: math.unit(3, "meters"),
  52151. weight: math.unit(508, "kg"),
  52152. name: "Front",
  52153. image: {
  52154. source: "./media/characters/seranis/front.svg",
  52155. extra: 1478/1454,
  52156. bottom: 41/1519
  52157. }
  52158. },
  52159. },
  52160. [
  52161. {
  52162. name: "Normal",
  52163. height: math.unit(3, "meters"),
  52164. default: true
  52165. },
  52166. {
  52167. name: "Macro",
  52168. height: math.unit(108, "meters")
  52169. },
  52170. {
  52171. name: "Megamacro",
  52172. height: math.unit(1250, "meters")
  52173. },
  52174. ]
  52175. ))
  52176. characterMakers.push(() => makeCharacter(
  52177. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52178. {
  52179. undressed: {
  52180. height: math.unit(5 + 3/12, "feet"),
  52181. name: "Undressed",
  52182. image: {
  52183. source: "./media/characters/ankou/undressed.svg",
  52184. extra: 1301/1213,
  52185. bottom: 87/1388
  52186. }
  52187. },
  52188. dressed: {
  52189. height: math.unit(5 + 3/12, "feet"),
  52190. name: "Dressed",
  52191. image: {
  52192. source: "./media/characters/ankou/dressed.svg",
  52193. extra: 1301/1213,
  52194. bottom: 87/1388
  52195. }
  52196. },
  52197. head: {
  52198. height: math.unit(1.61, "feet"),
  52199. name: "Head",
  52200. image: {
  52201. source: "./media/characters/ankou/head.svg"
  52202. }
  52203. },
  52204. },
  52205. [
  52206. {
  52207. name: "Normal",
  52208. height: math.unit(5 + 3/12, "feet"),
  52209. default: true
  52210. },
  52211. ]
  52212. ))
  52213. characterMakers.push(() => makeCharacter(
  52214. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52215. {
  52216. side: {
  52217. height: math.unit(6 + 3/12, "feet"),
  52218. weight: math.unit(200, "kg"),
  52219. name: "Side",
  52220. image: {
  52221. source: "./media/characters/juniper-skunktaur/side.svg",
  52222. extra: 1574/1229,
  52223. bottom: 38/1612
  52224. }
  52225. },
  52226. front: {
  52227. height: math.unit(6 + 3/12, "feet"),
  52228. weight: math.unit(200, "kg"),
  52229. name: "Front",
  52230. image: {
  52231. source: "./media/characters/juniper-skunktaur/front.svg",
  52232. extra: 1337/1278,
  52233. bottom: 22/1359
  52234. }
  52235. },
  52236. back: {
  52237. height: math.unit(6 + 3/12, "feet"),
  52238. weight: math.unit(200, "kg"),
  52239. name: "Back",
  52240. image: {
  52241. source: "./media/characters/juniper-skunktaur/back.svg",
  52242. extra: 1618/1273,
  52243. bottom: 13/1631
  52244. }
  52245. },
  52246. top: {
  52247. height: math.unit(2.62, "feet"),
  52248. weight: math.unit(200, "kg"),
  52249. name: "Top",
  52250. image: {
  52251. source: "./media/characters/juniper-skunktaur/top.svg"
  52252. }
  52253. },
  52254. },
  52255. [
  52256. {
  52257. name: "Normal",
  52258. height: math.unit(6 + 3/12, "feet"),
  52259. default: true
  52260. },
  52261. ]
  52262. ))
  52263. characterMakers.push(() => makeCharacter(
  52264. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52265. {
  52266. front: {
  52267. height: math.unit(20.5, "feet"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/rei/front.svg",
  52271. extra: 1349/1195,
  52272. bottom: 31/1380
  52273. }
  52274. },
  52275. back: {
  52276. height: math.unit(20.5, "feet"),
  52277. name: "Back",
  52278. image: {
  52279. source: "./media/characters/rei/back.svg",
  52280. extra: 1358/1204,
  52281. bottom: 22/1380
  52282. }
  52283. },
  52284. pawsDigi: {
  52285. height: math.unit(3.45, "feet"),
  52286. name: "Paws (Digi)",
  52287. image: {
  52288. source: "./media/characters/rei/paws-digi.svg"
  52289. }
  52290. },
  52291. pawsPlanti: {
  52292. height: math.unit(3.45, "feet"),
  52293. name: "Paws (Planti)",
  52294. image: {
  52295. source: "./media/characters/rei/paws-planti.svg"
  52296. }
  52297. },
  52298. },
  52299. [
  52300. {
  52301. name: "Normal",
  52302. height: math.unit(20.5, "feet"),
  52303. default: true
  52304. },
  52305. ]
  52306. ))
  52307. characterMakers.push(() => makeCharacter(
  52308. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52309. {
  52310. front: {
  52311. height: math.unit(5 + 11/12, "feet"),
  52312. name: "Front",
  52313. image: {
  52314. source: "./media/characters/carina/front.svg",
  52315. extra: 1720/1449,
  52316. bottom: 14/1734
  52317. }
  52318. },
  52319. back: {
  52320. height: math.unit(5 + 11/12, "feet"),
  52321. name: "Back",
  52322. image: {
  52323. source: "./media/characters/carina/back.svg",
  52324. extra: 1493/1445,
  52325. bottom: 17/1510
  52326. }
  52327. },
  52328. paw: {
  52329. height: math.unit(0.92, "feet"),
  52330. name: "Paw",
  52331. image: {
  52332. source: "./media/characters/carina/paw.svg"
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(5 + 11/12, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(4.88, "meters"),
  52349. name: "Front",
  52350. image: {
  52351. source: "./media/characters/maya/front.svg",
  52352. extra: 1222/1145,
  52353. bottom: 57/1279
  52354. }
  52355. },
  52356. },
  52357. [
  52358. {
  52359. name: "Normal",
  52360. height: math.unit(4.88, "meters"),
  52361. default: true
  52362. },
  52363. {
  52364. name: "Macro",
  52365. height: math.unit(38.1, "meters")
  52366. },
  52367. {
  52368. name: "Macro+",
  52369. height: math.unit(152.4, "meters")
  52370. },
  52371. {
  52372. name: "Macro++",
  52373. height: math.unit(16.09, "km")
  52374. },
  52375. {
  52376. name: "Mega-macro",
  52377. height: math.unit(700, "megameters")
  52378. },
  52379. ]
  52380. ))
  52381. characterMakers.push(() => makeCharacter(
  52382. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52383. {
  52384. front: {
  52385. height: math.unit(6 + 2/12, "feet"),
  52386. weight: math.unit(500, "lb"),
  52387. preyCapacity: math.unit(4, "people"),
  52388. name: "Front",
  52389. image: {
  52390. source: "./media/characters/yepir/front.svg"
  52391. }
  52392. },
  52393. side: {
  52394. height: math.unit(6 + 2/12, "feet"),
  52395. weight: math.unit(500, "lb"),
  52396. preyCapacity: math.unit(4, "people"),
  52397. name: "Side",
  52398. image: {
  52399. source: "./media/characters/yepir/side.svg"
  52400. }
  52401. },
  52402. paw: {
  52403. height: math.unit(1.05, "feet"),
  52404. name: "Paw",
  52405. image: {
  52406. source: "./media/characters/yepir/paw.svg"
  52407. }
  52408. },
  52409. },
  52410. [
  52411. {
  52412. name: "Normal",
  52413. height: math.unit(6 + 2/12, "feet"),
  52414. default: true
  52415. },
  52416. ]
  52417. ))
  52418. characterMakers.push(() => makeCharacter(
  52419. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52420. {
  52421. front: {
  52422. height: math.unit(5 + 4/12, "feet"),
  52423. name: "Front",
  52424. image: {
  52425. source: "./media/characters/russec/front.svg",
  52426. extra: 1926/1626,
  52427. bottom: 72/1998
  52428. }
  52429. },
  52430. back: {
  52431. height: math.unit(5 + 4/12, "feet"),
  52432. name: "Back",
  52433. image: {
  52434. source: "./media/characters/russec/back.svg",
  52435. extra: 1910/1591,
  52436. bottom: 48/1958
  52437. }
  52438. },
  52439. },
  52440. [
  52441. {
  52442. name: "Small",
  52443. height: math.unit(5 + 4/12, "feet")
  52444. },
  52445. {
  52446. name: "Normal",
  52447. height: math.unit(72, "feet"),
  52448. default: true
  52449. },
  52450. ]
  52451. ))
  52452. characterMakers.push(() => makeCharacter(
  52453. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52454. {
  52455. side: {
  52456. height: math.unit(12, "feet"),
  52457. name: "Side",
  52458. image: {
  52459. source: "./media/characters/cianus/side.svg",
  52460. extra: 808/526,
  52461. bottom: 61/869
  52462. }
  52463. },
  52464. },
  52465. [
  52466. {
  52467. name: "Normal",
  52468. height: math.unit(12, "feet"),
  52469. default: true
  52470. },
  52471. ]
  52472. ))
  52473. characterMakers.push(() => makeCharacter(
  52474. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52475. {
  52476. front: {
  52477. height: math.unit(9 + 6/12, "feet"),
  52478. weight: math.unit(300, "lb"),
  52479. name: "Front",
  52480. image: {
  52481. source: "./media/characters/ahab/front.svg",
  52482. extra: 1897/1868,
  52483. bottom: 121/2018
  52484. }
  52485. },
  52486. frontNsfw: {
  52487. height: math.unit(9 + 6/12, "feet"),
  52488. weight: math.unit(300, "lb"),
  52489. name: "Front-nsfw",
  52490. image: {
  52491. source: "./media/characters/ahab/front-nsfw.svg",
  52492. extra: 1897/1868,
  52493. bottom: 121/2018
  52494. }
  52495. },
  52496. },
  52497. [
  52498. {
  52499. name: "Normal",
  52500. height: math.unit(9 + 6/12, "feet")
  52501. },
  52502. {
  52503. name: "Macro",
  52504. height: math.unit(657, "feet"),
  52505. default: true
  52506. },
  52507. ]
  52508. ))
  52509. characterMakers.push(() => makeCharacter(
  52510. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52511. {
  52512. front: {
  52513. height: math.unit(2.69, "meters"),
  52514. weight: math.unit(132, "kg"),
  52515. name: "Front",
  52516. image: {
  52517. source: "./media/characters/aarkus/front.svg",
  52518. extra: 1400/1231,
  52519. bottom: 34/1434
  52520. }
  52521. },
  52522. back: {
  52523. height: math.unit(2.69, "meters"),
  52524. weight: math.unit(132, "kg"),
  52525. name: "Back",
  52526. image: {
  52527. source: "./media/characters/aarkus/back.svg",
  52528. extra: 1381/1218,
  52529. bottom: 30/1411
  52530. }
  52531. },
  52532. frontNsfw: {
  52533. height: math.unit(2.69, "meters"),
  52534. weight: math.unit(132, "kg"),
  52535. name: "Front (NSFW)",
  52536. image: {
  52537. source: "./media/characters/aarkus/front-nsfw.svg",
  52538. extra: 1400/1231,
  52539. bottom: 34/1434
  52540. }
  52541. },
  52542. foot: {
  52543. height: math.unit(1.45, "feet"),
  52544. name: "Foot",
  52545. image: {
  52546. source: "./media/characters/aarkus/foot.svg"
  52547. }
  52548. },
  52549. head: {
  52550. height: math.unit(2.85, "feet"),
  52551. name: "Head",
  52552. image: {
  52553. source: "./media/characters/aarkus/head.svg"
  52554. }
  52555. },
  52556. headAlt: {
  52557. height: math.unit(3.07, "feet"),
  52558. name: "Head (Alt)",
  52559. image: {
  52560. source: "./media/characters/aarkus/head-alt.svg"
  52561. }
  52562. },
  52563. mouth: {
  52564. height: math.unit(1.25, "feet"),
  52565. name: "Mouth",
  52566. image: {
  52567. source: "./media/characters/aarkus/mouth.svg"
  52568. }
  52569. },
  52570. dick: {
  52571. height: math.unit(1.77, "feet"),
  52572. name: "Dick",
  52573. image: {
  52574. source: "./media/characters/aarkus/dick.svg"
  52575. }
  52576. },
  52577. },
  52578. [
  52579. {
  52580. name: "Normal",
  52581. height: math.unit(2.69, "meters"),
  52582. default: true
  52583. },
  52584. {
  52585. name: "Macro",
  52586. height: math.unit(269, "meters")
  52587. },
  52588. {
  52589. name: "Macro+",
  52590. height: math.unit(672.5, "meters")
  52591. },
  52592. {
  52593. name: "Megamacro",
  52594. height: math.unit(2.017, "km")
  52595. },
  52596. ]
  52597. ))
  52598. characterMakers.push(() => makeCharacter(
  52599. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52600. {
  52601. front: {
  52602. height: math.unit(23.47, "cm"),
  52603. weight: math.unit(600, "grams"),
  52604. name: "Front",
  52605. image: {
  52606. source: "./media/characters/diode/front.svg",
  52607. extra: 1778/1396,
  52608. bottom: 95/1873
  52609. }
  52610. },
  52611. side: {
  52612. height: math.unit(23.47, "cm"),
  52613. weight: math.unit(600, "grams"),
  52614. name: "Side",
  52615. image: {
  52616. source: "./media/characters/diode/side.svg",
  52617. extra: 1831/1404,
  52618. bottom: 86/1917
  52619. }
  52620. },
  52621. wings: {
  52622. height: math.unit(0.683, "feet"),
  52623. name: "Wings",
  52624. image: {
  52625. source: "./media/characters/diode/wings.svg"
  52626. }
  52627. },
  52628. },
  52629. [
  52630. {
  52631. name: "Normal",
  52632. height: math.unit(23.47, "cm"),
  52633. default: true
  52634. },
  52635. ]
  52636. ))
  52637. characterMakers.push(() => makeCharacter(
  52638. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52639. {
  52640. front: {
  52641. height: math.unit(6 + 3/12, "feet"),
  52642. weight: math.unit(250, "lb"),
  52643. name: "Front",
  52644. image: {
  52645. source: "./media/characters/reika/front.svg",
  52646. extra: 1120/1078,
  52647. bottom: 86/1206
  52648. }
  52649. },
  52650. },
  52651. [
  52652. {
  52653. name: "Normal",
  52654. height: math.unit(6 + 3/12, "feet"),
  52655. default: true
  52656. },
  52657. ]
  52658. ))
  52659. characterMakers.push(() => makeCharacter(
  52660. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52661. {
  52662. front: {
  52663. height: math.unit(16 + 8/12, "feet"),
  52664. weight: math.unit(9000, "lb"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/lokuto-takama/front.svg",
  52668. extra: 1774/1632,
  52669. bottom: 147/1921
  52670. },
  52671. extraAttributes: {
  52672. "bustWidth": {
  52673. name: "Bust Width",
  52674. power: 1,
  52675. type: "length",
  52676. base: math.unit(2.4, "meters")
  52677. },
  52678. "breastWeight": {
  52679. name: "Breast Weight",
  52680. power: 3,
  52681. type: "mass",
  52682. base: math.unit(1000, "kg")
  52683. },
  52684. }
  52685. },
  52686. },
  52687. [
  52688. {
  52689. name: "Normal",
  52690. height: math.unit(16 + 8/12, "feet"),
  52691. default: true
  52692. },
  52693. ]
  52694. ))
  52695. characterMakers.push(() => makeCharacter(
  52696. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52697. {
  52698. front: {
  52699. height: math.unit(10, "cm"),
  52700. weight: math.unit(850, "grams"),
  52701. name: "Front",
  52702. image: {
  52703. source: "./media/characters/owak-bone/front.svg",
  52704. extra: 1965/1801,
  52705. bottom: 31/1996
  52706. }
  52707. },
  52708. },
  52709. [
  52710. {
  52711. name: "Normal",
  52712. height: math.unit(10, "cm"),
  52713. default: true
  52714. },
  52715. ]
  52716. ))
  52717. characterMakers.push(() => makeCharacter(
  52718. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52719. {
  52720. front: {
  52721. height: math.unit(2 + 6/12, "feet"),
  52722. weight: math.unit(9, "lb"),
  52723. name: "Front",
  52724. image: {
  52725. source: "./media/characters/muffin/front.svg",
  52726. extra: 1220/1195,
  52727. bottom: 84/1304
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(2 + 6/12, "feet"),
  52735. default: true
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52741. {
  52742. front: {
  52743. height: math.unit(7, "feet"),
  52744. name: "Front",
  52745. image: {
  52746. source: "./media/characters/chimera/front.svg",
  52747. extra: 1752/1614,
  52748. bottom: 68/1820
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(7, "feet")
  52756. },
  52757. {
  52758. name: "Gigamacro",
  52759. height: math.unit(2.9, "gigameters"),
  52760. default: true
  52761. },
  52762. {
  52763. name: "Universal",
  52764. height: math.unit(1.56e26, "yottameters")
  52765. },
  52766. ]
  52767. ))
  52768. characterMakers.push(() => makeCharacter(
  52769. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52770. {
  52771. front: {
  52772. height: math.unit(3, "feet"),
  52773. weight: math.unit(20, "lb"),
  52774. name: "Front",
  52775. image: {
  52776. source: "./media/characters/kit-fennec-fox/front.svg",
  52777. extra: 1027/932,
  52778. bottom: 16/1043
  52779. }
  52780. },
  52781. back: {
  52782. height: math.unit(3, "feet"),
  52783. weight: math.unit(20, "lb"),
  52784. name: "Back",
  52785. image: {
  52786. source: "./media/characters/kit-fennec-fox/back.svg",
  52787. extra: 1027/932,
  52788. bottom: 16/1043
  52789. }
  52790. },
  52791. },
  52792. [
  52793. {
  52794. name: "Normal",
  52795. height: math.unit(3, "feet"),
  52796. default: true
  52797. },
  52798. ]
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(167, "cm"),
  52805. name: "Front",
  52806. image: {
  52807. source: "./media/characters/blue-otter/front.svg",
  52808. extra: 1951/1920,
  52809. bottom: 31/1982
  52810. }
  52811. },
  52812. },
  52813. [
  52814. {
  52815. name: "Otter-Sized",
  52816. height: math.unit(100, "cm")
  52817. },
  52818. {
  52819. name: "Normal",
  52820. height: math.unit(167, "cm"),
  52821. default: true
  52822. },
  52823. ]
  52824. ))
  52825. characterMakers.push(() => makeCharacter(
  52826. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52827. {
  52828. front: {
  52829. height: math.unit(4 + 4/12, "feet"),
  52830. name: "Front",
  52831. image: {
  52832. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52833. extra: 1072/1067,
  52834. bottom: 117/1189
  52835. }
  52836. },
  52837. back: {
  52838. height: math.unit(4 + 4/12, "feet"),
  52839. name: "Back",
  52840. image: {
  52841. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52842. extra: 1135/1129,
  52843. bottom: 57/1192
  52844. }
  52845. },
  52846. head: {
  52847. height: math.unit(1.77, "feet"),
  52848. name: "Head",
  52849. image: {
  52850. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52851. }
  52852. },
  52853. },
  52854. [
  52855. {
  52856. name: "Normal",
  52857. height: math.unit(4 + 4/12, "feet"),
  52858. default: true
  52859. },
  52860. ]
  52861. ))
  52862. characterMakers.push(() => makeCharacter(
  52863. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52864. {
  52865. front: {
  52866. height: math.unit(2, "inches"),
  52867. name: "Front",
  52868. image: {
  52869. source: "./media/characters/carley-hartford/front.svg",
  52870. extra: 1035/988,
  52871. bottom: 23/1058
  52872. }
  52873. },
  52874. back: {
  52875. height: math.unit(2, "inches"),
  52876. name: "Back",
  52877. image: {
  52878. source: "./media/characters/carley-hartford/back.svg",
  52879. extra: 1035/988,
  52880. bottom: 23/1058
  52881. }
  52882. },
  52883. dressed: {
  52884. height: math.unit(2, "inches"),
  52885. name: "Dressed",
  52886. image: {
  52887. source: "./media/characters/carley-hartford/dressed.svg",
  52888. extra: 651/620,
  52889. bottom: 0/651
  52890. }
  52891. },
  52892. },
  52893. [
  52894. {
  52895. name: "Micro",
  52896. height: math.unit(2, "inches"),
  52897. default: true
  52898. },
  52899. {
  52900. name: "Macro",
  52901. height: math.unit(6 + 3/12, "feet")
  52902. },
  52903. ]
  52904. ))
  52905. characterMakers.push(() => makeCharacter(
  52906. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52907. {
  52908. front: {
  52909. height: math.unit(2 + 3/12, "feet"),
  52910. weight: math.unit(15 + 7/16, "lb"),
  52911. name: "Front",
  52912. image: {
  52913. source: "./media/characters/duke/front.svg",
  52914. extra: 910/815,
  52915. bottom: 30/940
  52916. }
  52917. },
  52918. },
  52919. [
  52920. {
  52921. name: "Normal",
  52922. height: math.unit(2 + 3/12, "feet"),
  52923. default: true
  52924. },
  52925. ]
  52926. ))
  52927. characterMakers.push(() => makeCharacter(
  52928. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52929. {
  52930. front: {
  52931. height: math.unit(5 + 4/12, "feet"),
  52932. weight: math.unit(156, "lb"),
  52933. name: "Front",
  52934. image: {
  52935. source: "./media/characters/dein/front.svg",
  52936. extra: 855/815,
  52937. bottom: 48/903
  52938. }
  52939. },
  52940. side: {
  52941. height: math.unit(5 + 4/12, "feet"),
  52942. weight: math.unit(156, "lb"),
  52943. name: "side",
  52944. image: {
  52945. source: "./media/characters/dein/side.svg",
  52946. extra: 846/803,
  52947. bottom: 25/871
  52948. }
  52949. },
  52950. maw: {
  52951. height: math.unit(1.45, "feet"),
  52952. name: "Maw",
  52953. image: {
  52954. source: "./media/characters/dein/maw.svg"
  52955. }
  52956. },
  52957. },
  52958. [
  52959. {
  52960. name: "Ferret Sized",
  52961. height: math.unit(2 + 5/12, "feet")
  52962. },
  52963. {
  52964. name: "Normal",
  52965. height: math.unit(5 + 4/12, "feet"),
  52966. default: true
  52967. },
  52968. ]
  52969. ))
  52970. characterMakers.push(() => makeCharacter(
  52971. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52972. {
  52973. front: {
  52974. height: math.unit(84 + 8/12, "feet"),
  52975. weight: math.unit(942180, "lb"),
  52976. name: "Front",
  52977. image: {
  52978. source: "./media/characters/daurine-arima/front.svg",
  52979. extra: 1989/1782,
  52980. bottom: 37/2026
  52981. }
  52982. },
  52983. side: {
  52984. height: math.unit(84 + 8/12, "feet"),
  52985. weight: math.unit(942180, "lb"),
  52986. name: "Side",
  52987. image: {
  52988. source: "./media/characters/daurine-arima/side.svg",
  52989. extra: 1997/1790,
  52990. bottom: 21/2018
  52991. }
  52992. },
  52993. back: {
  52994. height: math.unit(84 + 8/12, "feet"),
  52995. weight: math.unit(942180, "lb"),
  52996. name: "Back",
  52997. image: {
  52998. source: "./media/characters/daurine-arima/back.svg",
  52999. extra: 1992/1800,
  53000. bottom: 12/2004
  53001. }
  53002. },
  53003. head: {
  53004. height: math.unit(15.5, "feet"),
  53005. name: "Head",
  53006. image: {
  53007. source: "./media/characters/daurine-arima/head.svg"
  53008. }
  53009. },
  53010. headAlt: {
  53011. height: math.unit(19.19, "feet"),
  53012. name: "Head (Alt)",
  53013. image: {
  53014. source: "./media/characters/daurine-arima/head-alt.svg"
  53015. }
  53016. },
  53017. },
  53018. [
  53019. {
  53020. name: "Minimum height",
  53021. height: math.unit(8 + 10/12, "feet")
  53022. },
  53023. {
  53024. name: "Comfort height",
  53025. height: math.unit(19 + 6 /12, "feet")
  53026. },
  53027. {
  53028. name: "\"Normal\" height",
  53029. height: math.unit(28 + 10/12, "feet")
  53030. },
  53031. {
  53032. name: "Base height",
  53033. height: math.unit(84 + 8/12, "feet"),
  53034. default: true
  53035. },
  53036. {
  53037. name: "Mini-macro",
  53038. height: math.unit(2360, "feet")
  53039. },
  53040. {
  53041. name: "Macro",
  53042. height: math.unit(10, "miles")
  53043. },
  53044. {
  53045. name: "Goddess",
  53046. height: math.unit(9.99e40, "yottameters")
  53047. },
  53048. ]
  53049. ))
  53050. characterMakers.push(() => makeCharacter(
  53051. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53052. {
  53053. front: {
  53054. height: math.unit(2.3, "meters"),
  53055. name: "Front",
  53056. image: {
  53057. source: "./media/characters/cilenomon/front.svg",
  53058. extra: 1963/1778,
  53059. bottom: 54/2017
  53060. }
  53061. },
  53062. },
  53063. [
  53064. {
  53065. name: "Normal",
  53066. height: math.unit(2.3, "meters"),
  53067. default: true
  53068. },
  53069. {
  53070. name: "Big",
  53071. height: math.unit(5, "meters")
  53072. },
  53073. {
  53074. name: "Macro",
  53075. height: math.unit(30, "meters")
  53076. },
  53077. {
  53078. name: "True",
  53079. height: math.unit(1, "universe")
  53080. },
  53081. ]
  53082. ))
  53083. characterMakers.push(() => makeCharacter(
  53084. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53085. {
  53086. front: {
  53087. height: math.unit(5, "feet"),
  53088. name: "Front",
  53089. image: {
  53090. source: "./media/characters/sen-mink/front.svg",
  53091. extra: 1727/1675,
  53092. bottom: 35/1762
  53093. }
  53094. },
  53095. },
  53096. [
  53097. {
  53098. name: "Normal",
  53099. height: math.unit(5, "feet"),
  53100. default: true
  53101. },
  53102. ]
  53103. ))
  53104. characterMakers.push(() => makeCharacter(
  53105. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53106. {
  53107. front: {
  53108. height: math.unit(5.42999, "feet"),
  53109. weight: math.unit(100, "lb"),
  53110. name: "Front",
  53111. image: {
  53112. source: "./media/characters/ophois/front.svg",
  53113. extra: 1429/1286,
  53114. bottom: 60/1489
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(5.42999, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(2, "meters"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/riley/front.svg",
  53134. extra: 1779/1754,
  53135. bottom: 139/1918
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Normal",
  53142. height: math.unit(2, "meters"),
  53143. default: true
  53144. },
  53145. ]
  53146. ))
  53147. characterMakers.push(() => makeCharacter(
  53148. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53149. {
  53150. front: {
  53151. height: math.unit(6 + 2/12, "feet"),
  53152. weight: math.unit(195, "lb"),
  53153. preyCapacity: math.unit(6, "people"),
  53154. name: "Front",
  53155. image: {
  53156. source: "./media/characters/shuken-flash/front.svg",
  53157. extra: 1905/1739,
  53158. bottom: 65/1970
  53159. }
  53160. },
  53161. back: {
  53162. height: math.unit(6 + 2/12, "feet"),
  53163. weight: math.unit(195, "lb"),
  53164. preyCapacity: math.unit(6, "people"),
  53165. name: "Back",
  53166. image: {
  53167. source: "./media/characters/shuken-flash/back.svg",
  53168. extra: 1912/1751,
  53169. bottom: 13/1925
  53170. }
  53171. },
  53172. },
  53173. [
  53174. {
  53175. name: "Normal",
  53176. height: math.unit(6 + 2/12, "feet"),
  53177. default: true
  53178. },
  53179. ]
  53180. ))
  53181. characterMakers.push(() => makeCharacter(
  53182. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53183. {
  53184. front: {
  53185. height: math.unit(5 + 9/12, "feet"),
  53186. weight: math.unit(150, "lb"),
  53187. name: "Front",
  53188. image: {
  53189. source: "./media/characters/plat/front.svg",
  53190. extra: 1816/1703,
  53191. bottom: 43/1859
  53192. }
  53193. },
  53194. side: {
  53195. height: math.unit(5 + 9/12, "feet"),
  53196. weight: math.unit(300, "lb"),
  53197. name: "Side",
  53198. image: {
  53199. source: "./media/characters/plat/side.svg",
  53200. extra: 1824/1699,
  53201. bottom: 18/1842
  53202. }
  53203. },
  53204. },
  53205. [
  53206. {
  53207. name: "Normal",
  53208. height: math.unit(5 + 9/12, "feet"),
  53209. default: true
  53210. },
  53211. ]
  53212. ))
  53213. characterMakers.push(() => makeCharacter(
  53214. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53215. {
  53216. front: {
  53217. height: math.unit(9, "feet"),
  53218. weight: math.unit(1800, "lb"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/elaine/front.svg",
  53222. extra: 1833/1354,
  53223. bottom: 25/1858
  53224. }
  53225. },
  53226. back: {
  53227. height: math.unit(8.8, "feet"),
  53228. weight: math.unit(1800, "lb"),
  53229. name: "Back",
  53230. image: {
  53231. source: "./media/characters/elaine/back.svg",
  53232. extra: 1641/1233,
  53233. bottom: 53/1694
  53234. }
  53235. },
  53236. },
  53237. [
  53238. {
  53239. name: "Normal",
  53240. height: math.unit(9, "feet"),
  53241. default: true
  53242. },
  53243. ]
  53244. ))
  53245. characterMakers.push(() => makeCharacter(
  53246. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53247. {
  53248. front: {
  53249. height: math.unit(17 + 9/12, "feet"),
  53250. weight: math.unit(8000, "lb"),
  53251. name: "Front",
  53252. image: {
  53253. source: "./media/characters/vera-raven/front.svg",
  53254. extra: 1457/1412,
  53255. bottom: 121/1578
  53256. }
  53257. },
  53258. side: {
  53259. height: math.unit(17 + 9/12, "feet"),
  53260. weight: math.unit(8000, "lb"),
  53261. name: "Side",
  53262. image: {
  53263. source: "./media/characters/vera-raven/side.svg",
  53264. extra: 1510/1464,
  53265. bottom: 54/1564
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(17 + 9/12, "feet"),
  53273. default: true
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53279. {
  53280. dressed: {
  53281. height: math.unit(6 + 9/12, "feet"),
  53282. name: "Dressed",
  53283. image: {
  53284. source: "./media/characters/nakisha/dressed.svg",
  53285. extra: 1909/1757,
  53286. bottom: 48/1957
  53287. }
  53288. },
  53289. nude: {
  53290. height: math.unit(6 + 9/12, "feet"),
  53291. name: "Nude",
  53292. image: {
  53293. source: "./media/characters/nakisha/nude.svg",
  53294. extra: 1917/1765,
  53295. bottom: 34/1951
  53296. }
  53297. },
  53298. },
  53299. [
  53300. {
  53301. name: "Normal",
  53302. height: math.unit(6 + 9/12, "feet"),
  53303. default: true
  53304. },
  53305. ]
  53306. ))
  53307. characterMakers.push(() => makeCharacter(
  53308. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53309. {
  53310. front: {
  53311. height: math.unit(87, "meters"),
  53312. name: "Front",
  53313. image: {
  53314. source: "./media/characters/serafin/front.svg",
  53315. extra: 1919/1776,
  53316. bottom: 65/1984
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(87, "meters"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(6, "feet"),
  53333. weight: math.unit(200, "lb"),
  53334. name: "Front",
  53335. image: {
  53336. source: "./media/characters/poptart/front.svg",
  53337. extra: 615/583,
  53338. bottom: 23/638
  53339. }
  53340. },
  53341. back: {
  53342. height: math.unit(6, "feet"),
  53343. weight: math.unit(200, "lb"),
  53344. name: "Back",
  53345. image: {
  53346. source: "./media/characters/poptart/back.svg",
  53347. extra: 617/584,
  53348. bottom: 22/639
  53349. }
  53350. },
  53351. frontNsfw: {
  53352. height: math.unit(6, "feet"),
  53353. weight: math.unit(200, "lb"),
  53354. name: "Front (NSFW)",
  53355. image: {
  53356. source: "./media/characters/poptart/front-nsfw.svg",
  53357. extra: 615/583,
  53358. bottom: 23/638
  53359. }
  53360. },
  53361. backNsfw: {
  53362. height: math.unit(6, "feet"),
  53363. weight: math.unit(200, "lb"),
  53364. name: "Back (NSFW)",
  53365. image: {
  53366. source: "./media/characters/poptart/back-nsfw.svg",
  53367. extra: 617/584,
  53368. bottom: 22/639
  53369. }
  53370. },
  53371. hand: {
  53372. height: math.unit(1.14, "feet"),
  53373. name: "Hand",
  53374. image: {
  53375. source: "./media/characters/poptart/hand.svg"
  53376. }
  53377. },
  53378. foot: {
  53379. height: math.unit(1.5, "feet"),
  53380. name: "Foot",
  53381. image: {
  53382. source: "./media/characters/poptart/foot.svg"
  53383. }
  53384. },
  53385. },
  53386. [
  53387. {
  53388. name: "Normal",
  53389. height: math.unit(6, "feet"),
  53390. default: true
  53391. },
  53392. {
  53393. name: "Grande",
  53394. height: math.unit(350, "feet")
  53395. },
  53396. {
  53397. name: "Massif",
  53398. height: math.unit(967, "feet")
  53399. },
  53400. ]
  53401. ))
  53402. characterMakers.push(() => makeCharacter(
  53403. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53404. {
  53405. hyenaSide: {
  53406. height: math.unit(120, "cm"),
  53407. weight: math.unit(120, "lb"),
  53408. name: "Side",
  53409. image: {
  53410. source: "./media/characters/trance/hyena-side.svg",
  53411. extra: 998/904,
  53412. bottom: 76/1074
  53413. }
  53414. },
  53415. },
  53416. [
  53417. {
  53418. name: "Normal",
  53419. height: math.unit(120, "cm"),
  53420. default: true
  53421. },
  53422. {
  53423. name: "Dire",
  53424. height: math.unit(230, "cm")
  53425. },
  53426. {
  53427. name: "Macro",
  53428. height: math.unit(37, "feet")
  53429. },
  53430. ]
  53431. ))
  53432. characterMakers.push(() => makeCharacter(
  53433. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53434. {
  53435. front: {
  53436. height: math.unit(6 + 3/12, "feet"),
  53437. name: "Front",
  53438. image: {
  53439. source: "./media/characters/michael-berretta/front.svg",
  53440. extra: 515/494,
  53441. bottom: 20/535
  53442. }
  53443. },
  53444. back: {
  53445. height: math.unit(6 + 3/12, "feet"),
  53446. name: "Back",
  53447. image: {
  53448. source: "./media/characters/michael-berretta/back.svg",
  53449. extra: 520/497,
  53450. bottom: 21/541
  53451. }
  53452. },
  53453. frontNsfw: {
  53454. height: math.unit(6 + 3/12, "feet"),
  53455. name: "Front (NSFW)",
  53456. image: {
  53457. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53458. extra: 515/494,
  53459. bottom: 20/535
  53460. }
  53461. },
  53462. dick: {
  53463. height: math.unit(1, "feet"),
  53464. name: "Dick",
  53465. image: {
  53466. source: "./media/characters/michael-berretta/dick.svg"
  53467. }
  53468. },
  53469. },
  53470. [
  53471. {
  53472. name: "Normal",
  53473. height: math.unit(6 + 3/12, "feet"),
  53474. default: true
  53475. },
  53476. {
  53477. name: "Big",
  53478. height: math.unit(12, "feet")
  53479. },
  53480. {
  53481. name: "Macro",
  53482. height: math.unit(187.5, "feet")
  53483. },
  53484. ]
  53485. ))
  53486. characterMakers.push(() => makeCharacter(
  53487. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53488. {
  53489. front: {
  53490. height: math.unit(9 + 9/12, "feet"),
  53491. weight: math.unit(1244, "lb"),
  53492. name: "Front",
  53493. image: {
  53494. source: "./media/characters/stella-edgecomb/front.svg",
  53495. extra: 1835/1706,
  53496. bottom: 49/1884
  53497. }
  53498. },
  53499. pen: {
  53500. height: math.unit(0.95, "feet"),
  53501. name: "Pen",
  53502. image: {
  53503. source: "./media/characters/stella-edgecomb/pen.svg"
  53504. }
  53505. },
  53506. },
  53507. [
  53508. {
  53509. name: "Cozy Bear",
  53510. height: math.unit(0.5, "inches")
  53511. },
  53512. {
  53513. name: "Normal",
  53514. height: math.unit(9 + 9/12, "feet"),
  53515. default: true
  53516. },
  53517. {
  53518. name: "Giga Bear",
  53519. height: math.unit(1, "mile")
  53520. },
  53521. {
  53522. name: "Great Bear",
  53523. height: math.unit(53, "miles")
  53524. },
  53525. {
  53526. name: "Goddess Bear",
  53527. height: math.unit(40000, "miles")
  53528. },
  53529. {
  53530. name: "Sun Bear",
  53531. height: math.unit(900000, "miles")
  53532. },
  53533. ]
  53534. ))
  53535. characterMakers.push(() => makeCharacter(
  53536. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53537. {
  53538. anthroFront: {
  53539. height: math.unit(556, "cm"),
  53540. weight: math.unit(2650, "kg"),
  53541. preyCapacity: math.unit(3, "people"),
  53542. name: "Front",
  53543. image: {
  53544. source: "./media/characters/ash´iika/front.svg",
  53545. extra: 710/673,
  53546. bottom: 15/725
  53547. },
  53548. form: "anthro",
  53549. default: true
  53550. },
  53551. anthroSide: {
  53552. height: math.unit(556, "cm"),
  53553. weight: math.unit(2650, "kg"),
  53554. preyCapacity: math.unit(3, "people"),
  53555. name: "Side",
  53556. image: {
  53557. source: "./media/characters/ash´iika/side.svg",
  53558. extra: 696/676,
  53559. bottom: 13/709
  53560. },
  53561. form: "anthro"
  53562. },
  53563. anthroDressed: {
  53564. height: math.unit(556, "cm"),
  53565. weight: math.unit(2650, "kg"),
  53566. preyCapacity: math.unit(3, "people"),
  53567. name: "Dressed",
  53568. image: {
  53569. source: "./media/characters/ash´iika/dressed.svg",
  53570. extra: 710/673,
  53571. bottom: 15/725
  53572. },
  53573. form: "anthro"
  53574. },
  53575. anthroHead: {
  53576. height: math.unit(3.5, "feet"),
  53577. name: "Head",
  53578. image: {
  53579. source: "./media/characters/ash´iika/head.svg",
  53580. extra: 348/291,
  53581. bottom: 45/393
  53582. },
  53583. form: "anthro"
  53584. },
  53585. feralSide: {
  53586. height: math.unit(870, "cm"),
  53587. weight: math.unit(17500, "kg"),
  53588. preyCapacity: math.unit(15, "people"),
  53589. name: "Side",
  53590. image: {
  53591. source: "./media/characters/ash´iika/feral.svg",
  53592. extra: 595/199,
  53593. bottom: 7/602
  53594. },
  53595. form: "feral",
  53596. default: true,
  53597. },
  53598. },
  53599. [
  53600. {
  53601. name: "Normal",
  53602. height: math.unit(556, "cm"),
  53603. default: true,
  53604. form: "anthro"
  53605. },
  53606. {
  53607. name: "Macro",
  53608. height: math.unit(88, "meters"),
  53609. form: "anthro"
  53610. },
  53611. {
  53612. name: "Normal",
  53613. height: math.unit(870, "cm"),
  53614. default: true,
  53615. form: "feral"
  53616. },
  53617. {
  53618. name: "Large",
  53619. height: math.unit(25, "meters"),
  53620. form: "feral"
  53621. },
  53622. ],
  53623. {
  53624. "anthro": {
  53625. name: "Anthro",
  53626. default: true
  53627. },
  53628. "feral": {
  53629. name: "Feral",
  53630. },
  53631. }
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(10, "feet"),
  53638. weight: math.unit(800, "lb"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/yen/front.svg",
  53642. extra: 443/411,
  53643. bottom: 6/449
  53644. }
  53645. },
  53646. sleeping: {
  53647. height: math.unit(10, "feet"),
  53648. weight: math.unit(800, "lb"),
  53649. name: "Sleeping",
  53650. image: {
  53651. source: "./media/characters/yen/sleeping.svg",
  53652. extra: 470/422,
  53653. bottom: 0/470
  53654. }
  53655. },
  53656. head: {
  53657. height: math.unit(2.2, "feet"),
  53658. name: "Head",
  53659. image: {
  53660. source: "./media/characters/yen/head.svg"
  53661. }
  53662. },
  53663. headAlt: {
  53664. height: math.unit(2.1, "feet"),
  53665. name: "Head (Alt)",
  53666. image: {
  53667. source: "./media/characters/yen/head-alt.svg"
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Normal",
  53674. height: math.unit(10, "feet"),
  53675. default: true
  53676. },
  53677. ]
  53678. ))
  53679. characterMakers.push(() => makeCharacter(
  53680. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53681. {
  53682. front: {
  53683. height: math.unit(12, "feet"),
  53684. name: "Front",
  53685. image: {
  53686. source: "./media/characters/citra/front.svg",
  53687. extra: 1950/1710,
  53688. bottom: 47/1997
  53689. }
  53690. },
  53691. },
  53692. [
  53693. {
  53694. name: "Normal",
  53695. height: math.unit(12, "feet"),
  53696. default: true
  53697. },
  53698. ]
  53699. ))
  53700. characterMakers.push(() => makeCharacter(
  53701. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53702. {
  53703. side: {
  53704. height: math.unit(7 + 10/12, "feet"),
  53705. name: "Side",
  53706. image: {
  53707. source: "./media/characters/sholstim/side.svg",
  53708. extra: 786/682,
  53709. bottom: 40/826
  53710. }
  53711. },
  53712. },
  53713. [
  53714. {
  53715. name: "Normal",
  53716. height: math.unit(7 + 10/12, "feet"),
  53717. default: true
  53718. },
  53719. ]
  53720. ))
  53721. characterMakers.push(() => makeCharacter(
  53722. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53723. {
  53724. front: {
  53725. height: math.unit(3.10, "meters"),
  53726. name: "Front",
  53727. image: {
  53728. source: "./media/characters/aggyn/front.svg",
  53729. extra: 1188/963,
  53730. bottom: 24/1212
  53731. }
  53732. },
  53733. },
  53734. [
  53735. {
  53736. name: "Normal",
  53737. height: math.unit(3.10, "meters"),
  53738. default: true
  53739. },
  53740. ]
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(7 + 5/12, "feet"),
  53747. weight: math.unit(687, "lb"),
  53748. name: "Front",
  53749. image: {
  53750. source: "./media/characters/alsandair-hergenroether/front.svg",
  53751. extra: 1251/1186,
  53752. bottom: 75/1326
  53753. }
  53754. },
  53755. back: {
  53756. height: math.unit(7 + 5/12, "feet"),
  53757. weight: math.unit(687, "lb"),
  53758. name: "Back",
  53759. image: {
  53760. source: "./media/characters/alsandair-hergenroether/back.svg",
  53761. extra: 1290/1229,
  53762. bottom: 17/1307
  53763. }
  53764. },
  53765. },
  53766. [
  53767. {
  53768. name: "Max Compression",
  53769. height: math.unit(7 + 5/12, "feet"),
  53770. default: true
  53771. },
  53772. {
  53773. name: "\"Normal\"",
  53774. height: math.unit(2, "universes")
  53775. },
  53776. ]
  53777. ))
  53778. characterMakers.push(() => makeCharacter(
  53779. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53780. {
  53781. front: {
  53782. height: math.unit(4 + 1/12, "feet"),
  53783. weight: math.unit(92, "lb"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/ie/front.svg",
  53787. extra: 1585/1352,
  53788. bottom: 91/1676
  53789. }
  53790. },
  53791. },
  53792. [
  53793. {
  53794. name: "Normal",
  53795. height: math.unit(4 + 1/12, "feet"),
  53796. default: true
  53797. },
  53798. ]
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53802. {
  53803. anthro: {
  53804. height: math.unit(6, "feet"),
  53805. weight: math.unit(150, "lb"),
  53806. name: "Front",
  53807. image: {
  53808. source: "./media/characters/willow/anthro.svg",
  53809. extra: 1073/986,
  53810. bottom: 34/1107
  53811. },
  53812. form: "anthro",
  53813. default: true
  53814. },
  53815. taur: {
  53816. height: math.unit(6, "feet"),
  53817. weight: math.unit(150, "lb"),
  53818. name: "Side",
  53819. image: {
  53820. source: "./media/characters/willow/taur.svg",
  53821. extra: 647/512,
  53822. bottom: 136/783
  53823. },
  53824. form: "taur",
  53825. default: true
  53826. },
  53827. },
  53828. [
  53829. {
  53830. name: "Humanoid",
  53831. height: math.unit(2.7, "meters"),
  53832. form: "anthro"
  53833. },
  53834. {
  53835. name: "Normal",
  53836. height: math.unit(9, "meters"),
  53837. form: "anthro",
  53838. default: true
  53839. },
  53840. {
  53841. name: "Humanoid",
  53842. height: math.unit(2.1, "meters"),
  53843. form: "taur"
  53844. },
  53845. {
  53846. name: "Normal",
  53847. height: math.unit(7, "meters"),
  53848. form: "taur",
  53849. default: true
  53850. },
  53851. ],
  53852. {
  53853. "anthro": {
  53854. name: "Anthro",
  53855. default: true
  53856. },
  53857. "taur": {
  53858. name: "Taur",
  53859. },
  53860. }
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(2 + 5/12, "feet"),
  53867. name: "Front",
  53868. image: {
  53869. source: "./media/characters/kyan/front.svg",
  53870. extra: 460/334,
  53871. bottom: 23/483
  53872. },
  53873. extraAttributes: {
  53874. "toeLength": {
  53875. name: "Toe Length",
  53876. power: 1,
  53877. type: "length",
  53878. base: math.unit(7, "cm")
  53879. },
  53880. "toeclawLength": {
  53881. name: "Toeclaw Length",
  53882. power: 1,
  53883. type: "length",
  53884. base: math.unit(4.7, "cm")
  53885. },
  53886. "earHeight": {
  53887. name: "Ear Height",
  53888. power: 1,
  53889. type: "length",
  53890. base: math.unit(14.1, "cm")
  53891. },
  53892. }
  53893. },
  53894. paws: {
  53895. height: math.unit(0.45, "feet"),
  53896. name: "Paws",
  53897. image: {
  53898. source: "./media/characters/kyan/paws.svg",
  53899. extra: 581/581,
  53900. bottom: 114/695
  53901. }
  53902. },
  53903. },
  53904. [
  53905. {
  53906. name: "Normal",
  53907. height: math.unit(2 + 5/12, "feet"),
  53908. default: true
  53909. },
  53910. ]
  53911. ))
  53912. characterMakers.push(() => makeCharacter(
  53913. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53914. {
  53915. front: {
  53916. height: math.unit(2 + 2/3, "feet"),
  53917. name: "Front",
  53918. image: {
  53919. source: "./media/characters/xazzon/front.svg",
  53920. extra: 1109/984,
  53921. bottom: 42/1151
  53922. }
  53923. },
  53924. back: {
  53925. height: math.unit(2 + 2/3, "feet"),
  53926. name: "Back",
  53927. image: {
  53928. source: "./media/characters/xazzon/back.svg",
  53929. extra: 1095/971,
  53930. bottom: 23/1118
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Normal",
  53937. height: math.unit(2 + 2/3, "feet"),
  53938. default: true
  53939. },
  53940. ]
  53941. ))
  53942. characterMakers.push(() => makeCharacter(
  53943. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53944. {
  53945. dressed: {
  53946. height: math.unit(5 + 7/12, "feet"),
  53947. weight: math.unit(173, "lb"),
  53948. name: "Dressed",
  53949. image: {
  53950. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53951. extra: 3262/2862,
  53952. bottom: 188/3450
  53953. }
  53954. },
  53955. undressed: {
  53956. height: math.unit(5 + 7/12, "feet"),
  53957. weight: math.unit(173, "lb"),
  53958. name: "Undressed",
  53959. image: {
  53960. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53961. extra: 3262/2862,
  53962. bottom: 188/3450
  53963. }
  53964. },
  53965. },
  53966. [
  53967. {
  53968. name: "The void",
  53969. height: math.unit(7.29193e-34, "angstroms")
  53970. },
  53971. {
  53972. name: "Uh-Oh.",
  53973. height: math.unit(5.734e-7, "angstroms")
  53974. },
  53975. {
  53976. name: "Pico",
  53977. height: math.unit(0.876, "angstroms")
  53978. },
  53979. {
  53980. name: "Nano",
  53981. height: math.unit(0.000134200, "mm")
  53982. },
  53983. {
  53984. name: "Micro",
  53985. height: math.unit(0.0673020, "mm")
  53986. },
  53987. {
  53988. name: "Tiny",
  53989. height: math.unit(2.4, "mm")
  53990. },
  53991. {
  53992. name: "Actual Normal",
  53993. height: math.unit(3, "inches"),
  53994. default: true
  53995. },
  53996. {
  53997. name: "Normal",
  53998. height: math.unit(5 + 8/12, "feet")
  53999. },
  54000. {
  54001. name: "Giant",
  54002. height: math.unit(12, "feet")
  54003. },
  54004. {
  54005. name: "City Ruler",
  54006. height: math.unit(270, "meters")
  54007. },
  54008. {
  54009. name: "Giga",
  54010. height: math.unit(1117.6, "km")
  54011. },
  54012. {
  54013. name: "All-Powerful Queen",
  54014. height: math.unit(70.8, "gigameters")
  54015. },
  54016. {
  54017. name: "'Goddess'",
  54018. height: math.unit(600, "yottameters")
  54019. },
  54020. {
  54021. name: "Biggest!",
  54022. height: math.unit(4.23e5, "yottameters")
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(8, "feet"),
  54031. weight: math.unit(300, "lb"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/khyla-shadowsong/front.svg",
  54035. extra: 861/798,
  54036. bottom: 32/893
  54037. }
  54038. },
  54039. side: {
  54040. height: math.unit(8, "feet"),
  54041. weight: math.unit(300, "lb"),
  54042. name: "Side",
  54043. image: {
  54044. source: "./media/characters/khyla-shadowsong/side.svg",
  54045. extra: 790/750,
  54046. bottom: 87/877
  54047. }
  54048. },
  54049. back: {
  54050. height: math.unit(8, "feet"),
  54051. weight: math.unit(300, "lb"),
  54052. name: "Back",
  54053. image: {
  54054. source: "./media/characters/khyla-shadowsong/back.svg",
  54055. extra: 855/808,
  54056. bottom: 14/869
  54057. }
  54058. },
  54059. head: {
  54060. height: math.unit(2.7, "feet"),
  54061. name: "Head",
  54062. image: {
  54063. source: "./media/characters/khyla-shadowsong/head.svg"
  54064. }
  54065. },
  54066. },
  54067. [
  54068. {
  54069. name: "Micro",
  54070. height: math.unit(6, "inches")
  54071. },
  54072. {
  54073. name: "Normal",
  54074. height: math.unit(8, "feet"),
  54075. default: true
  54076. },
  54077. ]
  54078. ))
  54079. characterMakers.push(() => makeCharacter(
  54080. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54081. {
  54082. hyperFront: {
  54083. height: math.unit(9 + 4/12, "feet"),
  54084. weight: math.unit(2000, "lb"),
  54085. name: "Front",
  54086. image: {
  54087. source: "./media/characters/tiden/hyper-front.svg",
  54088. extra: 400/382,
  54089. bottom: 6/406
  54090. },
  54091. form: "hyper",
  54092. },
  54093. regularFront: {
  54094. height: math.unit(7 + 10/12, "feet"),
  54095. weight: math.unit(470, "lb"),
  54096. name: "Front",
  54097. image: {
  54098. source: "./media/characters/tiden/regular-front.svg",
  54099. extra: 468/442,
  54100. bottom: 6/474
  54101. },
  54102. form: "regular",
  54103. },
  54104. },
  54105. [
  54106. {
  54107. name: "Normal",
  54108. height: math.unit(9 + 4/12, "feet"),
  54109. default: true,
  54110. form: "hyper"
  54111. },
  54112. {
  54113. name: "Normal",
  54114. height: math.unit(7 + 10/12, "feet"),
  54115. default: true,
  54116. form: "regular"
  54117. },
  54118. ],
  54119. {
  54120. "hyper": {
  54121. name: "Hyper",
  54122. default: true
  54123. },
  54124. "regular": {
  54125. name: "Regular",
  54126. },
  54127. }
  54128. ))
  54129. characterMakers.push(() => makeCharacter(
  54130. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54131. {
  54132. side: {
  54133. height: math.unit(6, "feet"),
  54134. weight: math.unit(150, "lb"),
  54135. name: "Side",
  54136. image: {
  54137. source: "./media/characters/jason-crowe/side.svg",
  54138. extra: 1771/766,
  54139. bottom: 219/1990
  54140. }
  54141. },
  54142. },
  54143. [
  54144. {
  54145. name: "Pocket Gryphon",
  54146. height: math.unit(6, "cm")
  54147. },
  54148. {
  54149. name: "Raven",
  54150. height: math.unit(60, "cm")
  54151. },
  54152. {
  54153. name: "Normal",
  54154. height: math.unit(1, "meter"),
  54155. default: true
  54156. },
  54157. ]
  54158. ))
  54159. characterMakers.push(() => makeCharacter(
  54160. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54161. {
  54162. front: {
  54163. height: math.unit(9 + 6/12, "feet"),
  54164. weight: math.unit(1100, "lb"),
  54165. name: "Front",
  54166. image: {
  54167. source: "./media/characters/django/front.svg",
  54168. extra: 1231/1136,
  54169. bottom: 34/1265
  54170. }
  54171. },
  54172. side: {
  54173. height: math.unit(9 + 6/12, "feet"),
  54174. weight: math.unit(1100, "lb"),
  54175. name: "Side",
  54176. image: {
  54177. source: "./media/characters/django/side.svg",
  54178. extra: 1267/1174,
  54179. bottom: 9/1276
  54180. }
  54181. },
  54182. },
  54183. [
  54184. {
  54185. name: "Normal",
  54186. height: math.unit(9 + 6/12, "feet"),
  54187. default: true
  54188. },
  54189. {
  54190. name: "Macro 1",
  54191. height: math.unit(50, "feet")
  54192. },
  54193. {
  54194. name: "Macro 2",
  54195. height: math.unit(500, "feet")
  54196. },
  54197. {
  54198. name: "Mega Macro",
  54199. height: math.unit(5300, "feet")
  54200. },
  54201. ]
  54202. ))
  54203. characterMakers.push(() => makeCharacter(
  54204. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54205. {
  54206. frontSfw: {
  54207. height: math.unit(120, "cm"),
  54208. weight: math.unit(15, "kg"),
  54209. name: "Front (SFW)",
  54210. image: {
  54211. source: "./media/characters/eri/front-sfw.svg",
  54212. extra: 1014/939,
  54213. bottom: 37/1051
  54214. },
  54215. form: "moth",
  54216. },
  54217. frontNsfw: {
  54218. height: math.unit(120, "cm"),
  54219. weight: math.unit(15, "kg"),
  54220. name: "Front (NSFW)",
  54221. image: {
  54222. source: "./media/characters/eri/front-nsfw.svg",
  54223. extra: 1014/939,
  54224. bottom: 37/1051
  54225. },
  54226. form: "moth",
  54227. default: true
  54228. },
  54229. egg: {
  54230. height: math.unit(10, "cm"),
  54231. name: "Egg",
  54232. image: {
  54233. source: "./media/characters/eri/egg.svg"
  54234. },
  54235. form: "egg",
  54236. default: true
  54237. },
  54238. },
  54239. [
  54240. {
  54241. name: "Normal",
  54242. height: math.unit(120, "cm"),
  54243. default: true,
  54244. form: "moth"
  54245. },
  54246. {
  54247. name: "Normal",
  54248. height: math.unit(10, "cm"),
  54249. default: true,
  54250. form: "egg"
  54251. },
  54252. ],
  54253. {
  54254. "moth": {
  54255. name: "Moth",
  54256. default: true
  54257. },
  54258. "egg": {
  54259. name: "Egg",
  54260. },
  54261. }
  54262. ))
  54263. characterMakers.push(() => makeCharacter(
  54264. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54265. {
  54266. front: {
  54267. height: math.unit(200, "feet"),
  54268. name: "Front",
  54269. image: {
  54270. source: "./media/characters/bishop-dowser/front.svg",
  54271. extra: 933/868,
  54272. bottom: 106/1039
  54273. }
  54274. },
  54275. },
  54276. [
  54277. {
  54278. name: "Giant",
  54279. height: math.unit(200, "feet"),
  54280. default: true
  54281. },
  54282. ]
  54283. ))
  54284. characterMakers.push(() => makeCharacter(
  54285. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54286. {
  54287. front: {
  54288. height: math.unit(2, "meters"),
  54289. preyCapacity: math.unit(3, "people"),
  54290. name: "Front",
  54291. image: {
  54292. source: "./media/characters/fryra/front.svg",
  54293. extra: 1025/948,
  54294. bottom: 30/1055
  54295. },
  54296. extraAttributes: {
  54297. "breastVolume": {
  54298. name: "Breast Volume",
  54299. power: 3,
  54300. type: "volume",
  54301. base: math.unit(8, "liters")
  54302. },
  54303. }
  54304. },
  54305. back: {
  54306. height: math.unit(2, "meters"),
  54307. preyCapacity: math.unit(3, "people"),
  54308. name: "Back",
  54309. image: {
  54310. source: "./media/characters/fryra/back.svg",
  54311. extra: 993/938,
  54312. bottom: 38/1031
  54313. },
  54314. extraAttributes: {
  54315. "breastVolume": {
  54316. name: "Breast Volume",
  54317. power: 3,
  54318. type: "volume",
  54319. base: math.unit(8, "liters")
  54320. },
  54321. }
  54322. },
  54323. head: {
  54324. height: math.unit(1.33, "feet"),
  54325. name: "Head",
  54326. image: {
  54327. source: "./media/characters/fryra/head.svg"
  54328. }
  54329. },
  54330. maw: {
  54331. height: math.unit(0.56, "feet"),
  54332. name: "Maw",
  54333. image: {
  54334. source: "./media/characters/fryra/maw.svg"
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Micro",
  54341. height: math.unit(5, "cm")
  54342. },
  54343. {
  54344. name: "Normal",
  54345. height: math.unit(2, "meters"),
  54346. default: true
  54347. },
  54348. {
  54349. name: "Small Macro",
  54350. height: math.unit(8, "meters")
  54351. },
  54352. {
  54353. name: "Macro",
  54354. height: math.unit(50, "meters")
  54355. },
  54356. {
  54357. name: "Megamacro",
  54358. height: math.unit(1, "km")
  54359. },
  54360. {
  54361. name: "Planetary",
  54362. height: math.unit(300000, "km")
  54363. },
  54364. {
  54365. name: "Universal",
  54366. height: math.unit(250, "lightyears")
  54367. },
  54368. {
  54369. name: "Fabric of Reality",
  54370. height: math.unit(1000, "multiverses")
  54371. },
  54372. ]
  54373. ))
  54374. characterMakers.push(() => makeCharacter(
  54375. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54376. {
  54377. frontDressed: {
  54378. height: math.unit(6 + 2/12, "feet"),
  54379. name: "Front (Dressed)",
  54380. image: {
  54381. source: "./media/characters/fiera/front-dressed.svg",
  54382. extra: 1883/1793,
  54383. bottom: 70/1953
  54384. }
  54385. },
  54386. backDressed: {
  54387. height: math.unit(6 + 2/12, "feet"),
  54388. name: "Back (Dressed)",
  54389. image: {
  54390. source: "./media/characters/fiera/back-dressed.svg",
  54391. extra: 1847/1780,
  54392. bottom: 70/1917
  54393. }
  54394. },
  54395. frontNude: {
  54396. height: math.unit(6 + 2/12, "feet"),
  54397. name: "Front (Nude)",
  54398. image: {
  54399. source: "./media/characters/fiera/front-nude.svg",
  54400. extra: 1875/1785,
  54401. bottom: 66/1941
  54402. }
  54403. },
  54404. backNude: {
  54405. height: math.unit(6 + 2/12, "feet"),
  54406. name: "Back (Nude)",
  54407. image: {
  54408. source: "./media/characters/fiera/back-nude.svg",
  54409. extra: 1855/1788,
  54410. bottom: 44/1899
  54411. }
  54412. },
  54413. maw: {
  54414. height: math.unit(1.3, "feet"),
  54415. name: "Maw",
  54416. image: {
  54417. source: "./media/characters/fiera/maw.svg"
  54418. }
  54419. },
  54420. paw: {
  54421. height: math.unit(1, "feet"),
  54422. name: "Paw",
  54423. image: {
  54424. source: "./media/characters/fiera/paw.svg"
  54425. }
  54426. },
  54427. shoe: {
  54428. height: math.unit(1.05, "feet"),
  54429. name: "Shoe",
  54430. image: {
  54431. source: "./media/characters/fiera/shoe.svg"
  54432. }
  54433. },
  54434. },
  54435. [
  54436. {
  54437. name: "Normal",
  54438. height: math.unit(6 + 2/12, "feet"),
  54439. default: true
  54440. },
  54441. {
  54442. name: "Size Difference",
  54443. height: math.unit(13, "feet")
  54444. },
  54445. {
  54446. name: "Macro",
  54447. height: math.unit(60, "feet")
  54448. },
  54449. {
  54450. name: "Mega Macro",
  54451. height: math.unit(200, "feet")
  54452. },
  54453. ]
  54454. ))
  54455. characterMakers.push(() => makeCharacter(
  54456. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54457. {
  54458. back: {
  54459. height: math.unit(6, "feet"),
  54460. name: "Back",
  54461. image: {
  54462. source: "./media/characters/flare/back.svg",
  54463. extra: 1883/1765,
  54464. bottom: 32/1915
  54465. }
  54466. },
  54467. },
  54468. [
  54469. {
  54470. name: "Normal",
  54471. height: math.unit(6 + 2/12, "feet"),
  54472. default: true
  54473. },
  54474. {
  54475. name: "Size Difference",
  54476. height: math.unit(13, "feet")
  54477. },
  54478. {
  54479. name: "Macro",
  54480. height: math.unit(60, "feet")
  54481. },
  54482. {
  54483. name: "Macro 2",
  54484. height: math.unit(100, "feet")
  54485. },
  54486. {
  54487. name: "Mega Macro",
  54488. height: math.unit(200, "feet")
  54489. },
  54490. ]
  54491. ))
  54492. characterMakers.push(() => makeCharacter(
  54493. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54494. {
  54495. front: {
  54496. height: math.unit(2.2, "m"),
  54497. weight: math.unit(300, "kg"),
  54498. name: "Front",
  54499. image: {
  54500. source: "./media/characters/hanna/front.svg",
  54501. extra: 1696/1502,
  54502. bottom: 206/1902
  54503. }
  54504. },
  54505. },
  54506. [
  54507. {
  54508. name: "Humanoid",
  54509. height: math.unit(2.2, "meters")
  54510. },
  54511. {
  54512. name: "Normal",
  54513. height: math.unit(4.8, "meters"),
  54514. default: true
  54515. },
  54516. ]
  54517. ))
  54518. characterMakers.push(() => makeCharacter(
  54519. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54520. {
  54521. front: {
  54522. height: math.unit(2.8, "meters"),
  54523. name: "Front",
  54524. image: {
  54525. source: "./media/characters/argo/front.svg",
  54526. extra: 731/518,
  54527. bottom: 84/815
  54528. }
  54529. },
  54530. },
  54531. [
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(3, "meters"),
  54535. default: true
  54536. },
  54537. ]
  54538. ))
  54539. characterMakers.push(() => makeCharacter(
  54540. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54541. {
  54542. side: {
  54543. height: math.unit(3.8, "meters"),
  54544. name: "Side",
  54545. image: {
  54546. source: "./media/characters/sybil/side.svg",
  54547. extra: 382/361,
  54548. bottom: 25/407
  54549. }
  54550. },
  54551. },
  54552. [
  54553. {
  54554. name: "Normal",
  54555. height: math.unit(3.8, "meters"),
  54556. default: true
  54557. },
  54558. ]
  54559. ))
  54560. characterMakers.push(() => makeCharacter(
  54561. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54562. {
  54563. side: {
  54564. height: math.unit(6, "meters"),
  54565. name: "Side",
  54566. image: {
  54567. source: "./media/characters/plum/side.svg",
  54568. extra: 858/755,
  54569. bottom: 45/903
  54570. },
  54571. form: "taur",
  54572. default: true
  54573. },
  54574. back: {
  54575. height: math.unit(6.3, "meters"),
  54576. name: "Back",
  54577. image: {
  54578. source: "./media/characters/plum/back.svg",
  54579. extra: 887/813,
  54580. bottom: 32/919
  54581. },
  54582. form: "taur",
  54583. },
  54584. feral: {
  54585. height: math.unit(5.5, "meter"),
  54586. name: "Front",
  54587. image: {
  54588. source: "./media/characters/plum/feral.svg",
  54589. extra: 568/403,
  54590. bottom: 51/619
  54591. },
  54592. form: "feral",
  54593. default: true
  54594. },
  54595. head: {
  54596. height: math.unit(1.46, "meter"),
  54597. name: "Head",
  54598. image: {
  54599. source: "./media/characters/plum/head.svg"
  54600. },
  54601. form: "taur"
  54602. },
  54603. tailTop: {
  54604. height: math.unit(5.6, "meter"),
  54605. name: "Tail (Top)",
  54606. image: {
  54607. source: "./media/characters/plum/tail-top.svg"
  54608. },
  54609. form: "taur",
  54610. },
  54611. tailBottom: {
  54612. height: math.unit(5.6, "meter"),
  54613. name: "Tail (Bottom)",
  54614. image: {
  54615. source: "./media/characters/plum/tail-bottom.svg"
  54616. },
  54617. form: "taur",
  54618. },
  54619. feralHead: {
  54620. height: math.unit(2.56549521, "meter"),
  54621. name: "Head",
  54622. image: {
  54623. source: "./media/characters/plum/head.svg"
  54624. },
  54625. form: "feral"
  54626. },
  54627. feralTailTop: {
  54628. height: math.unit(5.44728435, "meter"),
  54629. name: "Tail (Top)",
  54630. image: {
  54631. source: "./media/characters/plum/tail-top.svg"
  54632. },
  54633. form: "feral",
  54634. },
  54635. feralTailBottom: {
  54636. height: math.unit(5.44728435, "meter"),
  54637. name: "Tail (Bottom)",
  54638. image: {
  54639. source: "./media/characters/plum/tail-bottom.svg"
  54640. },
  54641. form: "feral",
  54642. },
  54643. },
  54644. [
  54645. {
  54646. name: "Normal",
  54647. height: math.unit(6, "meters"),
  54648. default: true,
  54649. form: "taur"
  54650. },
  54651. {
  54652. name: "Normal",
  54653. height: math.unit(5.5, "meters"),
  54654. default: true,
  54655. form: "feral"
  54656. },
  54657. ],
  54658. {
  54659. "taur": {
  54660. name: "Taur",
  54661. default: true
  54662. },
  54663. "feral": {
  54664. name: "Feral",
  54665. },
  54666. }
  54667. ))
  54668. characterMakers.push(() => makeCharacter(
  54669. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54670. {
  54671. front: {
  54672. height: math.unit(6, "feet"),
  54673. weight: math.unit(115, "lb"),
  54674. name: "Front",
  54675. image: {
  54676. source: "./media/characters/celeste-kitsune/front.svg",
  54677. extra: 393/366,
  54678. bottom: 7/400
  54679. }
  54680. },
  54681. side: {
  54682. height: math.unit(6, "feet"),
  54683. weight: math.unit(115, "lb"),
  54684. name: "Side",
  54685. image: {
  54686. source: "./media/characters/celeste-kitsune/side.svg",
  54687. extra: 818/765,
  54688. bottom: 40/858
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Megamacro",
  54695. height: math.unit(1500, "miles"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54702. {
  54703. front: {
  54704. height: math.unit(8, "meters"),
  54705. name: "Front",
  54706. image: {
  54707. source: "./media/characters/io/front.svg",
  54708. extra: 865/722,
  54709. bottom: 58/923
  54710. }
  54711. },
  54712. back: {
  54713. height: math.unit(8, "meters"),
  54714. name: "Back",
  54715. image: {
  54716. source: "./media/characters/io/back.svg",
  54717. extra: 920/776,
  54718. bottom: 42/962
  54719. }
  54720. },
  54721. head: {
  54722. height: math.unit(5.09, "meters"),
  54723. name: "Head",
  54724. image: {
  54725. source: "./media/characters/io/head.svg"
  54726. }
  54727. },
  54728. hand: {
  54729. height: math.unit(1.6, "meters"),
  54730. name: "Hand",
  54731. image: {
  54732. source: "./media/characters/io/hand.svg"
  54733. }
  54734. },
  54735. foot: {
  54736. height: math.unit(2.4, "meters"),
  54737. name: "Foot",
  54738. image: {
  54739. source: "./media/characters/io/foot.svg"
  54740. }
  54741. },
  54742. },
  54743. [
  54744. {
  54745. name: "Normal",
  54746. height: math.unit(8, "meters"),
  54747. default: true
  54748. },
  54749. ]
  54750. ))
  54751. characterMakers.push(() => makeCharacter(
  54752. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54753. {
  54754. side: {
  54755. height: math.unit(6 + 3/12, "feet"),
  54756. weight: math.unit(225, "lb"),
  54757. name: "Side",
  54758. image: {
  54759. source: "./media/characters/silas/side.svg",
  54760. extra: 703/653,
  54761. bottom: 23/726
  54762. },
  54763. extraAttributes: {
  54764. "pawLength": {
  54765. name: "Paw Length",
  54766. power: 1,
  54767. type: "length",
  54768. base: math.unit(12, "inches")
  54769. },
  54770. "pawWidth": {
  54771. name: "Paw Width",
  54772. power: 1,
  54773. type: "length",
  54774. base: math.unit(4.5, "inches")
  54775. },
  54776. "pawArea": {
  54777. name: "Paw Area",
  54778. power: 2,
  54779. type: "area",
  54780. base: math.unit(12 * 4.5, "inches^2")
  54781. },
  54782. }
  54783. },
  54784. },
  54785. [
  54786. {
  54787. name: "Normal",
  54788. height: math.unit(6 + 3/12, "feet"),
  54789. default: true
  54790. },
  54791. ]
  54792. ))
  54793. characterMakers.push(() => makeCharacter(
  54794. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54795. {
  54796. back: {
  54797. height: math.unit(1.6, "meters"),
  54798. weight: math.unit(150, "lb"),
  54799. name: "Back",
  54800. image: {
  54801. source: "./media/characters/zari/back.svg",
  54802. extra: 424/411,
  54803. bottom: 32/456
  54804. },
  54805. extraAttributes: {
  54806. "bladderCapacity": {
  54807. name: "Bladder Size",
  54808. power: 3,
  54809. type: "volume",
  54810. base: math.unit(500, "mL")
  54811. },
  54812. "bladderFlow": {
  54813. name: "Flow Rate",
  54814. power: 3,
  54815. type: "volume",
  54816. base: math.unit(25, "mL")
  54817. },
  54818. }
  54819. },
  54820. },
  54821. [
  54822. {
  54823. name: "Normal",
  54824. height: math.unit(1.6, "meters"),
  54825. default: true
  54826. },
  54827. ]
  54828. ))
  54829. characterMakers.push(() => makeCharacter(
  54830. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54831. {
  54832. front: {
  54833. height: math.unit(25, "feet"),
  54834. weight: math.unit(5, "tons"),
  54835. name: "Front",
  54836. image: {
  54837. source: "./media/characters/charlie-human/front.svg",
  54838. extra: 1870/1740,
  54839. bottom: 102/1972
  54840. },
  54841. extraAttributes: {
  54842. "dickLength": {
  54843. name: "Dick Length",
  54844. power: 1,
  54845. type: "length",
  54846. base: math.unit(9, "feet")
  54847. },
  54848. }
  54849. },
  54850. back: {
  54851. height: math.unit(25, "feet"),
  54852. weight: math.unit(5, "tons"),
  54853. name: "Back",
  54854. image: {
  54855. source: "./media/characters/charlie-human/back.svg",
  54856. extra: 1858/1733,
  54857. bottom: 105/1963
  54858. },
  54859. extraAttributes: {
  54860. "dickLength": {
  54861. name: "Dick Length",
  54862. power: 1,
  54863. type: "length",
  54864. base: math.unit(9, "feet")
  54865. },
  54866. }
  54867. },
  54868. },
  54869. [
  54870. {
  54871. name: "\"Normal\"",
  54872. height: math.unit(6 + 4/12, "feet")
  54873. },
  54874. {
  54875. name: "Big",
  54876. height: math.unit(25, "feet"),
  54877. default: true
  54878. },
  54879. ]
  54880. ))
  54881. characterMakers.push(() => makeCharacter(
  54882. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54883. {
  54884. front: {
  54885. height: math.unit(6 + 4/12, "feet"),
  54886. weight: math.unit(320, "lb"),
  54887. name: "Front",
  54888. image: {
  54889. source: "./media/characters/ookitsu/front.svg",
  54890. extra: 1160/976,
  54891. bottom: 38/1198
  54892. }
  54893. },
  54894. frontNsfw: {
  54895. height: math.unit(6 + 4/12, "feet"),
  54896. weight: math.unit(320, "lb"),
  54897. name: "Front (NSFW)",
  54898. image: {
  54899. source: "./media/characters/ookitsu/front-nsfw.svg",
  54900. extra: 1160/976,
  54901. bottom: 38/1198
  54902. }
  54903. },
  54904. back: {
  54905. height: math.unit(6 + 4/12, "feet"),
  54906. weight: math.unit(320, "lb"),
  54907. name: "Back",
  54908. image: {
  54909. source: "./media/characters/ookitsu/back.svg",
  54910. extra: 1030/975,
  54911. bottom: 70/1100
  54912. }
  54913. },
  54914. head: {
  54915. height: math.unit(1.79, "feet"),
  54916. name: "Head",
  54917. image: {
  54918. source: "./media/characters/ookitsu/head.svg"
  54919. }
  54920. },
  54921. hand: {
  54922. height: math.unit(0.92, "feet"),
  54923. name: "Hand",
  54924. image: {
  54925. source: "./media/characters/ookitsu/hand.svg"
  54926. }
  54927. },
  54928. tails: {
  54929. height: math.unit(3.3, "feet"),
  54930. name: "Tails",
  54931. image: {
  54932. source: "./media/characters/ookitsu/tails.svg"
  54933. }
  54934. },
  54935. dick: {
  54936. height: math.unit(1.10833, "feet"),
  54937. name: "Dick",
  54938. image: {
  54939. source: "./media/characters/ookitsu/dick.svg"
  54940. }
  54941. },
  54942. },
  54943. [
  54944. {
  54945. name: "Normal",
  54946. height: math.unit(6 + 4/12, "feet"),
  54947. default: true
  54948. },
  54949. {
  54950. name: "Macro",
  54951. height: math.unit(30, "feet")
  54952. },
  54953. ]
  54954. ))
  54955. characterMakers.push(() => makeCharacter(
  54956. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54957. {
  54958. anthroFront: {
  54959. height: math.unit(6, "feet"),
  54960. weight: math.unit(250, "lb"),
  54961. name: "Front",
  54962. image: {
  54963. source: "./media/characters/jhusky/anthro-front.svg",
  54964. extra: 474/439,
  54965. bottom: 7/481
  54966. },
  54967. form: "anthro",
  54968. default: true
  54969. },
  54970. taurSideSfw: {
  54971. height: math.unit(6 + 4/12, "feet"),
  54972. weight: math.unit(500, "lb"),
  54973. name: "Side (SFW)",
  54974. image: {
  54975. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54976. extra: 1741/1629,
  54977. bottom: 196/1937
  54978. },
  54979. form: "taur",
  54980. default: true
  54981. },
  54982. taurSideNsfw: {
  54983. height: math.unit(6 + 4/12, "feet"),
  54984. weight: math.unit(500, "lb"),
  54985. name: "Taur (NSFW)",
  54986. image: {
  54987. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54988. extra: 1741/1629,
  54989. bottom: 196/1937
  54990. },
  54991. form: "taur",
  54992. },
  54993. },
  54994. [
  54995. {
  54996. name: "Huge",
  54997. height: math.unit(500, "feet"),
  54998. form: "anthro"
  54999. },
  55000. {
  55001. name: "Macro",
  55002. height: math.unit(1000, "feet"),
  55003. default: true,
  55004. form: "anthro"
  55005. },
  55006. {
  55007. name: "Megamacro",
  55008. height: math.unit(10000, "feet"),
  55009. form: "anthro"
  55010. },
  55011. {
  55012. name: "Huge",
  55013. height: math.unit(528, "feet"),
  55014. form: "taur"
  55015. },
  55016. {
  55017. name: "Macro",
  55018. height: math.unit(1056, "feet"),
  55019. default: true,
  55020. form: "taur"
  55021. },
  55022. {
  55023. name: "Megamacro",
  55024. height: math.unit(10556, "feet"),
  55025. form: "taur"
  55026. },
  55027. ],
  55028. {
  55029. "anthro": {
  55030. name: "Anthro",
  55031. default: true
  55032. },
  55033. "taur": {
  55034. name: "Taur",
  55035. },
  55036. }
  55037. ))
  55038. characterMakers.push(() => makeCharacter(
  55039. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55040. {
  55041. front: {
  55042. height: math.unit(8, "feet"),
  55043. weight: math.unit(500, "lb"),
  55044. name: "Front",
  55045. image: {
  55046. source: "./media/characters/armail/front.svg",
  55047. extra: 1753/1669,
  55048. bottom: 155/1908
  55049. }
  55050. },
  55051. back: {
  55052. height: math.unit(8, "feet"),
  55053. weight: math.unit(500, "lb"),
  55054. name: "Back",
  55055. image: {
  55056. source: "./media/characters/armail/back.svg",
  55057. extra: 1872/1803,
  55058. bottom: 63/1935
  55059. }
  55060. },
  55061. },
  55062. [
  55063. {
  55064. name: "Micro",
  55065. height: math.unit(0.25, "feet")
  55066. },
  55067. {
  55068. name: "Normal",
  55069. height: math.unit(8, "feet"),
  55070. default: true
  55071. },
  55072. {
  55073. name: "Mini-macro",
  55074. height: math.unit(30, "feet")
  55075. },
  55076. {
  55077. name: "Macro",
  55078. height: math.unit(400, "feet")
  55079. },
  55080. {
  55081. name: "Mega-macro",
  55082. height: math.unit(6000, "feet")
  55083. },
  55084. ]
  55085. ))
  55086. characterMakers.push(() => makeCharacter(
  55087. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55088. {
  55089. front: {
  55090. height: math.unit(6 + 7/12, "feet"),
  55091. weight: math.unit(210, "lb"),
  55092. name: "Front",
  55093. image: {
  55094. source: "./media/characters/wilfred-t-buxton/front.svg",
  55095. extra: 1068/882,
  55096. bottom: 28/1096
  55097. }
  55098. },
  55099. },
  55100. [
  55101. {
  55102. name: "Normal",
  55103. height: math.unit(6 + 7/12, "feet"),
  55104. default: true
  55105. },
  55106. ]
  55107. ))
  55108. characterMakers.push(() => makeCharacter(
  55109. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55110. {
  55111. front: {
  55112. height: math.unit(5 + 2/12, "feet"),
  55113. weight: math.unit(120, "lb"),
  55114. name: "Front",
  55115. image: {
  55116. source: "./media/characters/leighton-marrow/front.svg",
  55117. extra: 441/409,
  55118. bottom: 37/478
  55119. }
  55120. },
  55121. },
  55122. [
  55123. {
  55124. name: "Normal",
  55125. height: math.unit(5 + 2/12, "feet"),
  55126. default: true
  55127. },
  55128. ]
  55129. ))
  55130. characterMakers.push(() => makeCharacter(
  55131. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55132. {
  55133. front: {
  55134. height: math.unit(4, "meters"),
  55135. weight: math.unit(1200, "kg"),
  55136. name: "Front",
  55137. image: {
  55138. source: "./media/characters/licos/front.svg",
  55139. extra: 1727/1604,
  55140. bottom: 101/1828
  55141. },
  55142. form: "anthro",
  55143. default: true
  55144. },
  55145. taur_side: {
  55146. height: math.unit(20, "meters"),
  55147. weight: math.unit(1100000, "kg"),
  55148. name: "Side",
  55149. image: {
  55150. source: "./media/characters/licos/taur.svg",
  55151. extra: 1158/1091,
  55152. bottom: 80/1238
  55153. },
  55154. form: "taur",
  55155. default: true
  55156. },
  55157. },
  55158. [
  55159. {
  55160. name: "Normal",
  55161. height: math.unit(4, "meters"),
  55162. default: true,
  55163. form: "anthro"
  55164. },
  55165. {
  55166. name: "Normal",
  55167. height: math.unit(20, "meters"),
  55168. default: true,
  55169. form: "taur"
  55170. },
  55171. ],
  55172. {
  55173. "anthro": {
  55174. name: "Anthro",
  55175. default: true
  55176. },
  55177. "taur": {
  55178. name: "Taur",
  55179. },
  55180. }
  55181. ))
  55182. characterMakers.push(() => makeCharacter(
  55183. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55184. {
  55185. front: {
  55186. height: math.unit(10 + 3/12, "feet"),
  55187. name: "Front",
  55188. image: {
  55189. source: "./media/characters/theo-monkey/front.svg",
  55190. extra: 1735/1658,
  55191. bottom: 73/1808
  55192. }
  55193. },
  55194. back: {
  55195. height: math.unit(10 + 3/12, "feet"),
  55196. name: "Back",
  55197. image: {
  55198. source: "./media/characters/theo-monkey/back.svg",
  55199. extra: 1742/1664,
  55200. bottom: 33/1775
  55201. }
  55202. },
  55203. head: {
  55204. height: math.unit(2.29, "feet"),
  55205. name: "Head",
  55206. image: {
  55207. source: "./media/characters/theo-monkey/head.svg"
  55208. }
  55209. },
  55210. handPalm: {
  55211. height: math.unit(1.73, "feet"),
  55212. name: "Hand (Palm)",
  55213. image: {
  55214. source: "./media/characters/theo-monkey/hand-palm.svg"
  55215. }
  55216. },
  55217. handBack: {
  55218. height: math.unit(1.63, "feet"),
  55219. name: "Hand (Back)",
  55220. image: {
  55221. source: "./media/characters/theo-monkey/hand-back.svg"
  55222. }
  55223. },
  55224. footSole: {
  55225. height: math.unit(2.15, "feet"),
  55226. name: "Foot (Sole)",
  55227. image: {
  55228. source: "./media/characters/theo-monkey/foot-sole.svg"
  55229. }
  55230. },
  55231. footSide: {
  55232. height: math.unit(1.6, "feet"),
  55233. name: "Foot (Side)",
  55234. image: {
  55235. source: "./media/characters/theo-monkey/foot-side.svg"
  55236. }
  55237. },
  55238. },
  55239. [
  55240. {
  55241. name: "Normal",
  55242. height: math.unit(10 + 3/12, "feet"),
  55243. default: true
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55249. {
  55250. front: {
  55251. height: math.unit(11, "feet"),
  55252. weight: math.unit(3000, "lb"),
  55253. preyCapacity: math.unit(10, "people"),
  55254. name: "Front",
  55255. image: {
  55256. source: "./media/characters/brook/front.svg",
  55257. extra: 909/835,
  55258. bottom: 108/1017
  55259. }
  55260. },
  55261. back: {
  55262. height: math.unit(11, "feet"),
  55263. weight: math.unit(3000, "lb"),
  55264. preyCapacity: math.unit(10, "people"),
  55265. name: "Back",
  55266. image: {
  55267. source: "./media/characters/brook/back.svg",
  55268. extra: 976/916,
  55269. bottom: 34/1010
  55270. }
  55271. },
  55272. backAlt: {
  55273. height: math.unit(11, "feet"),
  55274. weight: math.unit(3000, "lb"),
  55275. preyCapacity: math.unit(10, "people"),
  55276. name: "Back (Alt)",
  55277. image: {
  55278. source: "./media/characters/brook/back-alt.svg",
  55279. extra: 1283/1213,
  55280. bottom: 35/1318
  55281. }
  55282. },
  55283. bust: {
  55284. height: math.unit(9.0859030837, "feet"),
  55285. weight: math.unit(3000, "lb"),
  55286. preyCapacity: math.unit(10, "people"),
  55287. name: "Bust",
  55288. image: {
  55289. source: "./media/characters/brook/bust.svg",
  55290. extra: 2043/1923,
  55291. bottom: 0/2043
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Small",
  55298. height: math.unit(11, "feet"),
  55299. default: true
  55300. },
  55301. {
  55302. name: "Towering",
  55303. height: math.unit(5, "km")
  55304. },
  55305. {
  55306. name: "Enormous",
  55307. height: math.unit(25, "earths")
  55308. },
  55309. ]
  55310. ))
  55311. characterMakers.push(() => makeCharacter(
  55312. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55313. {
  55314. front: {
  55315. height: math.unit(4, "feet"),
  55316. weight: math.unit(150, "lb"),
  55317. name: "Front",
  55318. image: {
  55319. source: "./media/characters/squishi/front.svg",
  55320. extra: 1428/1271,
  55321. bottom: 30/1458
  55322. },
  55323. extraAttributes: {
  55324. "pawSize": {
  55325. name: "Paw Size",
  55326. power: 1,
  55327. type: "length",
  55328. base: math.unit(14, "ShoeSizeMensUS"),
  55329. defaultUnit: "ShoeSizeMensUS"
  55330. },
  55331. }
  55332. },
  55333. side: {
  55334. height: math.unit(4, "feet"),
  55335. weight: math.unit(150, "lb"),
  55336. name: "Side",
  55337. image: {
  55338. source: "./media/characters/squishi/side.svg",
  55339. extra: 1428/1271,
  55340. bottom: 30/1458
  55341. },
  55342. extraAttributes: {
  55343. "pawSize": {
  55344. name: "Paw Size",
  55345. power: 1,
  55346. type: "length",
  55347. base: math.unit(14, "ShoeSizeMensUS"),
  55348. defaultUnit: "ShoeSizeMensUS"
  55349. },
  55350. }
  55351. },
  55352. back: {
  55353. height: math.unit(4, "feet"),
  55354. weight: math.unit(150, "lb"),
  55355. name: "Back",
  55356. image: {
  55357. source: "./media/characters/squishi/back.svg",
  55358. extra: 1428/1271,
  55359. bottom: 30/1458
  55360. },
  55361. extraAttributes: {
  55362. "pawSize": {
  55363. name: "Paw Size",
  55364. power: 1,
  55365. type: "length",
  55366. base: math.unit(14, "ShoeSizeMensUS"),
  55367. defaultUnit: "ShoeSizeMensUS"
  55368. },
  55369. }
  55370. },
  55371. },
  55372. [
  55373. {
  55374. name: "Normal",
  55375. height: math.unit(4, "feet"),
  55376. default: true
  55377. },
  55378. ]
  55379. ))
  55380. characterMakers.push(() => makeCharacter(
  55381. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55382. {
  55383. front: {
  55384. height: math.unit(7 + 8/12, "feet"),
  55385. weight: math.unit(333, "lb"),
  55386. name: "Front",
  55387. image: {
  55388. source: "./media/characters/vincent-vasroc/front.svg",
  55389. extra: 1962/1860,
  55390. bottom: 41/2003
  55391. }
  55392. },
  55393. back: {
  55394. height: math.unit(7 + 8/12, "feet"),
  55395. weight: math.unit(333, "lb"),
  55396. name: "Back",
  55397. image: {
  55398. source: "./media/characters/vincent-vasroc/back.svg",
  55399. extra: 1952/1815,
  55400. bottom: 33/1985
  55401. }
  55402. },
  55403. paw: {
  55404. height: math.unit(1.24, "feet"),
  55405. name: "Paw",
  55406. image: {
  55407. source: "./media/characters/vincent-vasroc/paw.svg"
  55408. }
  55409. },
  55410. ear: {
  55411. height: math.unit(0.75, "feet"),
  55412. name: "Ear",
  55413. image: {
  55414. source: "./media/characters/vincent-vasroc/ear.svg"
  55415. }
  55416. },
  55417. },
  55418. [
  55419. {
  55420. name: "Nano",
  55421. height: math.unit(92, "micrometers")
  55422. },
  55423. {
  55424. name: "Normal",
  55425. height: math.unit(7 + 8/12, "feet"),
  55426. default: true
  55427. },
  55428. ]
  55429. ))
  55430. characterMakers.push(() => makeCharacter(
  55431. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55432. {
  55433. frontNsfw: {
  55434. height: math.unit(40, "feet"),
  55435. weight: math.unit(58, "tons"),
  55436. name: "Front (NSFW)",
  55437. image: {
  55438. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55439. extra: 1265/965,
  55440. bottom: 155/1420
  55441. }
  55442. },
  55443. frontSfw: {
  55444. height: math.unit(40, "feet"),
  55445. weight: math.unit(58, "tons"),
  55446. name: "Front (SFW)",
  55447. image: {
  55448. source: "./media/characters/ru-kahn/front-sfw.svg",
  55449. extra: 1265/965,
  55450. bottom: 80/1345
  55451. }
  55452. },
  55453. },
  55454. [
  55455. {
  55456. name: "Small",
  55457. height: math.unit(4, "feet")
  55458. },
  55459. {
  55460. name: "Normal",
  55461. height: math.unit(40, "feet"),
  55462. default: true
  55463. },
  55464. {
  55465. name: "Macro",
  55466. height: math.unit(400, "feet")
  55467. },
  55468. ]
  55469. ))
  55470. characterMakers.push(() => makeCharacter(
  55471. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55472. {
  55473. frontNude: {
  55474. height: math.unit(6 + 5/12, "feet"),
  55475. name: "Front (Nude)",
  55476. image: {
  55477. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55478. extra: 1369/1366,
  55479. bottom: 68/1437
  55480. }
  55481. },
  55482. frontDressed: {
  55483. height: math.unit(6 + 5/12, "feet"),
  55484. name: "Front (Dressed)",
  55485. image: {
  55486. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55487. extra: 1369/1366,
  55488. bottom: 68/1437
  55489. }
  55490. },
  55491. },
  55492. [
  55493. {
  55494. name: "Normal",
  55495. height: math.unit(6 + 5/12, "feet"),
  55496. default: true
  55497. },
  55498. {
  55499. name: "Maximum",
  55500. height: math.unit(1930, "feet")
  55501. },
  55502. ]
  55503. ))
  55504. characterMakers.push(() => makeCharacter(
  55505. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55506. {
  55507. front: {
  55508. height: math.unit(5 + 6/12, "feet"),
  55509. name: "Front",
  55510. image: {
  55511. source: "./media/characters/kaja/front.svg",
  55512. extra: 1874/1514,
  55513. bottom: 117/1991
  55514. }
  55515. },
  55516. },
  55517. [
  55518. {
  55519. name: "Normal",
  55520. height: math.unit(5 + 6/12, "feet"),
  55521. default: true
  55522. },
  55523. ]
  55524. ))
  55525. characterMakers.push(() => makeCharacter(
  55526. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55527. {
  55528. front: {
  55529. height: math.unit(5 + 9/12, "feet"),
  55530. weight: math.unit(200, "lb"),
  55531. name: "Front",
  55532. image: {
  55533. source: "./media/characters/mark-smith/front.svg",
  55534. extra: 1004/943,
  55535. bottom: 58/1062
  55536. }
  55537. },
  55538. back: {
  55539. height: math.unit(5 + 9/12, "feet"),
  55540. weight: math.unit(200, "lb"),
  55541. name: "Back",
  55542. image: {
  55543. source: "./media/characters/mark-smith/back.svg",
  55544. extra: 1023/953,
  55545. bottom: 24/1047
  55546. }
  55547. },
  55548. head: {
  55549. height: math.unit(1.82, "feet"),
  55550. name: "Head",
  55551. image: {
  55552. source: "./media/characters/mark-smith/head.svg"
  55553. }
  55554. },
  55555. hand: {
  55556. height: math.unit(1.4, "feet"),
  55557. name: "Hand",
  55558. image: {
  55559. source: "./media/characters/mark-smith/hand.svg"
  55560. }
  55561. },
  55562. paw: {
  55563. height: math.unit(1.69, "feet"),
  55564. name: "Paw",
  55565. image: {
  55566. source: "./media/characters/mark-smith/paw.svg"
  55567. }
  55568. },
  55569. },
  55570. [
  55571. {
  55572. name: "Micro",
  55573. height: math.unit(0.25, "inches")
  55574. },
  55575. {
  55576. name: "Normal",
  55577. height: math.unit(5 + 9/12, "feet"),
  55578. default: true
  55579. },
  55580. {
  55581. name: "Macro",
  55582. height: math.unit(500, "feet")
  55583. },
  55584. ]
  55585. ))
  55586. characterMakers.push(() => makeCharacter(
  55587. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55588. {
  55589. frontNude: {
  55590. height: math.unit(6, "feet"),
  55591. name: "Front (Nude)",
  55592. image: {
  55593. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55594. extra: 1384/1321,
  55595. bottom: 57/1441
  55596. }
  55597. },
  55598. frontDressed: {
  55599. height: math.unit(6, "feet"),
  55600. name: "Front (Dressed)",
  55601. image: {
  55602. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55603. extra: 1384/1321,
  55604. bottom: 57/1441
  55605. }
  55606. },
  55607. },
  55608. [
  55609. {
  55610. name: "Normal",
  55611. height: math.unit(6, "feet"),
  55612. default: true
  55613. },
  55614. {
  55615. name: "Maximum",
  55616. height: math.unit(1776, "feet")
  55617. },
  55618. ]
  55619. ))
  55620. characterMakers.push(() => makeCharacter(
  55621. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55622. {
  55623. front: {
  55624. height: math.unit(2 + 4/12, "feet"),
  55625. weight: math.unit(350, "lb"),
  55626. name: "Front",
  55627. image: {
  55628. source: "./media/characters/devos/front.svg",
  55629. extra: 958/852,
  55630. bottom: 143/1101
  55631. }
  55632. },
  55633. },
  55634. [
  55635. {
  55636. name: "Base",
  55637. height: math.unit(2 + 4/12, "feet"),
  55638. default: true
  55639. },
  55640. ]
  55641. ))
  55642. characterMakers.push(() => makeCharacter(
  55643. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55644. {
  55645. front: {
  55646. height: math.unit(9 + 2/12, "feet"),
  55647. name: "Front",
  55648. image: {
  55649. source: "./media/characters/hiveheart/front.svg",
  55650. extra: 394/364,
  55651. bottom: 65/459
  55652. }
  55653. },
  55654. back: {
  55655. height: math.unit(9 + 2/12, "feet"),
  55656. name: "Back",
  55657. image: {
  55658. source: "./media/characters/hiveheart/back.svg",
  55659. extra: 374/357,
  55660. bottom: 63/437
  55661. }
  55662. },
  55663. },
  55664. [
  55665. {
  55666. name: "Base",
  55667. height: math.unit(9 + 2/12, "feet"),
  55668. default: true
  55669. },
  55670. ]
  55671. ))
  55672. characterMakers.push(() => makeCharacter(
  55673. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55674. {
  55675. front: {
  55676. height: math.unit(2.5, "inches"),
  55677. weight: math.unit(0.6, "oz"),
  55678. name: "Front",
  55679. image: {
  55680. source: "./media/characters/bryn/front.svg",
  55681. extra: 1480/1205,
  55682. bottom: 27/1507
  55683. }
  55684. },
  55685. back: {
  55686. height: math.unit(2.5, "inches"),
  55687. weight: math.unit(0.6, "oz"),
  55688. name: "Back",
  55689. image: {
  55690. source: "./media/characters/bryn/back.svg",
  55691. extra: 1475/1201,
  55692. bottom: 39/1514
  55693. }
  55694. },
  55695. foot: {
  55696. height: math.unit(0.4, "inches"),
  55697. name: "Foot",
  55698. image: {
  55699. source: "./media/characters/bryn/foot.svg"
  55700. }
  55701. },
  55702. },
  55703. [
  55704. {
  55705. name: "Normal",
  55706. height: math.unit(2.5, "inches"),
  55707. default: true
  55708. },
  55709. ]
  55710. ))
  55711. characterMakers.push(() => makeCharacter(
  55712. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55713. {
  55714. side: {
  55715. height: math.unit(7, "feet"),
  55716. weight: math.unit(657, "kg"),
  55717. name: "Side",
  55718. image: {
  55719. source: "./media/characters/delta/side.svg",
  55720. extra: 781/212,
  55721. bottom: 7/788
  55722. },
  55723. extraAttributes: {
  55724. "wingspan": {
  55725. name: "Wingspan",
  55726. power: 1,
  55727. type: "length",
  55728. base: math.unit(48, "feet")
  55729. },
  55730. "length": {
  55731. name: "Length",
  55732. power: 1,
  55733. type: "length",
  55734. base: math.unit(21, "feet")
  55735. },
  55736. "pawSize": {
  55737. name: "Paw Size",
  55738. power: 2,
  55739. type: "area",
  55740. base: math.unit(1.5*1.4, "feet^2")
  55741. },
  55742. }
  55743. },
  55744. },
  55745. [
  55746. {
  55747. name: "Normal",
  55748. height: math.unit(6, "feet"),
  55749. default: true
  55750. },
  55751. ]
  55752. ))
  55753. characterMakers.push(() => makeCharacter(
  55754. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55755. {
  55756. front: {
  55757. height: math.unit(6, "feet"),
  55758. name: "Front",
  55759. image: {
  55760. source: "./media/characters/pyrow/front.svg",
  55761. extra: 513/486,
  55762. bottom: 14/527
  55763. }
  55764. },
  55765. frontWing: {
  55766. height: math.unit(6, "feet"),
  55767. name: "Front (Wing)",
  55768. image: {
  55769. source: "./media/characters/pyrow/front-wing.svg",
  55770. extra: 539/383,
  55771. bottom: 20/559
  55772. }
  55773. },
  55774. back: {
  55775. height: math.unit(6, "feet"),
  55776. name: "Back",
  55777. image: {
  55778. source: "./media/characters/pyrow/back.svg",
  55779. extra: 500/473,
  55780. bottom: 9/509
  55781. }
  55782. },
  55783. },
  55784. [
  55785. {
  55786. name: "Normal",
  55787. height: math.unit(6, "feet"),
  55788. default: true
  55789. },
  55790. ]
  55791. ))
  55792. characterMakers.push(() => makeCharacter(
  55793. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55794. {
  55795. front: {
  55796. height: math.unit(5, "meters"),
  55797. weight: math.unit(3, "tonnes"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/velikan/front.svg",
  55801. extra: 867/744,
  55802. bottom: 71/938
  55803. },
  55804. extraAttributes: {
  55805. "shoeSize": {
  55806. name: "Shoe Size",
  55807. power: 1,
  55808. type: "length",
  55809. base: math.unit(135, "ShoeSizeUK"),
  55810. defaultUnit: "ShoeSizeUK"
  55811. },
  55812. }
  55813. },
  55814. },
  55815. [
  55816. {
  55817. name: "Normal",
  55818. height: math.unit(5, "meters"),
  55819. default: true
  55820. },
  55821. {
  55822. name: "Macro",
  55823. height: math.unit(1, "km")
  55824. },
  55825. {
  55826. name: "Mega Macro",
  55827. height: math.unit(100, "km")
  55828. },
  55829. {
  55830. name: "Giga Macro",
  55831. height: math.unit(2, "megameters")
  55832. },
  55833. {
  55834. name: "Planetary",
  55835. height: math.unit(22, "megameters")
  55836. },
  55837. {
  55838. name: "Solar",
  55839. height: math.unit(8, "gigameters")
  55840. },
  55841. {
  55842. name: "Cosmic",
  55843. height: math.unit(10, "zettameters")
  55844. },
  55845. {
  55846. name: "Omni",
  55847. height: math.unit(9e260, "multiverses")
  55848. },
  55849. ]
  55850. ))
  55851. characterMakers.push(() => makeCharacter(
  55852. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55853. {
  55854. front: {
  55855. height: math.unit(4 + 3/12, "feet"),
  55856. weight: math.unit(90, "lb"),
  55857. name: "Front",
  55858. image: {
  55859. source: "./media/characters/sabiki/front.svg",
  55860. extra: 1662/1423,
  55861. bottom: 65/1727
  55862. }
  55863. },
  55864. },
  55865. [
  55866. {
  55867. name: "Normal",
  55868. height: math.unit(4 + 3/12, "feet"),
  55869. default: true
  55870. },
  55871. ]
  55872. ))
  55873. characterMakers.push(() => makeCharacter(
  55874. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55875. {
  55876. frontSfw: {
  55877. height: math.unit(2, "mm"),
  55878. name: "Front (SFW)",
  55879. image: {
  55880. source: "./media/characters/carmel/front-sfw.svg",
  55881. extra: 1131/1006,
  55882. bottom: 66/1197
  55883. }
  55884. },
  55885. frontNsfw: {
  55886. height: math.unit(2, "mm"),
  55887. name: "Front (NSFW)",
  55888. image: {
  55889. source: "./media/characters/carmel/front-nsfw.svg",
  55890. extra: 1131/1006,
  55891. bottom: 66/1197
  55892. }
  55893. },
  55894. foot: {
  55895. height: math.unit(0.3, "mm"),
  55896. name: "Foot",
  55897. image: {
  55898. source: "./media/characters/carmel/foot.svg"
  55899. }
  55900. },
  55901. tongue: {
  55902. height: math.unit(0.71, "mm"),
  55903. name: "Tongue",
  55904. image: {
  55905. source: "./media/characters/carmel/tongue.svg"
  55906. }
  55907. },
  55908. dick: {
  55909. height: math.unit(0.085, "mm"),
  55910. name: "Dick",
  55911. image: {
  55912. source: "./media/characters/carmel/dick.svg"
  55913. }
  55914. },
  55915. },
  55916. [
  55917. {
  55918. name: "Micro",
  55919. height: math.unit(2, "mm"),
  55920. default: true
  55921. },
  55922. {
  55923. name: "Normal",
  55924. height: math.unit(4 + 8/12, "feet")
  55925. },
  55926. {
  55927. name: "Mega Macro",
  55928. height: math.unit(250, "feet")
  55929. },
  55930. {
  55931. name: "BIGGER",
  55932. height: math.unit(1000, "feet")
  55933. },
  55934. {
  55935. name: "BIGGEST",
  55936. height: math.unit(2, "miles")
  55937. },
  55938. ]
  55939. ))
  55940. characterMakers.push(() => makeCharacter(
  55941. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55942. {
  55943. front: {
  55944. height: math.unit(6.5, "feet"),
  55945. weight: math.unit(198, "lb"),
  55946. name: "Front",
  55947. image: {
  55948. source: "./media/characters/tamani/anthro.svg",
  55949. extra: 930/890,
  55950. bottom: 34/964
  55951. },
  55952. form: "anthro",
  55953. default: true
  55954. },
  55955. side: {
  55956. height: math.unit(6, "feet"),
  55957. weight: math.unit(198*2, "lb"),
  55958. name: "Side",
  55959. image: {
  55960. source: "./media/characters/tamani/feral.svg",
  55961. extra: 559/519,
  55962. bottom: 43/602
  55963. },
  55964. form: "feral"
  55965. },
  55966. },
  55967. [
  55968. {
  55969. name: "Normal",
  55970. height: math.unit(6.5, "feet"),
  55971. default: true,
  55972. form: "anthro"
  55973. },
  55974. {
  55975. name: "Normal",
  55976. height: math.unit(6, "feet"),
  55977. default: true,
  55978. form: "feral"
  55979. },
  55980. ],
  55981. {
  55982. "anthro": {
  55983. name: "Anthro",
  55984. default: true
  55985. },
  55986. "feral": {
  55987. name: "Feral",
  55988. },
  55989. }
  55990. ))
  55991. characterMakers.push(() => makeCharacter(
  55992. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55993. {
  55994. front: {
  55995. height: math.unit(4 + 1/12, "feet"),
  55996. weight: math.unit(114, "lb"),
  55997. name: "Front",
  55998. image: {
  55999. source: "./media/characters/dex/front.svg",
  56000. extra: 787/680,
  56001. bottom: 18/805
  56002. }
  56003. },
  56004. side: {
  56005. height: math.unit(4 + 1/12, "feet"),
  56006. weight: math.unit(114, "lb"),
  56007. name: "Side",
  56008. image: {
  56009. source: "./media/characters/dex/side.svg",
  56010. extra: 785/680,
  56011. bottom: 12/797
  56012. }
  56013. },
  56014. back: {
  56015. height: math.unit(4 + 1/12, "feet"),
  56016. weight: math.unit(114, "lb"),
  56017. name: "Back",
  56018. image: {
  56019. source: "./media/characters/dex/back.svg",
  56020. extra: 785/681,
  56021. bottom: 17/802
  56022. }
  56023. },
  56024. loungewear: {
  56025. height: math.unit(4 + 1/12, "feet"),
  56026. weight: math.unit(114, "lb"),
  56027. name: "Loungewear",
  56028. image: {
  56029. source: "./media/characters/dex/loungewear.svg",
  56030. extra: 787/680,
  56031. bottom: 18/805
  56032. }
  56033. },
  56034. workout: {
  56035. height: math.unit(4 + 1/12, "feet"),
  56036. weight: math.unit(114, "lb"),
  56037. name: "Workout",
  56038. image: {
  56039. source: "./media/characters/dex/workout.svg",
  56040. extra: 787/680,
  56041. bottom: 18/805
  56042. }
  56043. },
  56044. schoolUniform: {
  56045. height: math.unit(4 + 1/12, "feet"),
  56046. weight: math.unit(114, "lb"),
  56047. name: "School-uniform",
  56048. image: {
  56049. source: "./media/characters/dex/school-uniform.svg",
  56050. extra: 787/680,
  56051. bottom: 18/805
  56052. }
  56053. },
  56054. maw: {
  56055. height: math.unit(0.55, "feet"),
  56056. name: "Maw",
  56057. image: {
  56058. source: "./media/characters/dex/maw.svg"
  56059. }
  56060. },
  56061. paw: {
  56062. height: math.unit(0.87, "feet"),
  56063. name: "Paw",
  56064. image: {
  56065. source: "./media/characters/dex/paw.svg"
  56066. }
  56067. },
  56068. bust: {
  56069. height: math.unit(1.67, "feet"),
  56070. name: "Bust",
  56071. image: {
  56072. source: "./media/characters/dex/bust.svg"
  56073. }
  56074. },
  56075. },
  56076. [
  56077. {
  56078. name: "Normal",
  56079. height: math.unit(4 + 1/12, "feet"),
  56080. default: true
  56081. },
  56082. ]
  56083. ))
  56084. characterMakers.push(() => makeCharacter(
  56085. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56086. {
  56087. front: {
  56088. height: math.unit(4 + 3/12, "feet"),
  56089. weight: math.unit(60, "lb"),
  56090. name: "Front",
  56091. image: {
  56092. source: "./media/characters/silke/front.svg",
  56093. extra: 1334/1122,
  56094. bottom: 21/1355
  56095. }
  56096. },
  56097. back: {
  56098. height: math.unit(4 + 3/12, "feet"),
  56099. weight: math.unit(60, "lb"),
  56100. name: "Back",
  56101. image: {
  56102. source: "./media/characters/silke/back.svg",
  56103. extra: 1328/1092,
  56104. bottom: 16/1344
  56105. }
  56106. },
  56107. dressed: {
  56108. height: math.unit(4 + 3/12, "feet"),
  56109. weight: math.unit(60, "lb"),
  56110. name: "Dressed",
  56111. image: {
  56112. source: "./media/characters/silke/dressed.svg",
  56113. extra: 1334/1122,
  56114. bottom: 43/1377
  56115. }
  56116. },
  56117. },
  56118. [
  56119. {
  56120. name: "Normal",
  56121. height: math.unit(4 + 3/12, "feet"),
  56122. default: true
  56123. },
  56124. ]
  56125. ))
  56126. characterMakers.push(() => makeCharacter(
  56127. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56128. {
  56129. front: {
  56130. height: math.unit(1.58, "meters"),
  56131. weight: math.unit(47, "kg"),
  56132. name: "Front",
  56133. image: {
  56134. source: "./media/characters/wireshark/front.svg",
  56135. extra: 883/838,
  56136. bottom: 66/949
  56137. }
  56138. },
  56139. },
  56140. [
  56141. {
  56142. name: "Normal",
  56143. height: math.unit(1.58, "meters"),
  56144. default: true
  56145. },
  56146. ]
  56147. ))
  56148. characterMakers.push(() => makeCharacter(
  56149. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56150. {
  56151. front: {
  56152. height: math.unit(6, "meters"),
  56153. weight: math.unit(15000, "kg"),
  56154. name: "Front",
  56155. image: {
  56156. source: "./media/characters/gallagher/front.svg",
  56157. extra: 532/493,
  56158. bottom: 0/532
  56159. }
  56160. },
  56161. },
  56162. [
  56163. {
  56164. name: "Normal",
  56165. height: math.unit(6, "meters"),
  56166. default: true
  56167. },
  56168. ]
  56169. ))
  56170. characterMakers.push(() => makeCharacter(
  56171. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56172. {
  56173. front: {
  56174. height: math.unit(2.4, "meters"),
  56175. weight: math.unit(270, "kg"),
  56176. name: "Front",
  56177. image: {
  56178. source: "./media/characters/alice/front.svg",
  56179. extra: 950/900,
  56180. bottom: 36/986
  56181. }
  56182. },
  56183. side: {
  56184. height: math.unit(2.4, "meters"),
  56185. weight: math.unit(270, "kg"),
  56186. name: "Side",
  56187. image: {
  56188. source: "./media/characters/alice/side.svg",
  56189. extra: 921/876,
  56190. bottom: 19/940
  56191. }
  56192. },
  56193. dressed: {
  56194. height: math.unit(2.4, "meters"),
  56195. weight: math.unit(270, "kg"),
  56196. name: "Dressed",
  56197. image: {
  56198. source: "./media/characters/alice/dressed.svg",
  56199. extra: 905/850,
  56200. bottom: 81/986
  56201. }
  56202. },
  56203. fishnet: {
  56204. height: math.unit(2.4, "meters"),
  56205. weight: math.unit(270, "kg"),
  56206. name: "Fishnet",
  56207. image: {
  56208. source: "./media/characters/alice/fishnet.svg",
  56209. extra: 905/850,
  56210. bottom: 81/986
  56211. }
  56212. },
  56213. },
  56214. [
  56215. {
  56216. name: "Normal",
  56217. height: math.unit(2.4, "meters"),
  56218. default: true
  56219. },
  56220. ]
  56221. ))
  56222. characterMakers.push(() => makeCharacter(
  56223. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56224. {
  56225. front: {
  56226. height: math.unit(175.25, "feet"),
  56227. name: "Front",
  56228. image: {
  56229. source: "./media/characters/fio/front.svg",
  56230. extra: 1883/1591,
  56231. bottom: 34/1917
  56232. }
  56233. },
  56234. },
  56235. [
  56236. {
  56237. name: "Normal",
  56238. height: math.unit(175.25, "cm"),
  56239. default: true
  56240. },
  56241. ]
  56242. ))
  56243. characterMakers.push(() => makeCharacter(
  56244. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56245. {
  56246. side: {
  56247. height: math.unit(6, "meters"),
  56248. weight: math.unit(3400, "kg"),
  56249. preyCapacity: math.unit(1700, "liters"),
  56250. name: "Side",
  56251. image: {
  56252. source: "./media/characters/hass/side.svg",
  56253. extra: 1058/997,
  56254. bottom: 177/1235
  56255. }
  56256. },
  56257. feeding: {
  56258. height: math.unit(6*0.63, "meters"),
  56259. weight: math.unit(3400, "kg"),
  56260. preyCapacity: math.unit(1700, "liters"),
  56261. name: "Feeding",
  56262. image: {
  56263. source: "./media/characters/hass/feeding.svg",
  56264. extra: 689/579,
  56265. bottom: 146/835
  56266. }
  56267. },
  56268. guts: {
  56269. height: math.unit(6, "meters"),
  56270. weight: math.unit(3400, "kg"),
  56271. name: "Guts",
  56272. image: {
  56273. source: "./media/characters/hass/guts.svg",
  56274. extra: 1223/1198,
  56275. bottom: 182/1405
  56276. }
  56277. },
  56278. dickFront: {
  56279. height: math.unit(1.4, "meters"),
  56280. name: "Dick (Front)",
  56281. image: {
  56282. source: "./media/characters/hass/dick-front.svg"
  56283. }
  56284. },
  56285. dickSide: {
  56286. height: math.unit(1.3, "meters"),
  56287. name: "Dick (Side)",
  56288. image: {
  56289. source: "./media/characters/hass/dick-side.svg"
  56290. }
  56291. },
  56292. dickBack: {
  56293. height: math.unit(1.4, "meters"),
  56294. name: "Dick (Back)",
  56295. image: {
  56296. source: "./media/characters/hass/dick-back.svg"
  56297. }
  56298. },
  56299. },
  56300. [
  56301. {
  56302. name: "Normal",
  56303. height: math.unit(6, "meters"),
  56304. default: true
  56305. },
  56306. ]
  56307. ))
  56308. characterMakers.push(() => makeCharacter(
  56309. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56310. {
  56311. front: {
  56312. height: math.unit(4, "feet"),
  56313. weight: math.unit(60, "lb"),
  56314. name: "Front",
  56315. image: {
  56316. source: "./media/characters/hickory-finnegan/front.svg",
  56317. extra: 444/411,
  56318. bottom: 10/454
  56319. }
  56320. },
  56321. side: {
  56322. height: math.unit(4, "feet"),
  56323. weight: math.unit(60, "lb"),
  56324. name: "Side",
  56325. image: {
  56326. source: "./media/characters/hickory-finnegan/side.svg",
  56327. extra: 444/411,
  56328. bottom: 10/454
  56329. }
  56330. },
  56331. back: {
  56332. height: math.unit(4, "feet"),
  56333. weight: math.unit(60, "lb"),
  56334. name: "Back",
  56335. image: {
  56336. source: "./media/characters/hickory-finnegan/back.svg",
  56337. extra: 444/411,
  56338. bottom: 10/454
  56339. }
  56340. },
  56341. },
  56342. [
  56343. {
  56344. name: "Normal",
  56345. height: math.unit(4, "feet"),
  56346. default: true
  56347. },
  56348. ]
  56349. ))
  56350. characterMakers.push(() => makeCharacter(
  56351. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56352. {
  56353. snivy_front: {
  56354. height: math.unit(2, "feet"),
  56355. weight: math.unit(17.9, "lb"),
  56356. name: "Front",
  56357. image: {
  56358. source: "./media/characters/robin-phox/snivy-front.svg",
  56359. extra: 569/504,
  56360. bottom: 33/602
  56361. },
  56362. form: "snivy",
  56363. default: true
  56364. },
  56365. snivy_frontNsfw: {
  56366. height: math.unit(2, "feet"),
  56367. weight: math.unit(17.9, "lb"),
  56368. name: "Front (NSFW)",
  56369. image: {
  56370. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56371. extra: 569/504,
  56372. bottom: 33/602
  56373. },
  56374. form: "snivy",
  56375. },
  56376. snivy_back: {
  56377. height: math.unit(2, "feet"),
  56378. weight: math.unit(17.9, "lb"),
  56379. name: "Back",
  56380. image: {
  56381. source: "./media/characters/robin-phox/snivy-back.svg",
  56382. extra: 577/508,
  56383. bottom: 21/598
  56384. },
  56385. form: "snivy",
  56386. },
  56387. snivy_foot: {
  56388. height: math.unit(0.68, "feet"),
  56389. name: "Foot",
  56390. image: {
  56391. source: "./media/characters/robin-phox/snivy-foot.svg"
  56392. },
  56393. form: "snivy",
  56394. },
  56395. snivy_sole: {
  56396. height: math.unit(0.68, "feet"),
  56397. name: "Sole",
  56398. image: {
  56399. source: "./media/characters/robin-phox/snivy-sole.svg"
  56400. },
  56401. form: "snivy",
  56402. },
  56403. yoshi_front: {
  56404. height: math.unit(6, "feet"),
  56405. weight: math.unit(150, "lb"),
  56406. name: "Front",
  56407. image: {
  56408. source: "./media/characters/robin-phox/yoshi-front.svg",
  56409. extra: 890/792,
  56410. bottom: 29/919
  56411. },
  56412. form: "yoshi",
  56413. default: true
  56414. },
  56415. yoshi_frontNsfw: {
  56416. height: math.unit(6, "feet"),
  56417. weight: math.unit(150, "lb"),
  56418. name: "Front (NSFW)",
  56419. image: {
  56420. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56421. extra: 890/792,
  56422. bottom: 29/919
  56423. },
  56424. form: "yoshi",
  56425. },
  56426. yoshi_back: {
  56427. height: math.unit(6, "feet"),
  56428. weight: math.unit(150, "lb"),
  56429. name: "Back",
  56430. image: {
  56431. source: "./media/characters/robin-phox/yoshi-back.svg",
  56432. extra: 890/792,
  56433. bottom: 29/919
  56434. },
  56435. form: "yoshi",
  56436. },
  56437. yoshi_foot: {
  56438. height: math.unit(1.5, "feet"),
  56439. name: "Foot",
  56440. image: {
  56441. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56442. },
  56443. form: "yoshi",
  56444. },
  56445. delphox_front: {
  56446. height: math.unit(4 + 11/12, "feet"),
  56447. weight: math.unit(86, "lb"),
  56448. name: "Front",
  56449. image: {
  56450. source: "./media/characters/robin-phox/delphox-front.svg",
  56451. extra: 1266/1069,
  56452. bottom: 32/1298
  56453. },
  56454. form: "delphox",
  56455. default: true
  56456. },
  56457. delphox_frontNsfw: {
  56458. height: math.unit(4 + 11/12, "feet"),
  56459. weight: math.unit(86, "lb"),
  56460. name: "Front (NSFW)",
  56461. image: {
  56462. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56463. extra: 1266/1069,
  56464. bottom: 32/1298
  56465. },
  56466. form: "delphox",
  56467. },
  56468. delphox_back: {
  56469. height: math.unit(4 + 11/12, "feet"),
  56470. weight: math.unit(86, "lb"),
  56471. name: "Back",
  56472. image: {
  56473. source: "./media/characters/robin-phox/delphox-back.svg",
  56474. extra: 1269/1083,
  56475. bottom: 15/1284
  56476. },
  56477. form: "delphox",
  56478. },
  56479. mienshao_front: {
  56480. height: math.unit(4 + 7/12, "feet"),
  56481. weight: math.unit(78.3, "lb"),
  56482. name: "Front",
  56483. image: {
  56484. source: "./media/characters/robin-phox/mienshao-front.svg",
  56485. extra: 1052/970,
  56486. bottom: 108/1160
  56487. },
  56488. form: "mienshao",
  56489. default: true
  56490. },
  56491. mienshao_frontNsfw: {
  56492. height: math.unit(4 + 7/12, "feet"),
  56493. weight: math.unit(78.3, "lb"),
  56494. name: "Front (NSFW)",
  56495. image: {
  56496. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56497. extra: 1052/970,
  56498. bottom: 108/1160
  56499. },
  56500. form: "mienshao",
  56501. },
  56502. mienshao_back: {
  56503. height: math.unit(4 + 7/12, "feet"),
  56504. weight: math.unit(78.3, "lb"),
  56505. name: "Back",
  56506. image: {
  56507. source: "./media/characters/robin-phox/mienshao-back.svg",
  56508. extra: 1102/982,
  56509. bottom: 32/1134
  56510. },
  56511. form: "mienshao",
  56512. },
  56513. inteleon_front: {
  56514. height: math.unit(6 + 3/12, "feet"),
  56515. weight: math.unit(99.6, "lb"),
  56516. name: "Front",
  56517. image: {
  56518. source: "./media/characters/robin-phox/inteleon-front.svg",
  56519. extra: 910/799,
  56520. bottom: 76/986
  56521. },
  56522. form: "inteleon",
  56523. default: true
  56524. },
  56525. inteleon_frontNsfw: {
  56526. height: math.unit(6 + 3/12, "feet"),
  56527. weight: math.unit(99.6, "lb"),
  56528. name: "Front (NSFW)",
  56529. image: {
  56530. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56531. extra: 910/799,
  56532. bottom: 76/986
  56533. },
  56534. form: "inteleon",
  56535. },
  56536. inteleon_back: {
  56537. height: math.unit(6 + 3/12, "feet"),
  56538. weight: math.unit(99.6, "lb"),
  56539. name: "Back",
  56540. image: {
  56541. source: "./media/characters/robin-phox/inteleon-back.svg",
  56542. extra: 907/796,
  56543. bottom: 25/932
  56544. },
  56545. form: "inteleon",
  56546. },
  56547. reshiram_front: {
  56548. height: math.unit(10 + 6/12, "feet"),
  56549. weight: math.unit(727.5, "lb"),
  56550. name: "Front",
  56551. image: {
  56552. source: "./media/characters/robin-phox/reshiram-front.svg",
  56553. extra: 1198/940,
  56554. bottom: 123/1321
  56555. },
  56556. form: "reshiram",
  56557. },
  56558. reshiram_frontNsfw: {
  56559. height: math.unit(10 + 6/12, "feet"),
  56560. weight: math.unit(727.5, "lb"),
  56561. name: "Front-nsfw",
  56562. image: {
  56563. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56564. extra: 1198/940,
  56565. bottom: 123/1321
  56566. },
  56567. form: "reshiram",
  56568. },
  56569. reshiram_back: {
  56570. height: math.unit(10 + 6/12, "feet"),
  56571. weight: math.unit(727.5, "lb"),
  56572. name: "Back",
  56573. image: {
  56574. source: "./media/characters/robin-phox/reshiram-back.svg",
  56575. extra: 1024/904,
  56576. bottom: 85/1109
  56577. },
  56578. form: "reshiram",
  56579. },
  56580. samurott_front: {
  56581. height: math.unit(8, "feet"),
  56582. weight: math.unit(208.6, "lb"),
  56583. name: "Front",
  56584. image: {
  56585. source: "./media/characters/robin-phox/samurott-front.svg",
  56586. extra: 1048/984,
  56587. bottom: 100/1148
  56588. },
  56589. form: "samurott",
  56590. },
  56591. samurott_frontNsfw: {
  56592. height: math.unit(8, "feet"),
  56593. weight: math.unit(208.6, "lb"),
  56594. name: "Front-nsfw",
  56595. image: {
  56596. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56597. extra: 1048/984,
  56598. bottom: 100/1148
  56599. },
  56600. form: "samurott",
  56601. },
  56602. samurott_back: {
  56603. height: math.unit(8, "feet"),
  56604. weight: math.unit(208.6, "lb"),
  56605. name: "Back",
  56606. image: {
  56607. source: "./media/characters/robin-phox/samurott-back.svg",
  56608. extra: 1110/1042,
  56609. bottom: 12/1122
  56610. },
  56611. form: "samurott",
  56612. },
  56613. samurott_feral: {
  56614. height: math.unit(4 + 11/12, "feet"),
  56615. weight: math.unit(208.6, "lb"),
  56616. name: "Feral",
  56617. image: {
  56618. source: "./media/characters/robin-phox/samurott-feral.svg",
  56619. extra: 766/681,
  56620. bottom: 108/874
  56621. },
  56622. form: "samurott",
  56623. },
  56624. },
  56625. [
  56626. {
  56627. name: "Normal",
  56628. height: math.unit(2, "feet"),
  56629. default: true,
  56630. form: "snivy"
  56631. },
  56632. {
  56633. name: "Normal",
  56634. height: math.unit(6, "feet"),
  56635. default: true,
  56636. form: "yoshi"
  56637. },
  56638. {
  56639. name: "Normal",
  56640. height: math.unit(4 + 11/12, "feet"),
  56641. default: true,
  56642. form: "delphox"
  56643. },
  56644. {
  56645. name: "Normal",
  56646. height: math.unit(4 + 7/12, "feet"),
  56647. default: true,
  56648. form: "mienshao"
  56649. },
  56650. {
  56651. name: "Normal",
  56652. height: math.unit(6 + 3/12, "feet"),
  56653. default: true,
  56654. form: "inteleon"
  56655. },
  56656. {
  56657. name: "Normal",
  56658. height: math.unit(10 + 6/12, "feet"),
  56659. default: true,
  56660. form: "reshiram"
  56661. },
  56662. {
  56663. name: "Normal",
  56664. height: math.unit(8, "feet"),
  56665. default: true,
  56666. form: "samurott"
  56667. },
  56668. {
  56669. name: "Macro",
  56670. height: math.unit(500, "feet"),
  56671. allForms: true
  56672. },
  56673. {
  56674. name: "Mega Macro",
  56675. height: math.unit(10, "earths"),
  56676. allForms: true
  56677. },
  56678. {
  56679. name: "Giga Macro",
  56680. height: math.unit(1, "galaxy"),
  56681. allForms: true
  56682. },
  56683. {
  56684. name: "Godly Macro",
  56685. height: math.unit(1e10, "multiverses"),
  56686. allForms: true
  56687. },
  56688. ],
  56689. {
  56690. "snivy": {
  56691. name: "Snivy",
  56692. default: true
  56693. },
  56694. "yoshi": {
  56695. name: "Yoshi",
  56696. },
  56697. "delphox": {
  56698. name: "Delphox",
  56699. },
  56700. "mienshao": {
  56701. name: "Mienshao",
  56702. },
  56703. "inteleon": {
  56704. name: "Inteleon",
  56705. },
  56706. "reshiram": {
  56707. name: "Reshiram",
  56708. },
  56709. "samurott": {
  56710. name: "Samurott",
  56711. },
  56712. }
  56713. ))
  56714. characterMakers.push(() => makeCharacter(
  56715. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56716. {
  56717. front: {
  56718. height: math.unit(4, "feet"),
  56719. name: "Front",
  56720. image: {
  56721. source: "./media/characters/ash-leung/front.svg",
  56722. extra: 1916/1792,
  56723. bottom: 50/1966
  56724. }
  56725. },
  56726. },
  56727. [
  56728. {
  56729. name: "Atomic",
  56730. height: math.unit(1, "angstrom")
  56731. },
  56732. {
  56733. name: "Microscopic",
  56734. height: math.unit(4000, "angstroms")
  56735. },
  56736. {
  56737. name: "Speck",
  56738. height: math.unit(1, "mm")
  56739. },
  56740. {
  56741. name: "Small",
  56742. height: math.unit(1, "inch")
  56743. },
  56744. {
  56745. name: "Normal",
  56746. height: math.unit(4, "feet"),
  56747. default: true
  56748. },
  56749. ]
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56753. {
  56754. frontDressed: {
  56755. height: math.unit(2.08, "meters"),
  56756. weight: math.unit(175, "lb"),
  56757. name: "Front (Dressed)",
  56758. image: {
  56759. source: "./media/characters/carie/front-dressed.svg",
  56760. extra: 456/417,
  56761. bottom: 7/463
  56762. }
  56763. },
  56764. backDressed: {
  56765. height: math.unit(2.08, "meters"),
  56766. weight: math.unit(175, "lb"),
  56767. name: "Back (Dressed)",
  56768. image: {
  56769. source: "./media/characters/carie/back-dressed.svg",
  56770. extra: 455/414,
  56771. bottom: 11/466
  56772. }
  56773. },
  56774. front: {
  56775. height: math.unit(2, "meters"),
  56776. weight: math.unit(175, "lb"),
  56777. name: "Front",
  56778. image: {
  56779. source: "./media/characters/carie/front.svg",
  56780. extra: 438/399,
  56781. bottom: 12/450
  56782. }
  56783. },
  56784. back: {
  56785. height: math.unit(2, "meters"),
  56786. weight: math.unit(175, "lb"),
  56787. name: "Back",
  56788. image: {
  56789. source: "./media/characters/carie/back.svg",
  56790. extra: 438/397,
  56791. bottom: 7/445
  56792. }
  56793. },
  56794. },
  56795. [
  56796. {
  56797. name: "Normal",
  56798. height: math.unit(2.08, "meters"),
  56799. default: true
  56800. },
  56801. {
  56802. name: "Macro",
  56803. height: math.unit(2.08e3, "meters")
  56804. },
  56805. {
  56806. name: "Mega Macro",
  56807. height: math.unit(2.08e6, "meters")
  56808. },
  56809. {
  56810. name: "Giga Macro",
  56811. height: math.unit(2.08e9, "meters")
  56812. },
  56813. {
  56814. name: "Tera Macro",
  56815. height: math.unit(2.08e12, "meters")
  56816. },
  56817. {
  56818. name: "Peta Macro",
  56819. height: math.unit(2.08e15, "meters")
  56820. },
  56821. {
  56822. name: "Exa Macro",
  56823. height: math.unit(2.08e18, "meters")
  56824. },
  56825. {
  56826. name: "Zetta Macro",
  56827. height: math.unit(2.08e21, "meters")
  56828. },
  56829. {
  56830. name: "Yotta Macro",
  56831. height: math.unit(2.08e24, "meters")
  56832. },
  56833. ]
  56834. ))
  56835. characterMakers.push(() => makeCharacter(
  56836. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56837. {
  56838. front: {
  56839. height: math.unit(5 + 2/12, "feet"),
  56840. weight: math.unit(120, "lb"),
  56841. name: "Front",
  56842. image: {
  56843. source: "./media/characters/sai-bree/front.svg",
  56844. extra: 1843/1702,
  56845. bottom: 91/1934
  56846. }
  56847. },
  56848. back: {
  56849. height: math.unit(5 + 2/12, "feet"),
  56850. weight: math.unit(120, "lb"),
  56851. name: "Back",
  56852. image: {
  56853. source: "./media/characters/sai-bree/back.svg",
  56854. extra: 1809/1637,
  56855. bottom: 56/1865
  56856. }
  56857. },
  56858. },
  56859. [
  56860. {
  56861. name: "Normal",
  56862. height: math.unit(5 + 2/12, "feet"),
  56863. default: true
  56864. },
  56865. {
  56866. name: "Macro",
  56867. height: math.unit(500, "feet")
  56868. },
  56869. ]
  56870. ))
  56871. characterMakers.push(() => makeCharacter(
  56872. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56873. {
  56874. side: {
  56875. height: math.unit(0.77, "meters"),
  56876. weight: math.unit(120, "lb"),
  56877. name: "Side",
  56878. image: {
  56879. source: "./media/characters/davwyn/side.svg",
  56880. extra: 1557/1225,
  56881. bottom: 131/1688
  56882. }
  56883. },
  56884. front: {
  56885. height: math.unit(0.835410, "meters"),
  56886. weight: math.unit(120, "lb"),
  56887. name: "Front",
  56888. image: {
  56889. source: "./media/characters/davwyn/front.svg",
  56890. extra: 870/843,
  56891. bottom: 175/1045
  56892. }
  56893. },
  56894. },
  56895. [
  56896. {
  56897. name: "Minidrake",
  56898. height: math.unit(0.77/4, "meters")
  56899. },
  56900. {
  56901. name: "Normal",
  56902. height: math.unit(0.77, "meters"),
  56903. default: true
  56904. },
  56905. ]
  56906. ))
  56907. characterMakers.push(() => makeCharacter(
  56908. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56909. {
  56910. front: {
  56911. height: math.unit(10 + 3/12, "feet"),
  56912. weight: math.unit(2857, "lb"),
  56913. name: "Front",
  56914. image: {
  56915. source: "./media/characters/balans/front.svg",
  56916. extra: 427/402,
  56917. bottom: 26/453
  56918. }
  56919. },
  56920. side: {
  56921. height: math.unit(10 + 3/12, "feet"),
  56922. weight: math.unit(2857, "lb"),
  56923. name: "Side",
  56924. image: {
  56925. source: "./media/characters/balans/side.svg",
  56926. extra: 397/371,
  56927. bottom: 17/414
  56928. }
  56929. },
  56930. back: {
  56931. height: math.unit(10 + 3/12, "feet"),
  56932. weight: math.unit(2857, "lb"),
  56933. name: "Back",
  56934. image: {
  56935. source: "./media/characters/balans/back.svg",
  56936. extra: 408/381,
  56937. bottom: 14/422
  56938. }
  56939. },
  56940. hand: {
  56941. height: math.unit(1.15, "feet"),
  56942. name: "Hand",
  56943. image: {
  56944. source: "./media/characters/balans/hand.svg"
  56945. }
  56946. },
  56947. footRest: {
  56948. height: math.unit(3.1, "feet"),
  56949. name: "Foot (Rest)",
  56950. image: {
  56951. source: "./media/characters/balans/foot-rest.svg"
  56952. }
  56953. },
  56954. footActive: {
  56955. height: math.unit(3.5, "feet"),
  56956. name: "Foot (Active)",
  56957. image: {
  56958. source: "./media/characters/balans/foot-active.svg"
  56959. }
  56960. },
  56961. },
  56962. [
  56963. {
  56964. name: "Normal",
  56965. height: math.unit(10 + 3/12, "feet"),
  56966. default: true
  56967. },
  56968. ]
  56969. ))
  56970. characterMakers.push(() => makeCharacter(
  56971. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  56972. {
  56973. side: {
  56974. height: math.unit(9, "meters"),
  56975. weight: math.unit(114, "tonnes"),
  56976. name: "Side",
  56977. image: {
  56978. source: "./media/characters/eldkveikir/side.svg",
  56979. extra: 1927/338,
  56980. bottom: 42/1969
  56981. }
  56982. },
  56983. sitting: {
  56984. height: math.unit(13.4, "meters"),
  56985. weight: math.unit(114, "tonnes"),
  56986. name: "Sitting",
  56987. image: {
  56988. source: "./media/characters/eldkveikir/sitting.svg",
  56989. extra: 1108/963,
  56990. bottom: 610/1718
  56991. }
  56992. },
  56993. maw: {
  56994. height: math.unit(8.36, "meters"),
  56995. name: "Maw",
  56996. image: {
  56997. source: "./media/characters/eldkveikir/maw.svg"
  56998. }
  56999. },
  57000. hand: {
  57001. height: math.unit(4.84, "meters"),
  57002. name: "Hand",
  57003. image: {
  57004. source: "./media/characters/eldkveikir/hand.svg"
  57005. }
  57006. },
  57007. foot: {
  57008. height: math.unit(6.9, "meters"),
  57009. name: "Foot",
  57010. image: {
  57011. source: "./media/characters/eldkveikir/foot.svg"
  57012. }
  57013. },
  57014. genitals: {
  57015. height: math.unit(9.6, "meters"),
  57016. name: "Genitals",
  57017. image: {
  57018. source: "./media/characters/eldkveikir/genitals.svg"
  57019. }
  57020. },
  57021. },
  57022. [
  57023. {
  57024. name: "Normal",
  57025. height: math.unit(9, "meters"),
  57026. default: true
  57027. },
  57028. ]
  57029. ))
  57030. characterMakers.push(() => makeCharacter(
  57031. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57032. {
  57033. front: {
  57034. height: math.unit(14, "feet"),
  57035. weight: math.unit(4100, "lb"),
  57036. name: "Front",
  57037. image: {
  57038. source: "./media/characters/arrow/front.svg",
  57039. extra: 330/318,
  57040. bottom: 56/386
  57041. }
  57042. },
  57043. },
  57044. [
  57045. {
  57046. name: "Normal",
  57047. height: math.unit(14, "feet"),
  57048. default: true
  57049. },
  57050. {
  57051. name: "Minimacro",
  57052. height: math.unit(63, "feet")
  57053. },
  57054. {
  57055. name: "Macro",
  57056. height: math.unit(630, "feet")
  57057. },
  57058. {
  57059. name: "Megamacro",
  57060. height: math.unit(12600, "feet")
  57061. },
  57062. {
  57063. name: "Gigamacro",
  57064. height: math.unit(18000, "miles")
  57065. },
  57066. ]
  57067. ))
  57068. characterMakers.push(() => makeCharacter(
  57069. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57070. {
  57071. front: {
  57072. height: math.unit(10, "feet"),
  57073. weight: math.unit(2.4, "tons"),
  57074. name: "Front",
  57075. image: {
  57076. source: "./media/characters/3yk-k0-unit/front.svg",
  57077. extra: 573/561,
  57078. bottom: 33/606
  57079. }
  57080. },
  57081. back: {
  57082. height: math.unit(10, "feet"),
  57083. weight: math.unit(2.4, "tons"),
  57084. name: "Back",
  57085. image: {
  57086. source: "./media/characters/3yk-k0-unit/back.svg",
  57087. extra: 614/573,
  57088. bottom: 32/646
  57089. }
  57090. },
  57091. maw: {
  57092. height: math.unit(2.15, "feet"),
  57093. name: "Maw",
  57094. image: {
  57095. source: "./media/characters/3yk-k0-unit/maw.svg"
  57096. }
  57097. },
  57098. },
  57099. [
  57100. {
  57101. name: "Normal",
  57102. height: math.unit(10, "feet"),
  57103. default: true
  57104. },
  57105. ]
  57106. ))
  57107. characterMakers.push(() => makeCharacter(
  57108. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57109. {
  57110. front: {
  57111. height: math.unit(8 + 8/12, "feet"),
  57112. name: "Front",
  57113. image: {
  57114. source: "./media/characters/nemo/front.svg",
  57115. extra: 1308/1217,
  57116. bottom: 57/1365
  57117. }
  57118. },
  57119. },
  57120. [
  57121. {
  57122. name: "Normal",
  57123. height: math.unit(8 + 8/12, "feet"),
  57124. default: true
  57125. },
  57126. ]
  57127. ))
  57128. characterMakers.push(() => makeCharacter(
  57129. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57130. {
  57131. front: {
  57132. height: math.unit(8, "feet"),
  57133. weight: math.unit(760, "lb"),
  57134. name: "Front",
  57135. image: {
  57136. source: "./media/characters/rexx/front.svg",
  57137. extra: 786/750,
  57138. bottom: 17/803
  57139. },
  57140. extraAttributes: {
  57141. "pawLength": {
  57142. name: "Paw Length",
  57143. power: 1,
  57144. type: "length",
  57145. base: math.unit(27, "inches")
  57146. },
  57147. }
  57148. },
  57149. },
  57150. [
  57151. {
  57152. name: "Micro",
  57153. height: math.unit(2, "inches")
  57154. },
  57155. {
  57156. name: "Normal",
  57157. height: math.unit(8, "feet"),
  57158. default: true
  57159. },
  57160. {
  57161. name: "Macro",
  57162. height: math.unit(150, "feet")
  57163. },
  57164. ]
  57165. ))
  57166. //characters
  57167. function makeCharacters() {
  57168. const results = [];
  57169. characterMakers.forEach(character => {
  57170. results.push(character());
  57171. });
  57172. return results;
  57173. }